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);
b9a532277   Linus Torvalds   Initialize msg/sh...
230
231
232
  	current_euid_egid(&euid, &egid);
  	new->cuid = new->uid = euid;
  	new->gid = new->cgid = egid;
54924ea33   Tejun Heo   ipc: convert to i...
233
234
235
236
237
  	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 ...
238
239
  		spin_unlock(&new->lock);
  		rcu_read_unlock();
54924ea33   Tejun Heo   ipc: convert to i...
240
  		return id;
e00b4ff7e   Nadia Derbey   sysvipc: fix the ...
241
  	}
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
242

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
243
  	ids->in_use++;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244

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

48dea404e   Pierre Peiffer   IPC: use ipc_buil...
254
  	new->id = ipc_buildid(id, new->seq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
256
257
258
  	return id;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
259
260
   * ipcget_new -	create a new ipc object
   * @ns: ipc namespace
da3dae54e   Masanari Iida   Documentation: Do...
261
   * @ids: ipc identifier set
8001c8581   Davidlohr Bueso   ipc: standardize ...
262
263
264
265
266
   * @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...
267
   */
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
268
  static int ipcget_new(struct ipc_namespace *ns, struct ipc_ids *ids,
eb66ec44f   Mathias Krause   ipc: constify ipc...
269
  		const struct ipc_ops *ops, struct ipc_params *params)
7748dbfaa   Nadia Derbey   ipc: unify the sy...
270
271
  {
  	int err;
7748dbfaa   Nadia Derbey   ipc: unify the sy...
272

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

3e148c799   Nadia Derbey   fix idr_find() lo...
332
333
334
335
  	/*
  	 * 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->...
336
  	down_write(&ids->rwsem);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
337
338
339
340
341
  	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...
342
343
344
345
346
347
348
349
350
351
352
353
  		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...
354
355
356
357
  				/*
  				 * ipc_check_perms returns the IPC id on
  				 * success
  				 */
b0e77598f   Serge E. Hallyn   userns: user name...
358
  				err = ipc_check_perms(ns, ipcp, ops, params);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
359
360
361
  		}
  		ipc_unlock(ipcp);
  	}
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
362
  	up_write(&ids->rwsem);
7748dbfaa   Nadia Derbey   ipc: unify the sy...
363
364
365
366
367
368
  
  	return err;
  }
  
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
369
370
371
   * 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
372
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
373
374
   * 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
375
   */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
376
  void ipc_rmid(struct ipc_ids *ids, struct kern_ipc_perm *ipcp)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
377
  {
ce621f5ba   Nadia Derbey   ipc: introduce th...
378
  	int lid = ipcid_to_idx(ipcp->id);
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
379
380
  
  	idr_remove(&ids->ipcs_idr, lid);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
381
  	ids->in_use--;
72a8ff2f9   Rafael Aquini   ipc: change kern_...
382
  	ipcp->deleted = true;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
383
384
385
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
386
387
   * ipc_alloc -	allocate ipc space
   * @size: size desired
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
388
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
389
390
   * 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
391
   */
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
392
  void *ipc_alloc(int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
393
  {
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
394
  	void *out;
239521f31   Manfred Spraul   ipc: whitespace c...
395
  	if (size > PAGE_SIZE)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
396
397
398
399
400
401
402
  		out = vmalloc(size);
  	else
  		out = kmalloc(size, GFP_KERNEL);
  	return out;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
403
404
   * ipc_free - free ipc space
   * @ptr: pointer returned by ipc_alloc
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
   *
1d5cfdb07   Tetsuo Handa   tree wide: use kv...
406
   * Free a block created with ipc_alloc().
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
407
   */
1d5cfdb07   Tetsuo Handa   tree wide: use kv...
408
  void ipc_free(void *ptr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
409
  {
1d5cfdb07   Tetsuo Handa   tree wide: use kv...
410
  	kvfree(ptr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
411
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
412
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
413
414
   * ipc_rcu_alloc - allocate ipc and rcu space
   * @size: size desired
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
415
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
416
417
   * 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
418
   */
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
419
  void *ipc_rcu_alloc(int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
420
  {
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
421
  	/*
600fe9751   Al Viro   ipc_schedule_free...
422
  	 * We prepend the allocation with the rcu struct
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423
  	 */
600fe9751   Al Viro   ipc_schedule_free...
424
425
426
427
  	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...
428
  	return out + 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
429
  }
6062a8dc0   Rik van Riel   ipc,sem: fine gra...
430
  int ipc_rcu_getref(void *ptr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
431
  {
196aa0132   Manfred Spraul   ipc/util.c, ipc_r...
432
433
434
  	struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
  
  	return atomic_inc_not_zero(&p->refcount);
65f27f384   David Howells   WorkStruct: Pass ...
435
  }
53dad6d3a   Davidlohr Bueso   ipc: fix race wit...
436
  void ipc_rcu_putref(void *ptr, void (*func)(struct rcu_head *head))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
437
  {
196aa0132   Manfred Spraul   ipc/util.c, ipc_r...
438
  	struct ipc_rcu *p = ((struct ipc_rcu *)ptr) - 1;
600fe9751   Al Viro   ipc_schedule_free...
439
440
  
  	if (!atomic_dec_and_test(&p->refcount))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
441
  		return;
53dad6d3a   Davidlohr Bueso   ipc: fix race wit...
442
443
444
445
446
447
  	call_rcu(&p->rcu, func);
  }
  
  void ipc_rcu_free(struct rcu_head *head)
  {
  	struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu);
c859aa831   Pekka Enberg   ipc/util.c: use k...
448
  	kvfree(p);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
449
450
451
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
452
453
454
455
   * ipcperms - check ipc permissions
   * @ns: ipc namespace
   * @ipcp: ipc permission set
   * @flag: desired permission set
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
456
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
457
458
   * Check user, group, other permissions for access
   * to ipc resources. return 0 if allowed
b0e77598f   Serge E. Hallyn   userns: user name...
459
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
460
   * @flag will most probably be 0 or S_...UGO from <linux/stat.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
461
   */
b0e77598f   Serge E. Hallyn   userns: user name...
462
463
  int ipcperms(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp, short flag)
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
464
  	kuid_t euid = current_euid();
a33e67510   Al Viro   sanitize audit_ip...
465
  	int requested_mode, granted_mode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
466

a33e67510   Al Viro   sanitize audit_ip...
467
  	audit_ipc_obj(ipcp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
468
469
  	requested_mode = (flag >> 6) | (flag >> 3) | flag;
  	granted_mode = ipcp->mode;
1efdb69b0   Eric W. Biederman   userns: Convert i...
470
471
  	if (uid_eq(euid, ipcp->cuid) ||
  	    uid_eq(euid, ipcp->uid))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
472
473
474
475
  		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...
476
  	if ((requested_mode & ~granted_mode & 0007) &&
b0e77598f   Serge E. Hallyn   userns: user name...
477
  	    !ns_capable(ns->user_ns, CAP_IPC_OWNER))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
478
479
480
481
482
483
484
485
486
487
488
  		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 ...
489
490
491
   * 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
492
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
493
494
   * Turn the kernel object @in into a set of permissions descriptions
   * for returning to userspace (@out).
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
495
   */
239521f31   Manfred Spraul   ipc: whitespace c...
496
  void kernel_to_ipc64_perm(struct kern_ipc_perm *in, struct ipc64_perm *out)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
497
498
  {
  	out->key	= in->key;
1efdb69b0   Eric W. Biederman   userns: Convert i...
499
500
501
502
  	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
503
504
505
506
507
  	out->mode	= in->mode;
  	out->seq	= in->seq;
  }
  
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
508
509
510
   * 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
511
   *
8001c8581   Davidlohr Bueso   ipc: standardize ...
512
513
   * 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
514
   */
239521f31   Manfred Spraul   ipc: whitespace c...
515
  void ipc64_perm_to_ipc_perm(struct ipc64_perm *in, struct ipc_perm *out)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
516
517
518
519
520
521
522
523
524
  {
  	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...
525
  /**
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
526
527
528
529
530
531
532
533
534
   * 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.
   */
55b7ae501   Davidlohr Bueso   ipc: rename ipc_o...
535
  struct kern_ipc_perm *ipc_obtain_object_idr(struct ipc_ids *ids, int id)
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
536
537
538
539
540
541
542
543
544
545
546
547
  {
  	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 ...
548
549
   * ipc_lock - lock an ipc structure without rwsem held
   * @ids: ipc identifier set
f4566f048   Nadia Derbey   ipc: fix wrong co...
550
551
552
553
   * @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...
554
   * The ipc object is locked on successful exit.
f4566f048   Nadia Derbey   ipc: fix wrong co...
555
   */
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
556
  struct kern_ipc_perm *ipc_lock(struct ipc_ids *ids, int id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
557
  {
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
558
  	struct kern_ipc_perm *out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
559
560
  
  	rcu_read_lock();
55b7ae501   Davidlohr Bueso   ipc: rename ipc_o...
561
  	out = ipc_obtain_object_idr(ids, id);
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
562
  	if (IS_ERR(out))
f8b591849   Davidlohr Bueso   ipc,sysv: make re...
563
  		goto err;
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
564

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

f8b591849   Davidlohr Bueso   ipc,sysv: make re...
567
568
569
570
571
  	/*
  	 * ipc_rmid() may have already freed the ID while ipc_lock()
  	 * was spinning: here verify that the structure is still valid.
  	 * Upon races with RMID, return -EIDRM, thus indicating that
  	 * the ID points to a removed identifier.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
572
  	 */
72a8ff2f9   Rafael Aquini   ipc: change kern_...
573
  	if (ipc_valid_object(out))
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
574
575
576
  		return out;
  
  	spin_unlock(&out->lock);
f8b591849   Davidlohr Bueso   ipc,sysv: make re...
577
578
  	out = ERR_PTR(-EIDRM);
  err:
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
579
580
581
  	rcu_read_unlock();
  	return out;
  }
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
582

4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
583
584
585
586
587
  /**
   * ipc_obtain_object_check
   * @ids: ipc identifier set
   * @id: ipc id to look for
   *
55b7ae501   Davidlohr Bueso   ipc: rename ipc_o...
588
   * Similar to ipc_obtain_object_idr() but also checks
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
589
590
591
592
593
594
595
   * 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)
  {
55b7ae501   Davidlohr Bueso   ipc: rename ipc_o...
596
  	struct kern_ipc_perm *out = ipc_obtain_object_idr(ids, id);
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
597
598
599
600
601
  
  	if (IS_ERR(out))
  		goto out;
  
  	if (ipc_checkid(out, id))
6157dbbfb   Davidlohr Bueso   ipc,sysv: return ...
602
  		return ERR_PTR(-EINVAL);
4d2bff5eb   Davidlohr Bueso   ipc: introduce ob...
603
  out:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
604
605
  	return out;
  }
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
606
607
  /**
   * ipcget - Common sys_*get() code
da3dae54e   Masanari Iida   Documentation: Do...
608
   * @ns: namespace
8001c8581   Davidlohr Bueso   ipc: standardize ...
609
610
611
612
   * @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...
613
614
615
616
   *
   * 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...
617
  			const struct ipc_ops *ops, struct ipc_params *params)
b2d75cddc   Pavel Emelyanov   ipc: uninline som...
618
619
620
621
622
623
  {
  	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...
624
  /**
8001c8581   Davidlohr Bueso   ipc: standardize ...
625
   * ipc_update_perm - update the permissions of an ipc object
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
626
627
628
   * @in:  the permission given as input.
   * @out: the permission of the ipc to set.
   */
1efdb69b0   Eric W. Biederman   userns: Convert i...
629
  int ipc_update_perm(struct ipc64_perm *in, struct kern_ipc_perm *out)
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
630
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
631
632
633
634
635
636
637
  	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...
638
639
  	out->mode = (out->mode & ~S_IRWXUGO)
  		| (in->mode & S_IRWXUGO);
1efdb69b0   Eric W. Biederman   userns: Convert i...
640
641
  
  	return 0;
8f4a3809c   Pierre Peiffer   IPC: introduce ip...
642
  }
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
643
  /**
3b1c4ad37   Davidlohr Bueso   ipc: drop ipcctl_...
644
   * ipcctl_pre_down_nolock - retrieve an ipc and check permissions for some IPC_XXX cmd
8001c8581   Davidlohr Bueso   ipc: standardize ...
645
   * @ns:  ipc namespace
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
646
647
648
649
650
651
652
653
654
655
656
   * @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_...
657
   *  - returns a pointer to the ipc object or otherwise, the corresponding error.
7b4cc5d84   Davidlohr Bueso   ipc: move locking...
658
   *
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
659
   * Call holding the both the rwsem and the rcu read lock.
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
660
   */
444d0f621   Davidlohr Bueso   ipc: introduce lo...
661
  struct kern_ipc_perm *ipcctl_pre_down_nolock(struct ipc_namespace *ns,
3b1c4ad37   Davidlohr Bueso   ipc: drop ipcctl_...
662
663
  					struct ipc_ids *ids, int id, int cmd,
  					struct ipc64_perm *perm, int extra_perm)
444d0f621   Davidlohr Bueso   ipc: introduce lo...
664
  {
1efdb69b0   Eric W. Biederman   userns: Convert i...
665
  	kuid_t euid;
444d0f621   Davidlohr Bueso   ipc: introduce lo...
666
667
  	int err = -EPERM;
  	struct kern_ipc_perm *ipcp;
a5f75e7f2   Pierre Peiffer   IPC: consolidate ...
668

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

7ca7e564e   Nadia Derbey   ipc: store ipcs i...
722
723
724
725
726
727
  	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 ...
728

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

239521f31   Manfred Spraul   ipc: whitespace c...
732
  	for (; pos < IPCMNI; pos++) {
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
733
734
735
  		ipc = idr_find(&ids->ipcs_idr, pos);
  		if (ipc != NULL) {
  			*new_pos = pos + 1;
32a275001   Davidlohr Bueso   ipc: drop ipc_loc...
736
737
  			rcu_read_lock();
  			ipc_lock_object(ipc);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
738
739
740
741
742
743
744
  			return ipc;
  		}
  	}
  
  	/* Out of range - return NULL to terminate iteration */
  	return NULL;
  }
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
745
746
747
748
749
750
751
752
753
  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 ...
754
  	return sysvipc_find_ipc(&iter->ns->ids[iface->ids], *pos, pos);
7ca7e564e   Nadia Derbey   ipc: store ipcs i...
755
  }
ae7817745   Mike Waychison   [PATCH] ipc: add ...
756
  /*
f4566f048   Nadia Derbey   ipc: fix wrong co...
757
758
   * 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 ...
759
760
761
   */
  static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos)
  {
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
762
763
  	struct ipc_proc_iter *iter = s->private;
  	struct ipc_proc_iface *iface = iter->iface;
73ea41302   Kirill Korotaev   [PATCH] IPC names...
764
  	struct ipc_ids *ids;
ed2ddbf88   Pierre Peiffer   IPC: make struct ...
765
  	ids = &iter->ns->ids[iface->ids];
ae7817745   Mike Waychison   [PATCH] ipc: add ...
766
767
768
769
770
  
  	/*
  	 * Take the lock - this will be released by the corresponding
  	 * call to stop().
  	 */
d9a605e40   Davidlohr Bueso   ipc: rename ids->...
771
  	down_read(&ids->rwsem);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
772
773
774
775
776
777
778
779
780
781
  
  	/* 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...
782
  	return sysvipc_find_ipc(ids, *pos - 1, pos);
ae7817745   Mike Waychison   [PATCH] ipc: add ...
783
784
785
786
787
  }
  
  static void sysvipc_proc_stop(struct seq_file *s, void *it)
  {
  	struct kern_ipc_perm *ipc = it;
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
788
789
  	struct ipc_proc_iter *iter = s->private;
  	struct ipc_proc_iface *iface = iter->iface;
73ea41302   Kirill Korotaev   [PATCH] IPC names...
790
  	struct ipc_ids *ids;
ae7817745   Mike Waychison   [PATCH] ipc: add ...
791

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

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

d9dda78ba   Al Viro   procfs: new helpe...
825
  	iter->iface = PDE_DATA(inode);
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
826
  	iter->ns    = get_ipc_ns(current->nsproxy->ipc_ns);
d66a0520c   Rob Jones   ipc/util.c: use _...
827
828
  
  	return 0;
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
829
830
831
832
833
834
835
836
  }
  
  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 ...
837
  }
9a32144e9   Arjan van de Ven   [PATCH] mark stru...
838
  static const struct file_operations sysvipc_proc_fops = {
ae7817745   Mike Waychison   [PATCH] ipc: add ...
839
840
841
  	.open    = sysvipc_proc_open,
  	.read    = seq_read,
  	.llseek  = seq_lseek,
bc1fc6d88   Eric W. Biederman   [PATCH] ipc: save...
842
  	.release = sysvipc_proc_release,
ae7817745   Mike Waychison   [PATCH] ipc: add ...
843
844
  };
  #endif /* CONFIG_PROC_FS */