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