Miles Chen
4adcdcea71
sched/psi: Correct overly pessimistic size calculation
When passing a equal or more then 32 bytes long string to psi_write(),
psi_write() copies 31 bytes to its buf and overwrites buf[30]
with '\0'. Which makes the input string 1 byte shorter than
it should be.
Fix it by copying sizeof(buf) bytes when nbytes >= sizeof(buf).
This does not cause problems in normal use case like:
"some 500000 10000000" or "full 500000 10000000" because they
are less than 32 bytes in length.
/* assuming nbytes == 35 */
char buf[32];
buf_size = min(nbytes, (sizeof(buf) - 1)); /* buf_size = 31 */
if (copy_from_user(buf, user_buf, buf_size))
return -EFAULT;
buf[buf_size - 1] = '\0'; /* buf[30] = '\0' */
Before:
%cd /proc/pressure/
%echo "123456789|123456789|123456789|1234" > memory
[ 22.473497] nbytes=35,buf_size=31
[ 22.473775] 123456789|123456789|123456789| (print 30 chars)
%sh: write error: Invalid argument
%echo "123456789|123456789|123456789|1" > memory
[ 64.916162] nbytes=32,buf_size=31
[ 64.916331] 123456789|123456789|123456789| (print 30 chars)
%sh: write error: Invalid argument
After:
%cd /proc/pressure/
%echo "123456789|123456789|123456789|1234" > memory
[ 254.837863] nbytes=35,buf_size=32
[ 254.838541] 123456789|123456789|123456789|1 (print 31 chars)
%sh: write error: Invalid argument
%echo "123456789|123456789|123456789|1" > memory
[ 9965.714935] nbytes=32,buf_size=32
[ 9965.715096] 123456789|123456789|123456789|1 (print 31 chars)
%sh: write error: Invalid argument
Also remove the superfluous parentheses.
Signed-off-by: Miles Chen <miles.chen@mediatek.com>
Cc: <linux-mediatek@lists.infradead.org>
Cc: <wsd_upstream@mediatek.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190912103452.13281-1-miles.chen@mediatek.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2019-09-13 07:49:28 +02:00
..
2019-06-24 19:23:40 +02:00
2018-03-04 12:39:29 +01:00
2019-05-21 10:50:45 +02:00
2018-07-17 09:30:34 +02:00
2019-09-03 09:17:40 +02:00
2018-03-04 12:39:29 +01:00
2019-06-17 12:12:27 +02:00
2018-03-04 12:39:29 +01:00
2019-08-08 09:09:31 +02:00
2019-04-03 12:34:31 +02:00
2019-06-17 12:12:27 +02:00
2018-03-04 12:39:29 +01:00
2019-05-21 10:50:45 +02:00
2019-08-08 09:09:31 +02:00
2019-06-24 19:19:53 +02:00
2019-09-13 07:45:17 +02:00
2019-06-03 11:49:39 +02:00
2019-08-08 09:09:31 +02:00
2019-07-25 15:51:55 +02:00
2018-10-26 16:26:32 -07:00
2018-10-26 16:26:32 -07:00
2019-05-30 11:26:37 -07:00
2019-06-24 19:23:42 +02:00
2019-06-24 19:23:39 +02:00
2019-09-13 07:49:28 +02:00
2019-08-08 09:09:31 +02:00
2019-06-17 12:15:58 +02:00
2019-09-03 09:17:40 +02:00
2018-05-16 07:23:35 +02:00
2019-07-25 15:51:55 +02:00
2019-08-08 09:09:31 +02:00
2019-01-04 13:13:48 -08:00
2019-09-03 09:17:37 +02:00
2019-05-21 10:50:45 +02:00
2019-06-24 19:23:40 +02:00