From patchwork Tue Dec 17 13:29:07 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Bouchinet X-Patchwork-Id: 13911818 Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B17641F4734; Tue, 17 Dec 2024 13:31:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.198 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734442273; cv=none; b=olJeCJY/8pyIPjfUfluLls1IXWBUCXhK1tYlzYNk8pvYhFYUAFJOtQduGrAnRACyYbOWlWPjoxjBAiDB3fmOr8Lt3LyDezO7PnHwxnqWi0j7zpf+mmoMEanBKaYeRqCZHojJqZLqB2S1wPQEJOhQ6VV6H01801xBo98Yl+XqIQE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1734442273; c=relaxed/simple; bh=Y1cpj11DsAb1u83h2drZNa4ZJSTouUH0rHR750qW+98=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ByVz3zcRrNdpBJUGWsJjU2XkuU2wUFcOzulDV7+AG8CF4x6jPSboZqLe3e+kuAUXtq+nKGK6djWEkNg4JN78qbeJr6IdBEGJFdc8gEK3KOnm+2f/7Hgwe3Kf8+9GplAYc9o3aPzvRtDyiCwQXjlGNwB8ddQ+1XN4mZmzW9q6d2Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=clip-os.org; spf=pass smtp.mailfrom=clip-os.org; dkim=pass (2048-bit key) header.d=clip-os.org header.i=@clip-os.org header.b=CkAEg4in; arc=none smtp.client-ip=217.70.183.198 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=clip-os.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=clip-os.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=clip-os.org header.i=@clip-os.org header.b="CkAEg4in" Received: by mail.gandi.net (Postfix) with ESMTPSA id C3A5AC0006; Tue, 17 Dec 2024 13:31:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=clip-os.org; s=gm1; t=1734442270; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vIuLqH8rMsMHoCnSRb3wBLspzx/H/nMJsGAsARGV+jw=; b=CkAEg4in2GlxQxqzv0Kj6mc9VNtskouF0R82e/Jye4WllK8+L57dr7Ni2qyI5uVFIbxcqb 2f3pM+0Okd97GanJiatDeoHqsm3g5lalSXMqKqS6HC9b0wL5uiy/oQaM+sZiQ12U7auNMo DuAOPiXxrTSVctU9cyAc5vUsy7KjC7QLaCtNXI5QUq9CcRKrRSYlTylLNoOUunfPqk9AjD NIly0SXwYurEFRkiOZvFKblv+gBe9cw/yrucayjakx606vkOeOjPs4fTVGB9taBTCaQRMK MblhqHl2sED71SSWGoo1Ahc5yRhqluX9RRBjQHDdqrsnjeLeJM3xEIaOw9KPKQ== From: nicolas.bouchinet@clip-os.org To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Cc: Nicolas Bouchinet , Greg Kroah-Hartman , Jiri Slaby , Alexander Viro , Christian Brauner , Jan Kara , Luis Chamberlain , Kees Cook , Joel Granados , Andrew Morton , Neil Horman , Lin Feng , "Theodore Ts'o" Subject: [PATCH v3 2/2] sysctl: Fix underflow value setting risk in vm_table Date: Tue, 17 Dec 2024 14:29:07 +0100 Message-ID: <20241217132908.38096-3-nicolas.bouchinet@clip-os.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241217132908.38096-1-nicolas.bouchinet@clip-os.org> References: <20241217132908.38096-1-nicolas.bouchinet@clip-os.org> Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-GND-Sasl: nicolas.bouchinet@clip-os.org From: Nicolas Bouchinet Commit 3b3376f222e3 ("sysctl.c: fix underflow value setting risk in vm_table") fixes underflow value setting risk in vm_table but misses vdso_enabled sysctl. vdso_enabled sysctl is initialized with .extra1 value as SYSCTL_ZERO to avoid negative value writes but the proc_handler is proc_dointvec and not proc_dointvec_minmax and thus do not uses .extra1 and .extra2. The following command thus works : `# echo -1 > /proc/sys/vm/vdso_enabled` This patch properly sets the proc_handler to proc_dointvec_minmax. Fixes: 3b3376f222e3 ("sysctl.c: fix underflow value setting risk in vm_table") Signed-off-by: Nicolas Bouchinet Reviewed-by: Jan Kara --- kernel/sysctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 79e6cb1d5c48f..6d8a4fceb79aa 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -2194,8 +2194,9 @@ static struct ctl_table vm_table[] = { .maxlen = sizeof(vdso_enabled), #endif .mode = 0644, - .proc_handler = proc_dointvec, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, + .extra1 = SYSCTL_ONE, }, #endif {