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