All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] sysctl: returns -EINVAL when a negative value is passed to proc_doulongvec_minmax
@ 2021-12-09  8:56 Baokun Li
  2021-12-14  8:00 ` libaokun (A)
  2021-12-19 21:29 ` Luis Chamberlain
  0 siblings, 2 replies; 8+ messages in thread
From: Baokun Li @ 2021-12-09  8:56 UTC (permalink / raw)
  To: mcgrof, keescook, yzaikin
  Cc: linux-kernel, linux-fsdevel, libaokun1, yukuai3, Hulk Robot

When we pass a negative value to the proc_doulongvec_minmax() function,
the function returns 0, but the corresponding interface value does not
change.

we can easily reproduce this problem with the following commands:
    `cd /proc/sys/fs/epoll`
    `echo -1 > max_user_watches; echo $?; cat max_user_watches`

This function requires a non-negative number to be passed in, so when
a negative number is passed in, -EINVAL is returned.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Baokun Li <libaokun1@huawei.com>
---
 kernel/sysctl.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 7f07b058b180..537d2f75faa0 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -1149,10 +1149,9 @@ static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table,
 					     sizeof(proc_wspace_sep), NULL);
 			if (err)
 				break;
-			if (neg)
-				continue;
+
 			val = convmul * val / convdiv;
-			if ((min && val < *min) || (max && val > *max)) {
+			if (neg || (min && val < *min) || (max && val > *max)) {
 				err = -EINVAL;
 				break;
 			}
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-12-22  1:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-09  8:56 [PATCH -next] sysctl: returns -EINVAL when a negative value is passed to proc_doulongvec_minmax Baokun Li
2021-12-14  8:00 ` libaokun (A)
2021-12-19 21:29 ` Luis Chamberlain
2021-12-20  8:53   ` libaokun (A)
2021-12-20 19:27     ` Luis Chamberlain
2021-12-21  1:15       ` libaokun (A)
2021-12-21 22:02         ` Luis Chamberlain
2021-12-22  1:26           ` libaokun (A)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.