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.
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>
16 * support for audit of ipc object properties and permission changes
17 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
21 * Pavel Emelianov <xemul@openvz.org>
24 #include <linux/slab.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>
31 #include <linux/shmem_fs.h>
32 #include <linux/security.h>
33 #include <linux/syscalls.h>
34 #include <linux/audit.h>
35 #include <linux/capability.h>
36 #include <linux/ptrace.h>
37 #include <linux/seq_file.h>
38 #include <linux/mutex.h>
39 #include <linux/nsproxy.h>
40 #include <linux/mount.h>
42 #include <asm/uaccess.h>
46 struct shm_file_data
{
48 struct ipc_namespace
*ns
;
50 const struct vm_operations_struct
*vm_ops
;
53 #define shm_file_data(file) (*((struct shm_file_data **)&(file)->private_data))
55 static const struct file_operations shm_file_operations
;
56 static struct vm_operations_struct shm_vm_ops
;
58 static struct ipc_ids init_shm_ids
;
60 #define shm_ids(ns) (*((ns)->ids[IPC_SHM_IDS]))
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)
71 static int newseg (struct ipc_namespace
*ns
, key_t key
,
72 int shmflg
, size_t size
);
73 static void shm_open(struct vm_area_struct
*vma
);
74 static void shm_close(struct vm_area_struct
*vma
);
75 static void shm_destroy (struct ipc_namespace
*ns
, struct shmid_kernel
*shp
);
77 static int sysvipc_shm_proc_show(struct seq_file
*s
, void *it
);
80 static void __shm_init_ns(struct ipc_namespace
*ns
, struct ipc_ids
*ids
)
82 ns
->ids
[IPC_SHM_IDS
] = ids
;
83 ns
->shm_ctlmax
= SHMMAX
;
84 ns
->shm_ctlall
= SHMALL
;
85 ns
->shm_ctlmni
= SHMMNI
;
90 static void do_shm_rmid(struct ipc_namespace
*ns
, struct shmid_kernel
*shp
)
93 shp
->shm_perm
.mode
|= SHM_DEST
;
94 /* Do not find it any more */
95 shp
->shm_perm
.key
= IPC_PRIVATE
;
101 int shm_init_ns(struct ipc_namespace
*ns
)
105 ids
= kmalloc(sizeof(struct ipc_ids
), GFP_KERNEL
);
109 __shm_init_ns(ns
, ids
);
113 void shm_exit_ns(struct ipc_namespace
*ns
)
116 struct shmid_kernel
*shp
;
118 mutex_lock(&shm_ids(ns
).mutex
);
119 for (i
= 0; i
<= shm_ids(ns
).max_id
; i
++) {
120 shp
= shm_lock(ns
, i
);
124 do_shm_rmid(ns
, shp
);
126 mutex_unlock(&shm_ids(ns
).mutex
);
128 ipc_fini_ids(ns
->ids
[IPC_SHM_IDS
]);
129 kfree(ns
->ids
[IPC_SHM_IDS
]);
130 ns
->ids
[IPC_SHM_IDS
] = NULL
;
133 void __init
shm_init (void)
135 __shm_init_ns(&init_ipc_ns
, &init_shm_ids
);
136 ipc_init_proc_interface("sysvipc/shm",
137 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n",
138 IPC_SHM_IDS
, sysvipc_shm_proc_show
);
141 static inline int shm_checkid(struct ipc_namespace
*ns
,
142 struct shmid_kernel
*s
, int id
)
144 if (ipc_checkid(&shm_ids(ns
), &s
->shm_perm
, id
))
149 static inline struct shmid_kernel
*shm_rmid(struct ipc_namespace
*ns
, int id
)
151 return (struct shmid_kernel
*)ipc_rmid(&shm_ids(ns
), id
);
154 static inline int shm_addid(struct ipc_namespace
*ns
, struct shmid_kernel
*shp
)
156 return ipc_addid(&shm_ids(ns
), &shp
->shm_perm
, ns
->shm_ctlmni
);
161 /* This is called by fork, once for every shm attach. */
162 static void shm_open(struct vm_area_struct
*vma
)
164 struct file
*file
= vma
->vm_file
;
165 struct shm_file_data
*sfd
= shm_file_data(file
);
166 struct shmid_kernel
*shp
;
168 shp
= shm_lock(sfd
->ns
, sfd
->id
);
170 shp
->shm_atim
= get_seconds();
171 shp
->shm_lprid
= current
->tgid
;
177 * shm_destroy - free the struct shmid_kernel
179 * @shp: struct to free
181 * It has to be called with shp and shm_ids.mutex locked,
182 * but returns with shp unlocked and freed.
184 static void shm_destroy(struct ipc_namespace
*ns
, struct shmid_kernel
*shp
)
186 ns
->shm_tot
-= (shp
->shm_segsz
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
187 shm_rmid(ns
, shp
->id
);
189 if (!is_file_hugepages(shp
->shm_file
))
190 shmem_lock(shp
->shm_file
, 0, shp
->mlock_user
);
192 user_shm_unlock(shp
->shm_file
->f_path
.dentry
->d_inode
->i_size
,
194 fput (shp
->shm_file
);
195 security_shm_free(shp
);
200 * remove the attach descriptor vma.
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.
205 static void shm_close(struct vm_area_struct
*vma
)
207 struct file
* file
= vma
->vm_file
;
208 struct shm_file_data
*sfd
= shm_file_data(file
);
209 struct shmid_kernel
*shp
;
210 struct ipc_namespace
*ns
= sfd
->ns
;
212 mutex_lock(&shm_ids(ns
).mutex
);
213 /* remove from the list of attaches of the shm segment */
214 shp
= shm_lock(ns
, sfd
->id
);
216 shp
->shm_lprid
= current
->tgid
;
217 shp
->shm_dtim
= get_seconds();
219 if(shp
->shm_nattch
== 0 &&
220 shp
->shm_perm
.mode
& SHM_DEST
)
221 shm_destroy(ns
, shp
);
224 mutex_unlock(&shm_ids(ns
).mutex
);
227 static struct page
*shm_nopage(struct vm_area_struct
*vma
,
228 unsigned long address
, int *type
)
230 struct file
*file
= vma
->vm_file
;
231 struct shm_file_data
*sfd
= shm_file_data(file
);
233 return sfd
->vm_ops
->nopage(vma
, address
, type
);
237 int shm_set_policy(struct vm_area_struct
*vma
, struct mempolicy
*new)
239 struct file
*file
= vma
->vm_file
;
240 struct shm_file_data
*sfd
= shm_file_data(file
);
242 if (sfd
->vm_ops
->set_policy
)
243 err
= sfd
->vm_ops
->set_policy(vma
, new);
247 struct mempolicy
*shm_get_policy(struct vm_area_struct
*vma
, unsigned long addr
)
249 struct file
*file
= vma
->vm_file
;
250 struct shm_file_data
*sfd
= shm_file_data(file
);
251 struct mempolicy
*pol
= NULL
;
253 if (sfd
->vm_ops
->get_policy
)
254 pol
= sfd
->vm_ops
->get_policy(vma
, addr
);
255 else if (vma
->vm_policy
)
256 pol
= vma
->vm_policy
;
258 pol
= current
->mempolicy
;
263 static int shm_mmap(struct file
* file
, struct vm_area_struct
* vma
)
265 struct shm_file_data
*sfd
= shm_file_data(file
);
268 ret
= sfd
->file
->f_op
->mmap(sfd
->file
, vma
);
271 sfd
->vm_ops
= vma
->vm_ops
;
272 vma
->vm_ops
= &shm_vm_ops
;
278 static int shm_release(struct inode
*ino
, struct file
*file
)
280 struct shm_file_data
*sfd
= shm_file_data(file
);
283 shm_file_data(file
) = NULL
;
288 static int shm_fsync(struct file
*file
, struct dentry
*dentry
, int datasync
)
290 int (*fsync
) (struct file
*, struct dentry
*, int datasync
);
291 struct shm_file_data
*sfd
= shm_file_data(file
);
294 fsync
= sfd
->file
->f_op
->fsync
;
296 ret
= fsync(sfd
->file
, sfd
->file
->f_path
.dentry
, datasync
);
300 static unsigned long shm_get_unmapped_area(struct file
*file
,
301 unsigned long addr
, unsigned long len
, unsigned long pgoff
,
304 struct shm_file_data
*sfd
= shm_file_data(file
);
305 return get_unmapped_area(sfd
->file
, addr
, len
, pgoff
, flags
);
308 int is_file_shm_hugepages(struct file
*file
)
312 if (file
->f_op
== &shm_file_operations
) {
313 struct shm_file_data
*sfd
;
314 sfd
= shm_file_data(file
);
315 ret
= is_file_hugepages(sfd
->file
);
320 static const struct file_operations shm_file_operations
= {
323 .release
= shm_release
,
324 .get_unmapped_area
= shm_get_unmapped_area
,
327 static struct vm_operations_struct shm_vm_ops
= {
328 .open
= shm_open
, /* callback for a new vm-area open */
329 .close
= shm_close
, /* callback for when the vm-area is released */
330 .nopage
= shm_nopage
,
331 #if defined(CONFIG_NUMA)
332 .set_policy
= shm_set_policy
,
333 .get_policy
= shm_get_policy
,
337 static int newseg (struct ipc_namespace
*ns
, key_t key
, int shmflg
, size_t size
)
340 struct shmid_kernel
*shp
;
341 int numpages
= (size
+ PAGE_SIZE
-1) >> PAGE_SHIFT
;
346 if (size
< SHMMIN
|| size
> ns
->shm_ctlmax
)
349 if (ns
->shm_tot
+ numpages
> ns
->shm_ctlall
)
352 shp
= ipc_rcu_alloc(sizeof(*shp
));
356 shp
->shm_perm
.key
= key
;
357 shp
->shm_perm
.mode
= (shmflg
& S_IRWXUGO
);
358 shp
->mlock_user
= NULL
;
360 shp
->shm_perm
.security
= NULL
;
361 error
= security_shm_alloc(shp
);
367 sprintf (name
, "SYSV%08x", key
);
368 if (shmflg
& SHM_HUGETLB
) {
369 /* hugetlb_file_setup takes care of mlock user accounting */
370 file
= hugetlb_file_setup(name
, size
);
371 shp
->mlock_user
= current
->user
;
373 int acctflag
= VM_ACCOUNT
;
375 * Do not allow no accounting for OVERCOMMIT_NEVER, even
378 if ((shmflg
& SHM_NORESERVE
) &&
379 sysctl_overcommit_memory
!= OVERCOMMIT_NEVER
)
381 file
= shmem_file_setup(name
, size
, acctflag
);
383 error
= PTR_ERR(file
);
388 id
= shm_addid(ns
, shp
);
392 shp
->shm_cprid
= current
->tgid
;
394 shp
->shm_atim
= shp
->shm_dtim
= 0;
395 shp
->shm_ctim
= get_seconds();
396 shp
->shm_segsz
= size
;
398 shp
->id
= shm_buildid(ns
, id
, shp
->shm_perm
.seq
);
399 shp
->shm_file
= file
;
401 * shmid gets reported as "inode#" in /proc/pid/maps.
402 * proc-ps tools use this. Changing this will break them.
404 file
->f_dentry
->d_inode
->i_ino
= shp
->id
;
406 ns
->shm_tot
+= numpages
;
413 security_shm_free(shp
);
418 asmlinkage
long sys_shmget (key_t key
, size_t size
, int shmflg
)
420 struct shmid_kernel
*shp
;
422 struct ipc_namespace
*ns
;
424 ns
= current
->nsproxy
->ipc_ns
;
426 mutex_lock(&shm_ids(ns
).mutex
);
427 if (key
== IPC_PRIVATE
) {
428 err
= newseg(ns
, key
, shmflg
, size
);
429 } else if ((id
= ipc_findkey(&shm_ids(ns
), key
)) == -1) {
430 if (!(shmflg
& IPC_CREAT
))
433 err
= newseg(ns
, key
, shmflg
, size
);
434 } else if ((shmflg
& IPC_CREAT
) && (shmflg
& IPC_EXCL
)) {
437 shp
= shm_lock(ns
, id
);
439 if (shp
->shm_segsz
< size
)
441 else if (ipcperms(&shp
->shm_perm
, shmflg
))
444 int shmid
= shm_buildid(ns
, id
, shp
->shm_perm
.seq
);
445 err
= security_shm_associate(shp
, shmflg
);
451 mutex_unlock(&shm_ids(ns
).mutex
);
456 static inline unsigned long copy_shmid_to_user(void __user
*buf
, struct shmid64_ds
*in
, int version
)
460 return copy_to_user(buf
, in
, sizeof(*in
));
465 ipc64_perm_to_ipc_perm(&in
->shm_perm
, &out
.shm_perm
);
466 out
.shm_segsz
= in
->shm_segsz
;
467 out
.shm_atime
= in
->shm_atime
;
468 out
.shm_dtime
= in
->shm_dtime
;
469 out
.shm_ctime
= in
->shm_ctime
;
470 out
.shm_cpid
= in
->shm_cpid
;
471 out
.shm_lpid
= in
->shm_lpid
;
472 out
.shm_nattch
= in
->shm_nattch
;
474 return copy_to_user(buf
, &out
, sizeof(out
));
487 static inline unsigned long copy_shmid_from_user(struct shm_setbuf
*out
, void __user
*buf
, int version
)
492 struct shmid64_ds tbuf
;
494 if (copy_from_user(&tbuf
, buf
, sizeof(tbuf
)))
497 out
->uid
= tbuf
.shm_perm
.uid
;
498 out
->gid
= tbuf
.shm_perm
.gid
;
499 out
->mode
= tbuf
.shm_perm
.mode
;
505 struct shmid_ds tbuf_old
;
507 if (copy_from_user(&tbuf_old
, buf
, sizeof(tbuf_old
)))
510 out
->uid
= tbuf_old
.shm_perm
.uid
;
511 out
->gid
= tbuf_old
.shm_perm
.gid
;
512 out
->mode
= tbuf_old
.shm_perm
.mode
;
521 static inline unsigned long copy_shminfo_to_user(void __user
*buf
, struct shminfo64
*in
, int version
)
525 return copy_to_user(buf
, in
, sizeof(*in
));
530 if(in
->shmmax
> INT_MAX
)
531 out
.shmmax
= INT_MAX
;
533 out
.shmmax
= (int)in
->shmmax
;
535 out
.shmmin
= in
->shmmin
;
536 out
.shmmni
= in
->shmmni
;
537 out
.shmseg
= in
->shmseg
;
538 out
.shmall
= in
->shmall
;
540 return copy_to_user(buf
, &out
, sizeof(out
));
547 static void shm_get_stat(struct ipc_namespace
*ns
, unsigned long *rss
,
555 for (i
= 0; i
<= shm_ids(ns
).max_id
; i
++) {
556 struct shmid_kernel
*shp
;
559 shp
= shm_get(ns
, i
);
563 inode
= shp
->shm_file
->f_path
.dentry
->d_inode
;
565 if (is_file_hugepages(shp
->shm_file
)) {
566 struct address_space
*mapping
= inode
->i_mapping
;
567 *rss
+= (HPAGE_SIZE
/PAGE_SIZE
)*mapping
->nrpages
;
569 struct shmem_inode_info
*info
= SHMEM_I(inode
);
570 spin_lock(&info
->lock
);
571 *rss
+= inode
->i_mapping
->nrpages
;
572 *swp
+= info
->swapped
;
573 spin_unlock(&info
->lock
);
578 asmlinkage
long sys_shmctl (int shmid
, int cmd
, struct shmid_ds __user
*buf
)
580 struct shm_setbuf setbuf
;
581 struct shmid_kernel
*shp
;
583 struct ipc_namespace
*ns
;
585 if (cmd
< 0 || shmid
< 0) {
590 version
= ipc_parse_version(&cmd
);
591 ns
= current
->nsproxy
->ipc_ns
;
593 switch (cmd
) { /* replace with proc interface ? */
596 struct shminfo64 shminfo
;
598 err
= security_shm_shmctl(NULL
, cmd
);
602 memset(&shminfo
,0,sizeof(shminfo
));
603 shminfo
.shmmni
= shminfo
.shmseg
= ns
->shm_ctlmni
;
604 shminfo
.shmmax
= ns
->shm_ctlmax
;
605 shminfo
.shmall
= ns
->shm_ctlall
;
607 shminfo
.shmmin
= SHMMIN
;
608 if(copy_shminfo_to_user (buf
, &shminfo
, version
))
610 /* reading a integer is always atomic */
611 err
= shm_ids(ns
).max_id
;
618 struct shm_info shm_info
;
620 err
= security_shm_shmctl(NULL
, cmd
);
624 memset(&shm_info
,0,sizeof(shm_info
));
625 mutex_lock(&shm_ids(ns
).mutex
);
626 shm_info
.used_ids
= shm_ids(ns
).in_use
;
627 shm_get_stat (ns
, &shm_info
.shm_rss
, &shm_info
.shm_swp
);
628 shm_info
.shm_tot
= ns
->shm_tot
;
629 shm_info
.swap_attempts
= 0;
630 shm_info
.swap_successes
= 0;
631 err
= shm_ids(ns
).max_id
;
632 mutex_unlock(&shm_ids(ns
).mutex
);
633 if(copy_to_user (buf
, &shm_info
, sizeof(shm_info
))) {
638 err
= err
< 0 ? 0 : err
;
644 struct shmid64_ds tbuf
;
646 memset(&tbuf
, 0, sizeof(tbuf
));
647 shp
= shm_lock(ns
, shmid
);
651 } else if(cmd
==SHM_STAT
) {
653 if (shmid
> shm_ids(ns
).max_id
)
655 result
= shm_buildid(ns
, shmid
, shp
->shm_perm
.seq
);
657 err
= shm_checkid(ns
, shp
,shmid
);
663 if (ipcperms (&shp
->shm_perm
, S_IRUGO
))
665 err
= security_shm_shmctl(shp
, cmd
);
668 kernel_to_ipc64_perm(&shp
->shm_perm
, &tbuf
.shm_perm
);
669 tbuf
.shm_segsz
= shp
->shm_segsz
;
670 tbuf
.shm_atime
= shp
->shm_atim
;
671 tbuf
.shm_dtime
= shp
->shm_dtim
;
672 tbuf
.shm_ctime
= shp
->shm_ctim
;
673 tbuf
.shm_cpid
= shp
->shm_cprid
;
674 tbuf
.shm_lpid
= shp
->shm_lprid
;
675 tbuf
.shm_nattch
= shp
->shm_nattch
;
677 if(copy_shmid_to_user (buf
, &tbuf
, version
))
686 shp
= shm_lock(ns
, shmid
);
691 err
= shm_checkid(ns
, shp
,shmid
);
695 err
= audit_ipc_obj(&(shp
->shm_perm
));
699 if (!capable(CAP_IPC_LOCK
)) {
701 if (current
->euid
!= shp
->shm_perm
.uid
&&
702 current
->euid
!= shp
->shm_perm
.cuid
)
704 if (cmd
== SHM_LOCK
&&
705 !current
->signal
->rlim
[RLIMIT_MEMLOCK
].rlim_cur
)
709 err
= security_shm_shmctl(shp
, cmd
);
714 struct user_struct
* user
= current
->user
;
715 if (!is_file_hugepages(shp
->shm_file
)) {
716 err
= shmem_lock(shp
->shm_file
, 1, user
);
718 shp
->shm_perm
.mode
|= SHM_LOCKED
;
719 shp
->mlock_user
= user
;
722 } else if (!is_file_hugepages(shp
->shm_file
)) {
723 shmem_lock(shp
->shm_file
, 0, shp
->mlock_user
);
724 shp
->shm_perm
.mode
&= ~SHM_LOCKED
;
725 shp
->mlock_user
= NULL
;
733 * We cannot simply remove the file. The SVID states
734 * that the block remains until the last person
735 * detaches from it, then is deleted. A shmat() on
736 * an RMID segment is legal in older Linux and if
737 * we change it apps break...
739 * Instead we set a destroyed flag, and then blow
740 * the name away when the usage hits zero.
742 mutex_lock(&shm_ids(ns
).mutex
);
743 shp
= shm_lock(ns
, shmid
);
747 err
= shm_checkid(ns
, shp
, shmid
);
751 err
= audit_ipc_obj(&(shp
->shm_perm
));
755 if (current
->euid
!= shp
->shm_perm
.uid
&&
756 current
->euid
!= shp
->shm_perm
.cuid
&&
757 !capable(CAP_SYS_ADMIN
)) {
762 err
= security_shm_shmctl(shp
, cmd
);
766 do_shm_rmid(ns
, shp
);
767 mutex_unlock(&shm_ids(ns
).mutex
);
773 if (copy_shmid_from_user (&setbuf
, buf
, version
)) {
777 mutex_lock(&shm_ids(ns
).mutex
);
778 shp
= shm_lock(ns
, shmid
);
782 err
= shm_checkid(ns
, shp
,shmid
);
785 err
= audit_ipc_obj(&(shp
->shm_perm
));
788 err
= audit_ipc_set_perm(0, setbuf
.uid
, setbuf
.gid
, setbuf
.mode
);
792 if (current
->euid
!= shp
->shm_perm
.uid
&&
793 current
->euid
!= shp
->shm_perm
.cuid
&&
794 !capable(CAP_SYS_ADMIN
)) {
798 err
= security_shm_shmctl(shp
, cmd
);
802 shp
->shm_perm
.uid
= setbuf
.uid
;
803 shp
->shm_perm
.gid
= setbuf
.gid
;
804 shp
->shm_perm
.mode
= (shp
->shm_perm
.mode
& ~S_IRWXUGO
)
805 | (setbuf
.mode
& S_IRWXUGO
);
806 shp
->shm_ctim
= get_seconds();
819 mutex_unlock(&shm_ids(ns
).mutex
);
828 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
830 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
831 * "raddr" thing points to kernel space, and there has to be a wrapper around
834 long do_shmat(int shmid
, char __user
*shmaddr
, int shmflg
, ulong
*raddr
)
836 struct shmid_kernel
*shp
;
844 unsigned long user_addr
;
845 struct ipc_namespace
*ns
;
846 struct shm_file_data
*sfd
;
853 else if ((addr
= (ulong
)shmaddr
)) {
854 if (addr
& (SHMLBA
-1)) {
855 if (shmflg
& SHM_RND
)
856 addr
&= ~(SHMLBA
-1); /* round down */
858 #ifndef __ARCH_FORCE_SHMLBA
859 if (addr
& ~PAGE_MASK
)
863 flags
= MAP_SHARED
| MAP_FIXED
;
865 if ((shmflg
& SHM_REMAP
))
871 if (shmflg
& SHM_RDONLY
) {
876 prot
= PROT_READ
| PROT_WRITE
;
877 acc_mode
= S_IRUGO
| S_IWUGO
;
878 f_mode
= FMODE_READ
| FMODE_WRITE
;
880 if (shmflg
& SHM_EXEC
) {
886 * We cannot rely on the fs check since SYSV IPC does have an
887 * additional creator id...
889 ns
= current
->nsproxy
->ipc_ns
;
890 shp
= shm_lock(ns
, shmid
);
894 err
= shm_checkid(ns
, shp
,shmid
);
899 if (ipcperms(&shp
->shm_perm
, acc_mode
))
902 err
= security_shm_shmat(shp
, shmaddr
, shmflg
);
906 path
.dentry
= dget(shp
->shm_file
->f_path
.dentry
);
907 path
.mnt
= mntget(shp
->shm_file
->f_path
.mnt
);
909 size
= i_size_read(path
.dentry
->d_inode
);
913 sfd
= kzalloc(sizeof(*sfd
), GFP_KERNEL
);
918 file
= get_empty_filp();
922 file
->f_op
= &shm_file_operations
;
923 file
->private_data
= sfd
;
925 file
->f_mapping
= shp
->shm_file
->f_mapping
;
926 file
->f_mode
= f_mode
;
928 sfd
->ns
= get_ipc_ns(ns
);
929 sfd
->file
= shp
->shm_file
;
932 down_write(¤t
->mm
->mmap_sem
);
933 if (addr
&& !(shmflg
& SHM_REMAP
)) {
935 if (find_vma_intersection(current
->mm
, addr
, addr
+ size
))
938 * If shm segment goes below stack, make sure there is some
939 * space left for the stack to grow (at least 4 pages).
941 if (addr
< current
->mm
->start_stack
&&
942 addr
> current
->mm
->start_stack
- size
- PAGE_SIZE
* 5)
946 user_addr
= do_mmap (file
, addr
, size
, prot
, flags
, 0);
949 if (IS_ERR_VALUE(user_addr
))
950 err
= (long)user_addr
;
952 up_write(¤t
->mm
->mmap_sem
);
957 mutex_lock(&shm_ids(ns
).mutex
);
958 shp
= shm_lock(ns
, shmid
);
961 if(shp
->shm_nattch
== 0 &&
962 shp
->shm_perm
.mode
& SHM_DEST
)
963 shm_destroy(ns
, shp
);
966 mutex_unlock(&shm_ids(ns
).mutex
);
983 asmlinkage
long sys_shmat(int shmid
, char __user
*shmaddr
, int shmflg
)
988 err
= do_shmat(shmid
, shmaddr
, shmflg
, &ret
);
991 force_successful_syscall_return();
996 * detach and kill segment if marked destroyed.
997 * The work is done in shm_close.
999 asmlinkage
long sys_shmdt(char __user
*shmaddr
)
1001 struct mm_struct
*mm
= current
->mm
;
1002 struct vm_area_struct
*vma
, *next
;
1003 unsigned long addr
= (unsigned long)shmaddr
;
1005 int retval
= -EINVAL
;
1007 if (addr
& ~PAGE_MASK
)
1010 down_write(&mm
->mmap_sem
);
1013 * This function tries to be smart and unmap shm segments that
1014 * were modified by partial mlock or munmap calls:
1015 * - It first determines the size of the shm segment that should be
1016 * unmapped: It searches for a vma that is backed by shm and that
1017 * started at address shmaddr. It records it's size and then unmaps
1019 * - Then it unmaps all shm vmas that started at shmaddr and that
1020 * are within the initially determined size.
1021 * Errors from do_munmap are ignored: the function only fails if
1022 * it's called with invalid parameters or if it's called to unmap
1023 * a part of a vma. Both calls in this function are for full vmas,
1024 * the parameters are directly copied from the vma itself and always
1025 * valid - therefore do_munmap cannot fail. (famous last words?)
1028 * If it had been mremap()'d, the starting address would not
1029 * match the usual checks anyway. So assume all vma's are
1030 * above the starting address given.
1032 vma
= find_vma(mm
, addr
);
1035 next
= vma
->vm_next
;
1038 * Check if the starting address would match, i.e. it's
1039 * a fragment created by mprotect() and/or munmap(), or it
1040 * otherwise it starts at this address with no hassles.
1042 if ((vma
->vm_ops
== &shm_vm_ops
) &&
1043 (vma
->vm_start
- addr
)/PAGE_SIZE
== vma
->vm_pgoff
) {
1046 size
= vma
->vm_file
->f_path
.dentry
->d_inode
->i_size
;
1047 do_munmap(mm
, vma
->vm_start
, vma
->vm_end
- vma
->vm_start
);
1049 * We discovered the size of the shm segment, so
1050 * break out of here and fall through to the next
1051 * loop that uses the size information to stop
1052 * searching for matching vma's.
1062 * We need look no further than the maximum address a fragment
1063 * could possibly have landed at. Also cast things to loff_t to
1064 * prevent overflows and make comparisions vs. equal-width types.
1066 size
= PAGE_ALIGN(size
);
1067 while (vma
&& (loff_t
)(vma
->vm_end
- addr
) <= size
) {
1068 next
= vma
->vm_next
;
1070 /* finding a matching vma now does not alter retval */
1071 if ((vma
->vm_ops
== &shm_vm_ops
) &&
1072 (vma
->vm_start
- addr
)/PAGE_SIZE
== vma
->vm_pgoff
)
1074 do_munmap(mm
, vma
->vm_start
, vma
->vm_end
- vma
->vm_start
);
1078 up_write(&mm
->mmap_sem
);
1082 #ifdef CONFIG_PROC_FS
1083 static int sysvipc_shm_proc_show(struct seq_file
*s
, void *it
)
1085 struct shmid_kernel
*shp
= it
;
1088 #define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
1089 #define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
1091 if (sizeof(size_t) <= sizeof(int))
1092 format
= SMALL_STRING
;
1094 format
= BIG_STRING
;
1095 return seq_printf(s
, format
,