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 <linux/proc_ns.h>
20 #include <linux/uaccess.h>
21 #include <linux/sched.h>
25 DEFINE_SPINLOCK(mq_lock
);
28 * The next 2 defines are here bc this is the only file
29 * compiled when either CONFIG_SYSVIPC and CONFIG_POSIX_MQUEUE
30 * and not CONFIG_IPC_NS.
32 struct ipc_namespace init_ipc_ns
= {
33 .count
= ATOMIC_INIT(1),
34 .user_ns
= &init_user_ns
,
35 .ns
.inum
= PROC_IPC_INIT_INO
,
37 .ns
.ops
= &ipcns_operations
,
41 atomic_t nr_ipc_ns
= ATOMIC_INIT(1);
44 struct msg_msgseg
*next
;
45 /* the next part of the message follows immediately */
48 #define DATALEN_MSG ((size_t)PAGE_SIZE-sizeof(struct msg_msg))
49 #define DATALEN_SEG ((size_t)PAGE_SIZE-sizeof(struct msg_msgseg))
52 static struct msg_msg
*alloc_msg(size_t len
)
55 struct msg_msgseg
**pseg
;
58 alen
= min(len
, DATALEN_MSG
);
59 msg
= kmalloc(sizeof(*msg
) + alen
, GFP_KERNEL
);
69 struct msg_msgseg
*seg
;
73 alen
= min(len
, DATALEN_SEG
);
74 seg
= kmalloc(sizeof(*seg
) + alen
, GFP_KERNEL
);
90 struct msg_msg
*load_msg(const void __user
*src
, size_t len
)
93 struct msg_msgseg
*seg
;
99 return ERR_PTR(-ENOMEM
);
101 alen
= min(len
, DATALEN_MSG
);
102 if (copy_from_user(msg
+ 1, src
, alen
))
105 for (seg
= msg
->next
; seg
!= NULL
; seg
= seg
->next
) {
107 src
= (char __user
*)src
+ alen
;
108 alen
= min(len
, DATALEN_SEG
);
109 if (copy_from_user(seg
+ 1, src
, alen
))
113 err
= security_msg_msg_alloc(msg
);
123 #ifdef CONFIG_CHECKPOINT_RESTORE
124 struct msg_msg
*copy_msg(struct msg_msg
*src
, struct msg_msg
*dst
)
126 struct msg_msgseg
*dst_pseg
, *src_pseg
;
127 size_t len
= src
->m_ts
;
130 if (src
->m_ts
> dst
->m_ts
)
131 return ERR_PTR(-EINVAL
);
133 alen
= min(len
, DATALEN_MSG
);
134 memcpy(dst
+ 1, src
+ 1, alen
);
136 for (dst_pseg
= dst
->next
, src_pseg
= src
->next
;
138 dst_pseg
= dst_pseg
->next
, src_pseg
= src_pseg
->next
) {
141 alen
= min(len
, DATALEN_SEG
);
142 memcpy(dst_pseg
+ 1, src_pseg
+ 1, alen
);
145 dst
->m_type
= src
->m_type
;
146 dst
->m_ts
= src
->m_ts
;
151 struct msg_msg
*copy_msg(struct msg_msg
*src
, struct msg_msg
*dst
)
153 return ERR_PTR(-ENOSYS
);
156 int store_msg(void __user
*dest
, struct msg_msg
*msg
, size_t len
)
159 struct msg_msgseg
*seg
;
161 alen
= min(len
, DATALEN_MSG
);
162 if (copy_to_user(dest
, msg
+ 1, alen
))
165 for (seg
= msg
->next
; seg
!= NULL
; seg
= seg
->next
) {
167 dest
= (char __user
*)dest
+ alen
;
168 alen
= min(len
, DATALEN_SEG
);
169 if (copy_to_user(dest
, seg
+ 1, alen
))
175 void free_msg(struct msg_msg
*msg
)
177 struct msg_msgseg
*seg
;
179 security_msg_msg_free(msg
);
183 while (seg
!= NULL
) {
184 struct msg_msgseg
*tmp
= seg
->next
;