Received: by 2002:a05:6a10:6744:0:0:0:0 with SMTP id w4csp576531pxu; Thu, 15 Oct 2020 10:57:51 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxWjH5LiqueWxIWENXe+NhV/HP/XSuUZhgo2LEnQmZhcdfPsuX+gSREBc8+U8puQ1EhWtkI X-Received: by 2002:a17:907:20e6:: with SMTP id rh6mr5578738ejb.169.1602784671530; Thu, 15 Oct 2020 10:57:51 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1602784671; cv=none; d=google.com; s=arc-20160816; b=nFsTHNFq7y89muOi62lKgq2R0aO1CyrcblkOjVdqcjv4NhaeWTK+pk3C0GZAfc4BfJ pUGcaC4HWyGAYMz+pz1/Fihc8MbvausI2xL7abLsm0yWc5mibw/SIhKrlyd9y3C6dNKn hSwJK4zdcixaBCaQ+3sX0277Xmbm3dDOW2s1Mn72FU2lX/4FRWgLKdMbI4ED+10VHfCX Kcq0urwASGTeE2Dc6LmbzgPTfR15MLUelTaoSEmoA1fnr+FTsr46kC4ICsX3i5TZjcLY GIQdU7qaI/fXfAtbQwvB1272UvKhEadHlBZxVaVEJUPyjdFTYFBKrOKv6y5mqGojtpni YIVA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:user-agent:references:message-id :in-reply-to:subject:cc:to:from:date; bh=mEmtnoAqM0XwhbOsp0SJZKBahJkBsIoBFGTMOcCHlqA=; b=OAzT7uElnCDvHxkAXEcGehL+PbQW7ti1hsdZjnokl2+NPX38noivCmbQwJ6LY94Thf sWYvs3uzQHgi/xlO28CLsckoPLhNWYTjkZOcX+kfRHxIN1R1qMmk9qJAM9I1ZDzLjYln 4PpK4WSPku3v/EP6j+aP7MPiB4Hv84ylqP3Cqm+zMI2s+8hRYYeqchT+nP2csyt2kwfm /s93vr2eaxdRME87hZDHDEj/k117TlSeFxxq49fYo46q4Qbxp9rDpXoXhpPtgp2vn2bc F/p2xbj8Jkz/95yhtzWvMsGuVKMswwLsoQ6yW/31gP7Lca0CbheV4HzlXXxHi7EYcZke 1vdQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r22si2737783eja.468.2020.10.15.10.57.14; Thu, 15 Oct 2020 10:57:51 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388175AbgJOIXe (ORCPT + 99 others); Thu, 15 Oct 2020 04:23:34 -0400 Received: from gentwo.org ([3.19.106.255]:51678 "EHLO gentwo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726018AbgJOIXe (ORCPT ); Thu, 15 Oct 2020 04:23:34 -0400 Received: by gentwo.org (Postfix, from userid 1002) id 1529E3F0EE; Thu, 15 Oct 2020 08:23:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by gentwo.org (Postfix) with ESMTP id 12ACA3F042; Thu, 15 Oct 2020 08:23:33 +0000 (UTC) Date: Thu, 15 Oct 2020 08:23:33 +0000 (UTC) From: Christopher Lameter X-X-Sender: cl@www.lameter.com To: Kees Cook cc: Andrew Morton , Vlastimil Babka , Waiman Long , Marco Elver , Pekka Enberg , David Rientjes , Joonsoo Kim , Roman Gushchin , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH v3 0/3] Actually fix freelist pointer vs redzoning In-Reply-To: <20201015033712.1491731-1-keescook@chromium.org> Message-ID: References: <20201015033712.1491731-1-keescook@chromium.org> User-Agent: Alpine 2.22 (DEB 394 2020-01-19) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 14 Oct 2020, Kees Cook wrote: > Note on patch 2: Christopher NAKed it, but I actually think this is a > reasonable thing to add -- the "too small" check is only made when built > with CONFIG_DEBUG_VM, so it *is* actually possible for someone to trip > over this directly, even if it would never make it into a released > kernel. I see no reason to just leave this foot-gun in place, though, so > we might as well just fix it too. (Which seems to be what Longman was > similarly supporting, IIUC.) Well then remove the duplication of checks. The NAK was there because it seems that you were not aware of the existing checks. > Anyway, if patch 2 stays NAKed, that's fine. It's entirely separable, > and the other 2 can land. :) Just deal with the old checks too and it will be fine.