blob: 7684f41bce76a9b430f04b7e4e77810b48798a42 [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.
93 * No need to keep several ipc work items on the queue.
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070094 */
Nadia Derbey424450c2008-04-29 01:00:43 -070095 if (!work_pending(&ipc_memory_wq))
96 schedule_work(&ipc_memory_wq);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070097 break;
98 case MEM_GOING_ONLINE:
99 case MEM_GOING_OFFLINE:
100 case MEM_CANCEL_ONLINE:
101 case MEM_CANCEL_OFFLINE:
102 default:
103 break;
104 }
105
106 return NOTIFY_OK;
107}
108
Andrew Morton8f68fa22013-04-29 15:08:05 -0700109static struct notifier_block ipc_memory_nb = {
110 .notifier_call = ipc_memory_callback,
111 .priority = IPC_CALLBACK_PRI,
112};
Nadia Derbeyb6b337a2008-04-29 01:00:42 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/**
115 * ipc_init - initialise IPC subsystem
116 *
117 * The various system5 IPC resources (semaphores, messages and shared
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800118 * memory) are initialised
Nadia Derbeyb6b337a2008-04-29 01:00:42 -0700119 * A callback routine is registered into the memory hotplug notifier
120 * chain: since msgmni scales to lowmem this callback routine will be
121 * called upon successful memory add / remove to recompute msmgni.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 */
123
124static int __init ipc_init(void)
125{
126 sem_init();
127 msg_init();
128 shm_init();
Andrew Morton8f68fa22013-04-29 15:08:05 -0700129 register_hotmemory_notifier(&ipc_memory_nb);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -0700130 register_ipcns_notifier(&init_ipc_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return 0;
132}
133__initcall(ipc_init);
134
135/**
136 * ipc_init_ids - initialise IPC identifiers
137 * @ids: Identifier set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700139 * Set up the sequence range to use for the ipc identifier range (limited
140 * below IPCMNI) then initialise the ids idr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700143void ipc_init_ids(struct ipc_ids *ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700145 init_rwsem(&ids->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ids->in_use = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 ids->seq = 0;
Stanislav Kinsbursky03f59562013-01-04 15:34:50 -0800149 ids->next_id = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 {
151 int seq_limit = INT_MAX/SEQ_MULTIPLIER;
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700152 if (seq_limit > USHRT_MAX)
153 ids->seq_max = USHRT_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 else
155 ids->seq_max = seq_limit;
156 }
157
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700158 idr_init(&ids->ipcs_idr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Mike Waychisonae781772005-09-06 15:17:09 -0700161#ifdef CONFIG_PROC_FS
Arjan van de Ven9a321442007-02-12 00:55:35 -0800162static const struct file_operations sysvipc_proc_fops;
Mike Waychisonae781772005-09-06 15:17:09 -0700163/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800164 * ipc_init_proc_interface - Create a proc interface for sysipc types using a seq_file interface.
Mike Waychisonae781772005-09-06 15:17:09 -0700165 * @path: Path in procfs
166 * @header: Banner to be printed at the beginning of the file.
167 * @ids: ipc id table to iterate.
168 * @show: show routine.
169 */
170void __init ipc_init_proc_interface(const char *path, const char *header,
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700171 int ids, int (*show)(struct seq_file *, void *))
Mike Waychisonae781772005-09-06 15:17:09 -0700172{
173 struct proc_dir_entry *pde;
174 struct ipc_proc_iface *iface;
175
176 iface = kmalloc(sizeof(*iface), GFP_KERNEL);
177 if (!iface)
178 return;
179 iface->path = path;
180 iface->header = header;
181 iface->ids = ids;
182 iface->show = show;
183
Denis V. Lunev6a6375d2008-04-29 01:02:12 -0700184 pde = proc_create_data(path,
185 S_IRUGO, /* world readable */
186 NULL, /* parent dir */
187 &sysvipc_proc_fops,
188 iface);
189 if (!pde) {
Mike Waychisonae781772005-09-06 15:17:09 -0700190 kfree(iface);
191 }
192}
193#endif
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/**
196 * ipc_findkey - find a key in an ipc identifier set
197 * @ids: Identifier set
198 * @key: The key to find
199 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700200 * Requires ipc_ids.rwsem locked.
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700201 * Returns the LOCKED pointer to the ipc structure if found or NULL
202 * if not.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700203 * If key is found ipc points to the owning ipc structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
205
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700206static struct kern_ipc_perm *ipc_findkey(struct ipc_ids *ids, key_t key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700208 struct kern_ipc_perm *ipc;
209 int next_id;
210 int total;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700212 for (total = 0, next_id = 0; total < ids->in_use; next_id++) {
213 ipc = idr_find(&ids->ipcs_idr, next_id);
214
215 if (ipc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 continue;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700217
218 if (ipc->key != key) {
219 total++;
220 continue;
221 }
222
Davidlohr Bueso32a27502013-09-11 14:26:29 -0700223 rcu_read_lock();
224 ipc_lock_object(ipc);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700225 return ipc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700227
228 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700231/**
232 * ipc_get_maxid - get the last assigned id
233 * @ids: IPC identifier set
234 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700235 * Called with ipc_ids.rwsem held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700237
238int ipc_get_maxid(struct ipc_ids *ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700240 struct kern_ipc_perm *ipc;
241 int max_id = -1;
242 int total, id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700244 if (ids->in_use == 0)
245 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700247 if (ids->in_use == IPCMNI)
248 return IPCMNI - 1;
249
250 /* Look for the last assigned id */
251 total = 0;
252 for (id = 0; id < IPCMNI && total < ids->in_use; id++) {
253 ipc = idr_find(&ids->ipcs_idr, id);
254 if (ipc != NULL) {
255 max_id = id;
256 total++;
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700259 return max_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262/**
263 * ipc_addid - add an IPC identifier
264 * @ids: IPC identifier set
265 * @new: new IPC permission set
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700266 * @size: limit for the number of used ids
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 *
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700268 * Add an entry 'new' to the IPC ids idr. The permissions object is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * initialised and the first free entry is set up and the id assigned
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700270 * is returned. The 'new' entry is returned in a locked state on success.
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700271 * On failure the entry is not locked and a negative err-code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700273 * Called with writer ipc_ids.rwsem held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275int ipc_addid(struct ipc_ids* ids, struct kern_ipc_perm* new, int size)
276{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800277 kuid_t euid;
278 kgid_t egid;
Tejun Heo54924ea2013-02-27 17:04:53 -0800279 int id;
Stanislav Kinsbursky03f59562013-01-04 15:34:50 -0800280 int next_id = ids->next_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700282 if (size > IPCMNI)
283 size = IPCMNI;
284
285 if (ids->in_use >= size)
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700286 return -ENOSPC;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700287
Tejun Heo54924ea2013-02-27 17:04:53 -0800288 idr_preload(GFP_KERNEL);
289
Nadia Derbeye00b4ff7e2008-11-19 15:36:08 -0800290 spin_lock_init(&new->lock);
291 new->deleted = 0;
292 rcu_read_lock();
293 spin_lock(&new->lock);
294
Tejun Heo54924ea2013-02-27 17:04:53 -0800295 id = idr_alloc(&ids->ipcs_idr, new,
296 (next_id < 0) ? 0 : ipcid_to_idx(next_id), 0,
297 GFP_NOWAIT);
298 idr_preload_end();
299 if (id < 0) {
Nadia Derbeye00b4ff7e2008-11-19 15:36:08 -0800300 spin_unlock(&new->lock);
301 rcu_read_unlock();
Tejun Heo54924ea2013-02-27 17:04:53 -0800302 return id;
Nadia Derbeye00b4ff7e2008-11-19 15:36:08 -0800303 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 ids->in_use++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
David Howells414c0702008-11-14 10:39:06 +1100307 current_euid_egid(&euid, &egid);
308 new->cuid = new->uid = euid;
309 new->gid = new->cgid = egid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Stanislav Kinsbursky03f59562013-01-04 15:34:50 -0800311 if (next_id < 0) {
312 new->seq = ids->seq++;
313 if (ids->seq > ids->seq_max)
314 ids->seq = 0;
315 } else {
316 new->seq = ipcid_to_seqx(next_id);
317 ids->next_id = -1;
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Pierre Peiffer48dea402008-04-29 01:00:35 -0700320 new->id = ipc_buildid(id, new->seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return id;
322}
323
324/**
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700325 * ipcget_new - create a new ipc object
326 * @ns: namespace
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700327 * @ids: IPC identifer set
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700328 * @ops: the actual creation routine to call
329 * @params: its parameters
330 *
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700331 * This routine is called by sys_msgget, sys_semget() and sys_shmget()
332 * when the key is IPC_PRIVATE.
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700333 */
Pavel Emelyanovb2d75cd2008-02-08 04:18:54 -0800334static int ipcget_new(struct ipc_namespace *ns, struct ipc_ids *ids,
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700335 struct ipc_ops *ops, struct ipc_params *params)
336{
337 int err;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700338
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700339 down_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700340 err = ops->getnew(ns, params);
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700341 up_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700342 return err;
343}
344
345/**
346 * ipc_check_perms - check security and permissions for an IPC
Randy Dunlap6213cfe2011-03-26 13:27:41 -0700347 * @ns: IPC namespace
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700348 * @ipcp: ipc permission set
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700349 * @ops: the actual security routine to call
350 * @params: its parameters
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700351 *
352 * This routine is called by sys_msgget(), sys_semget() and sys_shmget()
353 * when the key is not IPC_PRIVATE and that key already exists in the
354 * ids IDR.
355 *
356 * On success, the IPC id is returned.
357 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700358 * It is called with ipc_ids.rwsem and ipcp->lock held.
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700359 */
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700360static int ipc_check_perms(struct ipc_namespace *ns,
361 struct kern_ipc_perm *ipcp,
362 struct ipc_ops *ops,
363 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700364{
365 int err;
366
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700367 if (ipcperms(ns, ipcp, params->flg))
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700368 err = -EACCES;
369 else {
370 err = ops->associate(ipcp, params->flg);
371 if (!err)
372 err = ipcp->id;
373 }
374
375 return err;
376}
377
378/**
379 * ipcget_public - get an ipc object or create a new one
380 * @ns: namespace
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700381 * @ids: IPC identifer set
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700382 * @ops: the actual creation routine to call
383 * @params: its parameters
384 *
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700385 * This routine is called by sys_msgget, sys_semget() and sys_shmget()
386 * when the key is not IPC_PRIVATE.
387 * It adds a new entry if the key is not found and does some permission
388 * / security checkings if the key is found.
389 *
390 * On success, the ipc id is returned.
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700391 */
Pavel Emelyanovb2d75cd2008-02-08 04:18:54 -0800392static int ipcget_public(struct ipc_namespace *ns, struct ipc_ids *ids,
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700393 struct ipc_ops *ops, struct ipc_params *params)
394{
395 struct kern_ipc_perm *ipcp;
396 int flg = params->flg;
397 int err;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700398
Nadia Derbey3e148c72007-10-18 23:40:54 -0700399 /*
400 * Take the lock as a writer since we are potentially going to add
401 * a new entry + read locks are not "upgradable"
402 */
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700403 down_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700404 ipcp = ipc_findkey(ids, params->key);
405 if (ipcp == NULL) {
406 /* key not used */
407 if (!(flg & IPC_CREAT))
408 err = -ENOENT;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700409 else
410 err = ops->getnew(ns, params);
411 } else {
412 /* ipc object has been locked by ipc_findkey() */
413
414 if (flg & IPC_CREAT && flg & IPC_EXCL)
415 err = -EEXIST;
416 else {
417 err = 0;
418 if (ops->more_checks)
419 err = ops->more_checks(ipcp, params);
420 if (!err)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700421 /*
422 * ipc_check_perms returns the IPC id on
423 * success
424 */
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700425 err = ipc_check_perms(ns, ipcp, ops, params);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700426 }
427 ipc_unlock(ipcp);
428 }
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700429 up_write(&ids->rwsem);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700430
431 return err;
432}
433
434
435/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * ipc_rmid - remove an IPC identifier
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700437 * @ids: IPC identifier set
438 * @ipcp: ipc perm structure containing the identifier to remove
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700440 * ipc_ids.rwsem (as a writer) and the spinlock for this ID are held
Nadia Derbey3e148c72007-10-18 23:40:54 -0700441 * before this function is called, and remain locked on the exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
443
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700444void ipc_rmid(struct ipc_ids *ids, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Nadia Derbeyce621f52007-10-18 23:40:52 -0700446 int lid = ipcid_to_idx(ipcp->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700448 idr_remove(&ids->ipcs_idr, lid);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 ids->in_use--;
451
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700452 ipcp->deleted = 1;
453
454 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/**
458 * ipc_alloc - allocate ipc space
459 * @size: size desired
460 *
461 * Allocate memory from the appropriate pools and return a pointer to it.
462 * NULL is returned if the allocation fails
463 */
464
Rik van Riel6062a8d2013-04-30 19:15:44 -0700465void *ipc_alloc(int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
Rik van Riel6062a8d2013-04-30 19:15:44 -0700467 void *out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if(size > PAGE_SIZE)
469 out = vmalloc(size);
470 else
471 out = kmalloc(size, GFP_KERNEL);
472 return out;
473}
474
475/**
476 * ipc_free - free ipc space
477 * @ptr: pointer returned by ipc_alloc
478 * @size: size of block
479 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800480 * Free a block created with ipc_alloc(). The caller must know the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * used in the allocation call.
482 */
483
484void ipc_free(void* ptr, int size)
485{
486 if(size > PAGE_SIZE)
487 vfree(ptr);
488 else
489 kfree(ptr);
490}
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/**
493 * ipc_rcu_alloc - allocate ipc and rcu space
494 * @size: size desired
495 *
496 * Allocate memory for the rcu header structure + the object.
Rik van Riel6062a8d2013-04-30 19:15:44 -0700497 * Returns the pointer to the object or NULL upon failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 */
Rik van Riel6062a8d2013-04-30 19:15:44 -0700499void *ipc_rcu_alloc(int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Rik van Riel6062a8d2013-04-30 19:15:44 -0700501 /*
Al Viro600fe972013-04-29 12:42:09 -0400502 * We prepend the allocation with the rcu struct
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 */
Al Viro600fe972013-04-29 12:42:09 -0400504 struct ipc_rcu *out = ipc_alloc(sizeof(struct ipc_rcu) + size);
505 if (unlikely(!out))
506 return NULL;
507 atomic_set(&out->refcount, 1);
Manfred Spraul196aa012013-07-08 16:01:20 -0700508 return out + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Rik van Riel6062a8d2013-04-30 19:15:44 -0700511int ipc_rcu_getref(void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Manfred Spraul196aa012013-07-08 16:01:20 -0700513 struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
514
515 return atomic_inc_not_zero(&p->refcount);
David Howells65f27f32006-11-22 14:55:48 +0000516}
517
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700518void ipc_rcu_putref(void *ptr, void (*func)(struct rcu_head *head))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Manfred Spraul196aa012013-07-08 16:01:20 -0700520 struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
Al Viro600fe972013-04-29 12:42:09 -0400521
522 if (!atomic_dec_and_test(&p->refcount))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return;
524
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700525 call_rcu(&p->rcu, func);
526}
527
528void ipc_rcu_free(struct rcu_head *head)
529{
530 struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu);
531
532 if (is_vmalloc_addr(p))
533 vfree(p);
534 else
535 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
538/**
539 * ipcperms - check IPC permissions
Randy Dunlap6213cfe2011-03-26 13:27:41 -0700540 * @ns: IPC namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * @ipcp: IPC permission set
542 * @flag: desired permission set.
543 *
544 * Check user, group, other permissions for access
545 * to ipc resources. return 0 if allowed
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700546 *
547 * @flag will most probably be 0 or S_...UGO from <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
549
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700550int ipcperms(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp, short flag)
551{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800552 kuid_t euid = current_euid();
Al Viroa33e6752008-12-10 03:40:06 -0500553 int requested_mode, granted_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Al Viroa33e6752008-12-10 03:40:06 -0500555 audit_ipc_obj(ipcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 requested_mode = (flag >> 6) | (flag >> 3) | flag;
557 granted_mode = ipcp->mode;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800558 if (uid_eq(euid, ipcp->cuid) ||
559 uid_eq(euid, ipcp->uid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 granted_mode >>= 6;
561 else if (in_group_p(ipcp->cgid) || in_group_p(ipcp->gid))
562 granted_mode >>= 3;
563 /* is there some bit set in requested_mode but not in granted_mode? */
564 if ((requested_mode & ~granted_mode & 0007) &&
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700565 !ns_capable(ns->user_ns, CAP_IPC_OWNER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return -1;
567
568 return security_ipc_permission(ipcp, flag);
569}
570
571/*
572 * Functions to convert between the kern_ipc_perm structure and the
573 * old/new ipc_perm structures
574 */
575
576/**
577 * kernel_to_ipc64_perm - convert kernel ipc permissions to user
578 * @in: kernel permissions
579 * @out: new style IPC permissions
580 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800581 * Turn the kernel object @in into a set of permissions descriptions
582 * for returning to userspace (@out).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
584
585
586void kernel_to_ipc64_perm (struct kern_ipc_perm *in, struct ipc64_perm *out)
587{
588 out->key = in->key;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800589 out->uid = from_kuid_munged(current_user_ns(), in->uid);
590 out->gid = from_kgid_munged(current_user_ns(), in->gid);
591 out->cuid = from_kuid_munged(current_user_ns(), in->cuid);
592 out->cgid = from_kgid_munged(current_user_ns(), in->cgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 out->mode = in->mode;
594 out->seq = in->seq;
595}
596
597/**
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700598 * ipc64_perm_to_ipc_perm - convert new ipc permissions to old
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * @in: new style IPC permissions
600 * @out: old style IPC permissions
601 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800602 * Turn the new style permissions object @in into a compatibility
603 * object and store it into the @out pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605
606void ipc64_perm_to_ipc_perm (struct ipc64_perm *in, struct ipc_perm *out)
607{
608 out->key = in->key;
609 SET_UID(out->uid, in->uid);
610 SET_GID(out->gid, in->gid);
611 SET_UID(out->cuid, in->cuid);
612 SET_GID(out->cgid, in->cgid);
613 out->mode = in->mode;
614 out->seq = in->seq;
615}
616
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700617/**
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700618 * ipc_obtain_object
619 * @ids: ipc identifier set
620 * @id: ipc id to look for
621 *
622 * Look for an id in the ipc ids idr and return associated ipc object.
623 *
624 * Call inside the RCU critical section.
625 * The ipc object is *not* locked on exit.
626 */
627struct kern_ipc_perm *ipc_obtain_object(struct ipc_ids *ids, int id)
628{
629 struct kern_ipc_perm *out;
630 int lid = ipcid_to_idx(id);
631
632 out = idr_find(&ids->ipcs_idr, lid);
633 if (!out)
634 return ERR_PTR(-EINVAL);
635
636 return out;
637}
638
639/**
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700640 * ipc_lock - Lock an ipc structure without rwsem held
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700641 * @ids: IPC identifier set
642 * @id: ipc id to look for
643 *
644 * Look for an id in the ipc ids idr and lock the associated ipc object.
645 *
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700646 * The ipc object is locked on successful exit.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700647 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700648struct kern_ipc_perm *ipc_lock(struct ipc_ids *ids, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700650 struct kern_ipc_perm *out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 rcu_read_lock();
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700653 out = ipc_obtain_object(ids, id);
654 if (IS_ERR(out))
655 goto err1;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 spin_lock(&out->lock);
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /* ipc_rmid() may have already freed the ID while ipc_lock
660 * was spinning: here verify that the structure is still valid
661 */
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700662 if (!out->deleted)
663 return out;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700664
Davidlohr Bueso4d2bff52013-04-30 19:15:19 -0700665 spin_unlock(&out->lock);
666 out = ERR_PTR(-EINVAL);
667err1:
668 rcu_read_unlock();
669 return out;
670}
671
672/**
673 * ipc_obtain_object_check
674 * @ids: ipc identifier set
675 * @id: ipc id to look for
676 *
677 * Similar to ipc_obtain_object() but also checks
678 * the ipc object reference counter.
679 *
680 * Call inside the RCU critical section.
681 * The ipc object is *not* locked on exit.
682 */
683struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id)
684{
685 struct kern_ipc_perm *out = ipc_obtain_object(ids, id);
686
687 if (IS_ERR(out))
688 goto out;
689
690 if (ipc_checkid(out, id))
691 return ERR_PTR(-EIDRM);
692out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return out;
694}
695
Pavel Emelyanovb2d75cd2008-02-08 04:18:54 -0800696/**
697 * ipcget - Common sys_*get() code
698 * @ns : namsepace
699 * @ids : IPC identifier set
700 * @ops : operations to be called on ipc object creation, permission checks
701 * and further checks
702 * @params : the parameters needed by the previous operations.
703 *
704 * Common routine called by sys_msgget(), sys_semget() and sys_shmget().
705 */
706int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids,
707 struct ipc_ops *ops, struct ipc_params *params)
708{
709 if (params->key == IPC_PRIVATE)
710 return ipcget_new(ns, ids, ops, params);
711 else
712 return ipcget_public(ns, ids, ops, params);
713}
714
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700715/**
716 * ipc_update_perm - update the permissions of an IPC.
717 * @in: the permission given as input.
718 * @out: the permission of the ipc to set.
719 */
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800720int ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out)
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700721{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800722 kuid_t uid = make_kuid(current_user_ns(), in->uid);
723 kgid_t gid = make_kgid(current_user_ns(), in->gid);
724 if (!uid_valid(uid) || !gid_valid(gid))
725 return -EINVAL;
726
727 out->uid = uid;
728 out->gid = gid;
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700729 out->mode = (out->mode & ~S_IRWXUGO)
730 | (in->mode & S_IRWXUGO);
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800731
732 return 0;
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700733}
734
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700735/**
Davidlohr Bueso3b1c4ad2013-09-11 14:26:17 -0700736 * ipcctl_pre_down_nolock - retrieve an ipc and check permissions for some IPC_XXX cmd
Randy Dunlap6213cfe2011-03-26 13:27:41 -0700737 * @ns: the ipc namespace
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700738 * @ids: the table of ids where to look for the ipc
739 * @id: the id of the ipc to retrieve
740 * @cmd: the cmd to check
741 * @perm: the permission to set
742 * @extra_perm: one extra permission parameter used by msq
743 *
744 * This function does some common audit and permissions check for some IPC_XXX
745 * cmd and is called from semctl_down, shmctl_down and msgctl_down.
746 * It must be called without any lock held and
747 * - retrieves the ipc with the given id in the given table.
748 * - performs some audit and permission check, depending on the given cmd
Davidlohr Bueso3b1c4ad2013-09-11 14:26:17 -0700749 * - returns a pointer to the ipc object or otherwise, the corresponding error.
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700750 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700751 * Call holding the both the rwsem and the rcu read lock.
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700752 */
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700753struct kern_ipc_perm *ipcctl_pre_down_nolock(struct ipc_namespace *ns,
Davidlohr Bueso3b1c4ad2013-09-11 14:26:17 -0700754 struct ipc_ids *ids, int id, int cmd,
755 struct ipc64_perm *perm, int extra_perm)
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700756{
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800757 kuid_t euid;
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700758 int err = -EPERM;
759 struct kern_ipc_perm *ipcp;
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700760
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700761 ipcp = ipc_obtain_object_check(ids, id);
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700762 if (IS_ERR(ipcp)) {
763 err = PTR_ERR(ipcp);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700764 goto err;
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700765 }
766
Al Viroa33e6752008-12-10 03:40:06 -0500767 audit_ipc_obj(ipcp);
Al Viroe816f372008-12-10 03:47:15 -0500768 if (cmd == IPC_SET)
769 audit_ipc_set_perm(extra_perm, perm->uid,
Davidlohr Bueso444d0f62013-04-30 19:15:24 -0700770 perm->gid, perm->mode);
David Howells414c0702008-11-14 10:39:06 +1100771
772 euid = current_euid();
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800773 if (uid_eq(euid, ipcp->cuid) || uid_eq(euid, ipcp->uid) ||
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700774 ns_capable(ns->user_ns, CAP_SYS_ADMIN))
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700775 return ipcp; /* successful lookup */
776err:
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700777 return ERR_PTR(err);
778}
779
Will Deaconc1d7e012012-07-30 14:42:46 -0700780#ifdef CONFIG_ARCH_WANT_IPC_PARSE_VERSION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782
783/**
784 * ipc_parse_version - IPC call version
785 * @cmd: pointer to command
786 *
787 * Return IPC_64 for new style IPC and IPC_OLD for old style IPC.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800788 * The @cmd value is turned from an encoding command and version into
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * just the command code.
790 */
791
792int ipc_parse_version (int *cmd)
793{
794 if (*cmd & IPC_64) {
795 *cmd ^= IPC_64;
796 return IPC_64;
797 } else {
798 return IPC_OLD;
799 }
800}
801
Will Deaconc1d7e012012-07-30 14:42:46 -0700802#endif /* CONFIG_ARCH_WANT_IPC_PARSE_VERSION */
Mike Waychisonae781772005-09-06 15:17:09 -0700803
804#ifdef CONFIG_PROC_FS
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800805struct ipc_proc_iter {
806 struct ipc_namespace *ns;
807 struct ipc_proc_iface *iface;
808};
809
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700810/*
811 * This routine locks the ipc structure found at least at position pos.
812 */
Adrian Bunkb524b9a2008-02-06 01:36:28 -0800813static struct kern_ipc_perm *sysvipc_find_ipc(struct ipc_ids *ids, loff_t pos,
814 loff_t *new_pos)
Mike Waychisonae781772005-09-06 15:17:09 -0700815{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700816 struct kern_ipc_perm *ipc;
817 int total, id;
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700818
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700819 total = 0;
820 for (id = 0; id < pos && total < ids->in_use; id++) {
821 ipc = idr_find(&ids->ipcs_idr, id);
822 if (ipc != NULL)
823 total++;
824 }
Mike Waychisonae781772005-09-06 15:17:09 -0700825
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700826 if (total >= ids->in_use)
827 return NULL;
Mike Waychisonae781772005-09-06 15:17:09 -0700828
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700829 for ( ; pos < IPCMNI; pos++) {
830 ipc = idr_find(&ids->ipcs_idr, pos);
831 if (ipc != NULL) {
832 *new_pos = pos + 1;
Davidlohr Bueso32a27502013-09-11 14:26:29 -0700833 rcu_read_lock();
834 ipc_lock_object(ipc);
Mike Waychisonae781772005-09-06 15:17:09 -0700835 return ipc;
836 }
837 }
838
839 /* Out of range - return NULL to terminate iteration */
840 return NULL;
841}
842
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700843static void *sysvipc_proc_next(struct seq_file *s, void *it, loff_t *pos)
844{
845 struct ipc_proc_iter *iter = s->private;
846 struct ipc_proc_iface *iface = iter->iface;
847 struct kern_ipc_perm *ipc = it;
848
849 /* If we had an ipc id locked before, unlock it */
850 if (ipc && ipc != SEQ_START_TOKEN)
851 ipc_unlock(ipc);
852
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800853 return sysvipc_find_ipc(&iter->ns->ids[iface->ids], *pos, pos);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700854}
855
Mike Waychisonae781772005-09-06 15:17:09 -0700856/*
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700857 * File positions: pos 0 -> header, pos n -> ipc id = n - 1.
858 * SeqFile iterator: iterator value locked ipc pointer or SEQ_TOKEN_START.
Mike Waychisonae781772005-09-06 15:17:09 -0700859 */
860static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos)
861{
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800862 struct ipc_proc_iter *iter = s->private;
863 struct ipc_proc_iface *iface = iter->iface;
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700864 struct ipc_ids *ids;
865
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800866 ids = &iter->ns->ids[iface->ids];
Mike Waychisonae781772005-09-06 15:17:09 -0700867
868 /*
869 * Take the lock - this will be released by the corresponding
870 * call to stop().
871 */
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700872 down_read(&ids->rwsem);
Mike Waychisonae781772005-09-06 15:17:09 -0700873
874 /* pos < 0 is invalid */
875 if (*pos < 0)
876 return NULL;
877
878 /* pos == 0 means header */
879 if (*pos == 0)
880 return SEQ_START_TOKEN;
881
882 /* Find the (pos-1)th ipc */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700883 return sysvipc_find_ipc(ids, *pos - 1, pos);
Mike Waychisonae781772005-09-06 15:17:09 -0700884}
885
886static void sysvipc_proc_stop(struct seq_file *s, void *it)
887{
888 struct kern_ipc_perm *ipc = it;
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800889 struct ipc_proc_iter *iter = s->private;
890 struct ipc_proc_iface *iface = iter->iface;
Kirill Korotaev73ea4132006-10-02 02:18:20 -0700891 struct ipc_ids *ids;
Mike Waychisonae781772005-09-06 15:17:09 -0700892
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700893 /* If we had a locked structure, release it */
Mike Waychisonae781772005-09-06 15:17:09 -0700894 if (ipc && ipc != SEQ_START_TOKEN)
895 ipc_unlock(ipc);
896
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800897 ids = &iter->ns->ids[iface->ids];
Mike Waychisonae781772005-09-06 15:17:09 -0700898 /* Release the lock we took in start() */
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700899 up_read(&ids->rwsem);
Mike Waychisonae781772005-09-06 15:17:09 -0700900}
901
902static int sysvipc_proc_show(struct seq_file *s, void *it)
903{
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800904 struct ipc_proc_iter *iter = s->private;
905 struct ipc_proc_iface *iface = iter->iface;
Mike Waychisonae781772005-09-06 15:17:09 -0700906
907 if (it == SEQ_START_TOKEN)
908 return seq_puts(s, iface->header);
909
910 return iface->show(s, it);
911}
912
James Morris88e9d342009-09-22 16:43:43 -0700913static const struct seq_operations sysvipc_proc_seqops = {
Mike Waychisonae781772005-09-06 15:17:09 -0700914 .start = sysvipc_proc_start,
915 .stop = sysvipc_proc_stop,
916 .next = sysvipc_proc_next,
917 .show = sysvipc_proc_show,
918};
919
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800920static int sysvipc_proc_open(struct inode *inode, struct file *file)
921{
Mike Waychisonae781772005-09-06 15:17:09 -0700922 int ret;
923 struct seq_file *seq;
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800924 struct ipc_proc_iter *iter;
925
926 ret = -ENOMEM;
927 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
928 if (!iter)
929 goto out;
Mike Waychisonae781772005-09-06 15:17:09 -0700930
931 ret = seq_open(file, &sysvipc_proc_seqops);
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800932 if (ret)
933 goto out_kfree;
934
935 seq = file->private_data;
936 seq->private = iter;
937
Al Virod9dda782013-03-31 18:16:14 -0400938 iter->iface = PDE_DATA(inode);
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800939 iter->ns = get_ipc_ns(current->nsproxy->ipc_ns);
940out:
Mike Waychisonae781772005-09-06 15:17:09 -0700941 return ret;
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800942out_kfree:
943 kfree(iter);
944 goto out;
945}
946
947static int sysvipc_proc_release(struct inode *inode, struct file *file)
948{
949 struct seq_file *seq = file->private_data;
950 struct ipc_proc_iter *iter = seq->private;
951 put_ipc_ns(iter->ns);
952 return seq_release_private(inode, file);
Mike Waychisonae781772005-09-06 15:17:09 -0700953}
954
Arjan van de Ven9a321442007-02-12 00:55:35 -0800955static const struct file_operations sysvipc_proc_fops = {
Mike Waychisonae781772005-09-06 15:17:09 -0700956 .open = sysvipc_proc_open,
957 .read = seq_read,
958 .llseek = seq_lseek,
Eric W. Biedermanbc1fc6d2007-02-12 00:52:10 -0800959 .release = sysvipc_proc_release,
Mike Waychisonae781772005-09-06 15:17:09 -0700960};
961#endif /* CONFIG_PROC_FS */