Blame view

ipc/util.c 21.1 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
  /*
   * linux/ipc/util.c
   * Copyright (C) 1992 Krishna Balasubramanian
   *
   * Sep 1997 - Call suser() last after "normal" permission checks so we
   *            get BSD style process accounting right.
   *            Occurs in several places in the IPC code.
   *            Chris Evans, <chris@ferret.lmh.ox.ac.uk>
   * Nov 1999 - ipc helper functions, unified SMP locking
624dffcbc   Christian Kujau   correct email add...
10
   *	      Manfred Spraul <manfred@colorfullife.com>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
   * Oct 2002 - One lock per IPC id. RCU ipc_free for lock-free grow_ary().
   *            Mingming Cao <cmm@us.ibm.com>
073115d6b   Steve Grubb   [PATCH] Rework of...
13
14
   * Mar 2006 - support for audit of ipc object properties
   *            Dustin Kirkland <dustin.kirkland@us.ibm.com>
73ea41302   Kirill Korotaev   [PATCH] IPC names...
15
16
17
   * Jun 2006 - namespaces ssupport
   *            OpenVZ, SWsoft Inc.
   *            Pavel Emelianov <xemul@openvz.org>
05603c44a   Davidlohr Bueso   ipc: document gen...
18
19
   *
   * General sysv ipc locking scheme:
18ccee263   Davidlohr Bueso   ipc: update locki...
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
   *	rcu_read_lock()
   *          obtain the ipc object (kern_ipc_perm) by looking up the id in an idr
   *	    tree.
   *	    - perform initial checks (capabilities, auditing and permission,
   *	      etc).
   *	    - perform read-only operations, such as STAT, INFO commands.
   *	      acquire the ipc lock (kern_ipc_perm.lock) through
   *	      ipc_lock_object()
   *		- perform data updates, such as SET, RMID commands and
   *		  mechanism-specific operations (semop/semtimedop,
   *		  msgsnd/msgrcv, shmat/shmdt).
   *	    drop the ipc lock, through ipc_unlock_object().
   *	rcu_read_unlock()
   *
   *  The ids->rwsem must be taken when:
   *	- creating, removing and iterating the existing entries in ipc
   *	  identifier sets.
   *	- iterating through files under /proc/sysvipc/
   *
   *  Note that sems have a special fast path that avoids kern_ipc_perm.lock -
   *  see sem_lock().
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
45
  #include <linux/mm.h>
  #include <linux/shm.h>
  #include <linux/init.h>
  #include <linux/msg.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
  #include <linux/vmalloc.h>
  #include <linux/slab.h>
8f68fa2d1   Andrew Morton   ipc/util.c: use r...
48
  #include <linux/notifier.h>
c59ede7b7   Randy.Dunlap   [PATCH] move capa...
49
  #include <linux/capability.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
52
53
  #include <linux/highuid.h>
  #include <linux/security.h>
  #include <linux/rcupdate.h>
  #include <linux/workqueue.h>
ae7817745   Mike Waychison   [PATCH] ipc: add ...
54
55
  #include <linux/seq_file.h>
  #include <linux/proc_fs.h>
073115d6b   Steve Grubb   [PATCH] Rework of...
56
  #include <linux/audit.h>
73ea41302   Kirill Korotaev   [PATCH] IPC names...
57
  #include <linux/nsproxy.h>
3e148c799   Nadia Derbey   fix idr_find() lo...
58
  #include <linux/rwsem.h>
b6b337ad1   Nadia Derbey   ipc: recompute ms...
59
  #include <linux/memory.h>
ae5e1b22f   Pavel Emelyanov   namespaces: move ...
60
  #include <linux/ipc_namespace.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
62
63
64
  
  #include <asm/unistd.h>
  
  #include "util.h"
ae7817745   Mike Waychison   [PATCH] ipc: add ...
65
66
67
  struct ipc_proc_iface {
  	const char *path;
  	const char *header;
73ea41302   Kirill Korotaev   [PATCH] IPC names...
68
  	int ids;
ae7817745   Mike Waychison   [PATCH] ipc: add ...
69
70
  	int (*show)(struct seq_file *, void *);
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
72
   * ipc_init - initialise ipc subsystem
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
74
75
76
77
78
79
   * The various sysv ipc resources (semaphores, messages and shared
   * memory) are initialised.
   *
   * A callback routine is registered into the memory hotplug notifier
   * chain: since msgmni scales to lowmem this callback routine will be
   * called upon successful memory add / remove to recompute msmgni.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
85
86
87
  static int __init ipc_init(void)
  {
  	sem_init();
  	msg_init();
  	shm_init();
  	return 0;
  }
6d08a2567   Davidlohr Bueso   ipc: use device_i...
88
  device_initcall(ipc_init);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
91
92
   * ipc_init_ids	- initialise ipc identifiers
   * @ids: ipc identifier set
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
94
95
   * Set up the sequence range to use for the ipc identifier range (limited
   * below IPCMNI) then initialise the ids idr.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
   */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
97
  void ipc_init_ids(struct ipc_ids *ids)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  	ids->in_use = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100
  	ids->seq = 0;
03f595668   Stanislav Kinsbursky   ipc: add sysctl t...
101
  	ids->next_id = -1;
daf948c7d   Davidlohr Bueso   ipc: delete seq_m...
102
  	init_rwsem(&ids->rwsem);
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
103
  	idr_init(&ids->ipcs_idr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
  }
ae7817745   Mike Waychison   [PATCH] ipc: add ...
105
  #ifdef CONFIG_PROC_FS
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
106
  static const struct file_operations sysvipc_proc_fops;
ae7817745   Mike Waychison   [PATCH] ipc: add ...
107
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
108
109
110
111
112
   * ipc_init_proc_interface -  create a proc interface for sysipc types using a seq_file interface.
   * @path: Path in procfs
   * @header: Banner to be printed at the beginning of the file.
   * @ids: ipc id table to iterate.
   * @show: show routine.
ae7817745   Mike Waychison   [PATCH] ipc: add ...
113
114
   */
  void __init ipc_init_proc_interface(const char *path, const char *header,
73ea41302   Kirill Korotaev   [PATCH] IPC names...
115
  		int ids, int (*show)(struct seq_file *, void *))
ae7817745   Mike Waychison   [PATCH] ipc: add ...
116
117
118
119
120
121
122
123
124
125
126
  {
  	struct proc_dir_entry *pde;
  	struct ipc_proc_iface *iface;
  
  	iface = kmalloc(sizeof(*iface), GFP_KERNEL);
  	if (!iface)
  		return;
  	iface->path	= path;
  	iface->header	= header;
  	iface->ids	= ids;
  	iface->show	= show;
6a6375db1   Denis V. Lunev   sysvipc: use non-...
127
128
129
130
131
  	pde = proc_create_data(path,
  			       S_IRUGO,        /* world readable */
  			       NULL,           /* parent dir */
  			       &sysvipc_proc_fops,
  			       iface);
3ab08fe20   Davidlohr Bueso   ipc: remove brace...
132
  	if (!pde)
ae7817745   Mike Waychison   [PATCH] ipc: add ...
133
  		kfree(iface);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
134
135
  }
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
136
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
137
138
139
   * ipc_findkey	- find a key in an ipc identifier set
   * @ids: ipc identifier set
   * @key: key to find
46c0a8ca3   Paul McQuade   ipc, kernel: clea...
140
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
141
142
143
144
   * Returns the locked pointer to the ipc structure if found or NULL
   * otherwise. If key is found ipc points to the owning ipc structure
   *
   * Called with ipc_ids.rwsem held.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145
   */
7748dbfaa   Nadia Derbey   ipc: unify the sy...
146
  static struct kern_ipc_perm *ipc_findkey(struct ipc_ids *ids, key_t key)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
147
  {
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
148
149
150
  	struct kern_ipc_perm *ipc;
  	int next_id;
  	int total;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
152
153
154
155
  	for (total = 0, next_id = 0; total < ids->in_use; next_id++) {
  		ipc = idr_find(&ids->ipcs_idr, next_id);
  
  		if (ipc == NULL)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
156
  			continue;
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
157
158
159
160
161
  
  		if (ipc->key != key) {
  			total++;
  			continue;
  		}
32a275001   Davidlohr Bueso   ipc: drop ipc_loc...
162
163
  		rcu_read_lock();
  		ipc_lock_object(ipc);
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
164
  		return ipc;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
  	}
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
166
167
  
  	return NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
  }
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
169
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
170
171
   * ipc_get_maxid - get the last assigned id
   * @ids: ipc identifier set
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
172
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
173
   * Called with ipc_ids.rwsem held.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
174
   */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
175
176
177
178
179
180
181
182
  int ipc_get_maxid(struct ipc_ids *ids)
  {
  	struct kern_ipc_perm *ipc;
  	int max_id = -1;
  	int total, id;
  
  	if (ids->in_use == 0)
  		return -1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
183

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
184
185
186
187
188
189
190
191
192
193
194
195
196
  	if (ids->in_use == IPCMNI)
  		return IPCMNI - 1;
  
  	/* Look for the last assigned id */
  	total = 0;
  	for (id = 0; id < IPCMNI && total < ids->in_use; id++) {
  		ipc = idr_find(&ids->ipcs_idr, id);
  		if (ipc != NULL) {
  			max_id = id;
  			total++;
  		}
  	}
  	return max_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
197
198
199
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
200
201
202
203
   * ipc_addid - add an ipc identifier
   * @ids: ipc identifier set
   * @new: new ipc permission set
   * @size: limit for the number of used ids
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
204
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
205
206
207
208
   * Add an entry 'new' to the ipc ids idr. The permissions object is
   * initialised and the first free entry is set up and the id assigned
   * is returned. The 'new' entry is returned in a locked state on success.
   * On failure the entry is not locked and a negative err-code is returned.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
209
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
210
   * Called with writer ipc_ids.rwsem held.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
211
   */
239521f31   Manfred Spraul   ipc: whitespace c...
212
  int ipc_addid(struct ipc_ids *ids, struct kern_ipc_perm *new, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
213
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
214
215
  	kuid_t euid;
  	kgid_t egid;
54924ea33   Tejun Heo   ipc: convert to i...
216
  	int id;
03f595668   Stanislav Kinsbursky   ipc: add sysctl t...
217
  	int next_id = ids->next_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
218

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
219
220
221
222
  	if (size > IPCMNI)
  		size = IPCMNI;
  
  	if (ids->in_use >= size)
283bb7fad   Pierre Peiffer   IPC: fix error ca...
223
  		return -ENOSPC;
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
224

54924ea33   Tejun Heo   ipc: convert to i...
225
  	idr_preload(GFP_KERNEL);
e00b4ff7e   Nadia Derbey   sysvipc: fix the ...
226
  	spin_lock_init(&new->lock);
72a8ff2f9   Rafael Aquini   ipc: change kern_...
227
  	new->deleted = false;
e00b4ff7e   Nadia Derbey   sysvipc: fix the ...
228
229
  	rcu_read_lock();
  	spin_lock(&new->lock);
54924ea33   Tejun Heo   ipc: convert to i...
230
231
232
233
234
  	id = idr_alloc(&ids->ipcs_idr, new,
  		       (next_id < 0) ? 0 : ipcid_to_idx(next_id), 0,
  		       GFP_NOWAIT);
  	idr_preload_end();
  	if (id < 0) {
e00b4ff7e   Nadia Derbey   sysvipc: fix the ...
235
236
  		spin_unlock(&new->lock);
  		rcu_read_unlock();
54924ea33   Tejun Heo   ipc: convert to i...
237
  		return id;
e00b4ff7e   Nadia Derbey   sysvipc: fix the ...
238
  	}
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
239

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
240
  	ids->in_use++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
241

414c0708d   David Howells   CRED: Wrap task c...
242
243
244
  	current_euid_egid(&euid, &egid);
  	new->cuid = new->uid = euid;
  	new->gid = new->cgid = egid;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
245

03f595668   Stanislav Kinsbursky   ipc: add sysctl t...
246
247
  	if (next_id < 0) {
  		new->seq = ids->seq++;
daf948c7d   Davidlohr Bueso   ipc: delete seq_m...
248
  		if (ids->seq > IPCID_SEQ_MAX)
03f595668   Stanislav Kinsbursky   ipc: add sysctl t...
249
250
251
252
253
  			ids->seq = 0;
  	} else {
  		new->seq = ipcid_to_seqx(next_id);
  		ids->next_id = -1;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
254

48dea404e   Pierre Peiffer   IPC: use ipc_buil...
255
  	new->id = ipc_buildid(id, new->seq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
258
259
  	return id;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
260
261
   * ipcget_new -	create a new ipc object
   * @ns: ipc namespace
da3dae54e   Masanari Iida   Documentation: Do...
262
   * @ids: ipc identifier set
8001c8581   Davidlohr Bueso   ipc: standardize ...
263
264
265
266
267
   * @ops: the actual creation routine to call
   * @params: its parameters
   *
   * This routine is called by sys_msgget, sys_semget() and sys_shmget()
   * when the key is IPC_PRIVATE.
7748dbfaa   Nadia Derbey   ipc: unify the sy...
268
   */
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
269
  static int ipcget_new(struct ipc_namespace *ns, struct ipc_ids *ids,
eb66ec44f   Mathias Krause   ipc: constify ipc...
270
  		const struct ipc_ops *ops, struct ipc_params *params)
7748dbfaa   Nadia Derbey   ipc: unify the sy...
271
272
  {
  	int err;
7748dbfaa   Nadia Derbey   ipc: unify the sy...
273

d9a605e40   Davidlohr Bueso   ipc: rename ids->...
274
  	down_write(&ids->rwsem);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
275
  	err = ops->getnew(ns, params);
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
276
  	up_write(&ids->rwsem);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
277
278
279
280
  	return err;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
281
282
283
284
285
   * ipc_check_perms - check security and permissions for an ipc object
   * @ns: ipc namespace
   * @ipcp: ipc permission set
   * @ops: the actual security routine to call
   * @params: its parameters
f4566f048   Nadia Derbey   ipc: fix wrong co...
286
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
287
288
289
   * This routine is called by sys_msgget(), sys_semget() and sys_shmget()
   * when the key is not IPC_PRIVATE and that key already exists in the
   * ds IDR.
f4566f048   Nadia Derbey   ipc: fix wrong co...
290
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
291
   * On success, the ipc id is returned.
f4566f048   Nadia Derbey   ipc: fix wrong co...
292
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
293
   * It is called with ipc_ids.rwsem and ipcp->lock held.
7748dbfaa   Nadia Derbey   ipc: unify the sy...
294
   */
b0e77598f   Serge E. Hallyn   userns: user name...
295
296
  static int ipc_check_perms(struct ipc_namespace *ns,
  			   struct kern_ipc_perm *ipcp,
eb66ec44f   Mathias Krause   ipc: constify ipc...
297
  			   const struct ipc_ops *ops,
b0e77598f   Serge E. Hallyn   userns: user name...
298
  			   struct ipc_params *params)
7748dbfaa   Nadia Derbey   ipc: unify the sy...
299
300
  {
  	int err;
b0e77598f   Serge E. Hallyn   userns: user name...
301
  	if (ipcperms(ns, ipcp, params->flg))
7748dbfaa   Nadia Derbey   ipc: unify the sy...
302
303
304
305
306
307
308
309
310
311
312
  		err = -EACCES;
  	else {
  		err = ops->associate(ipcp, params->flg);
  		if (!err)
  			err = ipcp->id;
  	}
  
  	return err;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
313
314
   * ipcget_public - get an ipc object or create a new one
   * @ns: ipc namespace
da3dae54e   Masanari Iida   Documentation: Do...
315
   * @ids: ipc identifier set
8001c8581   Davidlohr Bueso   ipc: standardize ...
316
317
318
319
320
321
322
323
324
   * @ops: the actual creation routine to call
   * @params: its parameters
   *
   * This routine is called by sys_msgget, sys_semget() and sys_shmget()
   * when the key is not IPC_PRIVATE.
   * It adds a new entry if the key is not found and does some permission
   * / security checkings if the key is found.
   *
   * On success, the ipc id is returned.
7748dbfaa   Nadia Derbey   ipc: unify the sy...
325
   */
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
326
  static int ipcget_public(struct ipc_namespace *ns, struct ipc_ids *ids,
eb66ec44f   Mathias Krause   ipc: constify ipc...
327
  		const struct ipc_ops *ops, struct ipc_params *params)
7748dbfaa   Nadia Derbey   ipc: unify the sy...
328
329
330
331
  {
  	struct kern_ipc_perm *ipcp;
  	int flg = params->flg;
  	int err;
7748dbfaa   Nadia Derbey   ipc: unify the sy...
332

3e148c799   Nadia Derbey   fix idr_find() lo...
333
334
335
336
  	/*
  	 * Take the lock as a writer since we are potentially going to add
  	 * a new entry + read locks are not "upgradable"
  	 */
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
337
  	down_write(&ids->rwsem);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
338
339
340
341
342
  	ipcp = ipc_findkey(ids, params->key);
  	if (ipcp == NULL) {
  		/* key not used */
  		if (!(flg & IPC_CREAT))
  			err = -ENOENT;
7748dbfaa   Nadia Derbey   ipc: unify the sy...
343
344
345
346
347
348
349
350
351
352
353
354
  		else
  			err = ops->getnew(ns, params);
  	} else {
  		/* ipc object has been locked by ipc_findkey() */
  
  		if (flg & IPC_CREAT && flg & IPC_EXCL)
  			err = -EEXIST;
  		else {
  			err = 0;
  			if (ops->more_checks)
  				err = ops->more_checks(ipcp, params);
  			if (!err)
f4566f048   Nadia Derbey   ipc: fix wrong co...
355
356
357
358
  				/*
  				 * ipc_check_perms returns the IPC id on
  				 * success
  				 */
b0e77598f   Serge E. Hallyn   userns: user name...
359
  				err = ipc_check_perms(ns, ipcp, ops, params);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
360
361
362
  		}
  		ipc_unlock(ipcp);
  	}
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
363
  	up_write(&ids->rwsem);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
364
365
366
367
368
369
  
  	return err;
  }
  
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
370
371
372
   * ipc_rmid - remove an ipc identifier
   * @ids: ipc identifier set
   * @ipcp: ipc perm structure containing the identifier to remove
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
373
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
374
375
   * ipc_ids.rwsem (as a writer) and the spinlock for this ID are held
   * before this function is called, and remain locked on the exit.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
376
   */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
377
  void ipc_rmid(struct ipc_ids *ids, struct kern_ipc_perm *ipcp)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
378
  {
ce621f5ba   Nadia Derbey   ipc: introduce th...
379
  	int lid = ipcid_to_idx(ipcp->id);
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
380
381
  
  	idr_remove(&ids->ipcs_idr, lid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
382
  	ids->in_use--;
72a8ff2f9   Rafael Aquini   ipc: change kern_...
383
  	ipcp->deleted = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
384
385
386
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
387
388
   * ipc_alloc -	allocate ipc space
   * @size: size desired
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
389
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
390
391
   * Allocate memory from the appropriate pools and return a pointer to it.
   * NULL is returned if the allocation fails
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
392
   */
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
393
  void *ipc_alloc(int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
394
  {
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
395
  	void *out;
239521f31   Manfred Spraul   ipc: whitespace c...
396
  	if (size > PAGE_SIZE)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
398
399
400
401
402
403
  		out = vmalloc(size);
  	else
  		out = kmalloc(size, GFP_KERNEL);
  	return out;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
404
405
406
   * ipc_free - free ipc space
   * @ptr: pointer returned by ipc_alloc
   * @size: size of block
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
407
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
408
409
   * Free a block created with ipc_alloc(). The caller must know the size
   * used in the allocation call.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
410
   */
239521f31   Manfred Spraul   ipc: whitespace c...
411
  void ipc_free(void *ptr, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
412
  {
239521f31   Manfred Spraul   ipc: whitespace c...
413
  	if (size > PAGE_SIZE)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
414
415
416
417
  		vfree(ptr);
  	else
  		kfree(ptr);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
418
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
419
420
   * ipc_rcu_alloc - allocate ipc and rcu space
   * @size: size desired
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
421
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
422
423
   * Allocate memory for the rcu header structure +  the object.
   * Returns the pointer to the object or NULL upon failure.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
424
   */
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
425
  void *ipc_rcu_alloc(int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
426
  {
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
427
  	/*
600fe9751   Al Viro   ipc_schedule_free...
428
  	 * We prepend the allocation with the rcu struct
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
429
  	 */
600fe9751   Al Viro   ipc_schedule_free...
430
431
432
433
  	struct ipc_rcu *out = ipc_alloc(sizeof(struct ipc_rcu) + size);
  	if (unlikely(!out))
  		return NULL;
  	atomic_set(&out->refcount, 1);
196aa0132   Manfred Spraul   ipc/util.c, ipc_r...
434
  	return out + 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
435
  }
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
436
  int ipc_rcu_getref(void *ptr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
437
  {
196aa0132   Manfred Spraul   ipc/util.c, ipc_r...
438
439
440
  	struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
  
  	return atomic_inc_not_zero(&p->refcount);
65f27f384   David Howells   WorkStruct: Pass ...
441
  }
53dad6d3a   Davidlohr Bueso   ipc: fix race wit...
442
  void ipc_rcu_putref(void *ptr, void (*func)(struct rcu_head *head))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
443
  {
196aa0132   Manfred Spraul   ipc/util.c, ipc_r...
444
  	struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
600fe9751   Al Viro   ipc_schedule_free...
445
446
  
  	if (!atomic_dec_and_test(&p->refcount))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
447
  		return;
53dad6d3a   Davidlohr Bueso   ipc: fix race wit...
448
449
450
451
452
453
454
455
456
457
458
  	call_rcu(&p->rcu, func);
  }
  
  void ipc_rcu_free(struct rcu_head *head)
  {
  	struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu);
  
  	if (is_vmalloc_addr(p))
  		vfree(p);
  	else
  		kfree(p);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
459
460
461
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
462
463
464
465
   * ipcperms - check ipc permissions
   * @ns: ipc namespace
   * @ipcp: ipc permission set
   * @flag: desired permission set
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
466
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
467
468
   * Check user, group, other permissions for access
   * to ipc resources. return 0 if allowed
b0e77598f   Serge E. Hallyn   userns: user name...
469
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
470
   * @flag will most probably be 0 or S_...UGO from <linux/stat.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
471
   */
b0e77598f   Serge E. Hallyn   userns: user name...
472
473
  int ipcperms(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp, short flag)
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
474
  	kuid_t euid = current_euid();
a33e67510   Al Viro   sanitize audit_ip...
475
  	int requested_mode, granted_mode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
476

a33e67510   Al Viro   sanitize audit_ip...
477
  	audit_ipc_obj(ipcp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
478
479
  	requested_mode = (flag >> 6) | (flag >> 3) | flag;
  	granted_mode = ipcp->mode;
1efdb69b0   Eric W. Biederman   userns: Convert i...
480
481
  	if (uid_eq(euid, ipcp->cuid) ||
  	    uid_eq(euid, ipcp->uid))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
482
483
484
485
  		granted_mode >>= 6;
  	else if (in_group_p(ipcp->cgid) || in_group_p(ipcp->gid))
  		granted_mode >>= 3;
  	/* is there some bit set in requested_mode but not in granted_mode? */
46c0a8ca3   Paul McQuade   ipc, kernel: clea...
486
  	if ((requested_mode & ~granted_mode & 0007) &&
b0e77598f   Serge E. Hallyn   userns: user name...
487
  	    !ns_capable(ns->user_ns, CAP_IPC_OWNER))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
488
489
490
491
492
493
494
495
496
497
498
  		return -1;
  
  	return security_ipc_permission(ipcp, flag);
  }
  
  /*
   * Functions to convert between the kern_ipc_perm structure and the
   * old/new ipc_perm structures
   */
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
499
500
501
   * kernel_to_ipc64_perm	- convert kernel ipc permissions to user
   * @in: kernel permissions
   * @out: new style ipc permissions
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
502
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
503
504
   * Turn the kernel object @in into a set of permissions descriptions
   * for returning to userspace (@out).
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
505
   */
239521f31   Manfred Spraul   ipc: whitespace c...
506
  void kernel_to_ipc64_perm(struct kern_ipc_perm *in, struct ipc64_perm *out)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
507
508
  {
  	out->key	= in->key;
1efdb69b0   Eric W. Biederman   userns: Convert i...
509
510
511
512
  	out->uid	= from_kuid_munged(current_user_ns(), in->uid);
  	out->gid	= from_kgid_munged(current_user_ns(), in->gid);
  	out->cuid	= from_kuid_munged(current_user_ns(), in->cuid);
  	out->cgid	= from_kgid_munged(current_user_ns(), in->cgid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
513
514
515
516
517
  	out->mode	= in->mode;
  	out->seq	= in->seq;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
518
519
520
   * ipc64_perm_to_ipc_perm - convert new ipc permissions to old
   * @in: new style ipc permissions
   * @out: old style ipc permissions
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
521
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
522
523
   * Turn the new style permissions object @in into a compatibility
   * object and store it into the @out pointer.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
524
   */
239521f31   Manfred Spraul   ipc: whitespace c...
525
  void ipc64_perm_to_ipc_perm(struct ipc64_perm *in, struct ipc_perm *out)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
526
527
528
529
530
531
532
533
534
  {
  	out->key	= in->key;
  	SET_UID(out->uid, in->uid);
  	SET_GID(out->gid, in->gid);
  	SET_UID(out->cuid, in->cuid);
  	SET_GID(out->cgid, in->cgid);
  	out->mode	= in->mode;
  	out->seq	= in->seq;
  }
f4566f048   Nadia Derbey   ipc: fix wrong co...
535
  /**
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
   * ipc_obtain_object
   * @ids: ipc identifier set
   * @id: ipc id to look for
   *
   * Look for an id in the ipc ids idr and return associated ipc object.
   *
   * Call inside the RCU critical section.
   * The ipc object is *not* locked on exit.
   */
  struct kern_ipc_perm *ipc_obtain_object(struct ipc_ids *ids, int id)
  {
  	struct kern_ipc_perm *out;
  	int lid = ipcid_to_idx(id);
  
  	out = idr_find(&ids->ipcs_idr, lid);
  	if (!out)
  		return ERR_PTR(-EINVAL);
  
  	return out;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
558
559
   * ipc_lock - lock an ipc structure without rwsem held
   * @ids: ipc identifier set
f4566f048   Nadia Derbey   ipc: fix wrong co...
560
561
562
563
   * @id: ipc id to look for
   *
   * Look for an id in the ipc ids idr and lock the associated ipc object.
   *
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
564
   * The ipc object is locked on successful exit.
f4566f048   Nadia Derbey   ipc: fix wrong co...
565
   */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
566
  struct kern_ipc_perm *ipc_lock(struct ipc_ids *ids, int id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
567
  {
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
568
  	struct kern_ipc_perm *out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
569
570
  
  	rcu_read_lock();
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
571
572
573
  	out = ipc_obtain_object(ids, id);
  	if (IS_ERR(out))
  		goto err1;
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
574

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
575
  	spin_lock(&out->lock);
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
576

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
577
578
579
  	/* ipc_rmid() may have already freed the ID while ipc_lock
  	 * was spinning: here verify that the structure is still valid
  	 */
72a8ff2f9   Rafael Aquini   ipc: change kern_...
580
  	if (ipc_valid_object(out))
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
581
582
583
584
585
586
587
588
  		return out;
  
  	spin_unlock(&out->lock);
  	out = ERR_PTR(-EINVAL);
  err1:
  	rcu_read_unlock();
  	return out;
  }
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
589

4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
  /**
   * ipc_obtain_object_check
   * @ids: ipc identifier set
   * @id: ipc id to look for
   *
   * Similar to ipc_obtain_object() but also checks
   * the ipc object reference counter.
   *
   * Call inside the RCU critical section.
   * The ipc object is *not* locked on exit.
   */
  struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id)
  {
  	struct kern_ipc_perm *out = ipc_obtain_object(ids, id);
  
  	if (IS_ERR(out))
  		goto out;
  
  	if (ipc_checkid(out, id))
  		return ERR_PTR(-EIDRM);
  out:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
611
612
  	return out;
  }
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
613
614
  /**
   * ipcget - Common sys_*get() code
da3dae54e   Masanari Iida   Documentation: Do...
615
   * @ns: namespace
8001c8581   Davidlohr Bueso   ipc: standardize ...
616
617
618
619
   * @ids: ipc identifier set
   * @ops: operations to be called on ipc object creation, permission checks
   *       and further checks
   * @params: the parameters needed by the previous operations.
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
620
621
622
623
   *
   * Common routine called by sys_msgget(), sys_semget() and sys_shmget().
   */
  int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids,
eb66ec44f   Mathias Krause   ipc: constify ipc...
624
  			const struct ipc_ops *ops, struct ipc_params *params)
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
625
626
627
628
629
630
  {
  	if (params->key == IPC_PRIVATE)
  		return ipcget_new(ns, ids, ops, params);
  	else
  		return ipcget_public(ns, ids, ops, params);
  }
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
631
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
632
   * ipc_update_perm - update the permissions of an ipc object
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
633
634
635
   * @in:  the permission given as input.
   * @out: the permission of the ipc to set.
   */
1efdb69b0   Eric W. Biederman   userns: Convert i...
636
  int ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out)
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
637
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
638
639
640
641
642
643
644
  	kuid_t uid = make_kuid(current_user_ns(), in->uid);
  	kgid_t gid = make_kgid(current_user_ns(), in->gid);
  	if (!uid_valid(uid) || !gid_valid(gid))
  		return -EINVAL;
  
  	out->uid = uid;
  	out->gid = gid;
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
645
646
  	out->mode = (out->mode & ~S_IRWXUGO)
  		| (in->mode & S_IRWXUGO);
1efdb69b0   Eric W. Biederman   userns: Convert i...
647
648
  
  	return 0;
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
649
  }
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
650
  /**
3b1c4ad37   Davidlohr Bueso   ipc: drop ipcctl_...
651
   * ipcctl_pre_down_nolock - retrieve an ipc and check permissions for some IPC_XXX cmd
8001c8581   Davidlohr Bueso   ipc: standardize ...
652
   * @ns:  ipc namespace
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
653
654
655
656
657
658
659
660
661
662
663
   * @ids:  the table of ids where to look for the ipc
   * @id:   the id of the ipc to retrieve
   * @cmd:  the cmd to check
   * @perm: the permission to set
   * @extra_perm: one extra permission parameter used by msq
   *
   * This function does some common audit and permissions check for some IPC_XXX
   * cmd and is called from semctl_down, shmctl_down and msgctl_down.
   * It must be called without any lock held and
   *  - retrieves the ipc with the given id in the given table.
   *  - performs some audit and permission check, depending on the given cmd
3b1c4ad37   Davidlohr Bueso   ipc: drop ipcctl_...
664
   *  - returns a pointer to the ipc object or otherwise, the corresponding error.
7b4cc5d84   Davidlohr Bueso   ipc: move locking...
665
   *
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
666
   * Call holding the both the rwsem and the rcu read lock.
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
667
   */
444d0f621   Davidlohr Bueso   ipc: introduce lo...
668
  struct kern_ipc_perm *ipcctl_pre_down_nolock(struct ipc_namespace *ns,
3b1c4ad37   Davidlohr Bueso   ipc: drop ipcctl_...
669
670
  					struct ipc_ids *ids, int id, int cmd,
  					struct ipc64_perm *perm, int extra_perm)
444d0f621   Davidlohr Bueso   ipc: introduce lo...
671
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
672
  	kuid_t euid;
444d0f621   Davidlohr Bueso   ipc: introduce lo...
673
674
  	int err = -EPERM;
  	struct kern_ipc_perm *ipcp;
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
675

444d0f621   Davidlohr Bueso   ipc: introduce lo...
676
  	ipcp = ipc_obtain_object_check(ids, id);
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
677
678
  	if (IS_ERR(ipcp)) {
  		err = PTR_ERR(ipcp);
7b4cc5d84   Davidlohr Bueso   ipc: move locking...
679
  		goto err;
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
680
  	}
a33e67510   Al Viro   sanitize audit_ip...
681
  	audit_ipc_obj(ipcp);
e816f370c   Al Viro   sanitize audit_ip...
682
683
  	if (cmd == IPC_SET)
  		audit_ipc_set_perm(extra_perm, perm->uid,
444d0f621   Davidlohr Bueso   ipc: introduce lo...
684
  				   perm->gid, perm->mode);
414c0708d   David Howells   CRED: Wrap task c...
685
686
  
  	euid = current_euid();
1efdb69b0   Eric W. Biederman   userns: Convert i...
687
  	if (uid_eq(euid, ipcp->cuid) || uid_eq(euid, ipcp->uid)  ||
b0e77598f   Serge E. Hallyn   userns: user name...
688
  	    ns_capable(ns->user_ns, CAP_SYS_ADMIN))
7b4cc5d84   Davidlohr Bueso   ipc: move locking...
689
690
  		return ipcp; /* successful lookup */
  err:
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
691
692
  	return ERR_PTR(err);
  }
c1d7e01d7   Will Deacon   ipc: use Kconfig ...
693
  #ifdef CONFIG_ARCH_WANT_IPC_PARSE_VERSION
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
694
695
696
  
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
697
698
   * ipc_parse_version - ipc call version
   * @cmd: pointer to command
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
699
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
700
701
702
   * Return IPC_64 for new style IPC and IPC_OLD for old style IPC.
   * The @cmd value is turned from an encoding command and version into
   * just the command code.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
703
   */
239521f31   Manfred Spraul   ipc: whitespace c...
704
  int ipc_parse_version(int *cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
705
706
707
708
709
710
711
712
  {
  	if (*cmd & IPC_64) {
  		*cmd ^= IPC_64;
  		return IPC_64;
  	} else {
  		return IPC_OLD;
  	}
  }
c1d7e01d7   Will Deacon   ipc: use Kconfig ...
713
  #endif /* CONFIG_ARCH_WANT_IPC_PARSE_VERSION */
ae7817745   Mike Waychison   [PATCH] ipc: add ...
714
715
  
  #ifdef CONFIG_PROC_FS
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
716
717
718
719
  struct ipc_proc_iter {
  	struct ipc_namespace *ns;
  	struct ipc_proc_iface *iface;
  };
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
720
721
722
  /*
   * This routine locks the ipc structure found at least at position pos.
   */
b524b9adb   Adrian Bunk   make ipc/util.c:s...
723
724
  static struct kern_ipc_perm *sysvipc_find_ipc(struct ipc_ids *ids, loff_t pos,
  					      loff_t *new_pos)
ae7817745   Mike Waychison   [PATCH] ipc: add ...
725
  {
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
726
727
  	struct kern_ipc_perm *ipc;
  	int total, id;
73ea41302   Kirill Korotaev   [PATCH] IPC names...
728

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
729
730
731
732
733
734
  	total = 0;
  	for (id = 0; id < pos && total < ids->in_use; id++) {
  		ipc = idr_find(&ids->ipcs_idr, id);
  		if (ipc != NULL)
  			total++;
  	}
ae7817745   Mike Waychison   [PATCH] ipc: add ...
735

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
736
737
  	if (total >= ids->in_use)
  		return NULL;
ae7817745   Mike Waychison   [PATCH] ipc: add ...
738

239521f31   Manfred Spraul   ipc: whitespace c...
739
  	for (; pos < IPCMNI; pos++) {
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
740
741
742
  		ipc = idr_find(&ids->ipcs_idr, pos);
  		if (ipc != NULL) {
  			*new_pos = pos + 1;
32a275001   Davidlohr Bueso   ipc: drop ipc_loc...
743
744
  			rcu_read_lock();
  			ipc_lock_object(ipc);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
745
746
747
748
749
750
751
  			return ipc;
  		}
  	}
  
  	/* Out of range - return NULL to terminate iteration */
  	return NULL;
  }
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
752
753
754
755
756
757
758
759
760
  static void *sysvipc_proc_next(struct seq_file *s, void *it, loff_t *pos)
  {
  	struct ipc_proc_iter *iter = s->private;
  	struct ipc_proc_iface *iface = iter->iface;
  	struct kern_ipc_perm *ipc = it;
  
  	/* If we had an ipc id locked before, unlock it */
  	if (ipc && ipc != SEQ_START_TOKEN)
  		ipc_unlock(ipc);
ed2ddbf88   Pierre Peiffer   IPC: make struct ...
761
  	return sysvipc_find_ipc(&iter->ns->ids[iface->ids], *pos, pos);
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
762
  }
ae7817745   Mike Waychison   [PATCH] ipc: add ...
763
  /*
f4566f048   Nadia Derbey   ipc: fix wrong co...
764
765
   * File positions: pos 0 -> header, pos n -> ipc id = n - 1.
   * SeqFile iterator: iterator value locked ipc pointer or SEQ_TOKEN_START.
ae7817745   Mike Waychison   [PATCH] ipc: add ...
766
767
768
   */
  static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos)
  {
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
769
770
  	struct ipc_proc_iter *iter = s->private;
  	struct ipc_proc_iface *iface = iter->iface;
73ea41302   Kirill Korotaev   [PATCH] IPC names...
771
  	struct ipc_ids *ids;
ed2ddbf88   Pierre Peiffer   IPC: make struct ...
772
  	ids = &iter->ns->ids[iface->ids];
ae7817745   Mike Waychison   [PATCH] ipc: add ...
773
774
775
776
777
  
  	/*
  	 * Take the lock - this will be released by the corresponding
  	 * call to stop().
  	 */
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
778
  	down_read(&ids->rwsem);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
779
780
781
782
783
784
785
786
787
788
  
  	/* pos < 0 is invalid */
  	if (*pos < 0)
  		return NULL;
  
  	/* pos == 0 means header */
  	if (*pos == 0)
  		return SEQ_START_TOKEN;
  
  	/* Find the (pos-1)th ipc */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
789
  	return sysvipc_find_ipc(ids, *pos - 1, pos);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
790
791
792
793
794
  }
  
  static void sysvipc_proc_stop(struct seq_file *s, void *it)
  {
  	struct kern_ipc_perm *ipc = it;
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
795
796
  	struct ipc_proc_iter *iter = s->private;
  	struct ipc_proc_iface *iface = iter->iface;
73ea41302   Kirill Korotaev   [PATCH] IPC names...
797
  	struct ipc_ids *ids;
ae7817745   Mike Waychison   [PATCH] ipc: add ...
798

f4566f048   Nadia Derbey   ipc: fix wrong co...
799
  	/* If we had a locked structure, release it */
ae7817745   Mike Waychison   [PATCH] ipc: add ...
800
801
  	if (ipc && ipc != SEQ_START_TOKEN)
  		ipc_unlock(ipc);
ed2ddbf88   Pierre Peiffer   IPC: make struct ...
802
  	ids = &iter->ns->ids[iface->ids];
ae7817745   Mike Waychison   [PATCH] ipc: add ...
803
  	/* Release the lock we took in start() */
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
804
  	up_read(&ids->rwsem);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
805
806
807
808
  }
  
  static int sysvipc_proc_show(struct seq_file *s, void *it)
  {
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
809
810
  	struct ipc_proc_iter *iter = s->private;
  	struct ipc_proc_iface *iface = iter->iface;
ae7817745   Mike Waychison   [PATCH] ipc: add ...
811

7f032d6ef   Joe Perches   ipc: remove use o...
812
813
814
815
  	if (it == SEQ_START_TOKEN) {
  		seq_puts(s, iface->header);
  		return 0;
  	}
ae7817745   Mike Waychison   [PATCH] ipc: add ...
816
817
818
  
  	return iface->show(s, it);
  }
88e9d34c7   James Morris   seq_file: constif...
819
  static const struct seq_operations sysvipc_proc_seqops = {
ae7817745   Mike Waychison   [PATCH] ipc: add ...
820
821
822
823
824
  	.start = sysvipc_proc_start,
  	.stop  = sysvipc_proc_stop,
  	.next  = sysvipc_proc_next,
  	.show  = sysvipc_proc_show,
  };
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
825
826
  static int sysvipc_proc_open(struct inode *inode, struct file *file)
  {
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
827
  	struct ipc_proc_iter *iter;
d66a0520c   Rob Jones   ipc/util.c: use _...
828
  	iter = __seq_open_private(file, &sysvipc_proc_seqops, sizeof(*iter));
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
829
  	if (!iter)
d66a0520c   Rob Jones   ipc/util.c: use _...
830
  		return -ENOMEM;
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
831

d9dda78ba   Al Viro   procfs: new helpe...
832
  	iter->iface = PDE_DATA(inode);
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
833
  	iter->ns    = get_ipc_ns(current->nsproxy->ipc_ns);
d66a0520c   Rob Jones   ipc/util.c: use _...
834
835
  
  	return 0;
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
836
837
838
839
840
841
842
843
  }
  
  static int sysvipc_proc_release(struct inode *inode, struct file *file)
  {
  	struct seq_file *seq = file->private_data;
  	struct ipc_proc_iter *iter = seq->private;
  	put_ipc_ns(iter->ns);
  	return seq_release_private(inode, file);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
844
  }
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
845
  static const struct file_operations sysvipc_proc_fops = {
ae7817745   Mike Waychison   [PATCH] ipc: add ...
846
847
848
  	.open    = sysvipc_proc_open,
  	.read    = seq_read,
  	.llseek  = seq_lseek,
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
849
  	.release = sysvipc_proc_release,
ae7817745   Mike Waychison   [PATCH] ipc: add ...
850
851
  };
  #endif /* CONFIG_PROC_FS */