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