3 * Copyright (C) 1999, 2004 Manfred Spraul
5 * This file is released under GNU General Public Licence version 2 or
6 * (at your option) any later version.
8 * See the file COPYING for more details.
11 #include <linux/spinlock.h>
12 #include <linux/init.h>
13 #include <linux/security.h>
14 #include <linux/slab.h>
15 #include <linux/ipc.h>
16 #include <linux/msg.h>
17 #include <linux/ipc_namespace.h>
18 #include <linux/utsname.h>
19 #include <asm/uaccess.h>
23 DEFINE_SPINLOCK(mq_lock);
26 * The next 2 defines are here bc this is the only file
27 * compiled when either CONFIG_SYSVIPC and CONFIG_POSIX_MQUEUE
28 * and not CONFIG_IPC_NS.
30 struct ipc_namespace init_ipc_ns = {
31 .count = ATOMIC_INIT(1),
32 .user_ns = &init_user_ns,
35 atomic_t nr_ipc_ns = ATOMIC_INIT(1);
38 struct msg_msgseg* next;
39 /* the next part of the message follows immediately */
42 #define DATALEN_MSG (PAGE_SIZE-sizeof(struct msg_msg))
43 #define DATALEN_SEG (PAGE_SIZE-sizeof(struct msg_msgseg))
45 struct msg_msg *load_msg(const void __user *src, int len)
48 struct msg_msgseg **pseg;
53 if (alen > DATALEN_MSG)
56 msg = kmalloc(sizeof(*msg) + alen, GFP_KERNEL);
58 return ERR_PTR(-ENOMEM);
63 if (copy_from_user(msg + 1, src, alen)) {
69 src = ((char __user *)src) + alen;
72 struct msg_msgseg *seg;
74 if (alen > DATALEN_SEG)
76 seg = kmalloc(sizeof(*seg) + alen,
84 if (copy_from_user(seg + 1, src, alen)) {
90 src = ((char __user *)src) + alen;
93 err = security_msg_msg_alloc(msg);
104 int store_msg(void __user *dest, struct msg_msg *msg, int len)
107 struct msg_msgseg *seg;
110 if (alen > DATALEN_MSG)
112 if (copy_to_user(dest, msg + 1, alen))
116 dest = ((char __user *)dest) + alen;
120 if (alen > DATALEN_SEG)
122 if (copy_to_user(dest, seg + 1, alen))
125 dest = ((char __user *)dest) + alen;
131 void free_msg(struct msg_msg *msg)
133 struct msg_msgseg *seg;
135 security_msg_msg_free(msg);
139 while (seg != NULL) {
140 struct msg_msgseg *tmp = seg->next;