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