3d4b5c1d3312af6b9174c4abca98668bf661ed0d
[linux-2.6.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  */
14
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>
30
31 #include <asm/unistd.h>
32
33 #include "util.h"
34
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 *);
40 };
41
42 /**
43  *      ipc_init        -       initialise IPC subsystem
44  *
45  *      The various system5 IPC resources (semaphores, messages and shared
46  *      memory are initialised
47  */
48  
49 static int __init ipc_init(void)
50 {
51         sem_init();
52         msg_init();
53         shm_init();
54         return 0;
55 }
56 __initcall(ipc_init);
57
58 /**
59  *      ipc_init_ids            -       initialise IPC identifiers
60  *      @ids: Identifier set
61  *      @size: Number of identifiers
62  *
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. 
66  */
67  
68 void __init ipc_init_ids(struct ipc_ids* ids, int size)
69 {
70         int i;
71         sema_init(&ids->sem,1);
72
73         if(size > IPCMNI)
74                 size = IPCMNI;
75         ids->in_use = 0;
76         ids->max_id = -1;
77         ids->seq = 0;
78         {
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;
84         }
85
86         ids->entries = ipc_rcu_alloc(sizeof(struct kern_ipc_perm *)*size +
87                                      sizeof(struct ipc_id_ary));
88
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;
93         }
94         ids->entries->size = size;
95         for(i=0;i<size;i++)
96                 ids->entries->p[i] = NULL;
97 }
98
99 #ifdef CONFIG_PROC_FS
100 static struct file_operations sysvipc_proc_fops;
101 /**
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.
108  */
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 *))
112 {
113         struct proc_dir_entry *pde;
114         struct ipc_proc_iface *iface;
115
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;
123
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);
132         }
133 }
134 #endif
135
136 /**
137  *      ipc_findkey     -       find a key in an ipc identifier set     
138  *      @ids: Identifier set
139  *      @key: The key to find
140  *      
141  *      Requires ipc_ids.sem locked.
142  *      Returns the identifier if found or -1 if not.
143  */
144  
145 int ipc_findkey(struct ipc_ids* ids, key_t key)
146 {
147         int id;
148         struct kern_ipc_perm* p;
149         int max_id = ids->max_id;
150
151         /*
152          * rcu_dereference() is not needed here
153          * since ipc_ids.sem is held
154          */
155         for (id = 0; id <= max_id; id++) {
156                 p = ids->entries->p[id];
157                 if (p==NULL)
158                         continue;
159                 if (!vx_check(p->xid, VX_IDENT))
160                         continue;
161                 if (key == p->key)
162                         return id;
163         }
164         return -1;
165 }
166
167 /*
168  * Requires ipc_ids.sem locked
169  */
170 static int grow_ary(struct ipc_ids* ids, int newsize)
171 {
172         struct ipc_id_ary* new;
173         struct ipc_id_ary* old;
174         int i;
175         int size = ids->entries->size;
176
177         if(newsize > IPCMNI)
178                 newsize = IPCMNI;
179         if(newsize <= size)
180                 return newsize;
181
182         new = ipc_rcu_alloc(sizeof(struct kern_ipc_perm *)*newsize +
183                             sizeof(struct ipc_id_ary));
184         if(new == NULL)
185                 return size;
186         new->size = newsize;
187         memcpy(new->p, ids->entries->p, sizeof(struct kern_ipc_perm *)*size);
188         for(i=size;i<newsize;i++) {
189                 new->p[i] = NULL;
190         }
191         old = ids->entries;
192
193         /*
194          * Use rcu_assign_pointer() to make sure the memcpyed contents
195          * of the new array are visible before the new array becomes visible.
196          */
197         rcu_assign_pointer(ids->entries, new);
198
199         ipc_rcu_putref(old);
200         return newsize;
201 }
202
203 /**
204  *      ipc_addid       -       add an IPC identifier
205  *      @ids: IPC identifier set
206  *      @new: new IPC permission set
207  *      @size: new size limit for the id array
208  *
209  *      Add an entry 'new' to the IPC arrays. The permissions object is
210  *      initialised and the first free entry is set up and the id assigned
211  *      is returned. The list is returned in a locked state on success.
212  *      On failure the list is not locked and -1 is returned.
213  *
214  *      Called with ipc_ids.sem held.
215  */
216  
217 int ipc_addid(struct ipc_ids* ids, struct kern_ipc_perm* new, int size)
218 {
219         int id;
220
221         size = grow_ary(ids,size);
222
223         /*
224          * rcu_dereference()() is not needed here since
225          * ipc_ids.sem is held
226          */
227         for (id = 0; id < size; id++) {
228                 if(ids->entries->p[id] == NULL)
229                         goto found;
230         }
231         return -1;
232 found:
233         ids->in_use++;
234         if (id > ids->max_id)
235                 ids->max_id = id;
236
237         new->cuid = new->uid = current->euid;
238         new->gid = new->cgid = current->egid;
239
240         new->seq = ids->seq++;
241         if(ids->seq > ids->seq_max)
242                 ids->seq = 0;
243
244         spin_lock_init(&new->lock);
245         new->deleted = 0;
246         rcu_read_lock();
247         spin_lock(&new->lock);
248         ids->entries->p[id] = new;
249         return id;
250 }
251
252 /**
253  *      ipc_rmid        -       remove an IPC identifier
254  *      @ids: identifier set
255  *      @id: Identifier to remove
256  *
257  *      The identifier must be valid, and in use. The kernel will panic if
258  *      fed an invalid identifier. The entry is removed and internal
259  *      variables recomputed. The object associated with the identifier
260  *      is returned.
261  *      ipc_ids.sem and the spinlock for this ID is hold before this function
262  *      is called, and remain locked on the exit.
263  */
264  
265 struct kern_ipc_perm* ipc_rmid(struct ipc_ids* ids, int id)
266 {
267         struct kern_ipc_perm* p;
268         int lid = id % SEQ_MULTIPLIER;
269         if(lid >= ids->entries->size)
270                 BUG();
271
272         /* 
273          * do not need a rcu_dereference()() here to force ordering
274          * on Alpha, since the ipc_ids.sem is held.
275          */     
276         p = ids->entries->p[lid];
277         ids->entries->p[lid] = NULL;
278         if(p==NULL)
279                 BUG();
280         ids->in_use--;
281
282         if (lid == ids->max_id) {
283                 do {
284                         lid--;
285                         if(lid == -1)
286                                 break;
287                 } while (ids->entries->p[lid] == NULL);
288                 ids->max_id = lid;
289         }
290         p->deleted = 1;
291         return p;
292 }
293
294 /**
295  *      ipc_alloc       -       allocate ipc space
296  *      @size: size desired
297  *
298  *      Allocate memory from the appropriate pools and return a pointer to it.
299  *      NULL is returned if the allocation fails
300  */
301  
302 void* ipc_alloc(int size)
303 {
304         void* out;
305         if(size > PAGE_SIZE)
306                 out = vmalloc(size);
307         else
308                 out = kmalloc(size, GFP_KERNEL);
309         return out;
310 }
311
312 /**
313  *      ipc_free        -       free ipc space
314  *      @ptr: pointer returned by ipc_alloc
315  *      @size: size of block
316  *
317  *      Free a block created with ipc_alloc. The caller must know the size
318  *      used in the allocation call.
319  */
320
321 void ipc_free(void* ptr, int size)
322 {
323         if(size > PAGE_SIZE)
324                 vfree(ptr);
325         else
326                 kfree(ptr);
327 }
328
329 /*
330  * rcu allocations:
331  * There are three headers that are prepended to the actual allocation:
332  * - during use: ipc_rcu_hdr.
333  * - during the rcu grace period: ipc_rcu_grace.
334  * - [only if vmalloc]: ipc_rcu_sched.
335  * Their lifetime doesn't overlap, thus the headers share the same memory.
336  * Unlike a normal union, they are right-aligned, thus some container_of
337  * forward/backward casting is necessary:
338  */
339 struct ipc_rcu_hdr
340 {
341         int refcount;
342         int is_vmalloc;
343         void *data[0];
344 };
345
346
347 struct ipc_rcu_grace
348 {
349         struct rcu_head rcu;
350         /* "void *" makes sure alignment of following data is sane. */
351         void *data[0];
352 };
353
354 struct ipc_rcu_sched
355 {
356         struct work_struct work;
357         /* "void *" makes sure alignment of following data is sane. */
358         void *data[0];
359 };
360
361 #define HDRLEN_KMALLOC          (sizeof(struct ipc_rcu_grace) > sizeof(struct ipc_rcu_hdr) ? \
362                                         sizeof(struct ipc_rcu_grace) : sizeof(struct ipc_rcu_hdr))
363 #define HDRLEN_VMALLOC          (sizeof(struct ipc_rcu_sched) > HDRLEN_KMALLOC ? \
364                                         sizeof(struct ipc_rcu_sched) : HDRLEN_KMALLOC)
365
366 static inline int rcu_use_vmalloc(int size)
367 {
368         /* Too big for a single page? */
369         if (HDRLEN_KMALLOC + size > PAGE_SIZE)
370                 return 1;
371         return 0;
372 }
373
374 /**
375  *      ipc_rcu_alloc   -       allocate ipc and rcu space 
376  *      @size: size desired
377  *
378  *      Allocate memory for the rcu header structure +  the object.
379  *      Returns the pointer to the object.
380  *      NULL is returned if the allocation fails. 
381  */
382  
383 void* ipc_rcu_alloc(int size)
384 {
385         void* out;
386         /* 
387          * We prepend the allocation with the rcu struct, and
388          * workqueue if necessary (for vmalloc). 
389          */
390         if (rcu_use_vmalloc(size)) {
391                 out = vmalloc(HDRLEN_VMALLOC + size);
392                 if (out) {
393                         out += HDRLEN_VMALLOC;
394                         container_of(out, struct ipc_rcu_hdr, data)->is_vmalloc = 1;
395                         container_of(out, struct ipc_rcu_hdr, data)->refcount = 1;
396                 }
397         } else {
398                 out = kmalloc(HDRLEN_KMALLOC + size, GFP_KERNEL);
399                 if (out) {
400                         out += HDRLEN_KMALLOC;
401                         container_of(out, struct ipc_rcu_hdr, data)->is_vmalloc = 0;
402                         container_of(out, struct ipc_rcu_hdr, data)->refcount = 1;
403                 }
404         }
405
406         return out;
407 }
408
409 void ipc_rcu_getref(void *ptr)
410 {
411         container_of(ptr, struct ipc_rcu_hdr, data)->refcount++;
412 }
413
414 /**
415  * ipc_schedule_free - free ipc + rcu space
416  * @head: RCU callback structure for queued work
417  * 
418  * Since RCU callback function is called in bh,
419  * we need to defer the vfree to schedule_work
420  */
421 static void ipc_schedule_free(struct rcu_head *head)
422 {
423         struct ipc_rcu_grace *grace =
424                 container_of(head, struct ipc_rcu_grace, rcu);
425         struct ipc_rcu_sched *sched =
426                         container_of(&(grace->data[0]), struct ipc_rcu_sched, data[0]);
427
428         INIT_WORK(&sched->work, vfree, sched);
429         schedule_work(&sched->work);
430 }
431
432 /**
433  * ipc_immediate_free - free ipc + rcu space
434  * @head: RCU callback structure that contains pointer to be freed
435  *
436  * Free from the RCU callback context
437  */
438 static void ipc_immediate_free(struct rcu_head *head)
439 {
440         struct ipc_rcu_grace *free =
441                 container_of(head, struct ipc_rcu_grace, rcu);
442         kfree(free);
443 }
444
445 void ipc_rcu_putref(void *ptr)
446 {
447         if (--container_of(ptr, struct ipc_rcu_hdr, data)->refcount > 0)
448                 return;
449
450         if (container_of(ptr, struct ipc_rcu_hdr, data)->is_vmalloc) {
451                 call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu,
452                                 ipc_schedule_free);
453         } else {
454                 call_rcu(&container_of(ptr, struct ipc_rcu_grace, data)->rcu,
455                                 ipc_immediate_free);
456         }
457 }
458
459 /**
460  *      ipcperms        -       check IPC permissions
461  *      @ipcp: IPC permission set
462  *      @flag: desired permission set.
463  *
464  *      Check user, group, other permissions for access
465  *      to ipc resources. return 0 if allowed
466  */
467  
468 int ipcperms (struct kern_ipc_perm *ipcp, short flag)
469 {       /* flag will most probably be 0 or S_...UGO from <linux/stat.h> */
470         int requested_mode, granted_mode;
471
472         if (!vx_check(ipcp->xid, VX_ADMIN|VX_IDENT)) /* maybe just VX_IDENT? */
473                 return -1;
474         requested_mode = (flag >> 6) | (flag >> 3) | flag;
475         granted_mode = ipcp->mode;
476         if (current->euid == ipcp->cuid || current->euid == ipcp->uid)
477                 granted_mode >>= 6;
478         else if (in_group_p(ipcp->cgid) || in_group_p(ipcp->gid))
479                 granted_mode >>= 3;
480         /* is there some bit set in requested_mode but not in granted_mode? */
481         if ((requested_mode & ~granted_mode & 0007) && 
482             !capable(CAP_IPC_OWNER))
483                 return -1;
484
485         return security_ipc_permission(ipcp, flag);
486 }
487
488 /*
489  * Functions to convert between the kern_ipc_perm structure and the
490  * old/new ipc_perm structures
491  */
492
493 /**
494  *      kernel_to_ipc64_perm    -       convert kernel ipc permissions to user
495  *      @in: kernel permissions
496  *      @out: new style IPC permissions
497  *
498  *      Turn the kernel object 'in' into a set of permissions descriptions
499  *      for returning to userspace (out).
500  */
501  
502
503 void kernel_to_ipc64_perm (struct kern_ipc_perm *in, struct ipc64_perm *out)
504 {
505         out->key        = in->key;
506         out->uid        = in->uid;
507         out->gid        = in->gid;
508         out->cuid       = in->cuid;
509         out->cgid       = in->cgid;
510         out->mode       = in->mode;
511         out->seq        = in->seq;
512 }
513
514 /**
515  *      ipc64_perm_to_ipc_perm  -       convert old ipc permissions to new
516  *      @in: new style IPC permissions
517  *      @out: old style IPC permissions
518  *
519  *      Turn the new style permissions object in into a compatibility
520  *      object and store it into the 'out' pointer.
521  */
522  
523 void ipc64_perm_to_ipc_perm (struct ipc64_perm *in, struct ipc_perm *out)
524 {
525         out->key        = in->key;
526         SET_UID(out->uid, in->uid);
527         SET_GID(out->gid, in->gid);
528         SET_UID(out->cuid, in->cuid);
529         SET_GID(out->cgid, in->cgid);
530         out->mode       = in->mode;
531         out->seq        = in->seq;
532 }
533
534 /*
535  * So far only shm_get_stat() calls ipc_get() via shm_get(), so ipc_get()
536  * is called with shm_ids.sem locked.  Since grow_ary() is also called with
537  * shm_ids.sem down(for Shared Memory), there is no need to add read 
538  * barriers here to gurantee the writes in grow_ary() are seen in order 
539  * here (for Alpha).
540  *
541  * However ipc_get() itself does not necessary require ipc_ids.sem down. So
542  * if in the future ipc_get() is used by other places without ipc_ids.sem
543  * down, then ipc_get() needs read memery barriers as ipc_lock() does.
544  */
545 struct kern_ipc_perm* ipc_get(struct ipc_ids* ids, int id)
546 {
547         struct kern_ipc_perm* out;
548         int lid = id % SEQ_MULTIPLIER;
549         if(lid >= ids->entries->size)
550                 return NULL;
551         out = ids->entries->p[lid];
552         return out;
553 }
554
555 struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id)
556 {
557         struct kern_ipc_perm* out;
558         int lid = id % SEQ_MULTIPLIER;
559         struct ipc_id_ary* entries;
560
561         rcu_read_lock();
562         entries = rcu_dereference(ids->entries);
563         if(lid >= entries->size) {
564                 rcu_read_unlock();
565                 return NULL;
566         }
567         out = entries->p[lid];
568         if(out == NULL) {
569                 rcu_read_unlock();
570                 return NULL;
571         }
572         spin_lock(&out->lock);
573         
574         /* ipc_rmid() may have already freed the ID while ipc_lock
575          * was spinning: here verify that the structure is still valid
576          */
577         if (out->deleted) {
578                 spin_unlock(&out->lock);
579                 rcu_read_unlock();
580                 return NULL;
581         }
582         return out;
583 }
584
585 void ipc_lock_by_ptr(struct kern_ipc_perm *perm)
586 {
587         rcu_read_lock();
588         spin_lock(&perm->lock);
589 }
590
591 void ipc_unlock(struct kern_ipc_perm* perm)
592 {
593         spin_unlock(&perm->lock);
594         rcu_read_unlock();
595 }
596
597 int ipc_buildid(struct ipc_ids* ids, int id, int seq)
598 {
599         return SEQ_MULTIPLIER*seq + id;
600 }
601
602 int ipc_checkid(struct ipc_ids* ids, struct kern_ipc_perm* ipcp, int uid)
603 {
604         if(uid/SEQ_MULTIPLIER != ipcp->seq)
605                 return 1;
606         return 0;
607 }
608
609 #ifdef __ARCH_WANT_IPC_PARSE_VERSION
610
611
612 /**
613  *      ipc_parse_version       -       IPC call version
614  *      @cmd: pointer to command
615  *
616  *      Return IPC_64 for new style IPC and IPC_OLD for old style IPC. 
617  *      The cmd value is turned from an encoding command and version into
618  *      just the command code.
619  */
620  
621 int ipc_parse_version (int *cmd)
622 {
623         if (*cmd & IPC_64) {
624                 *cmd ^= IPC_64;
625                 return IPC_64;
626         } else {
627                 return IPC_OLD;
628         }
629 }
630
631 #endif /* __ARCH_WANT_IPC_PARSE_VERSION */
632
633 #ifdef CONFIG_PROC_FS
634 static void *sysvipc_proc_next(struct seq_file *s, void *it, loff_t *pos)
635 {
636         struct ipc_proc_iface *iface = s->private;
637         struct kern_ipc_perm *ipc = it;
638         loff_t p;
639
640         /* If we had an ipc id locked before, unlock it */
641         if (ipc && ipc != SEQ_START_TOKEN)
642                 ipc_unlock(ipc);
643
644         /*
645          * p = *pos - 1 (because id 0 starts at position 1)
646          *          + 1 (because we increment the position by one)
647          */
648         for (p = *pos; p <= iface->ids->max_id; p++) {
649                 if ((ipc = ipc_lock(iface->ids, p)) != NULL) {
650                         *pos = p + 1;
651                         return ipc;
652                 }
653         }
654
655         /* Out of range - return NULL to terminate iteration */
656         return NULL;
657 }
658
659 /*
660  * File positions: pos 0 -> header, pos n -> ipc id + 1.
661  * SeqFile iterator: iterator value locked shp or SEQ_TOKEN_START.
662  */
663 static void *sysvipc_proc_start(struct seq_file *s, loff_t *pos)
664 {
665         struct ipc_proc_iface *iface = s->private;
666         struct kern_ipc_perm *ipc;
667         loff_t p;
668
669         /*
670          * Take the lock - this will be released by the corresponding
671          * call to stop().
672          */
673         down(&iface->ids->sem);
674
675         /* pos < 0 is invalid */
676         if (*pos < 0)
677                 return NULL;
678
679         /* pos == 0 means header */
680         if (*pos == 0)
681                 return SEQ_START_TOKEN;
682
683         /* Find the (pos-1)th ipc */
684         for (p = *pos - 1; p <= iface->ids->max_id; p++) {
685                 if ((ipc = ipc_lock(iface->ids, p)) != NULL) {
686                         *pos = p + 1;
687                         return ipc;
688                 }
689         }
690         return NULL;
691 }
692
693 static void sysvipc_proc_stop(struct seq_file *s, void *it)
694 {
695         struct kern_ipc_perm *ipc = it;
696         struct ipc_proc_iface *iface = s->private;
697
698         /* If we had a locked segment, release it */
699         if (ipc && ipc != SEQ_START_TOKEN)
700                 ipc_unlock(ipc);
701
702         /* Release the lock we took in start() */
703         up(&iface->ids->sem);
704 }
705
706 static int sysvipc_proc_show(struct seq_file *s, void *it)
707 {
708         struct ipc_proc_iface *iface = s->private;
709
710         if (it == SEQ_START_TOKEN)
711                 return seq_puts(s, iface->header);
712
713         return iface->show(s, it);
714 }
715
716 static struct seq_operations sysvipc_proc_seqops = {
717         .start = sysvipc_proc_start,
718         .stop  = sysvipc_proc_stop,
719         .next  = sysvipc_proc_next,
720         .show  = sysvipc_proc_show,
721 };
722
723 static int sysvipc_proc_open(struct inode *inode, struct file *file) {
724         int ret;
725         struct seq_file *seq;
726
727         ret = seq_open(file, &sysvipc_proc_seqops);
728         if (!ret) {
729                 seq = file->private_data;
730                 seq->private = PDE(inode)->data;
731         }
732         return ret;
733 }
734
735 static struct file_operations sysvipc_proc_fops = {
736         .open    = sysvipc_proc_open,
737         .read    = seq_read,
738         .llseek  = seq_lseek,
739         .release = seq_release,
740 };
741 #endif /* CONFIG_PROC_FS */