]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/ipc/shm.c | |
3 | * Copyright (C) 1992, 1993 Krishna Balasubramanian | |
4 | * Many improvements/fixes by Bruno Haible. | |
5 | * Replaced `struct shm_desc' by `struct vm_area_struct', July 1994. | |
6 | * Fixed the shm swap deallocation (shm_unuse()), August 1998 Andrea Arcangeli. | |
7 | * | |
8 | * /proc/sysvipc/shm support (c) 1999 Dragos Acostachioaie <[email protected]> | |
9 | * BIGMEM support, Andrea Arcangeli <[email protected]> | |
10 | * SMP thread shm, Jean-Luc Boyard <[email protected]> | |
11 | * HIGHMEM support, Ingo Molnar <[email protected]> | |
12 | * Make shmmax, shmall, shmmni sysctl'able, Christoph Rohland <[email protected]> | |
13 | * Shared /dev/zero support, Kanoj Sarcar <[email protected]> | |
14 | * Move the mm functionality over to mm/shmem.c, Christoph Rohland <[email protected]> | |
15 | * | |
073115d6 SG |
16 | * support for audit of ipc object properties and permission changes |
17 | * Dustin Kirkland <[email protected]> | |
4e982311 KK |
18 | * |
19 | * namespaces support | |
20 | * OpenVZ, SWsoft Inc. | |
21 | * Pavel Emelianov <[email protected]> | |
1da177e4 LT |
22 | */ |
23 | ||
1da177e4 LT |
24 | #include <linux/slab.h> |
25 | #include <linux/mm.h> | |
26 | #include <linux/hugetlb.h> | |
27 | #include <linux/shm.h> | |
28 | #include <linux/init.h> | |
29 | #include <linux/file.h> | |
30 | #include <linux/mman.h> | |
1da177e4 LT |
31 | #include <linux/shmem_fs.h> |
32 | #include <linux/security.h> | |
33 | #include <linux/syscalls.h> | |
34 | #include <linux/audit.h> | |
c59ede7b | 35 | #include <linux/capability.h> |
7d87e14c | 36 | #include <linux/ptrace.h> |
19b4946c | 37 | #include <linux/seq_file.h> |
5f921ae9 | 38 | #include <linux/mutex.h> |
4e982311 | 39 | #include <linux/nsproxy.h> |
7d87e14c | 40 | |
1da177e4 LT |
41 | #include <asm/uaccess.h> |
42 | ||
43 | #include "util.h" | |
44 | ||
1da177e4 LT |
45 | static struct file_operations shm_file_operations; |
46 | static struct vm_operations_struct shm_vm_ops; | |
47 | ||
4e982311 KK |
48 | static struct ipc_ids init_shm_ids; |
49 | ||
50 | #define shm_ids(ns) (*((ns)->ids[IPC_SHM_IDS])) | |
1da177e4 | 51 | |
4e982311 KK |
52 | #define shm_lock(ns, id) \ |
53 | ((struct shmid_kernel*)ipc_lock(&shm_ids(ns),id)) | |
54 | #define shm_unlock(shp) \ | |
55 | ipc_unlock(&(shp)->shm_perm) | |
56 | #define shm_get(ns, id) \ | |
57 | ((struct shmid_kernel*)ipc_get(&shm_ids(ns),id)) | |
58 | #define shm_buildid(ns, id, seq) \ | |
59 | ipc_buildid(&shm_ids(ns), id, seq) | |
1da177e4 | 60 | |
4e982311 KK |
61 | static int newseg (struct ipc_namespace *ns, key_t key, |
62 | int shmflg, size_t size); | |
1da177e4 LT |
63 | static void shm_open (struct vm_area_struct *shmd); |
64 | static void shm_close (struct vm_area_struct *shmd); | |
4e982311 | 65 | static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp); |
1da177e4 | 66 | #ifdef CONFIG_PROC_FS |
19b4946c | 67 | static int sysvipc_shm_proc_show(struct seq_file *s, void *it); |
1da177e4 LT |
68 | #endif |
69 | ||
4e982311 KK |
70 | static void __ipc_init __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids) |
71 | { | |
72 | ns->ids[IPC_SHM_IDS] = ids; | |
73 | ns->shm_ctlmax = SHMMAX; | |
74 | ns->shm_ctlall = SHMALL; | |
75 | ns->shm_ctlmni = SHMMNI; | |
76 | ns->shm_tot = 0; | |
77 | ipc_init_ids(ids, 1); | |
78 | } | |
79 | ||
80 | static void do_shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *shp) | |
81 | { | |
82 | if (shp->shm_nattch){ | |
83 | shp->shm_perm.mode |= SHM_DEST; | |
84 | /* Do not find it any more */ | |
85 | shp->shm_perm.key = IPC_PRIVATE; | |
86 | shm_unlock(shp); | |
87 | } else | |
88 | shm_destroy(ns, shp); | |
89 | } | |
90 | ||
91 | #ifdef CONFIG_IPC_NS | |
92 | int shm_init_ns(struct ipc_namespace *ns) | |
93 | { | |
94 | struct ipc_ids *ids; | |
95 | ||
96 | ids = kmalloc(sizeof(struct ipc_ids), GFP_KERNEL); | |
97 | if (ids == NULL) | |
98 | return -ENOMEM; | |
1da177e4 | 99 | |
4e982311 KK |
100 | __shm_init_ns(ns, ids); |
101 | return 0; | |
102 | } | |
103 | ||
104 | void shm_exit_ns(struct ipc_namespace *ns) | |
105 | { | |
106 | int i; | |
107 | struct shmid_kernel *shp; | |
108 | ||
109 | mutex_lock(&shm_ids(ns).mutex); | |
110 | for (i = 0; i <= shm_ids(ns).max_id; i++) { | |
111 | shp = shm_lock(ns, i); | |
112 | if (shp == NULL) | |
113 | continue; | |
114 | ||
115 | do_shm_rmid(ns, shp); | |
116 | } | |
117 | mutex_unlock(&shm_ids(ns).mutex); | |
118 | ||
119 | kfree(ns->ids[IPC_SHM_IDS]); | |
120 | ns->ids[IPC_SHM_IDS] = NULL; | |
121 | } | |
122 | #endif | |
1da177e4 LT |
123 | |
124 | void __init shm_init (void) | |
125 | { | |
4e982311 | 126 | __shm_init_ns(&init_ipc_ns, &init_shm_ids); |
19b4946c MW |
127 | ipc_init_proc_interface("sysvipc/shm", |
128 | " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n", | |
4e982311 | 129 | IPC_SHM_IDS, sysvipc_shm_proc_show); |
1da177e4 LT |
130 | } |
131 | ||
4e982311 KK |
132 | static inline int shm_checkid(struct ipc_namespace *ns, |
133 | struct shmid_kernel *s, int id) | |
1da177e4 | 134 | { |
4e982311 | 135 | if (ipc_checkid(&shm_ids(ns), &s->shm_perm, id)) |
1da177e4 LT |
136 | return -EIDRM; |
137 | return 0; | |
138 | } | |
139 | ||
4e982311 | 140 | static inline struct shmid_kernel *shm_rmid(struct ipc_namespace *ns, int id) |
1da177e4 | 141 | { |
4e982311 | 142 | return (struct shmid_kernel *)ipc_rmid(&shm_ids(ns), id); |
1da177e4 LT |
143 | } |
144 | ||
4e982311 | 145 | static inline int shm_addid(struct ipc_namespace *ns, struct shmid_kernel *shp) |
1da177e4 | 146 | { |
4e982311 | 147 | return ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni); |
1da177e4 LT |
148 | } |
149 | ||
150 | ||
151 | ||
4e982311 KK |
152 | static inline void shm_inc(struct ipc_namespace *ns, int id) |
153 | { | |
1da177e4 LT |
154 | struct shmid_kernel *shp; |
155 | ||
4e982311 | 156 | shp = shm_lock(ns, id); |
9ba025f1 | 157 | BUG_ON(!shp); |
1da177e4 LT |
158 | shp->shm_atim = get_seconds(); |
159 | shp->shm_lprid = current->tgid; | |
160 | shp->shm_nattch++; | |
161 | shm_unlock(shp); | |
162 | } | |
163 | ||
4e982311 KK |
164 | #define shm_file_ns(file) (*((struct ipc_namespace **)&(file)->private_data)) |
165 | ||
1da177e4 | 166 | /* This is called by fork, once for every shm attach. */ |
4e982311 | 167 | static void shm_open(struct vm_area_struct *shmd) |
1da177e4 | 168 | { |
4e982311 KK |
169 | shm_inc(shm_file_ns(shmd->vm_file), |
170 | shmd->vm_file->f_dentry->d_inode->i_ino); | |
1da177e4 LT |
171 | } |
172 | ||
173 | /* | |
174 | * shm_destroy - free the struct shmid_kernel | |
175 | * | |
176 | * @shp: struct to free | |
177 | * | |
5f921ae9 | 178 | * It has to be called with shp and shm_ids.mutex locked, |
1da177e4 LT |
179 | * but returns with shp unlocked and freed. |
180 | */ | |
4e982311 | 181 | static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp) |
1da177e4 | 182 | { |
4e982311 KK |
183 | ns->shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT; |
184 | shm_rmid(ns, shp->id); | |
1da177e4 LT |
185 | shm_unlock(shp); |
186 | if (!is_file_hugepages(shp->shm_file)) | |
187 | shmem_lock(shp->shm_file, 0, shp->mlock_user); | |
188 | else | |
189 | user_shm_unlock(shp->shm_file->f_dentry->d_inode->i_size, | |
190 | shp->mlock_user); | |
191 | fput (shp->shm_file); | |
192 | security_shm_free(shp); | |
193 | ipc_rcu_putref(shp); | |
194 | } | |
195 | ||
196 | /* | |
197 | * remove the attach descriptor shmd. | |
198 | * free memory for segment if it is marked destroyed. | |
199 | * The descriptor has already been removed from the current->mm->mmap list | |
200 | * and will later be kfree()d. | |
201 | */ | |
202 | static void shm_close (struct vm_area_struct *shmd) | |
203 | { | |
204 | struct file * file = shmd->vm_file; | |
205 | int id = file->f_dentry->d_inode->i_ino; | |
206 | struct shmid_kernel *shp; | |
4e982311 | 207 | struct ipc_namespace *ns; |
1da177e4 | 208 | |
4e982311 KK |
209 | ns = shm_file_ns(file); |
210 | ||
211 | mutex_lock(&shm_ids(ns).mutex); | |
1da177e4 | 212 | /* remove from the list of attaches of the shm segment */ |
4e982311 | 213 | shp = shm_lock(ns, id); |
9ba025f1 | 214 | BUG_ON(!shp); |
1da177e4 LT |
215 | shp->shm_lprid = current->tgid; |
216 | shp->shm_dtim = get_seconds(); | |
217 | shp->shm_nattch--; | |
218 | if(shp->shm_nattch == 0 && | |
b33291c0 | 219 | shp->shm_perm.mode & SHM_DEST) |
4e982311 | 220 | shm_destroy(ns, shp); |
1da177e4 LT |
221 | else |
222 | shm_unlock(shp); | |
4e982311 | 223 | mutex_unlock(&shm_ids(ns).mutex); |
1da177e4 LT |
224 | } |
225 | ||
226 | static int shm_mmap(struct file * file, struct vm_area_struct * vma) | |
227 | { | |
b0e15190 DH |
228 | int ret; |
229 | ||
230 | ret = shmem_mmap(file, vma); | |
231 | if (ret == 0) { | |
232 | vma->vm_ops = &shm_vm_ops; | |
b78b6af6 HD |
233 | if (!(vma->vm_flags & VM_WRITE)) |
234 | vma->vm_flags &= ~VM_MAYWRITE; | |
4e982311 | 235 | shm_inc(shm_file_ns(file), file->f_dentry->d_inode->i_ino); |
b0e15190 DH |
236 | } |
237 | ||
238 | return ret; | |
1da177e4 LT |
239 | } |
240 | ||
4e982311 KK |
241 | static int shm_release(struct inode *ino, struct file *file) |
242 | { | |
243 | struct ipc_namespace *ns; | |
244 | ||
245 | ns = shm_file_ns(file); | |
246 | put_ipc_ns(ns); | |
247 | shm_file_ns(file) = NULL; | |
248 | return 0; | |
249 | } | |
250 | ||
1da177e4 | 251 | static struct file_operations shm_file_operations = { |
4e982311 KK |
252 | .mmap = shm_mmap, |
253 | .release = shm_release, | |
b0e15190 DH |
254 | #ifndef CONFIG_MMU |
255 | .get_unmapped_area = shmem_get_unmapped_area, | |
256 | #endif | |
1da177e4 LT |
257 | }; |
258 | ||
259 | static struct vm_operations_struct shm_vm_ops = { | |
260 | .open = shm_open, /* callback for a new vm-area open */ | |
261 | .close = shm_close, /* callback for when the vm-area is released */ | |
262 | .nopage = shmem_nopage, | |
6ade43fb | 263 | #if defined(CONFIG_NUMA) && defined(CONFIG_SHMEM) |
1da177e4 LT |
264 | .set_policy = shmem_set_policy, |
265 | .get_policy = shmem_get_policy, | |
266 | #endif | |
267 | }; | |
268 | ||
4e982311 | 269 | static int newseg (struct ipc_namespace *ns, key_t key, int shmflg, size_t size) |
1da177e4 LT |
270 | { |
271 | int error; | |
272 | struct shmid_kernel *shp; | |
273 | int numpages = (size + PAGE_SIZE -1) >> PAGE_SHIFT; | |
274 | struct file * file; | |
275 | char name[13]; | |
276 | int id; | |
277 | ||
4e982311 | 278 | if (size < SHMMIN || size > ns->shm_ctlmax) |
1da177e4 LT |
279 | return -EINVAL; |
280 | ||
4e982311 | 281 | if (ns->shm_tot + numpages >= ns->shm_ctlall) |
1da177e4 LT |
282 | return -ENOSPC; |
283 | ||
284 | shp = ipc_rcu_alloc(sizeof(*shp)); | |
285 | if (!shp) | |
286 | return -ENOMEM; | |
287 | ||
288 | shp->shm_perm.key = key; | |
b33291c0 | 289 | shp->shm_perm.mode = (shmflg & S_IRWXUGO); |
1da177e4 LT |
290 | shp->mlock_user = NULL; |
291 | ||
292 | shp->shm_perm.security = NULL; | |
293 | error = security_shm_alloc(shp); | |
294 | if (error) { | |
295 | ipc_rcu_putref(shp); | |
296 | return error; | |
297 | } | |
298 | ||
299 | if (shmflg & SHM_HUGETLB) { | |
300 | /* hugetlb_zero_setup takes care of mlock user accounting */ | |
301 | file = hugetlb_zero_setup(size); | |
302 | shp->mlock_user = current->user; | |
303 | } else { | |
bf8f972d BP |
304 | int acctflag = VM_ACCOUNT; |
305 | /* | |
306 | * Do not allow no accounting for OVERCOMMIT_NEVER, even | |
307 | * if it's asked for. | |
308 | */ | |
309 | if ((shmflg & SHM_NORESERVE) && | |
310 | sysctl_overcommit_memory != OVERCOMMIT_NEVER) | |
311 | acctflag = 0; | |
1da177e4 | 312 | sprintf (name, "SYSV%08x", key); |
bf8f972d | 313 | file = shmem_file_setup(name, size, acctflag); |
1da177e4 LT |
314 | } |
315 | error = PTR_ERR(file); | |
316 | if (IS_ERR(file)) | |
317 | goto no_file; | |
318 | ||
319 | error = -ENOSPC; | |
4e982311 | 320 | id = shm_addid(ns, shp); |
1da177e4 LT |
321 | if(id == -1) |
322 | goto no_id; | |
323 | ||
324 | shp->shm_cprid = current->tgid; | |
325 | shp->shm_lprid = 0; | |
326 | shp->shm_atim = shp->shm_dtim = 0; | |
327 | shp->shm_ctim = get_seconds(); | |
328 | shp->shm_segsz = size; | |
329 | shp->shm_nattch = 0; | |
4e982311 | 330 | shp->id = shm_buildid(ns, id, shp->shm_perm.seq); |
1da177e4 LT |
331 | shp->shm_file = file; |
332 | file->f_dentry->d_inode->i_ino = shp->id; | |
551110a9 | 333 | |
4e982311 KK |
334 | shm_file_ns(file) = get_ipc_ns(ns); |
335 | ||
551110a9 K |
336 | /* Hugetlb ops would have already been assigned. */ |
337 | if (!(shmflg & SHM_HUGETLB)) | |
1da177e4 | 338 | file->f_op = &shm_file_operations; |
551110a9 | 339 | |
4e982311 | 340 | ns->shm_tot += numpages; |
1da177e4 LT |
341 | shm_unlock(shp); |
342 | return shp->id; | |
343 | ||
344 | no_id: | |
345 | fput(file); | |
346 | no_file: | |
347 | security_shm_free(shp); | |
348 | ipc_rcu_putref(shp); | |
349 | return error; | |
350 | } | |
351 | ||
352 | asmlinkage long sys_shmget (key_t key, size_t size, int shmflg) | |
353 | { | |
354 | struct shmid_kernel *shp; | |
355 | int err, id = 0; | |
4e982311 KK |
356 | struct ipc_namespace *ns; |
357 | ||
358 | ns = current->nsproxy->ipc_ns; | |
1da177e4 | 359 | |
4e982311 | 360 | mutex_lock(&shm_ids(ns).mutex); |
1da177e4 | 361 | if (key == IPC_PRIVATE) { |
4e982311 KK |
362 | err = newseg(ns, key, shmflg, size); |
363 | } else if ((id = ipc_findkey(&shm_ids(ns), key)) == -1) { | |
1da177e4 LT |
364 | if (!(shmflg & IPC_CREAT)) |
365 | err = -ENOENT; | |
366 | else | |
4e982311 | 367 | err = newseg(ns, key, shmflg, size); |
1da177e4 LT |
368 | } else if ((shmflg & IPC_CREAT) && (shmflg & IPC_EXCL)) { |
369 | err = -EEXIST; | |
370 | } else { | |
4e982311 | 371 | shp = shm_lock(ns, id); |
9ba025f1 | 372 | BUG_ON(shp==NULL); |
1da177e4 LT |
373 | if (shp->shm_segsz < size) |
374 | err = -EINVAL; | |
375 | else if (ipcperms(&shp->shm_perm, shmflg)) | |
376 | err = -EACCES; | |
377 | else { | |
4e982311 | 378 | int shmid = shm_buildid(ns, id, shp->shm_perm.seq); |
1da177e4 LT |
379 | err = security_shm_associate(shp, shmflg); |
380 | if (!err) | |
381 | err = shmid; | |
382 | } | |
383 | shm_unlock(shp); | |
384 | } | |
4e982311 | 385 | mutex_unlock(&shm_ids(ns).mutex); |
1da177e4 LT |
386 | |
387 | return err; | |
388 | } | |
389 | ||
390 | static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version) | |
391 | { | |
392 | switch(version) { | |
393 | case IPC_64: | |
394 | return copy_to_user(buf, in, sizeof(*in)); | |
395 | case IPC_OLD: | |
396 | { | |
397 | struct shmid_ds out; | |
398 | ||
399 | ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm); | |
400 | out.shm_segsz = in->shm_segsz; | |
401 | out.shm_atime = in->shm_atime; | |
402 | out.shm_dtime = in->shm_dtime; | |
403 | out.shm_ctime = in->shm_ctime; | |
404 | out.shm_cpid = in->shm_cpid; | |
405 | out.shm_lpid = in->shm_lpid; | |
406 | out.shm_nattch = in->shm_nattch; | |
407 | ||
408 | return copy_to_user(buf, &out, sizeof(out)); | |
409 | } | |
410 | default: | |
411 | return -EINVAL; | |
412 | } | |
413 | } | |
414 | ||
415 | struct shm_setbuf { | |
416 | uid_t uid; | |
417 | gid_t gid; | |
418 | mode_t mode; | |
419 | }; | |
420 | ||
421 | static inline unsigned long copy_shmid_from_user(struct shm_setbuf *out, void __user *buf, int version) | |
422 | { | |
423 | switch(version) { | |
424 | case IPC_64: | |
425 | { | |
426 | struct shmid64_ds tbuf; | |
427 | ||
428 | if (copy_from_user(&tbuf, buf, sizeof(tbuf))) | |
429 | return -EFAULT; | |
430 | ||
431 | out->uid = tbuf.shm_perm.uid; | |
432 | out->gid = tbuf.shm_perm.gid; | |
b33291c0 | 433 | out->mode = tbuf.shm_perm.mode; |
1da177e4 LT |
434 | |
435 | return 0; | |
436 | } | |
437 | case IPC_OLD: | |
438 | { | |
439 | struct shmid_ds tbuf_old; | |
440 | ||
441 | if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old))) | |
442 | return -EFAULT; | |
443 | ||
444 | out->uid = tbuf_old.shm_perm.uid; | |
445 | out->gid = tbuf_old.shm_perm.gid; | |
b33291c0 | 446 | out->mode = tbuf_old.shm_perm.mode; |
1da177e4 LT |
447 | |
448 | return 0; | |
449 | } | |
450 | default: | |
451 | return -EINVAL; | |
452 | } | |
453 | } | |
454 | ||
455 | static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version) | |
456 | { | |
457 | switch(version) { | |
458 | case IPC_64: | |
459 | return copy_to_user(buf, in, sizeof(*in)); | |
460 | case IPC_OLD: | |
461 | { | |
462 | struct shminfo out; | |
463 | ||
464 | if(in->shmmax > INT_MAX) | |
465 | out.shmmax = INT_MAX; | |
466 | else | |
467 | out.shmmax = (int)in->shmmax; | |
468 | ||
469 | out.shmmin = in->shmmin; | |
470 | out.shmmni = in->shmmni; | |
471 | out.shmseg = in->shmseg; | |
472 | out.shmall = in->shmall; | |
473 | ||
474 | return copy_to_user(buf, &out, sizeof(out)); | |
475 | } | |
476 | default: | |
477 | return -EINVAL; | |
478 | } | |
479 | } | |
480 | ||
4e982311 KK |
481 | static void shm_get_stat(struct ipc_namespace *ns, unsigned long *rss, |
482 | unsigned long *swp) | |
1da177e4 LT |
483 | { |
484 | int i; | |
485 | ||
486 | *rss = 0; | |
487 | *swp = 0; | |
488 | ||
4e982311 | 489 | for (i = 0; i <= shm_ids(ns).max_id; i++) { |
1da177e4 LT |
490 | struct shmid_kernel *shp; |
491 | struct inode *inode; | |
492 | ||
4e982311 | 493 | shp = shm_get(ns, i); |
1da177e4 LT |
494 | if(!shp) |
495 | continue; | |
496 | ||
497 | inode = shp->shm_file->f_dentry->d_inode; | |
498 | ||
499 | if (is_file_hugepages(shp->shm_file)) { | |
500 | struct address_space *mapping = inode->i_mapping; | |
501 | *rss += (HPAGE_SIZE/PAGE_SIZE)*mapping->nrpages; | |
502 | } else { | |
503 | struct shmem_inode_info *info = SHMEM_I(inode); | |
504 | spin_lock(&info->lock); | |
505 | *rss += inode->i_mapping->nrpages; | |
506 | *swp += info->swapped; | |
507 | spin_unlock(&info->lock); | |
508 | } | |
509 | } | |
510 | } | |
511 | ||
512 | asmlinkage long sys_shmctl (int shmid, int cmd, struct shmid_ds __user *buf) | |
513 | { | |
514 | struct shm_setbuf setbuf; | |
515 | struct shmid_kernel *shp; | |
516 | int err, version; | |
4e982311 | 517 | struct ipc_namespace *ns; |
1da177e4 LT |
518 | |
519 | if (cmd < 0 || shmid < 0) { | |
520 | err = -EINVAL; | |
521 | goto out; | |
522 | } | |
523 | ||
524 | version = ipc_parse_version(&cmd); | |
4e982311 | 525 | ns = current->nsproxy->ipc_ns; |
1da177e4 LT |
526 | |
527 | switch (cmd) { /* replace with proc interface ? */ | |
528 | case IPC_INFO: | |
529 | { | |
530 | struct shminfo64 shminfo; | |
531 | ||
532 | err = security_shm_shmctl(NULL, cmd); | |
533 | if (err) | |
534 | return err; | |
535 | ||
536 | memset(&shminfo,0,sizeof(shminfo)); | |
4e982311 KK |
537 | shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni; |
538 | shminfo.shmmax = ns->shm_ctlmax; | |
539 | shminfo.shmall = ns->shm_ctlall; | |
1da177e4 LT |
540 | |
541 | shminfo.shmmin = SHMMIN; | |
542 | if(copy_shminfo_to_user (buf, &shminfo, version)) | |
543 | return -EFAULT; | |
544 | /* reading a integer is always atomic */ | |
4e982311 | 545 | err= shm_ids(ns).max_id; |
1da177e4 LT |
546 | if(err<0) |
547 | err = 0; | |
548 | goto out; | |
549 | } | |
550 | case SHM_INFO: | |
551 | { | |
552 | struct shm_info shm_info; | |
553 | ||
554 | err = security_shm_shmctl(NULL, cmd); | |
555 | if (err) | |
556 | return err; | |
557 | ||
558 | memset(&shm_info,0,sizeof(shm_info)); | |
4e982311 KK |
559 | mutex_lock(&shm_ids(ns).mutex); |
560 | shm_info.used_ids = shm_ids(ns).in_use; | |
561 | shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp); | |
562 | shm_info.shm_tot = ns->shm_tot; | |
1da177e4 LT |
563 | shm_info.swap_attempts = 0; |
564 | shm_info.swap_successes = 0; | |
4e982311 KK |
565 | err = shm_ids(ns).max_id; |
566 | mutex_unlock(&shm_ids(ns).mutex); | |
1da177e4 LT |
567 | if(copy_to_user (buf, &shm_info, sizeof(shm_info))) { |
568 | err = -EFAULT; | |
569 | goto out; | |
570 | } | |
571 | ||
572 | err = err < 0 ? 0 : err; | |
573 | goto out; | |
574 | } | |
575 | case SHM_STAT: | |
576 | case IPC_STAT: | |
577 | { | |
578 | struct shmid64_ds tbuf; | |
579 | int result; | |
580 | memset(&tbuf, 0, sizeof(tbuf)); | |
4e982311 | 581 | shp = shm_lock(ns, shmid); |
1da177e4 LT |
582 | if(shp==NULL) { |
583 | err = -EINVAL; | |
584 | goto out; | |
585 | } else if(cmd==SHM_STAT) { | |
586 | err = -EINVAL; | |
4e982311 | 587 | if (shmid > shm_ids(ns).max_id) |
1da177e4 | 588 | goto out_unlock; |
4e982311 | 589 | result = shm_buildid(ns, shmid, shp->shm_perm.seq); |
1da177e4 | 590 | } else { |
4e982311 | 591 | err = shm_checkid(ns, shp,shmid); |
1da177e4 LT |
592 | if(err) |
593 | goto out_unlock; | |
594 | result = 0; | |
595 | } | |
596 | err=-EACCES; | |
597 | if (ipcperms (&shp->shm_perm, S_IRUGO)) | |
598 | goto out_unlock; | |
599 | err = security_shm_shmctl(shp, cmd); | |
600 | if (err) | |
601 | goto out_unlock; | |
602 | kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm); | |
603 | tbuf.shm_segsz = shp->shm_segsz; | |
604 | tbuf.shm_atime = shp->shm_atim; | |
605 | tbuf.shm_dtime = shp->shm_dtim; | |
606 | tbuf.shm_ctime = shp->shm_ctim; | |
607 | tbuf.shm_cpid = shp->shm_cprid; | |
608 | tbuf.shm_lpid = shp->shm_lprid; | |
609 | if (!is_file_hugepages(shp->shm_file)) | |
610 | tbuf.shm_nattch = shp->shm_nattch; | |
611 | else | |
612 | tbuf.shm_nattch = file_count(shp->shm_file) - 1; | |
613 | shm_unlock(shp); | |
614 | if(copy_shmid_to_user (buf, &tbuf, version)) | |
615 | err = -EFAULT; | |
616 | else | |
617 | err = result; | |
618 | goto out; | |
619 | } | |
620 | case SHM_LOCK: | |
621 | case SHM_UNLOCK: | |
622 | { | |
4e982311 | 623 | shp = shm_lock(ns, shmid); |
1da177e4 LT |
624 | if(shp==NULL) { |
625 | err = -EINVAL; | |
626 | goto out; | |
627 | } | |
4e982311 | 628 | err = shm_checkid(ns, shp,shmid); |
1da177e4 LT |
629 | if(err) |
630 | goto out_unlock; | |
631 | ||
073115d6 SG |
632 | err = audit_ipc_obj(&(shp->shm_perm)); |
633 | if (err) | |
634 | goto out_unlock; | |
635 | ||
1da177e4 LT |
636 | if (!capable(CAP_IPC_LOCK)) { |
637 | err = -EPERM; | |
638 | if (current->euid != shp->shm_perm.uid && | |
639 | current->euid != shp->shm_perm.cuid) | |
640 | goto out_unlock; | |
641 | if (cmd == SHM_LOCK && | |
642 | !current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur) | |
643 | goto out_unlock; | |
644 | } | |
645 | ||
646 | err = security_shm_shmctl(shp, cmd); | |
647 | if (err) | |
648 | goto out_unlock; | |
649 | ||
650 | if(cmd==SHM_LOCK) { | |
651 | struct user_struct * user = current->user; | |
652 | if (!is_file_hugepages(shp->shm_file)) { | |
653 | err = shmem_lock(shp->shm_file, 1, user); | |
654 | if (!err) { | |
b33291c0 | 655 | shp->shm_perm.mode |= SHM_LOCKED; |
1da177e4 LT |
656 | shp->mlock_user = user; |
657 | } | |
658 | } | |
659 | } else if (!is_file_hugepages(shp->shm_file)) { | |
660 | shmem_lock(shp->shm_file, 0, shp->mlock_user); | |
b33291c0 | 661 | shp->shm_perm.mode &= ~SHM_LOCKED; |
1da177e4 LT |
662 | shp->mlock_user = NULL; |
663 | } | |
664 | shm_unlock(shp); | |
665 | goto out; | |
666 | } | |
667 | case IPC_RMID: | |
668 | { | |
669 | /* | |
670 | * We cannot simply remove the file. The SVID states | |
671 | * that the block remains until the last person | |
672 | * detaches from it, then is deleted. A shmat() on | |
673 | * an RMID segment is legal in older Linux and if | |
674 | * we change it apps break... | |
675 | * | |
676 | * Instead we set a destroyed flag, and then blow | |
677 | * the name away when the usage hits zero. | |
678 | */ | |
4e982311 KK |
679 | mutex_lock(&shm_ids(ns).mutex); |
680 | shp = shm_lock(ns, shmid); | |
1da177e4 LT |
681 | err = -EINVAL; |
682 | if (shp == NULL) | |
683 | goto out_up; | |
4e982311 | 684 | err = shm_checkid(ns, shp, shmid); |
1da177e4 LT |
685 | if(err) |
686 | goto out_unlock_up; | |
687 | ||
073115d6 SG |
688 | err = audit_ipc_obj(&(shp->shm_perm)); |
689 | if (err) | |
690 | goto out_unlock_up; | |
691 | ||
1da177e4 LT |
692 | if (current->euid != shp->shm_perm.uid && |
693 | current->euid != shp->shm_perm.cuid && | |
694 | !capable(CAP_SYS_ADMIN)) { | |
695 | err=-EPERM; | |
696 | goto out_unlock_up; | |
697 | } | |
698 | ||
699 | err = security_shm_shmctl(shp, cmd); | |
700 | if (err) | |
701 | goto out_unlock_up; | |
702 | ||
4e982311 KK |
703 | do_shm_rmid(ns, shp); |
704 | mutex_unlock(&shm_ids(ns).mutex); | |
1da177e4 LT |
705 | goto out; |
706 | } | |
707 | ||
708 | case IPC_SET: | |
709 | { | |
710 | if (copy_shmid_from_user (&setbuf, buf, version)) { | |
711 | err = -EFAULT; | |
712 | goto out; | |
713 | } | |
4e982311 KK |
714 | mutex_lock(&shm_ids(ns).mutex); |
715 | shp = shm_lock(ns, shmid); | |
1da177e4 LT |
716 | err=-EINVAL; |
717 | if(shp==NULL) | |
718 | goto out_up; | |
4e982311 | 719 | err = shm_checkid(ns, shp,shmid); |
1da177e4 LT |
720 | if(err) |
721 | goto out_unlock_up; | |
073115d6 SG |
722 | err = audit_ipc_obj(&(shp->shm_perm)); |
723 | if (err) | |
724 | goto out_unlock_up; | |
ac03221a | 725 | err = audit_ipc_set_perm(0, setbuf.uid, setbuf.gid, setbuf.mode); |
073115d6 SG |
726 | if (err) |
727 | goto out_unlock_up; | |
1da177e4 LT |
728 | err=-EPERM; |
729 | if (current->euid != shp->shm_perm.uid && | |
730 | current->euid != shp->shm_perm.cuid && | |
731 | !capable(CAP_SYS_ADMIN)) { | |
732 | goto out_unlock_up; | |
733 | } | |
734 | ||
735 | err = security_shm_shmctl(shp, cmd); | |
736 | if (err) | |
737 | goto out_unlock_up; | |
738 | ||
739 | shp->shm_perm.uid = setbuf.uid; | |
740 | shp->shm_perm.gid = setbuf.gid; | |
b33291c0 | 741 | shp->shm_perm.mode = (shp->shm_perm.mode & ~S_IRWXUGO) |
1da177e4 LT |
742 | | (setbuf.mode & S_IRWXUGO); |
743 | shp->shm_ctim = get_seconds(); | |
744 | break; | |
745 | } | |
746 | ||
747 | default: | |
748 | err = -EINVAL; | |
749 | goto out; | |
750 | } | |
751 | ||
752 | err = 0; | |
753 | out_unlock_up: | |
754 | shm_unlock(shp); | |
755 | out_up: | |
4e982311 | 756 | mutex_unlock(&shm_ids(ns).mutex); |
1da177e4 LT |
757 | goto out; |
758 | out_unlock: | |
759 | shm_unlock(shp); | |
760 | out: | |
761 | return err; | |
762 | } | |
763 | ||
764 | /* | |
765 | * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists. | |
766 | * | |
767 | * NOTE! Despite the name, this is NOT a direct system call entrypoint. The | |
768 | * "raddr" thing points to kernel space, and there has to be a wrapper around | |
769 | * this. | |
770 | */ | |
771 | long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr) | |
772 | { | |
773 | struct shmid_kernel *shp; | |
774 | unsigned long addr; | |
775 | unsigned long size; | |
776 | struct file * file; | |
777 | int err; | |
778 | unsigned long flags; | |
779 | unsigned long prot; | |
1da177e4 LT |
780 | int acc_mode; |
781 | void *user_addr; | |
4e982311 | 782 | struct ipc_namespace *ns; |
1da177e4 LT |
783 | |
784 | if (shmid < 0) { | |
785 | err = -EINVAL; | |
786 | goto out; | |
787 | } else if ((addr = (ulong)shmaddr)) { | |
788 | if (addr & (SHMLBA-1)) { | |
789 | if (shmflg & SHM_RND) | |
790 | addr &= ~(SHMLBA-1); /* round down */ | |
791 | else | |
792 | #ifndef __ARCH_FORCE_SHMLBA | |
793 | if (addr & ~PAGE_MASK) | |
794 | #endif | |
795 | return -EINVAL; | |
796 | } | |
797 | flags = MAP_SHARED | MAP_FIXED; | |
798 | } else { | |
799 | if ((shmflg & SHM_REMAP)) | |
800 | return -EINVAL; | |
801 | ||
802 | flags = MAP_SHARED; | |
803 | } | |
804 | ||
805 | if (shmflg & SHM_RDONLY) { | |
806 | prot = PROT_READ; | |
1da177e4 LT |
807 | acc_mode = S_IRUGO; |
808 | } else { | |
809 | prot = PROT_READ | PROT_WRITE; | |
1da177e4 LT |
810 | acc_mode = S_IRUGO | S_IWUGO; |
811 | } | |
812 | if (shmflg & SHM_EXEC) { | |
813 | prot |= PROT_EXEC; | |
814 | acc_mode |= S_IXUGO; | |
815 | } | |
816 | ||
817 | /* | |
818 | * We cannot rely on the fs check since SYSV IPC does have an | |
819 | * additional creator id... | |
820 | */ | |
4e982311 KK |
821 | ns = current->nsproxy->ipc_ns; |
822 | shp = shm_lock(ns, shmid); | |
1da177e4 LT |
823 | if(shp == NULL) { |
824 | err = -EINVAL; | |
825 | goto out; | |
826 | } | |
4e982311 | 827 | err = shm_checkid(ns, shp,shmid); |
1da177e4 LT |
828 | if (err) { |
829 | shm_unlock(shp); | |
830 | goto out; | |
831 | } | |
832 | if (ipcperms(&shp->shm_perm, acc_mode)) { | |
833 | shm_unlock(shp); | |
834 | err = -EACCES; | |
835 | goto out; | |
836 | } | |
837 | ||
838 | err = security_shm_shmat(shp, shmaddr, shmflg); | |
839 | if (err) { | |
840 | shm_unlock(shp); | |
841 | return err; | |
842 | } | |
843 | ||
844 | file = shp->shm_file; | |
845 | size = i_size_read(file->f_dentry->d_inode); | |
846 | shp->shm_nattch++; | |
847 | shm_unlock(shp); | |
848 | ||
849 | down_write(¤t->mm->mmap_sem); | |
850 | if (addr && !(shmflg & SHM_REMAP)) { | |
851 | user_addr = ERR_PTR(-EINVAL); | |
852 | if (find_vma_intersection(current->mm, addr, addr + size)) | |
853 | goto invalid; | |
854 | /* | |
855 | * If shm segment goes below stack, make sure there is some | |
856 | * space left for the stack to grow (at least 4 pages). | |
857 | */ | |
858 | if (addr < current->mm->start_stack && | |
859 | addr > current->mm->start_stack - size - PAGE_SIZE * 5) | |
860 | goto invalid; | |
861 | } | |
862 | ||
863 | user_addr = (void*) do_mmap (file, addr, size, prot, flags, 0); | |
864 | ||
865 | invalid: | |
866 | up_write(¤t->mm->mmap_sem); | |
867 | ||
4e982311 KK |
868 | mutex_lock(&shm_ids(ns).mutex); |
869 | shp = shm_lock(ns, shmid); | |
9ba025f1 | 870 | BUG_ON(!shp); |
1da177e4 LT |
871 | shp->shm_nattch--; |
872 | if(shp->shm_nattch == 0 && | |
b33291c0 | 873 | shp->shm_perm.mode & SHM_DEST) |
4e982311 | 874 | shm_destroy(ns, shp); |
1da177e4 LT |
875 | else |
876 | shm_unlock(shp); | |
4e982311 | 877 | mutex_unlock(&shm_ids(ns).mutex); |
1da177e4 LT |
878 | |
879 | *raddr = (unsigned long) user_addr; | |
880 | err = 0; | |
881 | if (IS_ERR(user_addr)) | |
882 | err = PTR_ERR(user_addr); | |
883 | out: | |
884 | return err; | |
885 | } | |
886 | ||
7d87e14c SR |
887 | asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg) |
888 | { | |
889 | unsigned long ret; | |
890 | long err; | |
891 | ||
892 | err = do_shmat(shmid, shmaddr, shmflg, &ret); | |
893 | if (err) | |
894 | return err; | |
895 | force_successful_syscall_return(); | |
896 | return (long)ret; | |
897 | } | |
898 | ||
1da177e4 LT |
899 | /* |
900 | * detach and kill segment if marked destroyed. | |
901 | * The work is done in shm_close. | |
902 | */ | |
903 | asmlinkage long sys_shmdt(char __user *shmaddr) | |
904 | { | |
905 | struct mm_struct *mm = current->mm; | |
906 | struct vm_area_struct *vma, *next; | |
907 | unsigned long addr = (unsigned long)shmaddr; | |
908 | loff_t size = 0; | |
909 | int retval = -EINVAL; | |
910 | ||
df1e2fb5 HD |
911 | if (addr & ~PAGE_MASK) |
912 | return retval; | |
913 | ||
1da177e4 LT |
914 | down_write(&mm->mmap_sem); |
915 | ||
916 | /* | |
917 | * This function tries to be smart and unmap shm segments that | |
918 | * were modified by partial mlock or munmap calls: | |
919 | * - It first determines the size of the shm segment that should be | |
920 | * unmapped: It searches for a vma that is backed by shm and that | |
921 | * started at address shmaddr. It records it's size and then unmaps | |
922 | * it. | |
923 | * - Then it unmaps all shm vmas that started at shmaddr and that | |
924 | * are within the initially determined size. | |
925 | * Errors from do_munmap are ignored: the function only fails if | |
926 | * it's called with invalid parameters or if it's called to unmap | |
927 | * a part of a vma. Both calls in this function are for full vmas, | |
928 | * the parameters are directly copied from the vma itself and always | |
929 | * valid - therefore do_munmap cannot fail. (famous last words?) | |
930 | */ | |
931 | /* | |
932 | * If it had been mremap()'d, the starting address would not | |
933 | * match the usual checks anyway. So assume all vma's are | |
934 | * above the starting address given. | |
935 | */ | |
936 | vma = find_vma(mm, addr); | |
937 | ||
938 | while (vma) { | |
939 | next = vma->vm_next; | |
940 | ||
941 | /* | |
942 | * Check if the starting address would match, i.e. it's | |
943 | * a fragment created by mprotect() and/or munmap(), or it | |
944 | * otherwise it starts at this address with no hassles. | |
945 | */ | |
946 | if ((vma->vm_ops == &shm_vm_ops || is_vm_hugetlb_page(vma)) && | |
947 | (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) { | |
948 | ||
949 | ||
950 | size = vma->vm_file->f_dentry->d_inode->i_size; | |
951 | do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start); | |
952 | /* | |
953 | * We discovered the size of the shm segment, so | |
954 | * break out of here and fall through to the next | |
955 | * loop that uses the size information to stop | |
956 | * searching for matching vma's. | |
957 | */ | |
958 | retval = 0; | |
959 | vma = next; | |
960 | break; | |
961 | } | |
962 | vma = next; | |
963 | } | |
964 | ||
965 | /* | |
966 | * We need look no further than the maximum address a fragment | |
967 | * could possibly have landed at. Also cast things to loff_t to | |
968 | * prevent overflows and make comparisions vs. equal-width types. | |
969 | */ | |
8e36709d | 970 | size = PAGE_ALIGN(size); |
1da177e4 LT |
971 | while (vma && (loff_t)(vma->vm_end - addr) <= size) { |
972 | next = vma->vm_next; | |
973 | ||
974 | /* finding a matching vma now does not alter retval */ | |
975 | if ((vma->vm_ops == &shm_vm_ops || is_vm_hugetlb_page(vma)) && | |
976 | (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) | |
977 | ||
978 | do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start); | |
979 | vma = next; | |
980 | } | |
981 | ||
982 | up_write(&mm->mmap_sem); | |
983 | return retval; | |
984 | } | |
985 | ||
986 | #ifdef CONFIG_PROC_FS | |
19b4946c | 987 | static int sysvipc_shm_proc_show(struct seq_file *s, void *it) |
1da177e4 | 988 | { |
19b4946c MW |
989 | struct shmid_kernel *shp = it; |
990 | char *format; | |
1da177e4 | 991 | |
1da177e4 LT |
992 | #define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n" |
993 | #define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n" | |
1da177e4 | 994 | |
19b4946c MW |
995 | if (sizeof(size_t) <= sizeof(int)) |
996 | format = SMALL_STRING; | |
997 | else | |
998 | format = BIG_STRING; | |
999 | return seq_printf(s, format, | |
1000 | shp->shm_perm.key, | |
1001 | shp->id, | |
b33291c0 | 1002 | shp->shm_perm.mode, |
19b4946c MW |
1003 | shp->shm_segsz, |
1004 | shp->shm_cprid, | |
1005 | shp->shm_lprid, | |
1006 | is_file_hugepages(shp->shm_file) ? (file_count(shp->shm_file) - 1) : shp->shm_nattch, | |
1007 | shp->shm_perm.uid, | |
1008 | shp->shm_perm.gid, | |
1009 | shp->shm_perm.cuid, | |
1010 | shp->shm_perm.cgid, | |
1011 | shp->shm_atim, | |
1012 | shp->shm_dtim, | |
1013 | shp->shm_ctim); | |
1da177e4 LT |
1014 | } |
1015 | #endif |