summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorAlexey Kuznetsov <kuznet@ms2.inr.ac.ru>2006-04-17 15:39:23 +0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-04-17 18:40:40 -0700
commita9a5cd5d2a57fb76dbae2115450f777b69beccf7 (patch)
tree510318d8bebb35bb2e1bdaeb7dba0baf9bb073cd /ipc
parent69cf0fac6052c5bd3fb3469a41d4216e926028f8 (diff)
downloadop-kernel-dev-a9a5cd5d2a57fb76dbae2115450f777b69beccf7.zip
op-kernel-dev-a9a5cd5d2a57fb76dbae2115450f777b69beccf7.tar.gz
[PATCH] IPC: access to unmapped vmalloc area in grow_ary()
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> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/util.c b/ipc/util.c
index 5e785a2..b3dcfad 100644
--- a/ipc/util.c
+++ b/ipc/util.c
@@ -183,8 +183,7 @@ static int grow_ary(struct ipc_ids* ids, int newsize)
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;
}
OpenPOWER on IntegriCloud