* [PATCH] IPC: access to unmapped vmalloc area in grow_ary()
@ 2006-04-17 11:39 Kirill Korotaev
0 siblings, 0 replies; only message in thread
From: Kirill Korotaev @ 2006-04-17 11:39 UTC (permalink / raw)
To: Linux Kernel Mailing List, Linus Torvalds, Andrew Morton,
Chris Wright, Alexey Kuznetsov, devel
[-- Attachment #1: Type: text/plain, Size: 307 bytes --]
grow_ary() should not copy struct ipc_id_ary (it copies new->p, not
new). Due to this, memcpy() src pointer could hit unmapped vmalloc page
when near page boundary.
Found during OpenVZ stress testing
Signed-Off-By: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Signed-Off-By: Kirill Korotaev <dev@openvz.org>
[-- Attachment #2: diff-ipc-memcpy-bug-20060413 --]
[-- Type: text/plain, Size: 567 bytes --]
diff -urp ../git/linux-2.6.16-workgpl/ipc/util.c linux-2.6.16/ipc/util.c
--- ../git/linux-2.6.16-workgpl/ipc/util.c 2006-04-13 16:01:47.000000000 +0400
+++ linux-2.6.16/ipc/util.c 2006-04-13 16:01:05.000000000 +0400
@@ -187,8 +187,7 @@ static int grow_ary(struct ipc_ids* ids,
if(new == NULL)
return size;
new->size = newsize;
- memcpy(new->p, ids->entries->p, sizeof(struct kern_ipc_perm *)*size +
- sizeof(struct ipc_id_ary));
+ memcpy(new->p, ids->entries->p, sizeof(struct kern_ipc_perm *)*size);
for(i=size;i<newsize;i++) {
new->p[i] = NULL;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-04-17 11:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-17 11:39 [PATCH] IPC: access to unmapped vmalloc area in grow_ary() Kirill Korotaev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox