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>
18 #include <linux/config.h>
19 #include <linux/slab.h>
21 #include <linux/hugetlb.h>
22 #include <linux/shm.h>
23 #include <linux/init.h>
24 #include <linux/file.h>
25 #include <linux/mman.h>
26 #include <linux/shmem_fs.h>
27 #include <linux/security.h>
28 #include <linux/syscalls.h>
29 #include <linux/audit.h>
30 #include <linux/capability.h>
31 #include <linux/ptrace.h>
32 #include <linux/seq_file.h>
34 #include <asm/uaccess.h>
38 static struct file_operations shm_file_operations
;
39 static struct vm_operations_struct shm_vm_ops
;
41 static struct ipc_ids shm_ids
;
43 #define shm_lock(id) ((struct shmid_kernel*)ipc_lock(&shm_ids,id))
44 #define shm_unlock(shp) ipc_unlock(&(shp)->shm_perm)
45 #define shm_get(id) ((struct shmid_kernel*)ipc_get(&shm_ids,id))
46 #define shm_buildid(id, seq) \
47 ipc_buildid(&shm_ids, id, seq)
49 static int newseg (key_t key
, int shmflg
, size_t size
);
50 static void shm_open (struct vm_area_struct
*shmd
);
51 static void shm_close (struct vm_area_struct
*shmd
);
53 static int sysvipc_shm_proc_show(struct seq_file
*s
, void *it
);
56 size_t shm_ctlmax
= SHMMAX
;
57 size_t shm_ctlall
= SHMALL
;
58 int shm_ctlmni
= SHMMNI
;
60 static int shm_tot
; /* total number of shared memory pages */
62 void __init
shm_init (void)
64 ipc_init_ids(&shm_ids
, 1);
65 ipc_init_proc_interface("sysvipc/shm",
66 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n",
68 sysvipc_shm_proc_show
);
71 static inline int shm_checkid(struct shmid_kernel
*s
, int id
)
73 if (ipc_checkid(&shm_ids
,&s
->shm_perm
,id
))
78 static inline struct shmid_kernel
*shm_rmid(int id
)
80 return (struct shmid_kernel
*)ipc_rmid(&shm_ids
,id
);
83 static inline int shm_addid(struct shmid_kernel
*shp
)
85 return ipc_addid(&shm_ids
, &shp
->shm_perm
, shm_ctlmni
);
90 static inline void shm_inc (int id
) {
91 struct shmid_kernel
*shp
;
93 if(!(shp
= shm_lock(id
)))
95 shp
->shm_atim
= get_seconds();
96 shp
->shm_lprid
= current
->tgid
;
101 /* This is called by fork, once for every shm attach. */
102 static void shm_open (struct vm_area_struct
*shmd
)
104 shm_inc (shmd
->vm_file
->f_dentry
->d_inode
->i_ino
);
108 * shm_destroy - free the struct shmid_kernel
110 * @shp: struct to free
112 * It has to be called with shp and shm_ids.sem locked,
113 * but returns with shp unlocked and freed.
115 static void shm_destroy (struct shmid_kernel
*shp
)
117 shm_tot
-= (shp
->shm_segsz
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
120 if (!is_file_hugepages(shp
->shm_file
))
121 shmem_lock(shp
->shm_file
, 0, shp
->mlock_user
);
123 user_shm_unlock(shp
->shm_file
->f_dentry
->d_inode
->i_size
,
125 fput (shp
->shm_file
);
126 security_shm_free(shp
);
131 * remove the attach descriptor shmd.
132 * free memory for segment if it is marked destroyed.
133 * The descriptor has already been removed from the current->mm->mmap list
134 * and will later be kfree()d.
136 static void shm_close (struct vm_area_struct
*shmd
)
138 struct file
* file
= shmd
->vm_file
;
139 int id
= file
->f_dentry
->d_inode
->i_ino
;
140 struct shmid_kernel
*shp
;
143 /* remove from the list of attaches of the shm segment */
144 if(!(shp
= shm_lock(id
)))
146 shp
->shm_lprid
= current
->tgid
;
147 shp
->shm_dtim
= get_seconds();
149 if(shp
->shm_nattch
== 0 &&
150 shp
->shm_perm
.mode
& SHM_DEST
)
157 static int shm_mmap(struct file
* file
, struct vm_area_struct
* vma
)
161 ret
= shmem_mmap(file
, vma
);
163 vma
->vm_ops
= &shm_vm_ops
;
164 if (!(vma
->vm_flags
& VM_WRITE
))
165 vma
->vm_flags
&= ~VM_MAYWRITE
;
166 shm_inc(file
->f_dentry
->d_inode
->i_ino
);
172 static struct file_operations shm_file_operations
= {
175 .get_unmapped_area
= shmem_get_unmapped_area
,
179 static struct vm_operations_struct shm_vm_ops
= {
180 .open
= shm_open
, /* callback for a new vm-area open */
181 .close
= shm_close
, /* callback for when the vm-area is released */
182 .nopage
= shmem_nopage
,
183 #if defined(CONFIG_NUMA) && defined(CONFIG_SHMEM)
184 .set_policy
= shmem_set_policy
,
185 .get_policy
= shmem_get_policy
,
189 static int newseg (key_t key
, int shmflg
, size_t size
)
192 struct shmid_kernel
*shp
;
193 int numpages
= (size
+ PAGE_SIZE
-1) >> PAGE_SHIFT
;
198 if (size
< SHMMIN
|| size
> shm_ctlmax
)
201 if (shm_tot
+ numpages
>= shm_ctlall
)
204 shp
= ipc_rcu_alloc(sizeof(*shp
));
208 shp
->shm_perm
.key
= key
;
209 shp
->shm_perm
.mode
= (shmflg
& S_IRWXUGO
);
210 shp
->mlock_user
= NULL
;
212 shp
->shm_perm
.security
= NULL
;
213 error
= security_shm_alloc(shp
);
219 if (shmflg
& SHM_HUGETLB
) {
220 /* hugetlb_zero_setup takes care of mlock user accounting */
221 file
= hugetlb_zero_setup(size
);
222 shp
->mlock_user
= current
->user
;
224 int acctflag
= VM_ACCOUNT
;
226 * Do not allow no accounting for OVERCOMMIT_NEVER, even
229 if ((shmflg
& SHM_NORESERVE
) &&
230 sysctl_overcommit_memory
!= OVERCOMMIT_NEVER
)
232 sprintf (name
, "SYSV%08x", key
);
233 file
= shmem_file_setup(name
, size
, acctflag
);
235 error
= PTR_ERR(file
);
244 shp
->shm_cprid
= current
->tgid
;
246 shp
->shm_atim
= shp
->shm_dtim
= 0;
247 shp
->shm_ctim
= get_seconds();
248 shp
->shm_segsz
= size
;
250 shp
->id
= shm_buildid(id
,shp
->shm_perm
.seq
);
251 shp
->shm_file
= file
;
252 file
->f_dentry
->d_inode
->i_ino
= shp
->id
;
254 /* Hugetlb ops would have already been assigned. */
255 if (!(shmflg
& SHM_HUGETLB
))
256 file
->f_op
= &shm_file_operations
;
265 security_shm_free(shp
);
270 asmlinkage
long sys_shmget (key_t key
, size_t size
, int shmflg
)
272 struct shmid_kernel
*shp
;
276 if (key
== IPC_PRIVATE
) {
277 err
= newseg(key
, shmflg
, size
);
278 } else if ((id
= ipc_findkey(&shm_ids
, key
)) == -1) {
279 if (!(shmflg
& IPC_CREAT
))
282 err
= newseg(key
, shmflg
, size
);
283 } else if ((shmflg
& IPC_CREAT
) && (shmflg
& IPC_EXCL
)) {
289 if (shp
->shm_segsz
< size
)
291 else if (ipcperms(&shp
->shm_perm
, shmflg
))
294 int shmid
= shm_buildid(id
, shp
->shm_perm
.seq
);
295 err
= security_shm_associate(shp
, shmflg
);
306 static inline unsigned long copy_shmid_to_user(void __user
*buf
, struct shmid64_ds
*in
, int version
)
310 return copy_to_user(buf
, in
, sizeof(*in
));
315 ipc64_perm_to_ipc_perm(&in
->shm_perm
, &out
.shm_perm
);
316 out
.shm_segsz
= in
->shm_segsz
;
317 out
.shm_atime
= in
->shm_atime
;
318 out
.shm_dtime
= in
->shm_dtime
;
319 out
.shm_ctime
= in
->shm_ctime
;
320 out
.shm_cpid
= in
->shm_cpid
;
321 out
.shm_lpid
= in
->shm_lpid
;
322 out
.shm_nattch
= in
->shm_nattch
;
324 return copy_to_user(buf
, &out
, sizeof(out
));
337 static inline unsigned long copy_shmid_from_user(struct shm_setbuf
*out
, void __user
*buf
, int version
)
342 struct shmid64_ds tbuf
;
344 if (copy_from_user(&tbuf
, buf
, sizeof(tbuf
)))
347 out
->uid
= tbuf
.shm_perm
.uid
;
348 out
->gid
= tbuf
.shm_perm
.gid
;
349 out
->mode
= tbuf
.shm_perm
.mode
;
355 struct shmid_ds tbuf_old
;
357 if (copy_from_user(&tbuf_old
, buf
, sizeof(tbuf_old
)))
360 out
->uid
= tbuf_old
.shm_perm
.uid
;
361 out
->gid
= tbuf_old
.shm_perm
.gid
;
362 out
->mode
= tbuf_old
.shm_perm
.mode
;
371 static inline unsigned long copy_shminfo_to_user(void __user
*buf
, struct shminfo64
*in
, int version
)
375 return copy_to_user(buf
, in
, sizeof(*in
));
380 if(in
->shmmax
> INT_MAX
)
381 out
.shmmax
= INT_MAX
;
383 out
.shmmax
= (int)in
->shmmax
;
385 out
.shmmin
= in
->shmmin
;
386 out
.shmmni
= in
->shmmni
;
387 out
.shmseg
= in
->shmseg
;
388 out
.shmall
= in
->shmall
;
390 return copy_to_user(buf
, &out
, sizeof(out
));
397 static void shm_get_stat(unsigned long *rss
, unsigned long *swp
)
404 for (i
= 0; i
<= shm_ids
.max_id
; i
++) {
405 struct shmid_kernel
*shp
;
412 inode
= shp
->shm_file
->f_dentry
->d_inode
;
414 if (is_file_hugepages(shp
->shm_file
)) {
415 struct address_space
*mapping
= inode
->i_mapping
;
416 *rss
+= (HPAGE_SIZE
/PAGE_SIZE
)*mapping
->nrpages
;
418 struct shmem_inode_info
*info
= SHMEM_I(inode
);
419 spin_lock(&info
->lock
);
420 *rss
+= inode
->i_mapping
->nrpages
;
421 *swp
+= info
->swapped
;
422 spin_unlock(&info
->lock
);
427 asmlinkage
long sys_shmctl (int shmid
, int cmd
, struct shmid_ds __user
*buf
)
429 struct shm_setbuf setbuf
;
430 struct shmid_kernel
*shp
;
433 if (cmd
< 0 || shmid
< 0) {
438 version
= ipc_parse_version(&cmd
);
440 switch (cmd
) { /* replace with proc interface ? */
443 struct shminfo64 shminfo
;
445 err
= security_shm_shmctl(NULL
, cmd
);
449 memset(&shminfo
,0,sizeof(shminfo
));
450 shminfo
.shmmni
= shminfo
.shmseg
= shm_ctlmni
;
451 shminfo
.shmmax
= shm_ctlmax
;
452 shminfo
.shmall
= shm_ctlall
;
454 shminfo
.shmmin
= SHMMIN
;
455 if(copy_shminfo_to_user (buf
, &shminfo
, version
))
457 /* reading a integer is always atomic */
465 struct shm_info shm_info
;
467 err
= security_shm_shmctl(NULL
, cmd
);
471 memset(&shm_info
,0,sizeof(shm_info
));
473 shm_info
.used_ids
= shm_ids
.in_use
;
474 shm_get_stat (&shm_info
.shm_rss
, &shm_info
.shm_swp
);
475 shm_info
.shm_tot
= shm_tot
;
476 shm_info
.swap_attempts
= 0;
477 shm_info
.swap_successes
= 0;
478 err
= shm_ids
.max_id
;
480 if(copy_to_user (buf
, &shm_info
, sizeof(shm_info
))) {
485 err
= err
< 0 ? 0 : err
;
491 struct shmid64_ds tbuf
;
493 memset(&tbuf
, 0, sizeof(tbuf
));
494 shp
= shm_lock(shmid
);
498 } else if(cmd
==SHM_STAT
) {
500 if (shmid
> shm_ids
.max_id
)
502 result
= shm_buildid(shmid
, shp
->shm_perm
.seq
);
504 err
= shm_checkid(shp
,shmid
);
510 if (ipcperms (&shp
->shm_perm
, S_IRUGO
))
512 err
= security_shm_shmctl(shp
, cmd
);
515 kernel_to_ipc64_perm(&shp
->shm_perm
, &tbuf
.shm_perm
);
516 tbuf
.shm_segsz
= shp
->shm_segsz
;
517 tbuf
.shm_atime
= shp
->shm_atim
;
518 tbuf
.shm_dtime
= shp
->shm_dtim
;
519 tbuf
.shm_ctime
= shp
->shm_ctim
;
520 tbuf
.shm_cpid
= shp
->shm_cprid
;
521 tbuf
.shm_lpid
= shp
->shm_lprid
;
522 if (!is_file_hugepages(shp
->shm_file
))
523 tbuf
.shm_nattch
= shp
->shm_nattch
;
525 tbuf
.shm_nattch
= file_count(shp
->shm_file
) - 1;
527 if(copy_shmid_to_user (buf
, &tbuf
, version
))
536 shp
= shm_lock(shmid
);
541 err
= shm_checkid(shp
,shmid
);
545 if (!capable(CAP_IPC_LOCK
)) {
547 if (current
->euid
!= shp
->shm_perm
.uid
&&
548 current
->euid
!= shp
->shm_perm
.cuid
)
550 if (cmd
== SHM_LOCK
&&
551 !current
->signal
->rlim
[RLIMIT_MEMLOCK
].rlim_cur
)
555 err
= security_shm_shmctl(shp
, cmd
);
560 struct user_struct
* user
= current
->user
;
561 if (!is_file_hugepages(shp
->shm_file
)) {
562 err
= shmem_lock(shp
->shm_file
, 1, user
);
564 shp
->shm_perm
.mode
|= SHM_LOCKED
;
565 shp
->mlock_user
= user
;
568 } else if (!is_file_hugepages(shp
->shm_file
)) {
569 shmem_lock(shp
->shm_file
, 0, shp
->mlock_user
);
570 shp
->shm_perm
.mode
&= ~SHM_LOCKED
;
571 shp
->mlock_user
= NULL
;
579 * We cannot simply remove the file. The SVID states
580 * that the block remains until the last person
581 * detaches from it, then is deleted. A shmat() on
582 * an RMID segment is legal in older Linux and if
583 * we change it apps break...
585 * Instead we set a destroyed flag, and then blow
586 * the name away when the usage hits zero.
589 shp
= shm_lock(shmid
);
593 err
= shm_checkid(shp
, shmid
);
597 if (current
->euid
!= shp
->shm_perm
.uid
&&
598 current
->euid
!= shp
->shm_perm
.cuid
&&
599 !capable(CAP_SYS_ADMIN
)) {
604 err
= security_shm_shmctl(shp
, cmd
);
608 if (shp
->shm_nattch
){
609 shp
->shm_perm
.mode
|= SHM_DEST
;
610 /* Do not find it any more */
611 shp
->shm_perm
.key
= IPC_PRIVATE
;
621 if (copy_shmid_from_user (&setbuf
, buf
, version
)) {
625 if ((err
= audit_ipc_perms(0, setbuf
.uid
, setbuf
.gid
, setbuf
.mode
)))
628 shp
= shm_lock(shmid
);
632 err
= shm_checkid(shp
,shmid
);
636 if (current
->euid
!= shp
->shm_perm
.uid
&&
637 current
->euid
!= shp
->shm_perm
.cuid
&&
638 !capable(CAP_SYS_ADMIN
)) {
642 err
= security_shm_shmctl(shp
, cmd
);
646 shp
->shm_perm
.uid
= setbuf
.uid
;
647 shp
->shm_perm
.gid
= setbuf
.gid
;
648 shp
->shm_perm
.mode
= (shp
->shm_perm
.mode
& ~S_IRWXUGO
)
649 | (setbuf
.mode
& S_IRWXUGO
);
650 shp
->shm_ctim
= get_seconds();
672 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
674 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
675 * "raddr" thing points to kernel space, and there has to be a wrapper around
678 long do_shmat(int shmid
, char __user
*shmaddr
, int shmflg
, ulong
*raddr
)
680 struct shmid_kernel
*shp
;
687 unsigned long o_flags
;
694 } else if ((addr
= (ulong
)shmaddr
)) {
695 if (addr
& (SHMLBA
-1)) {
696 if (shmflg
& SHM_RND
)
697 addr
&= ~(SHMLBA
-1); /* round down */
699 #ifndef __ARCH_FORCE_SHMLBA
700 if (addr
& ~PAGE_MASK
)
704 flags
= MAP_SHARED
| MAP_FIXED
;
706 if ((shmflg
& SHM_REMAP
))
712 if (shmflg
& SHM_RDONLY
) {
717 prot
= PROT_READ
| PROT_WRITE
;
719 acc_mode
= S_IRUGO
| S_IWUGO
;
721 if (shmflg
& SHM_EXEC
) {
727 * We cannot rely on the fs check since SYSV IPC does have an
728 * additional creator id...
730 shp
= shm_lock(shmid
);
735 err
= shm_checkid(shp
,shmid
);
740 if (ipcperms(&shp
->shm_perm
, acc_mode
)) {
746 err
= security_shm_shmat(shp
, shmaddr
, shmflg
);
752 file
= shp
->shm_file
;
753 size
= i_size_read(file
->f_dentry
->d_inode
);
757 down_write(¤t
->mm
->mmap_sem
);
758 if (addr
&& !(shmflg
& SHM_REMAP
)) {
759 user_addr
= ERR_PTR(-EINVAL
);
760 if (find_vma_intersection(current
->mm
, addr
, addr
+ size
))
763 * If shm segment goes below stack, make sure there is some
764 * space left for the stack to grow (at least 4 pages).
766 if (addr
< current
->mm
->start_stack
&&
767 addr
> current
->mm
->start_stack
- size
- PAGE_SIZE
* 5)
771 user_addr
= (void*) do_mmap (file
, addr
, size
, prot
, flags
, 0);
774 up_write(¤t
->mm
->mmap_sem
);
777 if(!(shp
= shm_lock(shmid
)))
780 if(shp
->shm_nattch
== 0 &&
781 shp
->shm_perm
.mode
& SHM_DEST
)
787 *raddr
= (unsigned long) user_addr
;
789 if (IS_ERR(user_addr
))
790 err
= PTR_ERR(user_addr
);
795 asmlinkage
long sys_shmat(int shmid
, char __user
*shmaddr
, int shmflg
)
800 err
= do_shmat(shmid
, shmaddr
, shmflg
, &ret
);
803 force_successful_syscall_return();
808 * detach and kill segment if marked destroyed.
809 * The work is done in shm_close.
811 asmlinkage
long sys_shmdt(char __user
*shmaddr
)
813 struct mm_struct
*mm
= current
->mm
;
814 struct vm_area_struct
*vma
, *next
;
815 unsigned long addr
= (unsigned long)shmaddr
;
817 int retval
= -EINVAL
;
819 down_write(&mm
->mmap_sem
);
822 * This function tries to be smart and unmap shm segments that
823 * were modified by partial mlock or munmap calls:
824 * - It first determines the size of the shm segment that should be
825 * unmapped: It searches for a vma that is backed by shm and that
826 * started at address shmaddr. It records it's size and then unmaps
828 * - Then it unmaps all shm vmas that started at shmaddr and that
829 * are within the initially determined size.
830 * Errors from do_munmap are ignored: the function only fails if
831 * it's called with invalid parameters or if it's called to unmap
832 * a part of a vma. Both calls in this function are for full vmas,
833 * the parameters are directly copied from the vma itself and always
834 * valid - therefore do_munmap cannot fail. (famous last words?)
837 * If it had been mremap()'d, the starting address would not
838 * match the usual checks anyway. So assume all vma's are
839 * above the starting address given.
841 vma
= find_vma(mm
, addr
);
847 * Check if the starting address would match, i.e. it's
848 * a fragment created by mprotect() and/or munmap(), or it
849 * otherwise it starts at this address with no hassles.
851 if ((vma
->vm_ops
== &shm_vm_ops
|| is_vm_hugetlb_page(vma
)) &&
852 (vma
->vm_start
- addr
)/PAGE_SIZE
== vma
->vm_pgoff
) {
855 size
= vma
->vm_file
->f_dentry
->d_inode
->i_size
;
856 do_munmap(mm
, vma
->vm_start
, vma
->vm_end
- vma
->vm_start
);
858 * We discovered the size of the shm segment, so
859 * break out of here and fall through to the next
860 * loop that uses the size information to stop
861 * searching for matching vma's.
871 * We need look no further than the maximum address a fragment
872 * could possibly have landed at. Also cast things to loff_t to
873 * prevent overflows and make comparisions vs. equal-width types.
875 size
= PAGE_ALIGN(size
);
876 while (vma
&& (loff_t
)(vma
->vm_end
- addr
) <= size
) {
879 /* finding a matching vma now does not alter retval */
880 if ((vma
->vm_ops
== &shm_vm_ops
|| is_vm_hugetlb_page(vma
)) &&
881 (vma
->vm_start
- addr
)/PAGE_SIZE
== vma
->vm_pgoff
)
883 do_munmap(mm
, vma
->vm_start
, vma
->vm_end
- vma
->vm_start
);
887 up_write(&mm
->mmap_sem
);
891 #ifdef CONFIG_PROC_FS
892 static int sysvipc_shm_proc_show(struct seq_file
*s
, void *it
)
894 struct shmid_kernel
*shp
= it
;
897 #define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
898 #define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
900 if (sizeof(size_t) <= sizeof(int))
901 format
= SMALL_STRING
;
904 return seq_printf(s
, format
,
911 is_file_hugepages(shp
->shm_file
) ? (file_count(shp
->shm_file
) - 1) : shp
->shm_nattch
,