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