Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/ipc/util.c |
| 3 | * Copyright (C) 1992 Krishna Balasubramanian |
| 4 | * |
| 5 | * Sep 1997 - Call suser() last after "normal" permission checks so we |
| 6 | * get BSD style process accounting right. |
| 7 | * Occurs in several places in the IPC code. |
| 8 | * Chris Evans, <chris@ferret.lmh.ox.ac.uk> |
| 9 | * Nov 1999 - ipc helper functions, unified SMP locking |
Christian Kujau | 624dffc | 2006-01-15 02:43:54 +0100 | [diff] [blame] | 10 | * Manfred Spraul <manfred@colorfullife.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * Oct 2002 - One lock per IPC id. RCU ipc_free for lock-free grow_ary(). |
| 12 | * Mingming Cao <cmm@us.ibm.com> |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 13 | * Mar 2006 - support for audit of ipc object properties |
| 14 | * Dustin Kirkland <dustin.kirkland@us.ibm.com> |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 15 | * Jun 2006 - namespaces ssupport |
| 16 | * OpenVZ, SWsoft Inc. |
| 17 | * Pavel Emelianov <xemul@openvz.org> |
Davidlohr Bueso | 05603c4 | 2013-09-11 14:26:26 -0700 | [diff] [blame] | 18 | * |
| 19 | * General sysv ipc locking scheme: |
Davidlohr Bueso | 18ccee2 | 2013-10-16 13:46:45 -0700 | [diff] [blame] | 20 | * rcu_read_lock() |
| 21 | * obtain the ipc object (kern_ipc_perm) by looking up the id in an idr |
| 22 | * tree. |
| 23 | * - perform initial checks (capabilities, auditing and permission, |
| 24 | * etc). |
| 25 | * - perform read-only operations, such as STAT, INFO commands. |
| 26 | * acquire the ipc lock (kern_ipc_perm.lock) through |
| 27 | * ipc_lock_object() |
| 28 | * - perform data updates, such as SET, RMID commands and |
| 29 | * mechanism-specific operations (semop/semtimedop, |
| 30 | * msgsnd/msgrcv, shmat/shmdt). |
| 31 | * drop the ipc lock, through ipc_unlock_object(). |
| 32 | * rcu_read_unlock() |
| 33 | * |
| 34 | * The ids->rwsem must be taken when: |
| 35 | * - creating, removing and iterating the existing entries in ipc |
| 36 | * identifier sets. |
| 37 | * - iterating through files under /proc/sysvipc/ |
| 38 | * |
| 39 | * Note that sems have a special fast path that avoids kern_ipc_perm.lock - |
| 40 | * see sem_lock(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | */ |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/mm.h> |
| 44 | #include <linux/shm.h> |
| 45 | #include <linux/init.h> |
| 46 | #include <linux/msg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/vmalloc.h> |
| 48 | #include <linux/slab.h> |
Andrew Morton | 8f68fa2 | 2013-04-29 15:08:05 -0700 | [diff] [blame] | 49 | #include <linux/notifier.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 50 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/highuid.h> |
| 52 | #include <linux/security.h> |
| 53 | #include <linux/rcupdate.h> |
| 54 | #include <linux/workqueue.h> |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 55 | #include <linux/seq_file.h> |
| 56 | #include <linux/proc_fs.h> |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 57 | #include <linux/audit.h> |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 58 | #include <linux/nsproxy.h> |
Nadia Derbey | 3e148c7 | 2007-10-18 23:40:54 -0700 | [diff] [blame] | 59 | #include <linux/rwsem.h> |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 60 | #include <linux/memory.h> |
Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 61 | #include <linux/ipc_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | #include <asm/unistd.h> |
| 64 | |
| 65 | #include "util.h" |
| 66 | |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 67 | struct ipc_proc_iface { |
| 68 | const char *path; |
| 69 | const char *header; |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 70 | int ids; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 71 | int (*show)(struct seq_file *, void *); |
| 72 | }; |
| 73 | |
Nadia Derbey | 424450c | 2008-04-29 01:00:43 -0700 | [diff] [blame] | 74 | static void ipc_memory_notifier(struct work_struct *work) |
| 75 | { |
| 76 | ipcns_notify(IPCNS_MEMCHANGED); |
| 77 | } |
| 78 | |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 79 | static int ipc_memory_callback(struct notifier_block *self, |
| 80 | unsigned long action, void *arg) |
| 81 | { |
Andrew Morton | 8f68fa2 | 2013-04-29 15:08:05 -0700 | [diff] [blame] | 82 | static DECLARE_WORK(ipc_memory_wq, ipc_memory_notifier); |
| 83 | |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 84 | switch (action) { |
| 85 | case MEM_ONLINE: /* memory successfully brought online */ |
| 86 | case MEM_OFFLINE: /* or offline: it's time to recompute msgmni */ |
| 87 | /* |
| 88 | * This is done by invoking the ipcns notifier chain with the |
| 89 | * IPC_MEMCHANGED event. |
Nadia Derbey | 424450c | 2008-04-29 01:00:43 -0700 | [diff] [blame] | 90 | * In order not to keep the lock on the hotplug memory chain |
| 91 | * for too long, queue a work item that will, when waken up, |
| 92 | * activate the ipcns notification chain. |
| 93 | * No need to keep several ipc work items on the queue. |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 94 | */ |
Nadia Derbey | 424450c | 2008-04-29 01:00:43 -0700 | [diff] [blame] | 95 | if (!work_pending(&ipc_memory_wq)) |
| 96 | schedule_work(&ipc_memory_wq); |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 97 | break; |
| 98 | case MEM_GOING_ONLINE: |
| 99 | case MEM_GOING_OFFLINE: |
| 100 | case MEM_CANCEL_ONLINE: |
| 101 | case MEM_CANCEL_OFFLINE: |
| 102 | default: |
| 103 | break; |
| 104 | } |
| 105 | |
| 106 | return NOTIFY_OK; |
| 107 | } |
| 108 | |
Andrew Morton | 8f68fa2 | 2013-04-29 15:08:05 -0700 | [diff] [blame] | 109 | static struct notifier_block ipc_memory_nb = { |
| 110 | .notifier_call = ipc_memory_callback, |
| 111 | .priority = IPC_CALLBACK_PRI, |
| 112 | }; |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | /** |
| 115 | * ipc_init - initialise IPC subsystem |
| 116 | * |
| 117 | * The various system5 IPC resources (semaphores, messages and shared |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 118 | * memory) are initialised |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 119 | * A callback routine is registered into the memory hotplug notifier |
| 120 | * chain: since msgmni scales to lowmem this callback routine will be |
| 121 | * called upon successful memory add / remove to recompute msmgni. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | */ |
| 123 | |
| 124 | static int __init ipc_init(void) |
| 125 | { |
| 126 | sem_init(); |
| 127 | msg_init(); |
| 128 | shm_init(); |
Andrew Morton | 8f68fa2 | 2013-04-29 15:08:05 -0700 | [diff] [blame] | 129 | register_hotmemory_notifier(&ipc_memory_nb); |
Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 130 | register_ipcns_notifier(&init_ipc_ns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | return 0; |
| 132 | } |
| 133 | __initcall(ipc_init); |
| 134 | |
| 135 | /** |
| 136 | * ipc_init_ids - initialise IPC identifiers |
| 137 | * @ids: Identifier set |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | * |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 139 | * Set up the sequence range to use for the ipc identifier range (limited |
| 140 | * below IPCMNI) then initialise the ids idr. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | */ |
| 142 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 143 | void ipc_init_ids(struct ipc_ids *ids) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | { |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 145 | init_rwsem(&ids->rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | ids->in_use = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | ids->seq = 0; |
Stanislav Kinsbursky | 03f5956 | 2013-01-04 15:34:50 -0800 | [diff] [blame] | 149 | ids->next_id = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | { |
| 151 | int seq_limit = INT_MAX/SEQ_MULTIPLIER; |
Alexey Dobriyan | 4be929b | 2010-05-24 14:33:03 -0700 | [diff] [blame] | 152 | if (seq_limit > USHRT_MAX) |
| 153 | ids->seq_max = USHRT_MAX; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | else |
| 155 | ids->seq_max = seq_limit; |
| 156 | } |
| 157 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 158 | idr_init(&ids->ipcs_idr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 161 | #ifdef CONFIG_PROC_FS |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 162 | static const struct file_operations sysvipc_proc_fops; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 163 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 164 | * ipc_init_proc_interface - Create a proc interface for sysipc types using a seq_file interface. |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 165 | * @path: Path in procfs |
| 166 | * @header: Banner to be printed at the beginning of the file. |
| 167 | * @ids: ipc id table to iterate. |
| 168 | * @show: show routine. |
| 169 | */ |
| 170 | void __init ipc_init_proc_interface(const char *path, const char *header, |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 171 | int ids, int (*show)(struct seq_file *, void *)) |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 172 | { |
| 173 | struct proc_dir_entry *pde; |
| 174 | struct ipc_proc_iface *iface; |
| 175 | |
| 176 | iface = kmalloc(sizeof(*iface), GFP_KERNEL); |
| 177 | if (!iface) |
| 178 | return; |
| 179 | iface->path = path; |
| 180 | iface->header = header; |
| 181 | iface->ids = ids; |
| 182 | iface->show = show; |
| 183 | |
Denis V. Lunev | 6a6375d | 2008-04-29 01:02:12 -0700 | [diff] [blame] | 184 | pde = proc_create_data(path, |
| 185 | S_IRUGO, /* world readable */ |
| 186 | NULL, /* parent dir */ |
| 187 | &sysvipc_proc_fops, |
| 188 | iface); |
| 189 | if (!pde) { |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 190 | kfree(iface); |
| 191 | } |
| 192 | } |
| 193 | #endif |
| 194 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | /** |
| 196 | * ipc_findkey - find a key in an ipc identifier set |
| 197 | * @ids: Identifier set |
| 198 | * @key: The key to find |
| 199 | * |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 200 | * Requires ipc_ids.rwsem locked. |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 201 | * Returns the LOCKED pointer to the ipc structure if found or NULL |
| 202 | * if not. |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 203 | * If key is found ipc points to the owning ipc structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | */ |
| 205 | |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 206 | static struct kern_ipc_perm *ipc_findkey(struct ipc_ids *ids, key_t key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 208 | struct kern_ipc_perm *ipc; |
| 209 | int next_id; |
| 210 | int total; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 212 | for (total = 0, next_id = 0; total < ids->in_use; next_id++) { |
| 213 | ipc = idr_find(&ids->ipcs_idr, next_id); |
| 214 | |
| 215 | if (ipc == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | continue; |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 217 | |
| 218 | if (ipc->key != key) { |
| 219 | total++; |
| 220 | continue; |
| 221 | } |
| 222 | |
Davidlohr Bueso | 32a2750 | 2013-09-11 14:26:29 -0700 | [diff] [blame] | 223 | rcu_read_lock(); |
| 224 | ipc_lock_object(ipc); |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 225 | return ipc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | } |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 227 | |
| 228 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 231 | /** |
| 232 | * ipc_get_maxid - get the last assigned id |
| 233 | * @ids: IPC identifier set |
| 234 | * |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 235 | * Called with ipc_ids.rwsem held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | */ |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 237 | |
| 238 | int ipc_get_maxid(struct ipc_ids *ids) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | { |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 240 | struct kern_ipc_perm *ipc; |
| 241 | int max_id = -1; |
| 242 | int total, id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 244 | if (ids->in_use == 0) |
| 245 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 247 | if (ids->in_use == IPCMNI) |
| 248 | return IPCMNI - 1; |
| 249 | |
| 250 | /* Look for the last assigned id */ |
| 251 | total = 0; |
| 252 | for (id = 0; id < IPCMNI && total < ids->in_use; id++) { |
| 253 | ipc = idr_find(&ids->ipcs_idr, id); |
| 254 | if (ipc != NULL) { |
| 255 | max_id = id; |
| 256 | total++; |
| 257 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 259 | return max_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /** |
| 263 | * ipc_addid - add an IPC identifier |
| 264 | * @ids: IPC identifier set |
| 265 | * @new: new IPC permission set |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 266 | * @size: limit for the number of used ids |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | * |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 268 | * Add an entry 'new' to the IPC ids idr. The permissions object is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | * initialised and the first free entry is set up and the id assigned |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 270 | * is returned. The 'new' entry is returned in a locked state on success. |
Pierre Peiffer | 283bb7f | 2007-10-18 23:40:57 -0700 | [diff] [blame] | 271 | * On failure the entry is not locked and a negative err-code is returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | * |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 273 | * Called with writer ipc_ids.rwsem held. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | int ipc_addid(struct ipc_ids* ids, struct kern_ipc_perm* new, int size) |
| 276 | { |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 277 | kuid_t euid; |
| 278 | kgid_t egid; |
Tejun Heo | 54924ea | 2013-02-27 17:04:53 -0800 | [diff] [blame] | 279 | int id; |
Stanislav Kinsbursky | 03f5956 | 2013-01-04 15:34:50 -0800 | [diff] [blame] | 280 | int next_id = ids->next_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 282 | if (size > IPCMNI) |
| 283 | size = IPCMNI; |
| 284 | |
| 285 | if (ids->in_use >= size) |
Pierre Peiffer | 283bb7f | 2007-10-18 23:40:57 -0700 | [diff] [blame] | 286 | return -ENOSPC; |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 287 | |
Tejun Heo | 54924ea | 2013-02-27 17:04:53 -0800 | [diff] [blame] | 288 | idr_preload(GFP_KERNEL); |
| 289 | |
Nadia Derbey | e00b4ff7e | 2008-11-19 15:36:08 -0800 | [diff] [blame] | 290 | spin_lock_init(&new->lock); |
| 291 | new->deleted = 0; |
| 292 | rcu_read_lock(); |
| 293 | spin_lock(&new->lock); |
| 294 | |
Tejun Heo | 54924ea | 2013-02-27 17:04:53 -0800 | [diff] [blame] | 295 | id = idr_alloc(&ids->ipcs_idr, new, |
| 296 | (next_id < 0) ? 0 : ipcid_to_idx(next_id), 0, |
| 297 | GFP_NOWAIT); |
| 298 | idr_preload_end(); |
| 299 | if (id < 0) { |
Nadia Derbey | e00b4ff7e | 2008-11-19 15:36:08 -0800 | [diff] [blame] | 300 | spin_unlock(&new->lock); |
| 301 | rcu_read_unlock(); |
Tejun Heo | 54924ea | 2013-02-27 17:04:53 -0800 | [diff] [blame] | 302 | return id; |
Nadia Derbey | e00b4ff7e | 2008-11-19 15:36:08 -0800 | [diff] [blame] | 303 | } |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | ids->in_use++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
David Howells | 414c070 | 2008-11-14 10:39:06 +1100 | [diff] [blame] | 307 | current_euid_egid(&euid, &egid); |
| 308 | new->cuid = new->uid = euid; |
| 309 | new->gid = new->cgid = egid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Stanislav Kinsbursky | 03f5956 | 2013-01-04 15:34:50 -0800 | [diff] [blame] | 311 | if (next_id < 0) { |
| 312 | new->seq = ids->seq++; |
| 313 | if (ids->seq > ids->seq_max) |
| 314 | ids->seq = 0; |
| 315 | } else { |
| 316 | new->seq = ipcid_to_seqx(next_id); |
| 317 | ids->next_id = -1; |
| 318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
Pierre Peiffer | 48dea40 | 2008-04-29 01:00:35 -0700 | [diff] [blame] | 320 | new->id = ipc_buildid(id, new->seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | return id; |
| 322 | } |
| 323 | |
| 324 | /** |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 325 | * ipcget_new - create a new ipc object |
| 326 | * @ns: namespace |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 327 | * @ids: IPC identifer set |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 328 | * @ops: the actual creation routine to call |
| 329 | * @params: its parameters |
| 330 | * |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 331 | * This routine is called by sys_msgget, sys_semget() and sys_shmget() |
| 332 | * when the key is IPC_PRIVATE. |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 333 | */ |
Pavel Emelyanov | b2d75cd | 2008-02-08 04:18:54 -0800 | [diff] [blame] | 334 | static int ipcget_new(struct ipc_namespace *ns, struct ipc_ids *ids, |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 335 | struct ipc_ops *ops, struct ipc_params *params) |
| 336 | { |
| 337 | int err; |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 338 | |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 339 | down_write(&ids->rwsem); |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 340 | err = ops->getnew(ns, params); |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 341 | up_write(&ids->rwsem); |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 342 | return err; |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * ipc_check_perms - check security and permissions for an IPC |
Randy Dunlap | 6213cfe | 2011-03-26 13:27:41 -0700 | [diff] [blame] | 347 | * @ns: IPC namespace |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 348 | * @ipcp: ipc permission set |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 349 | * @ops: the actual security routine to call |
| 350 | * @params: its parameters |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 351 | * |
| 352 | * This routine is called by sys_msgget(), sys_semget() and sys_shmget() |
| 353 | * when the key is not IPC_PRIVATE and that key already exists in the |
| 354 | * ids IDR. |
| 355 | * |
| 356 | * On success, the IPC id is returned. |
| 357 | * |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 358 | * It is called with ipc_ids.rwsem and ipcp->lock held. |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 359 | */ |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 360 | static int ipc_check_perms(struct ipc_namespace *ns, |
| 361 | struct kern_ipc_perm *ipcp, |
| 362 | struct ipc_ops *ops, |
| 363 | struct ipc_params *params) |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 364 | { |
| 365 | int err; |
| 366 | |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 367 | if (ipcperms(ns, ipcp, params->flg)) |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 368 | err = -EACCES; |
| 369 | else { |
| 370 | err = ops->associate(ipcp, params->flg); |
| 371 | if (!err) |
| 372 | err = ipcp->id; |
| 373 | } |
| 374 | |
| 375 | return err; |
| 376 | } |
| 377 | |
| 378 | /** |
| 379 | * ipcget_public - get an ipc object or create a new one |
| 380 | * @ns: namespace |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 381 | * @ids: IPC identifer set |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 382 | * @ops: the actual creation routine to call |
| 383 | * @params: its parameters |
| 384 | * |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 385 | * This routine is called by sys_msgget, sys_semget() and sys_shmget() |
| 386 | * when the key is not IPC_PRIVATE. |
| 387 | * It adds a new entry if the key is not found and does some permission |
| 388 | * / security checkings if the key is found. |
| 389 | * |
| 390 | * On success, the ipc id is returned. |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 391 | */ |
Pavel Emelyanov | b2d75cd | 2008-02-08 04:18:54 -0800 | [diff] [blame] | 392 | static int ipcget_public(struct ipc_namespace *ns, struct ipc_ids *ids, |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 393 | struct ipc_ops *ops, struct ipc_params *params) |
| 394 | { |
| 395 | struct kern_ipc_perm *ipcp; |
| 396 | int flg = params->flg; |
| 397 | int err; |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 398 | |
Nadia Derbey | 3e148c7 | 2007-10-18 23:40:54 -0700 | [diff] [blame] | 399 | /* |
| 400 | * Take the lock as a writer since we are potentially going to add |
| 401 | * a new entry + read locks are not "upgradable" |
| 402 | */ |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 403 | down_write(&ids->rwsem); |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 404 | ipcp = ipc_findkey(ids, params->key); |
| 405 | if (ipcp == NULL) { |
| 406 | /* key not used */ |
| 407 | if (!(flg & IPC_CREAT)) |
| 408 | err = -ENOENT; |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 409 | else |
| 410 | err = ops->getnew(ns, params); |
| 411 | } else { |
| 412 | /* ipc object has been locked by ipc_findkey() */ |
| 413 | |
| 414 | if (flg & IPC_CREAT && flg & IPC_EXCL) |
| 415 | err = -EEXIST; |
| 416 | else { |
| 417 | err = 0; |
| 418 | if (ops->more_checks) |
| 419 | err = ops->more_checks(ipcp, params); |
| 420 | if (!err) |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 421 | /* |
| 422 | * ipc_check_perms returns the IPC id on |
| 423 | * success |
| 424 | */ |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 425 | err = ipc_check_perms(ns, ipcp, ops, params); |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 426 | } |
| 427 | ipc_unlock(ipcp); |
| 428 | } |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 429 | up_write(&ids->rwsem); |
Nadia Derbey | 7748dbf | 2007-10-18 23:40:49 -0700 | [diff] [blame] | 430 | |
| 431 | return err; |
| 432 | } |
| 433 | |
| 434 | |
| 435 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | * ipc_rmid - remove an IPC identifier |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 437 | * @ids: IPC identifier set |
| 438 | * @ipcp: ipc perm structure containing the identifier to remove |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | * |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 440 | * ipc_ids.rwsem (as a writer) and the spinlock for this ID are held |
Nadia Derbey | 3e148c7 | 2007-10-18 23:40:54 -0700 | [diff] [blame] | 441 | * before this function is called, and remain locked on the exit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | */ |
| 443 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 444 | void ipc_rmid(struct ipc_ids *ids, struct kern_ipc_perm *ipcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | { |
Nadia Derbey | ce621f5 | 2007-10-18 23:40:52 -0700 | [diff] [blame] | 446 | int lid = ipcid_to_idx(ipcp->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 448 | idr_remove(&ids->ipcs_idr, lid); |
| 449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | ids->in_use--; |
| 451 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 452 | ipcp->deleted = 1; |
| 453 | |
| 454 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | /** |
| 458 | * ipc_alloc - allocate ipc space |
| 459 | * @size: size desired |
| 460 | * |
| 461 | * Allocate memory from the appropriate pools and return a pointer to it. |
| 462 | * NULL is returned if the allocation fails |
| 463 | */ |
| 464 | |
Rik van Riel | 6062a8d | 2013-04-30 19:15:44 -0700 | [diff] [blame] | 465 | void *ipc_alloc(int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
Rik van Riel | 6062a8d | 2013-04-30 19:15:44 -0700 | [diff] [blame] | 467 | void *out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | if(size > PAGE_SIZE) |
| 469 | out = vmalloc(size); |
| 470 | else |
| 471 | out = kmalloc(size, GFP_KERNEL); |
| 472 | return out; |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * ipc_free - free ipc space |
| 477 | * @ptr: pointer returned by ipc_alloc |
| 478 | * @size: size of block |
| 479 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 480 | * Free a block created with ipc_alloc(). The caller must know the size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | * used in the allocation call. |
| 482 | */ |
| 483 | |
| 484 | void ipc_free(void* ptr, int size) |
| 485 | { |
| 486 | if(size > PAGE_SIZE) |
| 487 | vfree(ptr); |
| 488 | else |
| 489 | kfree(ptr); |
| 490 | } |
| 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | /** |
| 493 | * ipc_rcu_alloc - allocate ipc and rcu space |
| 494 | * @size: size desired |
| 495 | * |
| 496 | * Allocate memory for the rcu header structure + the object. |
Rik van Riel | 6062a8d | 2013-04-30 19:15:44 -0700 | [diff] [blame] | 497 | * Returns the pointer to the object or NULL upon failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | */ |
Rik van Riel | 6062a8d | 2013-04-30 19:15:44 -0700 | [diff] [blame] | 499 | void *ipc_rcu_alloc(int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { |
Rik van Riel | 6062a8d | 2013-04-30 19:15:44 -0700 | [diff] [blame] | 501 | /* |
Al Viro | 600fe97 | 2013-04-29 12:42:09 -0400 | [diff] [blame] | 502 | * We prepend the allocation with the rcu struct |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | */ |
Al Viro | 600fe97 | 2013-04-29 12:42:09 -0400 | [diff] [blame] | 504 | struct ipc_rcu *out = ipc_alloc(sizeof(struct ipc_rcu) + size); |
| 505 | if (unlikely(!out)) |
| 506 | return NULL; |
| 507 | atomic_set(&out->refcount, 1); |
Manfred Spraul | 196aa01 | 2013-07-08 16:01:20 -0700 | [diff] [blame] | 508 | return out + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } |
| 510 | |
Rik van Riel | 6062a8d | 2013-04-30 19:15:44 -0700 | [diff] [blame] | 511 | int ipc_rcu_getref(void *ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | { |
Manfred Spraul | 196aa01 | 2013-07-08 16:01:20 -0700 | [diff] [blame] | 513 | struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1; |
| 514 | |
| 515 | return atomic_inc_not_zero(&p->refcount); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Davidlohr Bueso | 53dad6d | 2013-09-23 17:04:45 -0700 | [diff] [blame] | 518 | void ipc_rcu_putref(void *ptr, void (*func)(struct rcu_head *head)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
Manfred Spraul | 196aa01 | 2013-07-08 16:01:20 -0700 | [diff] [blame] | 520 | struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1; |
Al Viro | 600fe97 | 2013-04-29 12:42:09 -0400 | [diff] [blame] | 521 | |
| 522 | if (!atomic_dec_and_test(&p->refcount)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | return; |
| 524 | |
Davidlohr Bueso | 53dad6d | 2013-09-23 17:04:45 -0700 | [diff] [blame] | 525 | call_rcu(&p->rcu, func); |
| 526 | } |
| 527 | |
| 528 | void ipc_rcu_free(struct rcu_head *head) |
| 529 | { |
| 530 | struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu); |
| 531 | |
| 532 | if (is_vmalloc_addr(p)) |
| 533 | vfree(p); |
| 534 | else |
| 535 | kfree(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | /** |
| 539 | * ipcperms - check IPC permissions |
Randy Dunlap | 6213cfe | 2011-03-26 13:27:41 -0700 | [diff] [blame] | 540 | * @ns: IPC namespace |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | * @ipcp: IPC permission set |
| 542 | * @flag: desired permission set. |
| 543 | * |
| 544 | * Check user, group, other permissions for access |
| 545 | * to ipc resources. return 0 if allowed |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 546 | * |
| 547 | * @flag will most probably be 0 or S_...UGO from <linux/stat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | */ |
| 549 | |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 550 | int ipcperms(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp, short flag) |
| 551 | { |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 552 | kuid_t euid = current_euid(); |
Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 553 | int requested_mode, granted_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 555 | audit_ipc_obj(ipcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | requested_mode = (flag >> 6) | (flag >> 3) | flag; |
| 557 | granted_mode = ipcp->mode; |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 558 | if (uid_eq(euid, ipcp->cuid) || |
| 559 | uid_eq(euid, ipcp->uid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | granted_mode >>= 6; |
| 561 | else if (in_group_p(ipcp->cgid) || in_group_p(ipcp->gid)) |
| 562 | granted_mode >>= 3; |
| 563 | /* is there some bit set in requested_mode but not in granted_mode? */ |
| 564 | if ((requested_mode & ~granted_mode & 0007) && |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 565 | !ns_capable(ns->user_ns, CAP_IPC_OWNER)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | return -1; |
| 567 | |
| 568 | return security_ipc_permission(ipcp, flag); |
| 569 | } |
| 570 | |
| 571 | /* |
| 572 | * Functions to convert between the kern_ipc_perm structure and the |
| 573 | * old/new ipc_perm structures |
| 574 | */ |
| 575 | |
| 576 | /** |
| 577 | * kernel_to_ipc64_perm - convert kernel ipc permissions to user |
| 578 | * @in: kernel permissions |
| 579 | * @out: new style IPC permissions |
| 580 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 581 | * Turn the kernel object @in into a set of permissions descriptions |
| 582 | * for returning to userspace (@out). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | */ |
| 584 | |
| 585 | |
| 586 | void kernel_to_ipc64_perm (struct kern_ipc_perm *in, struct ipc64_perm *out) |
| 587 | { |
| 588 | out->key = in->key; |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 589 | out->uid = from_kuid_munged(current_user_ns(), in->uid); |
| 590 | out->gid = from_kgid_munged(current_user_ns(), in->gid); |
| 591 | out->cuid = from_kuid_munged(current_user_ns(), in->cuid); |
| 592 | out->cgid = from_kgid_munged(current_user_ns(), in->cgid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | out->mode = in->mode; |
| 594 | out->seq = in->seq; |
| 595 | } |
| 596 | |
| 597 | /** |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 598 | * ipc64_perm_to_ipc_perm - convert new ipc permissions to old |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | * @in: new style IPC permissions |
| 600 | * @out: old style IPC permissions |
| 601 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 602 | * Turn the new style permissions object @in into a compatibility |
| 603 | * object and store it into the @out pointer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | */ |
| 605 | |
| 606 | void ipc64_perm_to_ipc_perm (struct ipc64_perm *in, struct ipc_perm *out) |
| 607 | { |
| 608 | out->key = in->key; |
| 609 | SET_UID(out->uid, in->uid); |
| 610 | SET_GID(out->gid, in->gid); |
| 611 | SET_UID(out->cuid, in->cuid); |
| 612 | SET_GID(out->cgid, in->cgid); |
| 613 | out->mode = in->mode; |
| 614 | out->seq = in->seq; |
| 615 | } |
| 616 | |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 617 | /** |
Davidlohr Bueso | 4d2bff5 | 2013-04-30 19:15:19 -0700 | [diff] [blame] | 618 | * ipc_obtain_object |
| 619 | * @ids: ipc identifier set |
| 620 | * @id: ipc id to look for |
| 621 | * |
| 622 | * Look for an id in the ipc ids idr and return associated ipc object. |
| 623 | * |
| 624 | * Call inside the RCU critical section. |
| 625 | * The ipc object is *not* locked on exit. |
| 626 | */ |
| 627 | struct kern_ipc_perm *ipc_obtain_object(struct ipc_ids *ids, int id) |
| 628 | { |
| 629 | struct kern_ipc_perm *out; |
| 630 | int lid = ipcid_to_idx(id); |
| 631 | |
| 632 | out = idr_find(&ids->ipcs_idr, lid); |
| 633 | if (!out) |
| 634 | return ERR_PTR(-EINVAL); |
| 635 | |
| 636 | return out; |
| 637 | } |
| 638 | |
| 639 | /** |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 640 | * ipc_lock - Lock an ipc structure without rwsem held |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 641 | * @ids: IPC identifier set |
| 642 | * @id: ipc id to look for |
| 643 | * |
| 644 | * Look for an id in the ipc ids idr and lock the associated ipc object. |
| 645 | * |
Davidlohr Bueso | 4d2bff5 | 2013-04-30 19:15:19 -0700 | [diff] [blame] | 646 | * The ipc object is locked on successful exit. |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 647 | */ |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 648 | struct kern_ipc_perm *ipc_lock(struct ipc_ids *ids, int id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 650 | struct kern_ipc_perm *out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
| 652 | rcu_read_lock(); |
Davidlohr Bueso | 4d2bff5 | 2013-04-30 19:15:19 -0700 | [diff] [blame] | 653 | out = ipc_obtain_object(ids, id); |
| 654 | if (IS_ERR(out)) |
| 655 | goto err1; |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | spin_lock(&out->lock); |
Davidlohr Bueso | 4d2bff5 | 2013-04-30 19:15:19 -0700 | [diff] [blame] | 658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | /* ipc_rmid() may have already freed the ID while ipc_lock |
| 660 | * was spinning: here verify that the structure is still valid |
| 661 | */ |
Davidlohr Bueso | 4d2bff5 | 2013-04-30 19:15:19 -0700 | [diff] [blame] | 662 | if (!out->deleted) |
| 663 | return out; |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 664 | |
Davidlohr Bueso | 4d2bff5 | 2013-04-30 19:15:19 -0700 | [diff] [blame] | 665 | spin_unlock(&out->lock); |
| 666 | out = ERR_PTR(-EINVAL); |
| 667 | err1: |
| 668 | rcu_read_unlock(); |
| 669 | return out; |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * ipc_obtain_object_check |
| 674 | * @ids: ipc identifier set |
| 675 | * @id: ipc id to look for |
| 676 | * |
| 677 | * Similar to ipc_obtain_object() but also checks |
| 678 | * the ipc object reference counter. |
| 679 | * |
| 680 | * Call inside the RCU critical section. |
| 681 | * The ipc object is *not* locked on exit. |
| 682 | */ |
| 683 | struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id) |
| 684 | { |
| 685 | struct kern_ipc_perm *out = ipc_obtain_object(ids, id); |
| 686 | |
| 687 | if (IS_ERR(out)) |
| 688 | goto out; |
| 689 | |
| 690 | if (ipc_checkid(out, id)) |
| 691 | return ERR_PTR(-EIDRM); |
| 692 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | return out; |
| 694 | } |
| 695 | |
Pavel Emelyanov | b2d75cd | 2008-02-08 04:18:54 -0800 | [diff] [blame] | 696 | /** |
| 697 | * ipcget - Common sys_*get() code |
| 698 | * @ns : namsepace |
| 699 | * @ids : IPC identifier set |
| 700 | * @ops : operations to be called on ipc object creation, permission checks |
| 701 | * and further checks |
| 702 | * @params : the parameters needed by the previous operations. |
| 703 | * |
| 704 | * Common routine called by sys_msgget(), sys_semget() and sys_shmget(). |
| 705 | */ |
| 706 | int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids, |
| 707 | struct ipc_ops *ops, struct ipc_params *params) |
| 708 | { |
| 709 | if (params->key == IPC_PRIVATE) |
| 710 | return ipcget_new(ns, ids, ops, params); |
| 711 | else |
| 712 | return ipcget_public(ns, ids, ops, params); |
| 713 | } |
| 714 | |
Pierre Peiffer | 8f4a380 | 2008-04-29 01:00:51 -0700 | [diff] [blame] | 715 | /** |
| 716 | * ipc_update_perm - update the permissions of an IPC. |
| 717 | * @in: the permission given as input. |
| 718 | * @out: the permission of the ipc to set. |
| 719 | */ |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 720 | int ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out) |
Pierre Peiffer | 8f4a380 | 2008-04-29 01:00:51 -0700 | [diff] [blame] | 721 | { |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 722 | kuid_t uid = make_kuid(current_user_ns(), in->uid); |
| 723 | kgid_t gid = make_kgid(current_user_ns(), in->gid); |
| 724 | if (!uid_valid(uid) || !gid_valid(gid)) |
| 725 | return -EINVAL; |
| 726 | |
| 727 | out->uid = uid; |
| 728 | out->gid = gid; |
Pierre Peiffer | 8f4a380 | 2008-04-29 01:00:51 -0700 | [diff] [blame] | 729 | out->mode = (out->mode & ~S_IRWXUGO) |
| 730 | | (in->mode & S_IRWXUGO); |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 731 | |
| 732 | return 0; |
Pierre Peiffer | 8f4a380 | 2008-04-29 01:00:51 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 735 | /** |
Davidlohr Bueso | 3b1c4ad | 2013-09-11 14:26:17 -0700 | [diff] [blame] | 736 | * ipcctl_pre_down_nolock - retrieve an ipc and check permissions for some IPC_XXX cmd |
Randy Dunlap | 6213cfe | 2011-03-26 13:27:41 -0700 | [diff] [blame] | 737 | * @ns: the ipc namespace |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 738 | * @ids: the table of ids where to look for the ipc |
| 739 | * @id: the id of the ipc to retrieve |
| 740 | * @cmd: the cmd to check |
| 741 | * @perm: the permission to set |
| 742 | * @extra_perm: one extra permission parameter used by msq |
| 743 | * |
| 744 | * This function does some common audit and permissions check for some IPC_XXX |
| 745 | * cmd and is called from semctl_down, shmctl_down and msgctl_down. |
| 746 | * It must be called without any lock held and |
| 747 | * - retrieves the ipc with the given id in the given table. |
| 748 | * - performs some audit and permission check, depending on the given cmd |
Davidlohr Bueso | 3b1c4ad | 2013-09-11 14:26:17 -0700 | [diff] [blame] | 749 | * - returns a pointer to the ipc object or otherwise, the corresponding error. |
Davidlohr Bueso | 7b4cc5d | 2013-07-08 16:01:12 -0700 | [diff] [blame] | 750 | * |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 751 | * Call holding the both the rwsem and the rcu read lock. |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 752 | */ |
Davidlohr Bueso | 444d0f6 | 2013-04-30 19:15:24 -0700 | [diff] [blame] | 753 | struct kern_ipc_perm *ipcctl_pre_down_nolock(struct ipc_namespace *ns, |
Davidlohr Bueso | 3b1c4ad | 2013-09-11 14:26:17 -0700 | [diff] [blame] | 754 | struct ipc_ids *ids, int id, int cmd, |
| 755 | struct ipc64_perm *perm, int extra_perm) |
Davidlohr Bueso | 444d0f6 | 2013-04-30 19:15:24 -0700 | [diff] [blame] | 756 | { |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 757 | kuid_t euid; |
Davidlohr Bueso | 444d0f6 | 2013-04-30 19:15:24 -0700 | [diff] [blame] | 758 | int err = -EPERM; |
| 759 | struct kern_ipc_perm *ipcp; |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 760 | |
Davidlohr Bueso | 444d0f6 | 2013-04-30 19:15:24 -0700 | [diff] [blame] | 761 | ipcp = ipc_obtain_object_check(ids, id); |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 762 | if (IS_ERR(ipcp)) { |
| 763 | err = PTR_ERR(ipcp); |
Davidlohr Bueso | 7b4cc5d | 2013-07-08 16:01:12 -0700 | [diff] [blame] | 764 | goto err; |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 765 | } |
| 766 | |
Al Viro | a33e675 | 2008-12-10 03:40:06 -0500 | [diff] [blame] | 767 | audit_ipc_obj(ipcp); |
Al Viro | e816f37 | 2008-12-10 03:47:15 -0500 | [diff] [blame] | 768 | if (cmd == IPC_SET) |
| 769 | audit_ipc_set_perm(extra_perm, perm->uid, |
Davidlohr Bueso | 444d0f6 | 2013-04-30 19:15:24 -0700 | [diff] [blame] | 770 | perm->gid, perm->mode); |
David Howells | 414c070 | 2008-11-14 10:39:06 +1100 | [diff] [blame] | 771 | |
| 772 | euid = current_euid(); |
Eric W. Biederman | 1efdb69 | 2012-02-07 16:54:11 -0800 | [diff] [blame] | 773 | if (uid_eq(euid, ipcp->cuid) || uid_eq(euid, ipcp->uid) || |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 774 | ns_capable(ns->user_ns, CAP_SYS_ADMIN)) |
Davidlohr Bueso | 7b4cc5d | 2013-07-08 16:01:12 -0700 | [diff] [blame] | 775 | return ipcp; /* successful lookup */ |
| 776 | err: |
Pierre Peiffer | a5f75e7 | 2008-04-29 01:00:54 -0700 | [diff] [blame] | 777 | return ERR_PTR(err); |
| 778 | } |
| 779 | |
Will Deacon | c1d7e01 | 2012-07-30 14:42:46 -0700 | [diff] [blame] | 780 | #ifdef CONFIG_ARCH_WANT_IPC_PARSE_VERSION |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | |
| 782 | |
| 783 | /** |
| 784 | * ipc_parse_version - IPC call version |
| 785 | * @cmd: pointer to command |
| 786 | * |
| 787 | * Return IPC_64 for new style IPC and IPC_OLD for old style IPC. |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 788 | * The @cmd value is turned from an encoding command and version into |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | * just the command code. |
| 790 | */ |
| 791 | |
| 792 | int ipc_parse_version (int *cmd) |
| 793 | { |
| 794 | if (*cmd & IPC_64) { |
| 795 | *cmd ^= IPC_64; |
| 796 | return IPC_64; |
| 797 | } else { |
| 798 | return IPC_OLD; |
| 799 | } |
| 800 | } |
| 801 | |
Will Deacon | c1d7e01 | 2012-07-30 14:42:46 -0700 | [diff] [blame] | 802 | #endif /* CONFIG_ARCH_WANT_IPC_PARSE_VERSION */ |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 803 | |
| 804 | #ifdef CONFIG_PROC_FS |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 805 | struct ipc_proc_iter { |
| 806 | struct ipc_namespace *ns; |
| 807 | struct ipc_proc_iface *iface; |
| 808 | }; |
| 809 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 810 | /* |
| 811 | * This routine locks the ipc structure found at least at position pos. |
| 812 | */ |
Adrian Bunk | b524b9a | 2008-02-06 01:36:28 -0800 | [diff] [blame] | 813 | static struct kern_ipc_perm *sysvipc_find_ipc(struct ipc_ids *ids, loff_t pos, |
| 814 | loff_t *new_pos) |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 815 | { |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 816 | struct kern_ipc_perm *ipc; |
| 817 | int total, id; |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 818 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 819 | total = 0; |
| 820 | for (id = 0; id < pos && total < ids->in_use; id++) { |
| 821 | ipc = idr_find(&ids->ipcs_idr, id); |
| 822 | if (ipc != NULL) |
| 823 | total++; |
| 824 | } |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 825 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 826 | if (total >= ids->in_use) |
| 827 | return NULL; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 828 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 829 | for ( ; pos < IPCMNI; pos++) { |
| 830 | ipc = idr_find(&ids->ipcs_idr, pos); |
| 831 | if (ipc != NULL) { |
| 832 | *new_pos = pos + 1; |
Davidlohr Bueso | 32a2750 | 2013-09-11 14:26:29 -0700 | [diff] [blame] | 833 | rcu_read_lock(); |
| 834 | ipc_lock_object(ipc); |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 835 | return ipc; |
| 836 | } |
| 837 | } |
| 838 | |
| 839 | /* Out of range - return NULL to terminate iteration */ |
| 840 | return NULL; |
| 841 | } |
| 842 | |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 843 | static void *sysvipc_proc_next(struct seq_file *s, void *it, loff_t *pos) |
| 844 | { |
| 845 | struct ipc_proc_iter *iter = s->private; |
| 846 | struct ipc_proc_iface *iface = iter->iface; |
| 847 | struct kern_ipc_perm *ipc = it; |
| 848 | |
| 849 | /* If we had an ipc id locked before, unlock it */ |
| 850 | if (ipc && ipc != SEQ_START_TOKEN) |
| 851 | ipc_unlock(ipc); |
| 852 | |
Pierre Peiffer | ed2ddbf | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 853 | return sysvipc_find_ipc(&iter->ns->ids[iface->ids], *pos, pos); |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 854 | } |
| 855 | |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 856 | /* |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 857 | * File positions: pos 0 -> header, pos n -> ipc id = n - 1. |
| 858 | * SeqFile iterator: iterator value locked ipc pointer or SEQ_TOKEN_START. |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 859 | */ |
| 860 | static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos) |
| 861 | { |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 862 | struct ipc_proc_iter *iter = s->private; |
| 863 | struct ipc_proc_iface *iface = iter->iface; |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 864 | struct ipc_ids *ids; |
| 865 | |
Pierre Peiffer | ed2ddbf | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 866 | ids = &iter->ns->ids[iface->ids]; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 867 | |
| 868 | /* |
| 869 | * Take the lock - this will be released by the corresponding |
| 870 | * call to stop(). |
| 871 | */ |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 872 | down_read(&ids->rwsem); |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 873 | |
| 874 | /* pos < 0 is invalid */ |
| 875 | if (*pos < 0) |
| 876 | return NULL; |
| 877 | |
| 878 | /* pos == 0 means header */ |
| 879 | if (*pos == 0) |
| 880 | return SEQ_START_TOKEN; |
| 881 | |
| 882 | /* Find the (pos-1)th ipc */ |
Nadia Derbey | 7ca7e56 | 2007-10-18 23:40:48 -0700 | [diff] [blame] | 883 | return sysvipc_find_ipc(ids, *pos - 1, pos); |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | static void sysvipc_proc_stop(struct seq_file *s, void *it) |
| 887 | { |
| 888 | struct kern_ipc_perm *ipc = it; |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 889 | struct ipc_proc_iter *iter = s->private; |
| 890 | struct ipc_proc_iface *iface = iter->iface; |
Kirill Korotaev | 73ea413 | 2006-10-02 02:18:20 -0700 | [diff] [blame] | 891 | struct ipc_ids *ids; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 892 | |
Nadia Derbey | f4566f0 | 2007-10-18 23:40:53 -0700 | [diff] [blame] | 893 | /* If we had a locked structure, release it */ |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 894 | if (ipc && ipc != SEQ_START_TOKEN) |
| 895 | ipc_unlock(ipc); |
| 896 | |
Pierre Peiffer | ed2ddbf | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 897 | ids = &iter->ns->ids[iface->ids]; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 898 | /* Release the lock we took in start() */ |
Davidlohr Bueso | d9a605e | 2013-09-11 14:26:24 -0700 | [diff] [blame] | 899 | up_read(&ids->rwsem); |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 900 | } |
| 901 | |
| 902 | static int sysvipc_proc_show(struct seq_file *s, void *it) |
| 903 | { |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 904 | struct ipc_proc_iter *iter = s->private; |
| 905 | struct ipc_proc_iface *iface = iter->iface; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 906 | |
| 907 | if (it == SEQ_START_TOKEN) |
| 908 | return seq_puts(s, iface->header); |
| 909 | |
| 910 | return iface->show(s, it); |
| 911 | } |
| 912 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 913 | static const struct seq_operations sysvipc_proc_seqops = { |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 914 | .start = sysvipc_proc_start, |
| 915 | .stop = sysvipc_proc_stop, |
| 916 | .next = sysvipc_proc_next, |
| 917 | .show = sysvipc_proc_show, |
| 918 | }; |
| 919 | |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 920 | static int sysvipc_proc_open(struct inode *inode, struct file *file) |
| 921 | { |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 922 | int ret; |
| 923 | struct seq_file *seq; |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 924 | struct ipc_proc_iter *iter; |
| 925 | |
| 926 | ret = -ENOMEM; |
| 927 | iter = kmalloc(sizeof(*iter), GFP_KERNEL); |
| 928 | if (!iter) |
| 929 | goto out; |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 930 | |
| 931 | ret = seq_open(file, &sysvipc_proc_seqops); |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 932 | if (ret) |
| 933 | goto out_kfree; |
| 934 | |
| 935 | seq = file->private_data; |
| 936 | seq->private = iter; |
| 937 | |
Al Viro | d9dda78 | 2013-03-31 18:16:14 -0400 | [diff] [blame] | 938 | iter->iface = PDE_DATA(inode); |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 939 | iter->ns = get_ipc_ns(current->nsproxy->ipc_ns); |
| 940 | out: |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 941 | return ret; |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 942 | out_kfree: |
| 943 | kfree(iter); |
| 944 | goto out; |
| 945 | } |
| 946 | |
| 947 | static int sysvipc_proc_release(struct inode *inode, struct file *file) |
| 948 | { |
| 949 | struct seq_file *seq = file->private_data; |
| 950 | struct ipc_proc_iter *iter = seq->private; |
| 951 | put_ipc_ns(iter->ns); |
| 952 | return seq_release_private(inode, file); |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 953 | } |
| 954 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 955 | static const struct file_operations sysvipc_proc_fops = { |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 956 | .open = sysvipc_proc_open, |
| 957 | .read = seq_read, |
| 958 | .llseek = seq_lseek, |
Eric W. Biederman | bc1fc6d | 2007-02-12 00:52:10 -0800 | [diff] [blame] | 959 | .release = sysvipc_proc_release, |
Mike Waychison | ae78177 | 2005-09-06 15:17:09 -0700 | [diff] [blame] | 960 | }; |
| 961 | #endif /* CONFIG_PROC_FS */ |