[NETLINK] genetlink: Fix bugs spotted by Andrew Morton.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / ipc / util.c
blob862621980b01919ff7fee486a36f342aff33d2d0
1 /*
2 * linux/ipc/util.c
3 * Copyright (C) 1992 Krishna Balasubramanian
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>
15 #include <linux/config.h>
16 #include <linux/mm.h>
17 #include <linux/shm.h>
18 #include <linux/init.h>
19 #include <linux/msg.h>
20 #include <linux/smp_lock.h>
21 #include <linux/vmalloc.h>
22 #include <linux/slab.h>
23 #include <linux/capability.h>
24 #include <linux/highuid.h>
25 #include <linux/security.h>
26 #include <linux/rcupdate.h>
27 #include <linux/workqueue.h>
28 #include <linux/seq_file.h>
29 #include <linux/proc_fs.h>
31 #include <asm/unistd.h>
33 #include "util.h"
35 struct ipc_proc_iface {
36 const char *path;
37 const char *header;
38 struct ipc_ids *ids;
39 int (*show)(struct seq_file *, void *);
42 /**
43 * ipc_init - initialise IPC subsystem
45 * The various system5 IPC resources (semaphores, messages and shared
46 * memory are initialised
49 static int __init ipc_init(void)
51 sem_init();
52 msg_init();
53 shm_init();
54 return 0;
56 __initcall(ipc_init);
58 /**
59 * ipc_init_ids - initialise IPC identifiers
60 * @ids: Identifier set
61 * @size: Number of identifiers
63 * Given a size for the ipc identifier range (limited below IPCMNI)
64 * set up the sequence range to use then allocate and initialise the
65 * array itself.
68 void __init ipc_init_ids(struct ipc_ids* ids, int size)
70 int i;
71 sema_init(&ids->sem,1);
73 if(size > IPCMNI)
74 size = IPCMNI;
75 ids->in_use = 0;
76 ids->max_id = -1;
77 ids->seq = 0;
79 int seq_limit = INT_MAX/SEQ_MULTIPLIER;
80 if(seq_limit > USHRT_MAX)
81 ids->seq_max = USHRT_MAX;
82 else
83 ids->seq_max = seq_limit;
86 ids->entries = ipc_rcu_alloc(sizeof(struct kern_ipc_perm *)*size +
87 sizeof(struct ipc_id_ary));
89 if(ids->entries == NULL) {
90 printk(KERN_ERR "ipc_init_ids() failed, ipc service disabled.\n");
91 size = 0;
92 ids->entries = &ids->nullentry;
94 ids->entries->size = size;
95 for(i=0;i<size;i++)
96 ids->entries->p[i] = NULL;
99 #ifdef CONFIG_PROC_FS
100 static struct file_operations sysvipc_proc_fops;
102 * ipc_init_proc_interface - Create a proc interface for sysipc types
103 * using a seq_file interface.
104 * @path: Path in procfs
105 * @header: Banner to be printed at the beginning of the file.
106 * @ids: ipc id table to iterate.
107 * @show: show routine.
109 void __init ipc_init_proc_interface(const char *path, const char *header,
110 struct ipc_ids *ids,
111 int (*show)(struct seq_file *, void *))
113 struct proc_dir_entry *pde;
114 struct ipc_proc_iface *iface;
116 iface = kmalloc(sizeof(*iface), GFP_KERNEL);
117 if (!iface)
118 return;
119 iface->path = path;
120 iface->header = header;
121 iface->ids = ids;
122 iface->show = show;
124 pde = create_proc_entry(path,
125 S_IRUGO, /* world readable */
126 NULL /* parent dir */);
127 if (pde) {
128 pde->data = iface;
129 pde->proc_fops = &sysvipc_proc_fops;
130 } else {
131 kfree(iface);
134 #endif
137 * ipc_findkey - find a key in an ipc identifier set
138 * @ids: Identifier set
139 * @key: The key to find
141 * Requires ipc_ids.sem locked.
142 * Returns the identifier if found or -1 if not.
145 int ipc_findkey(struct ipc_ids* ids, key_t key)
147 int id;
148 struct kern_ipc_perm* p;
149 int max_id = ids->max_id;
152 * rcu_dereference() is not needed here
153 * since ipc_ids.sem is held
155 for (id = 0; id <= max_id; id++) {
156 p = ids->entries->p[id];
157 if(p==NULL)
158 continue;
159 if (key == p->key)
160 return id;
162 return -1;
166 * Requires ipc_ids.sem locked
168 static int grow_ary(struct ipc_ids* ids, int newsize)
170 struct ipc_id_ary* new;
171 struct ipc_id_ary* old;
172 int i;
173 int size = ids->entries->size;
175 if(newsize > IPCMNI)
176 newsize = IPCMNI;
177 if(newsize <= size)
178 return newsize;
180 new = ipc_rcu_alloc(sizeof(struct kern_ipc_perm *)*newsize +
181 sizeof(struct ipc_id_ary));
182 if(new == NULL)
183 return size;
184 new->size = newsize;
185 memcpy(new->p, ids->entries->p, sizeof(struct kern_ipc_perm *)*size +
186 sizeof(struct ipc_id_ary));
187 for(i=size;i<newsize;i++) {
188 new->p[i] = NULL;
190 old = ids->entries;
193 * Use rcu_assign_pointer() to make sure the memcpyed contents
194 * of the new array are visible before the new array becomes visible.
196 rcu_assign_pointer(ids->entries, new);
198 ipc_rcu_putref(old);
199 return newsize;
203 * ipc_addid - add an IPC identifier
204 * @ids: IPC identifier set
205 * @new: new IPC permission set
206 * @size: new size limit for the id array
208 * Add an entry 'new' to the IPC arrays. The permissions object is
209 * initialised and the first free entry is set up and the id assigned
210 * is returned. The list is returned in a locked state on success.
211 * On failure the list is not locked and -1 is returned.
213 * Called with ipc_ids.sem held.
216 int ipc_addid(struct ipc_ids* ids, struct kern_ipc_perm* new, int size)
218 int id;
220 size = grow_ary(ids,size);
223 * rcu_dereference()() is not needed here since
224 * ipc_ids.sem is held
226 for (id = 0; id < size; id++) {
227 if(ids->entries->p[id] == NULL)
228 goto found;
230 return -1;
231 found:
232 ids->in_use++;
233 if (id > ids->max_id)
234 ids->max_id = id;
236 new->cuid = new->uid = current->euid;
237 new->gid = new->cgid = current->egid;
239 new->seq = ids->seq++;
240 if(ids->seq > ids->seq_max)
241 ids->seq = 0;
243 spin_lock_init(&new->lock);
244 new->deleted = 0;
245 rcu_read_lock();
246 spin_lock(&new->lock);
247 ids->entries->p[id] = new;
248 return id;
252 * ipc_rmid - remove an IPC identifier
253 * @ids: identifier set
254 * @id: Identifier to remove
256 * The identifier must be valid, and in use. The kernel will panic if
257 * fed an invalid identifier. The entry is removed and internal
258 * variables recomputed. The object associated with the identifier
259 * is returned.
260 * ipc_ids.sem and the spinlock for this ID is hold before this function
261 * is called, and remain locked on the exit.
264 struct kern_ipc_perm* ipc_rmid(struct ipc_ids* ids, int id)
266 struct kern_ipc_perm* p;
267 int lid = id % SEQ_MULTIPLIER;
268 if(lid >= ids->entries->size)
269 BUG();
272 * do not need a rcu_dereference()() here to force ordering
273 * on Alpha, since the ipc_ids.sem is held.
275 p = ids->entries->p[lid];
276 ids->entries->p[lid] = NULL;
277 if(p==NULL)
278 BUG();
279 ids->in_use--;
281 if (lid == ids->max_id) {
282 do {
283 lid--;
284 if(lid == -1)
285 break;
286 } while (ids->entries->p[lid] == NULL);
287 ids->max_id = lid;
289 p->deleted = 1;
290 return p;
294 * ipc_alloc - allocate ipc space
295 * @size: size desired
297 * Allocate memory from the appropriate pools and return a pointer to it.
298 * NULL is returned if the allocation fails
301 void* ipc_alloc(int size)
303 void* out;
304 if(size > PAGE_SIZE)
305 out = vmalloc(size);
306 else
307 out = kmalloc(size, GFP_KERNEL);
308 return out;
312 * ipc_free - free ipc space
313 * @ptr: pointer returned by ipc_alloc
314 * @size: size of block
316 * Free a block created with ipc_alloc. The caller must know the size
317 * used in the allocation call.
320 void ipc_free(void* ptr, int size)
322 if(size > PAGE_SIZE)
323 vfree(ptr);
324 else
325 kfree(ptr);
329 * rcu allocations:
330 * There are three headers that are prepended to the actual allocation:
331 * - during use: ipc_rcu_hdr.
332 * - during the rcu grace period: ipc_rcu_grace.
333 * - [only if vmalloc]: ipc_rcu_sched.
334 * Their lifetime doesn't overlap, thus the headers share the same memory.
335 * Unlike a normal union, they are right-aligned, thus some container_of
336 * forward/backward casting is necessary:
338 struct ipc_rcu_hdr
340 int refcount;
341 int is_vmalloc;
342 void *data[0];
346 struct ipc_rcu_grace
348 struct rcu_head rcu;
349 /* "void *" makes sure alignment of following data is sane. */
350 void *data[0];
353 struct ipc_rcu_sched
355 struct work_struct work;
356 /* "void *" makes sure alignment of following data is sane. */
357 void *data[0];
360 #define HDRLEN_KMALLOC (sizeof(struct ipc_rcu_grace) > sizeof(struct ipc_rcu_hdr) ? \
361 sizeof(struct ipc_rcu_grace) : sizeof(struct ipc_rcu_hdr))
362 #define HDRLEN_VMALLOC (sizeof(struct ipc_rcu_sched) > HDRLEN_KMALLOC ? \
363 sizeof(struct ipc_rcu_sched) : HDRLEN_KMALLOC)
365 static inline int rcu_use_vmalloc(int size)
367 /* Too big for a single page? */
368 if (HDRLEN_KMALLOC + size > PAGE_SIZE)
369 return 1;
370 return 0;
374 * ipc_rcu_alloc - allocate ipc and rcu space
375 * @size: size desired
377 * Allocate memory for the rcu header structure + the object.
378 * Returns the pointer to the object.
379 * NULL is returned if the allocation fails.
382 void* ipc_rcu_alloc(int size)
384 void* out;
386 * We prepend the allocation with the rcu struct, and
387 * workqueue if necessary (for vmalloc).
389 if (rcu_use_vmalloc(size)) {
390 out = vmalloc(HDRLEN_VMALLOC + size);
391 if (out) {
392 out += HDRLEN_VMALLOC;
393 container_of(out, struct ipc_rcu_hdr, data)->is_vmalloc = 1;
394 container_of(out, struct ipc_rcu_hdr, data)->refcount = 1;
396 } else {
397 out = kmalloc(HDRLEN_KMALLOC + size, GFP_KERNEL);
398 if (out) {
399 out += HDRLEN_KMALLOC;
400 container_of(out, struct ipc_rcu_hdr, data)->is_vmalloc = 0;
401 container_of(out, struct ipc_rcu_hdr, data)->refcount = 1;
405 return out;
408 void ipc_rcu_getref(void *ptr)
410 container_of(ptr, struct ipc_rcu_hdr, data)->refcount++;
414 * ipc_schedule_free - free ipc + rcu space
415 * @head: RCU callback structure for queued work
417 * Since RCU callback function is called in bh,
418 * we need to defer the vfree to schedule_work
420 static void ipc_schedule_free(struct rcu_head *head)
422 struct ipc_rcu_grace *grace =
423 container_of(head, struct ipc_rcu_grace, rcu);
424 struct ipc_rcu_sched *sched =
425 container_of(&(grace->data[0]), struct ipc_rcu_sched, data[0]);
427 INIT_WORK(&sched->work, vfree, sched);
428 schedule_work(&sched->work);
432 * ipc_immediate_free - free ipc + rcu space
433 * @head: RCU callback structure that contains pointer to be freed
435 * Free from the RCU callback context
437 static void ipc_immediate_free(struct rcu_head *head)
439 struct ipc_rcu_grace *free =
440 container_of(head, struct ipc_rcu_grace, rcu);
441 kfree(free);
444 void ipc_rcu_putref(void *ptr)
446 if (--container_of(ptr, struct ipc_rcu_hdr, data)->refcount > 0)
447 return;
449 if (container_of(ptr, struct ipc_rcu_hdr, data)->is_vmalloc) {
450 call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu,
451 ipc_schedule_free);
452 } else {
453 call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu,
454 ipc_immediate_free);
459 * ipcperms - check IPC permissions
460 * @ipcp: IPC permission set
461 * @flag: desired permission set.
463 * Check user, group, other permissions for access
464 * to ipc resources. return 0 if allowed
467 int ipcperms (struct kern_ipc_perm *ipcp, short flag)
468 { /* flag will most probably be 0 or S_...UGO from <linux/stat.h> */
469 int requested_mode, granted_mode;
471 requested_mode = (flag >> 6) | (flag >> 3) | flag;
472 granted_mode = ipcp->mode;
473 if (current->euid == ipcp->cuid || current->euid == ipcp->uid)
474 granted_mode >>= 6;
475 else if (in_group_p(ipcp->cgid) || in_group_p(ipcp->gid))
476 granted_mode >>= 3;
477 /* is there some bit set in requested_mode but not in granted_mode? */
478 if ((requested_mode & ~granted_mode & 0007) &&
479 !capable(CAP_IPC_OWNER))
480 return -1;
482 return security_ipc_permission(ipcp, flag);
486 * Functions to convert between the kern_ipc_perm structure and the
487 * old/new ipc_perm structures
491 * kernel_to_ipc64_perm - convert kernel ipc permissions to user
492 * @in: kernel permissions
493 * @out: new style IPC permissions
495 * Turn the kernel object 'in' into a set of permissions descriptions
496 * for returning to userspace (out).
500 void kernel_to_ipc64_perm (struct kern_ipc_perm *in, struct ipc64_perm *out)
502 out->key = in->key;
503 out->uid = in->uid;
504 out->gid = in->gid;
505 out->cuid = in->cuid;
506 out->cgid = in->cgid;
507 out->mode = in->mode;
508 out->seq = in->seq;
512 * ipc64_perm_to_ipc_perm - convert old ipc permissions to new
513 * @in: new style IPC permissions
514 * @out: old style IPC permissions
516 * Turn the new style permissions object in into a compatibility
517 * object and store it into the 'out' pointer.
520 void ipc64_perm_to_ipc_perm (struct ipc64_perm *in, struct ipc_perm *out)
522 out->key = in->key;
523 SET_UID(out->uid, in->uid);
524 SET_GID(out->gid, in->gid);
525 SET_UID(out->cuid, in->cuid);
526 SET_GID(out->cgid, in->cgid);
527 out->mode = in->mode;
528 out->seq = in->seq;
532 * So far only shm_get_stat() calls ipc_get() via shm_get(), so ipc_get()
533 * is called with shm_ids.sem locked. Since grow_ary() is also called with
534 * shm_ids.sem down(for Shared Memory), there is no need to add read
535 * barriers here to gurantee the writes in grow_ary() are seen in order
536 * here (for Alpha).
538 * However ipc_get() itself does not necessary require ipc_ids.sem down. So
539 * if in the future ipc_get() is used by other places without ipc_ids.sem
540 * down, then ipc_get() needs read memery barriers as ipc_lock() does.
542 struct kern_ipc_perm* ipc_get(struct ipc_ids* ids, int id)
544 struct kern_ipc_perm* out;
545 int lid = id % SEQ_MULTIPLIER;
546 if(lid >= ids->entries->size)
547 return NULL;
548 out = ids->entries->p[lid];
549 return out;
552 struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id)
554 struct kern_ipc_perm* out;
555 int lid = id % SEQ_MULTIPLIER;
556 struct ipc_id_ary* entries;
558 rcu_read_lock();
559 entries = rcu_dereference(ids->entries);
560 if(lid >= entries->size) {
561 rcu_read_unlock();
562 return NULL;
564 out = entries->p[lid];
565 if(out == NULL) {
566 rcu_read_unlock();
567 return NULL;
569 spin_lock(&out->lock);
571 /* ipc_rmid() may have already freed the ID while ipc_lock
572 * was spinning: here verify that the structure is still valid
574 if (out->deleted) {
575 spin_unlock(&out->lock);
576 rcu_read_unlock();
577 return NULL;
579 return out;
582 void ipc_lock_by_ptr(struct kern_ipc_perm *perm)
584 rcu_read_lock();
585 spin_lock(&perm->lock);
588 void ipc_unlock(struct kern_ipc_perm* perm)
590 spin_unlock(&perm->lock);
591 rcu_read_unlock();
594 int ipc_buildid(struct ipc_ids* ids, int id, int seq)
596 return SEQ_MULTIPLIER*seq + id;
599 int ipc_checkid(struct ipc_ids* ids, struct kern_ipc_perm* ipcp, int uid)
601 if(uid/SEQ_MULTIPLIER != ipcp->seq)
602 return 1;
603 return 0;
606 #ifdef __ARCH_WANT_IPC_PARSE_VERSION
610 * ipc_parse_version - IPC call version
611 * @cmd: pointer to command
613 * Return IPC_64 for new style IPC and IPC_OLD for old style IPC.
614 * The cmd value is turned from an encoding command and version into
615 * just the command code.
618 int ipc_parse_version (int *cmd)
620 if (*cmd & IPC_64) {
621 *cmd ^= IPC_64;
622 return IPC_64;
623 } else {
624 return IPC_OLD;
628 #endif /* __ARCH_WANT_IPC_PARSE_VERSION */
630 #ifdef CONFIG_PROC_FS
631 static void *sysvipc_proc_next(struct seq_file *s, void *it, loff_t *pos)
633 struct ipc_proc_iface *iface = s->private;
634 struct kern_ipc_perm *ipc = it;
635 loff_t p;
637 /* If we had an ipc id locked before, unlock it */
638 if (ipc && ipc != SEQ_START_TOKEN)
639 ipc_unlock(ipc);
642 * p = *pos - 1 (because id 0 starts at position 1)
643 * + 1 (because we increment the position by one)
645 for (p = *pos; p <= iface->ids->max_id; p++) {
646 if ((ipc = ipc_lock(iface->ids, p)) != NULL) {
647 *pos = p + 1;
648 return ipc;
652 /* Out of range - return NULL to terminate iteration */
653 return NULL;
657 * File positions: pos 0 -> header, pos n -> ipc id + 1.
658 * SeqFile iterator: iterator value locked shp or SEQ_TOKEN_START.
660 static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos)
662 struct ipc_proc_iface *iface = s->private;
663 struct kern_ipc_perm *ipc;
664 loff_t p;
667 * Take the lock - this will be released by the corresponding
668 * call to stop().
670 down(&iface->ids->sem);
672 /* pos < 0 is invalid */
673 if (*pos < 0)
674 return NULL;
676 /* pos == 0 means header */
677 if (*pos == 0)
678 return SEQ_START_TOKEN;
680 /* Find the (pos-1)th ipc */
681 for (p = *pos - 1; p <= iface->ids->max_id; p++) {
682 if ((ipc = ipc_lock(iface->ids, p)) != NULL) {
683 *pos = p + 1;
684 return ipc;
687 return NULL;
690 static void sysvipc_proc_stop(struct seq_file *s, void *it)
692 struct kern_ipc_perm *ipc = it;
693 struct ipc_proc_iface *iface = s->private;
695 /* If we had a locked segment, release it */
696 if (ipc && ipc != SEQ_START_TOKEN)
697 ipc_unlock(ipc);
699 /* Release the lock we took in start() */
700 up(&iface->ids->sem);
703 static int sysvipc_proc_show(struct seq_file *s, void *it)
705 struct ipc_proc_iface *iface = s->private;
707 if (it == SEQ_START_TOKEN)
708 return seq_puts(s, iface->header);
710 return iface->show(s, it);
713 static struct seq_operations sysvipc_proc_seqops = {
714 .start = sysvipc_proc_start,
715 .stop = sysvipc_proc_stop,
716 .next = sysvipc_proc_next,
717 .show = sysvipc_proc_show,
720 static int sysvipc_proc_open(struct inode *inode, struct file *file) {
721 int ret;
722 struct seq_file *seq;
724 ret = seq_open(file, &sysvipc_proc_seqops);
725 if (!ret) {
726 seq = file->private_data;
727 seq->private = PDE(inode)->data;
729 return ret;
732 static struct file_operations sysvipc_proc_fops = {
733 .open = sysvipc_proc_open,
734 .read = seq_read,
735 .llseek = seq_lseek,
736 .release = seq_release,
738 #endif /* CONFIG_PROC_FS */