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/proc_fs.h>
27 #include <linux/shmem_fs.h>
28 #include <linux/security.h>
29 #include <asm/uaccess.h>
33 #define shm_flags shm_perm.mode
35 static struct file_operations shm_file_operations
;
36 static struct vm_operations_struct shm_vm_ops
;
38 static struct ipc_ids shm_ids
;
40 #define shm_lock(id) ((struct shmid_kernel*)ipc_lock(&shm_ids,id))
41 #define shm_unlock(shp) ipc_unlock(&(shp)->shm_perm)
42 #define shm_get(id) ((struct shmid_kernel*)ipc_get(&shm_ids,id))
43 #define shm_buildid(id, seq) \
44 ipc_buildid(&shm_ids, id, seq)
46 static int newseg (key_t key
, int shmflg
, size_t size
);
47 static void shm_open (struct vm_area_struct
*shmd
);
48 static void shm_close (struct vm_area_struct
*shmd
);
50 static int sysvipc_shm_read_proc(char *buffer
, char **start
, off_t offset
, int length
, int *eof
, void *data
);
53 size_t shm_ctlmax
= SHMMAX
;
54 size_t shm_ctlall
= SHMALL
;
55 int shm_ctlmni
= SHMMNI
;
57 static int shm_tot
; /* total number of shared memory pages */
59 void __init
shm_init (void)
61 ipc_init_ids(&shm_ids
, 1);
63 create_proc_read_entry("sysvipc/shm", 0, NULL
, sysvipc_shm_read_proc
, NULL
);
67 static inline int shm_checkid(struct shmid_kernel
*s
, int id
)
69 if (ipc_checkid(&shm_ids
,&s
->shm_perm
,id
))
74 static inline struct shmid_kernel
*shm_rmid(int id
)
76 return (struct shmid_kernel
*)ipc_rmid(&shm_ids
,id
);
79 static inline int shm_addid(struct shmid_kernel
*shp
)
81 return ipc_addid(&shm_ids
, &shp
->shm_perm
, shm_ctlmni
);
86 static inline void shm_inc (int id
) {
87 struct shmid_kernel
*shp
;
89 if(!(shp
= shm_lock(id
)))
91 shp
->shm_atim
= get_seconds();
92 shp
->shm_lprid
= current
->tgid
;
97 /* This is called by fork, once for every shm attach. */
98 static void shm_open (struct vm_area_struct
*shmd
)
100 shm_inc (shmd
->vm_file
->f_dentry
->d_inode
->i_ino
);
104 * shm_destroy - free the struct shmid_kernel
106 * @shp: struct to free
108 * It has to be called with shp and shm_ids.sem locked,
109 * but returns with shp unlocked and freed.
111 static void shm_destroy (struct shmid_kernel
*shp
)
113 shm_tot
-= (shp
->shm_segsz
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
116 if (!is_file_hugepages(shp
->shm_file
))
117 shmem_lock(shp
->shm_file
, 0, shp
->mlock_user
);
119 user_shm_unlock(shp
->shm_file
->f_dentry
->d_inode
->i_size
,
121 fput (shp
->shm_file
);
122 security_shm_free(shp
);
127 * remove the attach descriptor shmd.
128 * free memory for segment if it is marked destroyed.
129 * The descriptor has already been removed from the current->mm->mmap list
130 * and will later be kfree()d.
132 static void shm_close (struct vm_area_struct
*shmd
)
134 struct file
* file
= shmd
->vm_file
;
135 int id
= file
->f_dentry
->d_inode
->i_ino
;
136 struct shmid_kernel
*shp
;
139 /* remove from the list of attaches of the shm segment */
140 if(!(shp
= shm_lock(id
)))
142 shp
->shm_lprid
= current
->tgid
;
143 shp
->shm_dtim
= get_seconds();
145 if(shp
->shm_nattch
== 0 &&
146 shp
->shm_flags
& SHM_DEST
)
153 static int shm_mmap(struct file
* file
, struct vm_area_struct
* vma
)
156 vma
->vm_ops
= &shm_vm_ops
;
157 shm_inc(file
->f_dentry
->d_inode
->i_ino
);
161 static struct file_operations shm_file_operations
= {
165 static struct vm_operations_struct shm_vm_ops
= {
166 .open
= shm_open
, /* callback for a new vm-area open */
167 .close
= shm_close
, /* callback for when the vm-area is released */
168 .nopage
= shmem_nopage
,
170 .set_policy
= shmem_set_policy
,
171 .get_policy
= shmem_get_policy
,
175 static int newseg (key_t key
, int shmflg
, size_t size
)
178 struct shmid_kernel
*shp
;
179 int numpages
= (size
+ PAGE_SIZE
-1) >> PAGE_SHIFT
;
184 if (size
< SHMMIN
|| size
> shm_ctlmax
)
187 if (shm_tot
+ numpages
>= shm_ctlall
)
190 shp
= ipc_rcu_alloc(sizeof(*shp
));
194 shp
->shm_perm
.key
= key
;
195 shp
->shm_flags
= (shmflg
& S_IRWXUGO
);
196 shp
->mlock_user
= NULL
;
198 shp
->shm_perm
.security
= NULL
;
199 error
= security_shm_alloc(shp
);
205 if (shmflg
& SHM_HUGETLB
) {
206 /* hugetlb_zero_setup takes care of mlock user accounting */
207 file
= hugetlb_zero_setup(size
);
208 shp
->mlock_user
= current
->user
;
210 sprintf (name
, "SYSV%08x", key
);
211 file
= shmem_file_setup(name
, size
, VM_ACCOUNT
);
213 error
= PTR_ERR(file
);
222 shp
->shm_cprid
= current
->tgid
;
224 shp
->shm_atim
= shp
->shm_dtim
= 0;
225 shp
->shm_ctim
= get_seconds();
226 shp
->shm_segsz
= size
;
228 shp
->id
= shm_buildid(id
,shp
->shm_perm
.seq
);
229 shp
->shm_file
= file
;
230 file
->f_dentry
->d_inode
->i_ino
= shp
->id
;
231 if (shmflg
& SHM_HUGETLB
)
232 set_file_hugepages(file
);
234 file
->f_op
= &shm_file_operations
;
242 security_shm_free(shp
);
247 asmlinkage
long sys_shmget (key_t key
, size_t size
, int shmflg
)
249 struct shmid_kernel
*shp
;
253 if (key
== IPC_PRIVATE
) {
254 err
= newseg(key
, shmflg
, size
);
255 } else if ((id
= ipc_findkey(&shm_ids
, key
)) == -1) {
256 if (!(shmflg
& IPC_CREAT
))
259 err
= newseg(key
, shmflg
, size
);
260 } else if ((shmflg
& IPC_CREAT
) && (shmflg
& IPC_EXCL
)) {
266 if (shp
->shm_segsz
< size
)
268 else if (ipcperms(&shp
->shm_perm
, shmflg
))
271 int shmid
= shm_buildid(id
, shp
->shm_perm
.seq
);
272 err
= security_shm_associate(shp
, shmflg
);
283 static inline unsigned long copy_shmid_to_user(void __user
*buf
, struct shmid64_ds
*in
, int version
)
287 return copy_to_user(buf
, in
, sizeof(*in
));
292 ipc64_perm_to_ipc_perm(&in
->shm_perm
, &out
.shm_perm
);
293 out
.shm_segsz
= in
->shm_segsz
;
294 out
.shm_atime
= in
->shm_atime
;
295 out
.shm_dtime
= in
->shm_dtime
;
296 out
.shm_ctime
= in
->shm_ctime
;
297 out
.shm_cpid
= in
->shm_cpid
;
298 out
.shm_lpid
= in
->shm_lpid
;
299 out
.shm_nattch
= in
->shm_nattch
;
301 return copy_to_user(buf
, &out
, sizeof(out
));
314 static inline unsigned long copy_shmid_from_user(struct shm_setbuf
*out
, void __user
*buf
, int version
)
319 struct shmid64_ds tbuf
;
321 if (copy_from_user(&tbuf
, buf
, sizeof(tbuf
)))
324 out
->uid
= tbuf
.shm_perm
.uid
;
325 out
->gid
= tbuf
.shm_perm
.gid
;
326 out
->mode
= tbuf
.shm_flags
;
332 struct shmid_ds tbuf_old
;
334 if (copy_from_user(&tbuf_old
, buf
, sizeof(tbuf_old
)))
337 out
->uid
= tbuf_old
.shm_perm
.uid
;
338 out
->gid
= tbuf_old
.shm_perm
.gid
;
339 out
->mode
= tbuf_old
.shm_flags
;
348 static inline unsigned long copy_shminfo_to_user(void __user
*buf
, struct shminfo64
*in
, int version
)
352 return copy_to_user(buf
, in
, sizeof(*in
));
357 if(in
->shmmax
> INT_MAX
)
358 out
.shmmax
= INT_MAX
;
360 out
.shmmax
= (int)in
->shmmax
;
362 out
.shmmin
= in
->shmmin
;
363 out
.shmmni
= in
->shmmni
;
364 out
.shmseg
= in
->shmseg
;
365 out
.shmall
= in
->shmall
;
367 return copy_to_user(buf
, &out
, sizeof(out
));
374 static void shm_get_stat(unsigned long *rss
, unsigned long *swp
)
381 for (i
= 0; i
<= shm_ids
.max_id
; i
++) {
382 struct shmid_kernel
*shp
;
389 inode
= shp
->shm_file
->f_dentry
->d_inode
;
391 if (is_file_hugepages(shp
->shm_file
)) {
392 struct address_space
*mapping
= inode
->i_mapping
;
393 *rss
+= (HPAGE_SIZE
/PAGE_SIZE
)*mapping
->nrpages
;
395 struct shmem_inode_info
*info
= SHMEM_I(inode
);
396 spin_lock(&info
->lock
);
397 *rss
+= inode
->i_mapping
->nrpages
;
398 *swp
+= info
->swapped
;
399 spin_unlock(&info
->lock
);
404 asmlinkage
long sys_shmctl (int shmid
, int cmd
, struct shmid_ds __user
*buf
)
406 struct shm_setbuf setbuf
;
407 struct shmid_kernel
*shp
;
410 if (cmd
< 0 || shmid
< 0) {
415 version
= ipc_parse_version(&cmd
);
417 switch (cmd
) { /* replace with proc interface ? */
420 struct shminfo64 shminfo
;
422 err
= security_shm_shmctl(NULL
, cmd
);
426 memset(&shminfo
,0,sizeof(shminfo
));
427 shminfo
.shmmni
= shminfo
.shmseg
= shm_ctlmni
;
428 shminfo
.shmmax
= shm_ctlmax
;
429 shminfo
.shmall
= shm_ctlall
;
431 shminfo
.shmmin
= SHMMIN
;
432 if(copy_shminfo_to_user (buf
, &shminfo
, version
))
434 /* reading a integer is always atomic */
442 struct shm_info shm_info
;
444 err
= security_shm_shmctl(NULL
, cmd
);
448 memset(&shm_info
,0,sizeof(shm_info
));
450 shm_info
.used_ids
= shm_ids
.in_use
;
451 shm_get_stat (&shm_info
.shm_rss
, &shm_info
.shm_swp
);
452 shm_info
.shm_tot
= shm_tot
;
453 shm_info
.swap_attempts
= 0;
454 shm_info
.swap_successes
= 0;
455 err
= shm_ids
.max_id
;
457 if(copy_to_user (buf
, &shm_info
, sizeof(shm_info
))) {
462 err
= err
< 0 ? 0 : err
;
468 struct shmid64_ds tbuf
;
470 memset(&tbuf
, 0, sizeof(tbuf
));
471 shp
= shm_lock(shmid
);
475 } else if(cmd
==SHM_STAT
) {
477 if (shmid
> shm_ids
.max_id
)
479 result
= shm_buildid(shmid
, shp
->shm_perm
.seq
);
481 err
= shm_checkid(shp
,shmid
);
487 if (ipcperms (&shp
->shm_perm
, S_IRUGO
))
489 err
= security_shm_shmctl(shp
, cmd
);
492 kernel_to_ipc64_perm(&shp
->shm_perm
, &tbuf
.shm_perm
);
493 tbuf
.shm_segsz
= shp
->shm_segsz
;
494 tbuf
.shm_atime
= shp
->shm_atim
;
495 tbuf
.shm_dtime
= shp
->shm_dtim
;
496 tbuf
.shm_ctime
= shp
->shm_ctim
;
497 tbuf
.shm_cpid
= shp
->shm_cprid
;
498 tbuf
.shm_lpid
= shp
->shm_lprid
;
499 if (!is_file_hugepages(shp
->shm_file
))
500 tbuf
.shm_nattch
= shp
->shm_nattch
;
502 tbuf
.shm_nattch
= file_count(shp
->shm_file
) - 1;
504 if(copy_shmid_to_user (buf
, &tbuf
, version
))
513 /* Allow superuser to lock segment in memory */
514 if (!can_do_mlock() && cmd
== SHM_LOCK
) {
518 shp
= shm_lock(shmid
);
523 err
= shm_checkid(shp
,shmid
);
527 err
= security_shm_shmctl(shp
, cmd
);
532 struct user_struct
* user
= current
->user
;
533 if (!is_file_hugepages(shp
->shm_file
)) {
534 err
= shmem_lock(shp
->shm_file
, 1, user
);
536 shp
->shm_flags
|= SHM_LOCKED
;
537 shp
->mlock_user
= user
;
540 } else if (!is_file_hugepages(shp
->shm_file
)) {
541 shmem_lock(shp
->shm_file
, 0, shp
->mlock_user
);
542 shp
->shm_flags
&= ~SHM_LOCKED
;
543 shp
->mlock_user
= NULL
;
551 * We cannot simply remove the file. The SVID states
552 * that the block remains until the last person
553 * detaches from it, then is deleted. A shmat() on
554 * an RMID segment is legal in older Linux and if
555 * we change it apps break...
557 * Instead we set a destroyed flag, and then blow
558 * the name away when the usage hits zero.
561 shp
= shm_lock(shmid
);
565 err
= shm_checkid(shp
, shmid
);
569 if (current
->euid
!= shp
->shm_perm
.uid
&&
570 current
->euid
!= shp
->shm_perm
.cuid
&&
571 !capable(CAP_SYS_ADMIN
)) {
576 err
= security_shm_shmctl(shp
, cmd
);
580 if (shp
->shm_nattch
){
581 shp
->shm_flags
|= SHM_DEST
;
582 /* Do not find it any more */
583 shp
->shm_perm
.key
= IPC_PRIVATE
;
593 if (copy_shmid_from_user (&setbuf
, buf
, version
)) {
598 shp
= shm_lock(shmid
);
602 err
= shm_checkid(shp
,shmid
);
606 if (current
->euid
!= shp
->shm_perm
.uid
&&
607 current
->euid
!= shp
->shm_perm
.cuid
&&
608 !capable(CAP_SYS_ADMIN
)) {
612 err
= security_shm_shmctl(shp
, cmd
);
616 shp
->shm_perm
.uid
= setbuf
.uid
;
617 shp
->shm_perm
.gid
= setbuf
.gid
;
618 shp
->shm_flags
= (shp
->shm_flags
& ~S_IRWXUGO
)
619 | (setbuf
.mode
& S_IRWXUGO
);
620 shp
->shm_ctim
= get_seconds();
642 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
644 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
645 * "raddr" thing points to kernel space, and there has to be a wrapper around
648 long do_shmat(int shmid
, char __user
*shmaddr
, int shmflg
, ulong
*raddr
)
650 struct shmid_kernel
*shp
;
657 unsigned long o_flags
;
664 } else if ((addr
= (ulong
)shmaddr
)) {
665 if (addr
& (SHMLBA
-1)) {
666 if (shmflg
& SHM_RND
)
667 addr
&= ~(SHMLBA
-1); /* round down */
669 #ifndef __ARCH_FORCE_SHMLBA
670 if (addr
& ~PAGE_MASK
)
674 flags
= MAP_SHARED
| MAP_FIXED
;
676 if ((shmflg
& SHM_REMAP
))
682 if (shmflg
& SHM_RDONLY
) {
687 prot
= PROT_READ
| PROT_WRITE
;
689 acc_mode
= S_IRUGO
| S_IWUGO
;
691 if (shmflg
& SHM_EXEC
) {
697 * We cannot rely on the fs check since SYSV IPC does have an
698 * additional creator id...
700 shp
= shm_lock(shmid
);
705 err
= shm_checkid(shp
,shmid
);
710 if (ipcperms(&shp
->shm_perm
, acc_mode
)) {
716 err
= security_shm_shmat(shp
, shmaddr
, shmflg
);
722 file
= shp
->shm_file
;
723 size
= i_size_read(file
->f_dentry
->d_inode
);
727 down_write(¤t
->mm
->mmap_sem
);
728 if (addr
&& !(shmflg
& SHM_REMAP
)) {
729 user_addr
= ERR_PTR(-EINVAL
);
730 if (find_vma_intersection(current
->mm
, addr
, addr
+ size
))
733 * If shm segment goes below stack, make sure there is some
734 * space left for the stack to grow (at least 4 pages).
736 if (addr
< current
->mm
->start_stack
&&
737 addr
> current
->mm
->start_stack
- size
- PAGE_SIZE
* 5)
741 user_addr
= (void*) do_mmap (file
, addr
, size
, prot
, flags
, 0);
744 up_write(¤t
->mm
->mmap_sem
);
747 if(!(shp
= shm_lock(shmid
)))
750 if(shp
->shm_nattch
== 0 &&
751 shp
->shm_flags
& SHM_DEST
)
757 *raddr
= (unsigned long) user_addr
;
759 if (IS_ERR(user_addr
))
760 err
= PTR_ERR(user_addr
);
766 * detach and kill segment if marked destroyed.
767 * The work is done in shm_close.
769 asmlinkage
long sys_shmdt(char __user
*shmaddr
)
771 struct mm_struct
*mm
= current
->mm
;
772 struct vm_area_struct
*vma
, *next
;
773 unsigned long addr
= (unsigned long)shmaddr
;
775 int retval
= -EINVAL
;
777 down_write(&mm
->mmap_sem
);
780 * This function tries to be smart and unmap shm segments that
781 * were modified by partial mlock or munmap calls:
782 * - It first determines the size of the shm segment that should be
783 * unmapped: It searches for a vma that is backed by shm and that
784 * started at address shmaddr. It records it's size and then unmaps
786 * - Then it unmaps all shm vmas that started at shmaddr and that
787 * are within the initially determined size.
788 * Errors from do_munmap are ignored: the function only fails if
789 * it's called with invalid parameters or if it's called to unmap
790 * a part of a vma. Both calls in this function are for full vmas,
791 * the parameters are directly copied from the vma itself and always
792 * valid - therefore do_munmap cannot fail. (famous last words?)
795 * If it had been mremap()'d, the starting address would not
796 * match the usual checks anyway. So assume all vma's are
797 * above the starting address given.
799 vma
= find_vma(mm
, addr
);
805 * Check if the starting address would match, i.e. it's
806 * a fragment created by mprotect() and/or munmap(), or it
807 * otherwise it starts at this address with no hassles.
809 if ((vma
->vm_ops
== &shm_vm_ops
|| is_vm_hugetlb_page(vma
)) &&
810 (vma
->vm_start
- addr
)/PAGE_SIZE
== vma
->vm_pgoff
) {
813 size
= vma
->vm_file
->f_dentry
->d_inode
->i_size
;
814 do_munmap(mm
, vma
->vm_start
, vma
->vm_end
- vma
->vm_start
);
816 * We discovered the size of the shm segment, so
817 * break out of here and fall through to the next
818 * loop that uses the size information to stop
819 * searching for matching vma's.
829 * We need look no further than the maximum address a fragment
830 * could possibly have landed at. Also cast things to loff_t to
831 * prevent overflows and make comparisions vs. equal-width types.
833 while (vma
&& (loff_t
)(vma
->vm_end
- addr
) <= size
) {
836 /* finding a matching vma now does not alter retval */
837 if ((vma
->vm_ops
== &shm_vm_ops
|| is_vm_hugetlb_page(vma
)) &&
838 (vma
->vm_start
- addr
)/PAGE_SIZE
== vma
->vm_pgoff
)
840 do_munmap(mm
, vma
->vm_start
, vma
->vm_end
- vma
->vm_start
);
844 up_write(&mm
->mmap_sem
);
848 #ifdef CONFIG_PROC_FS
849 static int sysvipc_shm_read_proc(char *buffer
, char **start
, off_t offset
, int length
, int *eof
, void *data
)
856 len
+= sprintf(buffer
, " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n");
858 for(i
= 0; i
<= shm_ids
.max_id
; i
++) {
859 struct shmid_kernel
* shp
;
863 #define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
864 #define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
867 if (sizeof(size_t) <= sizeof(int))
868 format
= SMALL_STRING
;
871 len
+= sprintf(buffer
+ len
, format
,
873 shm_buildid(i
, shp
->shm_perm
.seq
),
878 is_file_hugepages(shp
->shm_file
) ? (file_count(shp
->shm_file
) - 1) : shp
->shm_nattch
,
893 if(pos
> offset
+ length
)
900 *start
= buffer
+ (offset
- begin
);
901 len
-= (offset
- begin
);