blob: af976fc6a464ff1015cf6ccc64088e385f43872f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Kujau624dffc2006-01-15 02:43:54 +010010 * Manfred Spraul <manfred@colorfullife.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Oct 2002 - One lock per IPC id. RCU ipc_free for lock-free grow_ary().
12 * Mingming Cao <cmm@us.ibm.com>
Steve Grubb073115d2006-04-02 17:07:33 -040013 * Mar 2006 - support for audit of ipc object properties
14 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
Kirill Korotaev73ea4132006-10-02 02:18:20 -070015 * Jun 2006 - namespaces ssupport
16 * OpenVZ, SWsoft Inc.
17 * Pavel Emelianov <xemul@openvz.org>
Davidlohr Bueso05603c42013-09-11 14:26:26 -070018 *
19 * General sysv ipc locking scheme:
Davidlohr Bueso18ccee22013-10-16 13:46:45 -070020 * 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 Torvalds1da177e2005-04-16 15:20:36 -070041 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/mm.h>
44#include <linux/shm.h>
45#include <linux/init.h>
46#include <linux/msg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/vmalloc.h>
48#include <linux/slab.h>
Andrew Morton8f68fa22013-04-29 15:08:05 -070049#include <linux/notifier.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080050#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/highuid.h>
52#include <linux/security.h>
53#include <linux/rcupdate.h>
54#include <linux/workqueue.h>
Mike Waychisonae781772005-09-06 15:17:09 -070055#include <linux/seq_file.h>
56#include <linux/proc_fs.h>
Steve Grubb073115d2006-04-02 17:07:33 -040057#include <linux/audit.h>
Kirill Korotaev73ea4132006-10-02 02:18:20 -070058#include <linux/nsproxy.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070059#include <linux/rwsem.h>
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070060#include <linux/memory.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080061#include <linux/ipc_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#include <asm/unistd.h>
64
65#include "util.h"
66
Mike Waychisonae781772005-09-06 15:17:09 -070067struct ipc_proc_iface {
68 const char *path;
69 const char *header;
Kirill Korotaev73ea4132006-10-02 02:18:20 -070070 int ids;
Mike Waychisonae781772005-09-06 15:17:09 -070071 int (*show)(struct seq_file *, void *);
72};
73
Nadia Derbey424450c2008-04-29 01:00:43 -070074static void ipc_memory_notifier(struct work_struct *work)
75{
76 ipcns_notify(IPCNS_MEMCHANGED);
77}
78
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070079static int ipc_memory_callback(struct notifier_block *self,
80 unsigned long action, void *arg)
81{
Andrew Morton8f68fa22013-04-29 15:08:05 -070082 static DECLARE_WORK(ipc_memory_wq, ipc_memory_notifier);
83
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070084 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 Derbey424450c2008-04-29 01:00:43 -070090 * 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 Derbeyb6b337a2008-04-29 01:00:42 -070093 */
Xie XiuQi206fa942013-11-12 15:11:46 -080094 schedule_work(&ipc_memory_wq);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070095 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 Morton8f68fa22013-04-29 15:08:05 -0700107static struct notifier_block ipc_memory_nb = {
108 .notifier_call = ipc_memory_callback,
109 .priority = IPC_CALLBACK_PRI,
110};
Nadia Derbeyb6b337a2008-04-29 01:00:42 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800113 * ipc_init - initialise ipc subsystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800115 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static int __init ipc_init(void)
123{
124 sem_init();
125 msg_init();
126 shm_init();
Andrew Morton8f68fa22013-04-29 15:08:05 -0700127 register_hotmemory_notifier(&ipc_memory_nb);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -0700128 register_ipcns_notifier(&init_ipc_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return 0;
130}
131__initcall(ipc_init);
132
133/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800134 * ipc_init_ids - initialise ipc identifiers
135 * @ids: ipc identifier set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800137 * Set up the sequence range to use for the ipc identifier range (limited
138 * below IPCMNI) then initialise the ids idr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700140void ipc_init_ids(struct ipc_ids *ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700142 init_rwsem(&ids->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 ids->in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 ids->seq = 0;
Stanislav Kinsbursky03f59562013-01-04 15:34:50 -0800146 ids->next_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 {
148 int seq_limit = INT_MAX/SEQ_MULTIPLIER;
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700149 if (seq_limit > USHRT_MAX)
150 ids->seq_max = USHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 else
Manfred Spraul239521f2014-01-27 17:07:04 -0800152 ids->seq_max = seq_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
154
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700155 idr_init(&ids->ipcs_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Mike Waychisonae781772005-09-06 15:17:09 -0700158#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -0800159static const struct file_operations sysvipc_proc_fops;
Mike Waychisonae781772005-09-06 15:17:09 -0700160/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800161 * 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 Waychisonae781772005-09-06 15:17:09 -0700166 */
167void __init ipc_init_proc_interface(const char *path, const char *header,
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700168 int ids, int (*show)(struct seq_file *, void *))
Mike Waychisonae781772005-09-06 15:17:09 -0700169{
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. Lunev6a6375d2008-04-29 01:02:12 -0700181 pde = proc_create_data(path,
182 S_IRUGO, /* world readable */
183 NULL, /* parent dir */
184 &sysvipc_proc_fops,
185 iface);
186 if (!pde) {
Mike Waychisonae781772005-09-06 15:17:09 -0700187 kfree(iface);
188 }
189}
190#endif
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800193 * ipc_findkey - find a key in an ipc identifier set
194 * @ids: ipc identifier set
195 * @key: key to find
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800197 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700201 */
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700202static struct kern_ipc_perm *ipc_findkey(struct ipc_ids *ids, key_t key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700204 struct kern_ipc_perm *ipc;
205 int next_id;
206 int total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700208 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 Torvalds1da177e2005-04-16 15:20:36 -0700212 continue;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700213
214 if (ipc->key != key) {
215 total++;
216 continue;
217 }
218
Davidlohr Bueso32a27502013-09-11 14:26:29 -0700219 rcu_read_lock();
220 ipc_lock_object(ipc);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700221 return ipc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700223
224 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700227/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800228 * ipc_get_maxid - get the last assigned id
229 * @ids: ipc identifier set
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700230 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800231 * Called with ipc_ids.rwsem held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700233int ipc_get_maxid(struct ipc_ids *ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700235 struct kern_ipc_perm *ipc;
236 int max_id = -1;
237 int total, id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700239 if (ids->in_use == 0)
240 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700242 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 Torvalds1da177e2005-04-16 15:20:36 -0700253 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700254 return max_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800258 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700262 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800263 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700267 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800268 * Called with writer ipc_ids.rwsem held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Manfred Spraul239521f2014-01-27 17:07:04 -0800270int ipc_addid(struct ipc_ids *ids, struct kern_ipc_perm *new, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800272 kuid_t euid;
273 kgid_t egid;
Tejun Heo54924ea2013-02-27 17:04:53 -0800274 int id;
Stanislav Kinsbursky03f59562013-01-04 15:34:50 -0800275 int next_id = ids->next_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700277 if (size > IPCMNI)
278 size = IPCMNI;
279
280 if (ids->in_use >= size)
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700281 return -ENOSPC;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700282
Tejun Heo54924ea2013-02-27 17:04:53 -0800283 idr_preload(GFP_KERNEL);
284
Nadia Derbeye00b4ff7e2008-11-19 15:36:08 -0800285 spin_lock_init(&new->lock);
Rafael Aquini72a8ff22014-01-27 17:07:02 -0800286 new->deleted = false;
Nadia Derbeye00b4ff7e2008-11-19 15:36:08 -0800287 rcu_read_lock();
288 spin_lock(&new->lock);
289
Tejun Heo54924ea2013-02-27 17:04:53 -0800290 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 Derbeye00b4ff7e2008-11-19 15:36:08 -0800295 spin_unlock(&new->lock);
296 rcu_read_unlock();
Tejun Heo54924ea2013-02-27 17:04:53 -0800297 return id;
Nadia Derbeye00b4ff7e2008-11-19 15:36:08 -0800298 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ids->in_use++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
David Howells414c0702008-11-14 10:39:06 +1100302 current_euid_egid(&euid, &egid);
303 new->cuid = new->uid = euid;
304 new->gid = new->cgid = egid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Stanislav Kinsbursky03f59562013-01-04 15:34:50 -0800306 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 Torvalds1da177e2005-04-16 15:20:36 -0700314
Pierre Peiffer48dea402008-04-29 01:00:35 -0700315 new->id = ipc_buildid(id, new->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return id;
317}
318
319/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800320 * 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 Derbey7748dbf2007-10-18 23:40:49 -0700325 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800326 * This routine is called by sys_msgget, sys_semget() and sys_shmget()
327 * when the key is IPC_PRIVATE.
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700328 */
Pavel Emelyanovb2d75cd2008-02-08 04:18:54 -0800329static int ipcget_new(struct ipc_namespace *ns, struct ipc_ids *ids,
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700330 struct ipc_ops *ops, struct ipc_params *params)
331{
332 int err;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700333
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700334 down_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700335 err = ops->getnew(ns, params);
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700336 up_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700337 return err;
338}
339
340/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800341 * 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 Derbeyf4566f02007-10-18 23:40:53 -0700346 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800347 * 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 Derbeyf4566f02007-10-18 23:40:53 -0700350 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800351 * On success, the ipc id is returned.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700352 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800353 * It is called with ipc_ids.rwsem and ipcp->lock held.
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700354 */
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700355static 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 Derbey7748dbf2007-10-18 23:40:49 -0700359{
360 int err;
361
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700362 if (ipcperms(ns, ipcp, params->flg))
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700363 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 Bueso8001c852014-01-27 17:07:05 -0800374 * 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 Derbey7748dbf2007-10-18 23:40:49 -0700379 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800380 * 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 Derbeyf4566f02007-10-18 23:40:53 -0700384 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800385 * On success, the ipc id is returned.
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700386 */
Pavel Emelyanovb2d75cd2008-02-08 04:18:54 -0800387static int ipcget_public(struct ipc_namespace *ns, struct ipc_ids *ids,
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700388 struct ipc_ops *ops, struct ipc_params *params)
389{
390 struct kern_ipc_perm *ipcp;
391 int flg = params->flg;
392 int err;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700393
Nadia Derbey3e148c72007-10-18 23:40:54 -0700394 /*
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 Buesod9a605e2013-09-11 14:26:24 -0700398 down_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700399 ipcp = ipc_findkey(ids, params->key);
400 if (ipcp == NULL) {
401 /* key not used */
402 if (!(flg & IPC_CREAT))
403 err = -ENOENT;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700404 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 Derbeyf4566f02007-10-18 23:40:53 -0700416 /*
417 * ipc_check_perms returns the IPC id on
418 * success
419 */
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700420 err = ipc_check_perms(ns, ipcp, ops, params);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700421 }
422 ipc_unlock(ipcp);
423 }
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700424 up_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700425
426 return err;
427}
428
429
430/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800431 * ipc_rmid - remove an ipc identifier
432 * @ids: ipc identifier set
433 * @ipcp: ipc perm structure containing the identifier to remove
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800435 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700437 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700438void ipc_rmid(struct ipc_ids *ids, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Nadia Derbeyce621f52007-10-18 23:40:52 -0700440 int lid = ipcid_to_idx(ipcp->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700442 idr_remove(&ids->ipcs_idr, lid);
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ids->in_use--;
445
Rafael Aquini72a8ff22014-01-27 17:07:02 -0800446 ipcp->deleted = true;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700447
448 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800452 * ipc_alloc - allocate ipc space
453 * @size: size desired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800455 * Allocate memory from the appropriate pools and return a pointer to it.
456 * NULL is returned if the allocation fails
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 */
Rik van Riel6062a8d2013-04-30 19:15:44 -0700458void *ipc_alloc(int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Rik van Riel6062a8d2013-04-30 19:15:44 -0700460 void *out;
Manfred Spraul239521f2014-01-27 17:07:04 -0800461 if (size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 out = vmalloc(size);
463 else
464 out = kmalloc(size, GFP_KERNEL);
465 return out;
466}
467
468/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800469 * ipc_free - free ipc space
470 * @ptr: pointer returned by ipc_alloc
471 * @size: size of block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800473 * Free a block created with ipc_alloc(). The caller must know the size
474 * used in the allocation call.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
Manfred Spraul239521f2014-01-27 17:07:04 -0800476void ipc_free(void *ptr, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Manfred Spraul239521f2014-01-27 17:07:04 -0800478 if (size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 vfree(ptr);
480 else
481 kfree(ptr);
482}
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800485 * ipc_rcu_alloc - allocate ipc and rcu space
486 * @size: size desired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800488 * Allocate memory for the rcu header structure + the object.
489 * Returns the pointer to the object or NULL upon failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 */
Rik van Riel6062a8d2013-04-30 19:15:44 -0700491void *ipc_rcu_alloc(int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Rik van Riel6062a8d2013-04-30 19:15:44 -0700493 /*
Al Viro600fe972013-04-29 12:42:09 -0400494 * We prepend the allocation with the rcu struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 */
Al Viro600fe972013-04-29 12:42:09 -0400496 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 Spraul196aa012013-07-08 16:01:20 -0700500 return out + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Rik van Riel6062a8d2013-04-30 19:15:44 -0700503int ipc_rcu_getref(void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Manfred Spraul196aa012013-07-08 16:01:20 -0700505 struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
506
507 return atomic_inc_not_zero(&p->refcount);
David Howells65f27f32006-11-22 14:55:48 +0000508}
509
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700510void ipc_rcu_putref(void *ptr, void (*func)(struct rcu_head *head))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Manfred Spraul196aa012013-07-08 16:01:20 -0700512 struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
Al Viro600fe972013-04-29 12:42:09 -0400513
514 if (!atomic_dec_and_test(&p->refcount))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return;
516
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700517 call_rcu(&p->rcu, func);
518}
519
520void 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 Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800531 * ipcperms - check ipc permissions
532 * @ns: ipc namespace
533 * @ipcp: ipc permission set
534 * @flag: desired permission set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800536 * Check user, group, other permissions for access
537 * to ipc resources. return 0 if allowed
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700538 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800539 * @flag will most probably be 0 or S_...UGO from <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700541int ipcperms(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp, short flag)
542{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800543 kuid_t euid = current_euid();
Al Viroa33e6752008-12-10 03:40:06 -0500544 int requested_mode, granted_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Al Viroa33e6752008-12-10 03:40:06 -0500546 audit_ipc_obj(ipcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 requested_mode = (flag >> 6) | (flag >> 3) | flag;
548 granted_mode = ipcp->mode;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800549 if (uid_eq(euid, ipcp->cuid) ||
550 uid_eq(euid, ipcp->uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 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. Hallynb0e77592011-03-23 16:43:24 -0700556 !ns_capable(ns->user_ns, CAP_IPC_OWNER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 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 Bueso8001c852014-01-27 17:07:05 -0800568 * kernel_to_ipc64_perm - convert kernel ipc permissions to user
569 * @in: kernel permissions
570 * @out: new style ipc permissions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800572 * Turn the kernel object @in into a set of permissions descriptions
573 * for returning to userspace (@out).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 */
Manfred Spraul239521f2014-01-27 17:07:04 -0800575void kernel_to_ipc64_perm(struct kern_ipc_perm *in, struct ipc64_perm *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 out->key = in->key;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800578 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 Torvalds1da177e2005-04-16 15:20:36 -0700582 out->mode = in->mode;
583 out->seq = in->seq;
584}
585
586/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800587 * ipc64_perm_to_ipc_perm - convert new ipc permissions to old
588 * @in: new style ipc permissions
589 * @out: old style ipc permissions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800591 * Turn the new style permissions object @in into a compatibility
592 * object and store it into the @out pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
Manfred Spraul239521f2014-01-27 17:07:04 -0800594void ipc64_perm_to_ipc_perm(struct ipc64_perm *in, struct ipc_perm *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
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 Derbeyf4566f02007-10-18 23:40:53 -0700605/**
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700606 * 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 */
615struct 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 Bueso8001c852014-01-27 17:07:05 -0800628 * ipc_lock - lock an ipc structure without rwsem held
629 * @ids: ipc identifier set
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700630 * @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 Bueso4d2bff52013-04-30 19:15:19 -0700634 * The ipc object is locked on successful exit.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700635 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700636struct kern_ipc_perm *ipc_lock(struct ipc_ids *ids, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700638 struct kern_ipc_perm *out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 rcu_read_lock();
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700641 out = ipc_obtain_object(ids, id);
642 if (IS_ERR(out))
643 goto err1;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 spin_lock(&out->lock);
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* ipc_rmid() may have already freed the ID while ipc_lock
648 * was spinning: here verify that the structure is still valid
649 */
Rafael Aquini72a8ff22014-01-27 17:07:02 -0800650 if (ipc_valid_object(out))
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700651 return out;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700652
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700653 spin_unlock(&out->lock);
654 out = ERR_PTR(-EINVAL);
655err1:
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 */
671struct 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);
680out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return out;
682}
683
Pavel Emelyanovb2d75cd2008-02-08 04:18:54 -0800684/**
685 * ipcget - Common sys_*get() code
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800686 * @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 Emelyanovb2d75cd2008-02-08 04:18:54 -0800691 *
692 * Common routine called by sys_msgget(), sys_semget() and sys_shmget().
693 */
694int 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 Peiffer8f4a3802008-04-29 01:00:51 -0700703/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800704 * ipc_update_perm - update the permissions of an ipc object
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700705 * @in: the permission given as input.
706 * @out: the permission of the ipc to set.
707 */
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800708int ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out)
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700709{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800710 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 Peiffer8f4a3802008-04-29 01:00:51 -0700717 out->mode = (out->mode & ~S_IRWXUGO)
718 | (in->mode & S_IRWXUGO);
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800719
720 return 0;
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700721}
722
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700723/**
Davidlohr Bueso3b1c4ad2013-09-11 14:26:17 -0700724 * ipcctl_pre_down_nolock - retrieve an ipc and check permissions for some IPC_XXX cmd
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800725 * @ns: ipc namespace
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700726 * @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 Bueso3b1c4ad2013-09-11 14:26:17 -0700737 * - returns a pointer to the ipc object or otherwise, the corresponding error.
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700738 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700739 * Call holding the both the rwsem and the rcu read lock.
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700740 */
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700741struct kern_ipc_perm *ipcctl_pre_down_nolock(struct ipc_namespace *ns,
Davidlohr Bueso3b1c4ad2013-09-11 14:26:17 -0700742 struct ipc_ids *ids, int id, int cmd,
743 struct ipc64_perm *perm, int extra_perm)
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700744{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800745 kuid_t euid;
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700746 int err = -EPERM;
747 struct kern_ipc_perm *ipcp;
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700748
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700749 ipcp = ipc_obtain_object_check(ids, id);
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700750 if (IS_ERR(ipcp)) {
751 err = PTR_ERR(ipcp);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700752 goto err;
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700753 }
754
Al Viroa33e6752008-12-10 03:40:06 -0500755 audit_ipc_obj(ipcp);
Al Viroe816f372008-12-10 03:47:15 -0500756 if (cmd == IPC_SET)
757 audit_ipc_set_perm(extra_perm, perm->uid,
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700758 perm->gid, perm->mode);
David Howells414c0702008-11-14 10:39:06 +1100759
760 euid = current_euid();
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800761 if (uid_eq(euid, ipcp->cuid) || uid_eq(euid, ipcp->uid) ||
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700762 ns_capable(ns->user_ns, CAP_SYS_ADMIN))
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700763 return ipcp; /* successful lookup */
764err:
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700765 return ERR_PTR(err);
766}
767
Will Deaconc1d7e012012-07-30 14:42:46 -0700768#ifdef CONFIG_ARCH_WANT_IPC_PARSE_VERSION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770
771/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800772 * ipc_parse_version - ipc call version
773 * @cmd: pointer to command
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800775 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Manfred Spraul239521f2014-01-27 17:07:04 -0800779int ipc_parse_version(int *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 if (*cmd & IPC_64) {
782 *cmd ^= IPC_64;
783 return IPC_64;
784 } else {
785 return IPC_OLD;
786 }
787}
788
Will Deaconc1d7e012012-07-30 14:42:46 -0700789#endif /* CONFIG_ARCH_WANT_IPC_PARSE_VERSION */
Mike Waychisonae781772005-09-06 15:17:09 -0700790
791#ifdef CONFIG_PROC_FS
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800792struct ipc_proc_iter {
793 struct ipc_namespace *ns;
794 struct ipc_proc_iface *iface;
795};
796
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700797/*
798 * This routine locks the ipc structure found at least at position pos.
799 */
Adrian Bunkb524b9a2008-02-06 01:36:28 -0800800static struct kern_ipc_perm *sysvipc_find_ipc(struct ipc_ids *ids, loff_t pos,
801 loff_t *new_pos)
Mike Waychisonae781772005-09-06 15:17:09 -0700802{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700803 struct kern_ipc_perm *ipc;
804 int total, id;
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700805
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700806 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 Waychisonae781772005-09-06 15:17:09 -0700812
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700813 if (total >= ids->in_use)
814 return NULL;
Mike Waychisonae781772005-09-06 15:17:09 -0700815
Manfred Spraul239521f2014-01-27 17:07:04 -0800816 for (; pos < IPCMNI; pos++) {
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700817 ipc = idr_find(&ids->ipcs_idr, pos);
818 if (ipc != NULL) {
819 *new_pos = pos + 1;
Davidlohr Bueso32a27502013-09-11 14:26:29 -0700820 rcu_read_lock();
821 ipc_lock_object(ipc);
Mike Waychisonae781772005-09-06 15:17:09 -0700822 return ipc;
823 }
824 }
825
826 /* Out of range - return NULL to terminate iteration */
827 return NULL;
828}
829
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700830static 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 Peiffered2ddbf2008-02-08 04:18:57 -0800840 return sysvipc_find_ipc(&iter->ns->ids[iface->ids], *pos, pos);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700841}
842
Mike Waychisonae781772005-09-06 15:17:09 -0700843/*
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700844 * File positions: pos 0 -> header, pos n -> ipc id = n - 1.
845 * SeqFile iterator: iterator value locked ipc pointer or SEQ_TOKEN_START.
Mike Waychisonae781772005-09-06 15:17:09 -0700846 */
847static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos)
848{
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800849 struct ipc_proc_iter *iter = s->private;
850 struct ipc_proc_iface *iface = iter->iface;
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700851 struct ipc_ids *ids;
852
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800853 ids = &iter->ns->ids[iface->ids];
Mike Waychisonae781772005-09-06 15:17:09 -0700854
855 /*
856 * Take the lock - this will be released by the corresponding
857 * call to stop().
858 */
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700859 down_read(&ids->rwsem);
Mike Waychisonae781772005-09-06 15:17:09 -0700860
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 Derbey7ca7e562007-10-18 23:40:48 -0700870 return sysvipc_find_ipc(ids, *pos - 1, pos);
Mike Waychisonae781772005-09-06 15:17:09 -0700871}
872
873static void sysvipc_proc_stop(struct seq_file *s, void *it)
874{
875 struct kern_ipc_perm *ipc = it;
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800876 struct ipc_proc_iter *iter = s->private;
877 struct ipc_proc_iface *iface = iter->iface;
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700878 struct ipc_ids *ids;
Mike Waychisonae781772005-09-06 15:17:09 -0700879
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700880 /* If we had a locked structure, release it */
Mike Waychisonae781772005-09-06 15:17:09 -0700881 if (ipc && ipc != SEQ_START_TOKEN)
882 ipc_unlock(ipc);
883
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800884 ids = &iter->ns->ids[iface->ids];
Mike Waychisonae781772005-09-06 15:17:09 -0700885 /* Release the lock we took in start() */
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700886 up_read(&ids->rwsem);
Mike Waychisonae781772005-09-06 15:17:09 -0700887}
888
889static int sysvipc_proc_show(struct seq_file *s, void *it)
890{
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800891 struct ipc_proc_iter *iter = s->private;
892 struct ipc_proc_iface *iface = iter->iface;
Mike Waychisonae781772005-09-06 15:17:09 -0700893
894 if (it == SEQ_START_TOKEN)
895 return seq_puts(s, iface->header);
896
897 return iface->show(s, it);
898}
899
James Morris88e9d342009-09-22 16:43:43 -0700900static const struct seq_operations sysvipc_proc_seqops = {
Mike Waychisonae781772005-09-06 15:17:09 -0700901 .start = sysvipc_proc_start,
902 .stop = sysvipc_proc_stop,
903 .next = sysvipc_proc_next,
904 .show = sysvipc_proc_show,
905};
906
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800907static int sysvipc_proc_open(struct inode *inode, struct file *file)
908{
Mike Waychisonae781772005-09-06 15:17:09 -0700909 int ret;
910 struct seq_file *seq;
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800911 struct ipc_proc_iter *iter;
912
913 ret = -ENOMEM;
914 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
915 if (!iter)
916 goto out;
Mike Waychisonae781772005-09-06 15:17:09 -0700917
918 ret = seq_open(file, &sysvipc_proc_seqops);
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800919 if (ret)
920 goto out_kfree;
921
922 seq = file->private_data;
923 seq->private = iter;
924
Al Virod9dda782013-03-31 18:16:14 -0400925 iter->iface = PDE_DATA(inode);
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800926 iter->ns = get_ipc_ns(current->nsproxy->ipc_ns);
927out:
Mike Waychisonae781772005-09-06 15:17:09 -0700928 return ret;
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800929out_kfree:
930 kfree(iter);
931 goto out;
932}
933
934static 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 Waychisonae781772005-09-06 15:17:09 -0700940}
941
Arjan van de Ven9a321442007-02-12 00:55:35 -0800942static const struct file_operations sysvipc_proc_fops = {
Mike Waychisonae781772005-09-06 15:17:09 -0700943 .open = sysvipc_proc_open,
944 .read = seq_read,
945 .llseek = seq_lseek,
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800946 .release = sysvipc_proc_release,
Mike Waychisonae781772005-09-06 15:17:09 -0700947};
948#endif /* CONFIG_PROC_FS */