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 <linux/syscalls.h>
30 #include <linux/audit.h>
31 #include <asm/uaccess.h>
35 #define shm_flags shm_perm.mode
37 static struct file_operations shm_file_operations;
38 static struct vm_operations_struct shm_vm_ops;
40 static struct ipc_ids shm_ids;
42 #define shm_lock(id) ((struct shmid_kernel*)ipc_lock(&shm_ids,id))
43 #define shm_unlock(shp) ipc_unlock(&(shp)->shm_perm)
44 #define shm_get(id) ((struct shmid_kernel*)ipc_get(&shm_ids,id))
45 #define shm_buildid(id, seq) \
46 ipc_buildid(&shm_ids, id, seq)
48 static int newseg (key_t key, int shmflg, size_t size);
49 static void shm_open (struct vm_area_struct *shmd);
50 static void shm_close (struct vm_area_struct *shmd);
52 static int sysvipc_shm_read_proc(char *buffer, char **start, off_t offset, int length, int *eof, void *data);
55 size_t shm_ctlmax = SHMMAX;
56 size_t shm_ctlall = SHMALL;
57 int shm_ctlmni = SHMMNI;
59 static int shm_tot; /* total number of shared memory pages */
61 void __init shm_init (void)
63 ipc_init_ids(&shm_ids, 1);
65 create_proc_read_entry("sysvipc/shm", 0, NULL, sysvipc_shm_read_proc, NULL);
69 static inline int shm_checkid(struct shmid_kernel *s, int id)
71 if (ipc_checkid(&shm_ids,&s->shm_perm,id))
76 static inline struct shmid_kernel *shm_rmid(int id)
78 return (struct shmid_kernel *)ipc_rmid(&shm_ids,id);
81 static inline int shm_addid(struct shmid_kernel *shp)
83 return ipc_addid(&shm_ids, &shp->shm_perm, shm_ctlmni);
88 static inline void shm_inc (int id) {
89 struct shmid_kernel *shp;
91 if(!(shp = shm_lock(id)))
93 shp->shm_atim = get_seconds();
94 shp->shm_lprid = current->tgid;
99 /* This is called by fork, once for every shm attach. */
100 static void shm_open (struct vm_area_struct *shmd)
102 shm_inc (shmd->vm_file->f_dentry->d_inode->i_ino);
106 * shm_destroy - free the struct shmid_kernel
108 * @shp: struct to free
110 * It has to be called with shp and shm_ids.sem locked,
111 * but returns with shp unlocked and freed.
113 static void shm_destroy (struct shmid_kernel *shp)
115 shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
118 if (!is_file_hugepages(shp->shm_file))
119 shmem_lock(shp->shm_file, 0, shp->mlock_user);
121 user_shm_unlock(shp->shm_file->f_dentry->d_inode->i_size,
123 fput (shp->shm_file);
124 security_shm_free(shp);
129 * remove the attach descriptor shmd.
130 * free memory for segment if it is marked destroyed.
131 * The descriptor has already been removed from the current->mm->mmap list
132 * and will later be kfree()d.
134 static void shm_close (struct vm_area_struct *shmd)
136 struct file * file = shmd->vm_file;
137 int id = file->f_dentry->d_inode->i_ino;
138 struct shmid_kernel *shp;
141 /* remove from the list of attaches of the shm segment */
142 if(!(shp = shm_lock(id)))
144 shp->shm_lprid = current->tgid;
145 shp->shm_dtim = get_seconds();
147 if(shp->shm_nattch == 0 &&
148 shp->shm_flags & SHM_DEST)
155 static int shm_mmap(struct file * file, struct vm_area_struct * vma)
158 vma->vm_ops = &shm_vm_ops;
159 shm_inc(file->f_dentry->d_inode->i_ino);
163 static struct file_operations shm_file_operations = {
167 static struct vm_operations_struct shm_vm_ops = {
168 .open = shm_open, /* callback for a new vm-area open */
169 .close = shm_close, /* callback for when the vm-area is released */
170 .nopage = shmem_nopage,
172 .set_policy = shmem_set_policy,
173 .get_policy = shmem_get_policy,
177 static int newseg (key_t key, int shmflg, size_t size)
180 struct shmid_kernel *shp;
181 int numpages = (size + PAGE_SIZE -1) >> PAGE_SHIFT;
186 if (size < SHMMIN || size > shm_ctlmax)
189 if (shm_tot + numpages >= shm_ctlall)
192 shp = ipc_rcu_alloc(sizeof(*shp));
196 shp->shm_perm.key = key;
197 shp->shm_flags = (shmflg & S_IRWXUGO);
198 shp->mlock_user = NULL;
200 shp->shm_perm.security = NULL;
201 error = security_shm_alloc(shp);
207 if (shmflg & SHM_HUGETLB) {
208 /* hugetlb_zero_setup takes care of mlock user accounting */
209 file = hugetlb_zero_setup(size);
210 shp->mlock_user = current->user;
212 sprintf (name, "SYSV%08x", key);
213 file = shmem_file_setup(name, size, VM_ACCOUNT);
215 error = PTR_ERR(file);
224 shp->shm_cprid = current->tgid;
226 shp->shm_atim = shp->shm_dtim = 0;
227 shp->shm_ctim = get_seconds();
228 shp->shm_segsz = size;
230 shp->id = shm_buildid(id,shp->shm_perm.seq);
231 shp->shm_file = file;
232 file->f_dentry->d_inode->i_ino = shp->id;
233 if (shmflg & SHM_HUGETLB)
234 set_file_hugepages(file);
236 file->f_op = &shm_file_operations;
244 security_shm_free(shp);
249 asmlinkage long sys_shmget (key_t key, size_t size, int shmflg)
251 struct shmid_kernel *shp;
255 if (key == IPC_PRIVATE) {
256 err = newseg(key, shmflg, size);
257 } else if ((id = ipc_findkey(&shm_ids, key)) == -1) {
258 if (!(shmflg & IPC_CREAT))
261 err = newseg(key, shmflg, size);
262 } else if ((shmflg & IPC_CREAT) && (shmflg & IPC_EXCL)) {
268 if (shp->shm_segsz < size)
270 else if (ipcperms(&shp->shm_perm, shmflg))
273 int shmid = shm_buildid(id, shp->shm_perm.seq);
274 err = security_shm_associate(shp, shmflg);
285 static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version)
289 return copy_to_user(buf, in, sizeof(*in));
294 ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
295 out.shm_segsz = in->shm_segsz;
296 out.shm_atime = in->shm_atime;
297 out.shm_dtime = in->shm_dtime;
298 out.shm_ctime = in->shm_ctime;
299 out.shm_cpid = in->shm_cpid;
300 out.shm_lpid = in->shm_lpid;
301 out.shm_nattch = in->shm_nattch;
303 return copy_to_user(buf, &out, sizeof(out));
316 static inline unsigned long copy_shmid_from_user(struct shm_setbuf *out, void __user *buf, int version)
321 struct shmid64_ds tbuf;
323 if (copy_from_user(&tbuf, buf, sizeof(tbuf)))
326 out->uid = tbuf.shm_perm.uid;
327 out->gid = tbuf.shm_perm.gid;
328 out->mode = tbuf.shm_flags;
334 struct shmid_ds tbuf_old;
336 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
339 out->uid = tbuf_old.shm_perm.uid;
340 out->gid = tbuf_old.shm_perm.gid;
341 out->mode = tbuf_old.shm_flags;
350 static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version)
354 return copy_to_user(buf, in, sizeof(*in));
359 if(in->shmmax > INT_MAX)
360 out.shmmax = INT_MAX;
362 out.shmmax = (int)in->shmmax;
364 out.shmmin = in->shmmin;
365 out.shmmni = in->shmmni;
366 out.shmseg = in->shmseg;
367 out.shmall = in->shmall;
369 return copy_to_user(buf, &out, sizeof(out));
376 static void shm_get_stat(unsigned long *rss, unsigned long *swp)
383 for (i = 0; i <= shm_ids.max_id; i++) {
384 struct shmid_kernel *shp;
391 inode = shp->shm_file->f_dentry->d_inode;
393 if (is_file_hugepages(shp->shm_file)) {
394 struct address_space *mapping = inode->i_mapping;
395 *rss += (HPAGE_SIZE/PAGE_SIZE)*mapping->nrpages;
397 struct shmem_inode_info *info = SHMEM_I(inode);
398 spin_lock(&info->lock);
399 *rss += inode->i_mapping->nrpages;
400 *swp += info->swapped;
401 spin_unlock(&info->lock);
406 asmlinkage long sys_shmctl (int shmid, int cmd, struct shmid_ds __user *buf)
408 struct shm_setbuf setbuf;
409 struct shmid_kernel *shp;
412 if (cmd < 0 || shmid < 0) {
417 version = ipc_parse_version(&cmd);
419 switch (cmd) { /* replace with proc interface ? */
422 struct shminfo64 shminfo;
424 err = security_shm_shmctl(NULL, cmd);
428 memset(&shminfo,0,sizeof(shminfo));
429 shminfo.shmmni = shminfo.shmseg = shm_ctlmni;
430 shminfo.shmmax = shm_ctlmax;
431 shminfo.shmall = shm_ctlall;
433 shminfo.shmmin = SHMMIN;
434 if(copy_shminfo_to_user (buf, &shminfo, version))
436 /* reading a integer is always atomic */
444 struct shm_info shm_info;
446 err = security_shm_shmctl(NULL, cmd);
450 memset(&shm_info,0,sizeof(shm_info));
452 shm_info.used_ids = shm_ids.in_use;
453 shm_get_stat (&shm_info.shm_rss, &shm_info.shm_swp);
454 shm_info.shm_tot = shm_tot;
455 shm_info.swap_attempts = 0;
456 shm_info.swap_successes = 0;
457 err = shm_ids.max_id;
459 if(copy_to_user (buf, &shm_info, sizeof(shm_info))) {
464 err = err < 0 ? 0 : err;
470 struct shmid64_ds tbuf;
472 memset(&tbuf, 0, sizeof(tbuf));
473 shp = shm_lock(shmid);
477 } else if(cmd==SHM_STAT) {
479 if (shmid > shm_ids.max_id)
481 result = shm_buildid(shmid, shp->shm_perm.seq);
483 err = shm_checkid(shp,shmid);
489 if (ipcperms (&shp->shm_perm, S_IRUGO))
491 err = security_shm_shmctl(shp, cmd);
494 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
495 tbuf.shm_segsz = shp->shm_segsz;
496 tbuf.shm_atime = shp->shm_atim;
497 tbuf.shm_dtime = shp->shm_dtim;
498 tbuf.shm_ctime = shp->shm_ctim;
499 tbuf.shm_cpid = shp->shm_cprid;
500 tbuf.shm_lpid = shp->shm_lprid;
501 if (!is_file_hugepages(shp->shm_file))
502 tbuf.shm_nattch = shp->shm_nattch;
504 tbuf.shm_nattch = file_count(shp->shm_file) - 1;
506 if(copy_shmid_to_user (buf, &tbuf, version))
515 shp = shm_lock(shmid);
520 err = shm_checkid(shp,shmid);
524 if (!capable(CAP_IPC_LOCK)) {
526 if (current->euid != shp->shm_perm.uid &&
527 current->euid != shp->shm_perm.cuid)
529 if (cmd == SHM_LOCK &&
530 !current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur)
534 err = security_shm_shmctl(shp, cmd);
539 struct user_struct * user = current->user;
540 if (!is_file_hugepages(shp->shm_file)) {
541 err = shmem_lock(shp->shm_file, 1, user);
543 shp->shm_flags |= SHM_LOCKED;
544 shp->mlock_user = user;
547 } else if (!is_file_hugepages(shp->shm_file)) {
548 shmem_lock(shp->shm_file, 0, shp->mlock_user);
549 shp->shm_flags &= ~SHM_LOCKED;
550 shp->mlock_user = NULL;
558 * We cannot simply remove the file. The SVID states
559 * that the block remains until the last person
560 * detaches from it, then is deleted. A shmat() on
561 * an RMID segment is legal in older Linux and if
562 * we change it apps break...
564 * Instead we set a destroyed flag, and then blow
565 * the name away when the usage hits zero.
568 shp = shm_lock(shmid);
572 err = shm_checkid(shp, shmid);
576 if (current->euid != shp->shm_perm.uid &&
577 current->euid != shp->shm_perm.cuid &&
578 !capable(CAP_SYS_ADMIN)) {
583 err = security_shm_shmctl(shp, cmd);
587 if (shp->shm_nattch){
588 shp->shm_flags |= SHM_DEST;
589 /* Do not find it any more */
590 shp->shm_perm.key = IPC_PRIVATE;
600 if (copy_shmid_from_user (&setbuf, buf, version)) {
604 if ((err = audit_ipc_perms(0, setbuf.uid, setbuf.gid, setbuf.mode)))
607 shp = shm_lock(shmid);
611 err = shm_checkid(shp,shmid);
615 if (current->euid != shp->shm_perm.uid &&
616 current->euid != shp->shm_perm.cuid &&
617 !capable(CAP_SYS_ADMIN)) {
621 err = security_shm_shmctl(shp, cmd);
625 shp->shm_perm.uid = setbuf.uid;
626 shp->shm_perm.gid = setbuf.gid;
627 shp->shm_flags = (shp->shm_flags & ~S_IRWXUGO)
628 | (setbuf.mode & S_IRWXUGO);
629 shp->shm_ctim = get_seconds();
651 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
653 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
654 * "raddr" thing points to kernel space, and there has to be a wrapper around
657 long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr)
659 struct shmid_kernel *shp;
666 unsigned long o_flags;
673 } else if ((addr = (ulong)shmaddr)) {
674 if (addr & (SHMLBA-1)) {
675 if (shmflg & SHM_RND)
676 addr &= ~(SHMLBA-1); /* round down */
678 #ifndef __ARCH_FORCE_SHMLBA
679 if (addr & ~PAGE_MASK)
683 flags = MAP_SHARED | MAP_FIXED;
685 if ((shmflg & SHM_REMAP))
691 if (shmflg & SHM_RDONLY) {
696 prot = PROT_READ | PROT_WRITE;
698 acc_mode = S_IRUGO | S_IWUGO;
700 if (shmflg & SHM_EXEC) {
706 * We cannot rely on the fs check since SYSV IPC does have an
707 * additional creator id...
709 shp = shm_lock(shmid);
714 err = shm_checkid(shp,shmid);
719 if (ipcperms(&shp->shm_perm, acc_mode)) {
725 err = security_shm_shmat(shp, shmaddr, shmflg);
731 file = shp->shm_file;
732 size = i_size_read(file->f_dentry->d_inode);
736 down_write(¤t->mm->mmap_sem);
737 if (addr && !(shmflg & SHM_REMAP)) {
738 user_addr = ERR_PTR(-EINVAL);
739 if (find_vma_intersection(current->mm, addr, addr + size))
742 * If shm segment goes below stack, make sure there is some
743 * space left for the stack to grow (at least 4 pages).
745 if (addr < current->mm->start_stack &&
746 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
750 user_addr = (void*) do_mmap (file, addr, size, prot, flags, 0);
753 up_write(¤t->mm->mmap_sem);
756 if(!(shp = shm_lock(shmid)))
759 if(shp->shm_nattch == 0 &&
760 shp->shm_flags & SHM_DEST)
766 *raddr = (unsigned long) user_addr;
768 if (IS_ERR(user_addr))
769 err = PTR_ERR(user_addr);
775 * detach and kill segment if marked destroyed.
776 * The work is done in shm_close.
778 asmlinkage long sys_shmdt(char __user *shmaddr)
780 struct mm_struct *mm = current->mm;
781 struct vm_area_struct *vma, *next;
782 unsigned long addr = (unsigned long)shmaddr;
784 int retval = -EINVAL;
786 down_write(&mm->mmap_sem);
789 * This function tries to be smart and unmap shm segments that
790 * were modified by partial mlock or munmap calls:
791 * - It first determines the size of the shm segment that should be
792 * unmapped: It searches for a vma that is backed by shm and that
793 * started at address shmaddr. It records it's size and then unmaps
795 * - Then it unmaps all shm vmas that started at shmaddr and that
796 * are within the initially determined size.
797 * Errors from do_munmap are ignored: the function only fails if
798 * it's called with invalid parameters or if it's called to unmap
799 * a part of a vma. Both calls in this function are for full vmas,
800 * the parameters are directly copied from the vma itself and always
801 * valid - therefore do_munmap cannot fail. (famous last words?)
804 * If it had been mremap()'d, the starting address would not
805 * match the usual checks anyway. So assume all vma's are
806 * above the starting address given.
808 vma = find_vma(mm, addr);
814 * Check if the starting address would match, i.e. it's
815 * a fragment created by mprotect() and/or munmap(), or it
816 * otherwise it starts at this address with no hassles.
818 if ((vma->vm_ops == &shm_vm_ops || is_vm_hugetlb_page(vma)) &&
819 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
822 size = vma->vm_file->f_dentry->d_inode->i_size;
823 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
825 * We discovered the size of the shm segment, so
826 * break out of here and fall through to the next
827 * loop that uses the size information to stop
828 * searching for matching vma's.
838 * We need look no further than the maximum address a fragment
839 * could possibly have landed at. Also cast things to loff_t to
840 * prevent overflows and make comparisions vs. equal-width types.
842 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
845 /* finding a matching vma now does not alter retval */
846 if ((vma->vm_ops == &shm_vm_ops || is_vm_hugetlb_page(vma)) &&
847 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
849 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
853 up_write(&mm->mmap_sem);
857 #ifdef CONFIG_PROC_FS
858 static int sysvipc_shm_read_proc(char *buffer, char **start, off_t offset, int length, int *eof, void *data)
865 len += sprintf(buffer, " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n");
867 for(i = 0; i <= shm_ids.max_id; i++) {
868 struct shmid_kernel* shp;
872 #define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
873 #define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
876 if (sizeof(size_t) <= sizeof(int))
877 format = SMALL_STRING;
880 len += sprintf(buffer + len, format,
882 shm_buildid(i, shp->shm_perm.seq),
887 is_file_hugepages(shp->shm_file) ? (file_count(shp->shm_file) - 1) : shp->shm_nattch,
902 if(pos > offset + length)
909 *start = buffer + (offset - begin);
910 len -= (offset - begin);