[PATCH 1/1] proc_keys_next should increase position index
Vasily Averin
vvs at virtuozzo.com
Fri Jan 24 06:25:16 UTC 2020
if seq_file .next fuction does not change position index,
read after some lseek can generate unexpected output.
https://bugzilla.kernel.org/show_bug.cgi?id=206283
Signed-off-by: Vasily Averin <vvs at virtuozzo.com>
---
security/keys/proc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/security/keys/proc.c b/security/keys/proc.c
index 415f3f1..d0cde66 100644
--- a/security/keys/proc.c
+++ b/security/keys/proc.c
@@ -139,6 +139,8 @@ static void *proc_keys_next(struct seq_file *p, void *v, loff_t *_pos)
n = key_serial_next(p, v);
if (n)
*_pos = key_node_serial(n);
+ else
+ (*_pos)++;
return n;
}
--
1.8.3.1
More information about the Linux-security-module-archive
mailing list