ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / ipc / sem.c
blobb4c1641a33a11003b8fa0717d90979eb142e5305
1 /*
2 * linux/ipc/sem.c
3 * Copyright (C) 1992 Krishna Balasubramanian
4 * Copyright (C) 1995 Eric Schenk, Bruno Haible
6 * IMPLEMENTATION NOTES ON CODE REWRITE (Eric Schenk, January 1995):
7 * This code underwent a massive rewrite in order to solve some problems
8 * with the original code. In particular the original code failed to
9 * wake up processes that were waiting for semval to go to 0 if the
10 * value went to 0 and was then incremented rapidly enough. In solving
11 * this problem I have also modified the implementation so that it
12 * processes pending operations in a FIFO manner, thus give a guarantee
13 * that processes waiting for a lock on the semaphore won't starve
14 * unless another locking process fails to unlock.
15 * In addition the following two changes in behavior have been introduced:
16 * - The original implementation of semop returned the value
17 * last semaphore element examined on success. This does not
18 * match the manual page specifications, and effectively
19 * allows the user to read the semaphore even if they do not
20 * have read permissions. The implementation now returns 0
21 * on success as stated in the manual page.
22 * - There is some confusion over whether the set of undo adjustments
23 * to be performed at exit should be done in an atomic manner.
24 * That is, if we are attempting to decrement the semval should we queue
25 * up and wait until we can do so legally?
26 * The original implementation attempted to do this.
27 * The current implementation does not do so. This is because I don't
28 * think it is the right thing (TM) to do, and because I couldn't
29 * see a clean way to get the old behavior with the new design.
30 * The POSIX standard and SVID should be consulted to determine
31 * what behavior is mandated.
33 * Further notes on refinement (Christoph Rohland, December 1998):
34 * - The POSIX standard says, that the undo adjustments simply should
35 * redo. So the current implementation is o.K.
36 * - The previous code had two flaws:
37 * 1) It actively gave the semaphore to the next waiting process
38 * sleeping on the semaphore. Since this process did not have the
39 * cpu this led to many unnecessary context switches and bad
40 * performance. Now we only check which process should be able to
41 * get the semaphore and if this process wants to reduce some
42 * semaphore value we simply wake it up without doing the
43 * operation. So it has to try to get it later. Thus e.g. the
44 * running process may reacquire the semaphore during the current
45 * time slice. If it only waits for zero or increases the semaphore,
46 * we do the operation in advance and wake it up.
47 * 2) It did not wake up all zero waiting processes. We try to do
48 * better but only get the semops right which only wait for zero or
49 * increase. If there are decrement operations in the operations
50 * array we do the same as before.
52 * With the incarnation of O(1) scheduler, it becomes unnecessary to perform
53 * check/retry algorithm for waking up blocked processes as the new scheduler
54 * is better at handling thread switch than the old one.
56 * /proc/sysvipc/sem support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
58 * SMP-threaded, sysctl's added
59 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
60 * Enforced range limit on SEM_UNDO
61 * (c) 2001 Red Hat Inc
62 * Lockless wakeup
63 * (c) 2003 Manfred Spraul <manfred@colorfullife.com>
65 * support for audit of ipc object properties and permission changes
66 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
68 * namespaces support
69 * OpenVZ, SWsoft Inc.
70 * Pavel Emelianov <xemul@openvz.org>
73 #include <linux/slab.h>
74 #include <linux/spinlock.h>
75 #include <linux/init.h>
76 #include <linux/proc_fs.h>
77 #include <linux/time.h>
78 #include <linux/security.h>
79 #include <linux/syscalls.h>
80 #include <linux/audit.h>
81 #include <linux/capability.h>
82 #include <linux/seq_file.h>
83 #include <linux/rwsem.h>
84 #include <linux/nsproxy.h>
85 #include <linux/ipc_namespace.h>
87 #include <asm/uaccess.h>
88 #include "util.h"
90 #define sem_ids(ns) ((ns)->ids[IPC_SEM_IDS])
92 #define sem_unlock(sma) ipc_unlock(&(sma)->sem_perm)
93 #define sem_checkid(sma, semid) ipc_checkid(&sma->sem_perm, semid)
95 static int newary(struct ipc_namespace *, struct ipc_params *);
96 static void freeary(struct ipc_namespace *, struct kern_ipc_perm *);
97 #ifdef CONFIG_PROC_FS
98 static int sysvipc_sem_proc_show(struct seq_file *s, void *it);
99 #endif
101 #define SEMMSL_FAST 256 /* 512 bytes on stack */
102 #define SEMOPM_FAST 64 /* ~ 372 bytes on stack */
105 * linked list protection:
106 * sem_undo.id_next,
107 * sem_array.sem_pending{,last},
108 * sem_array.sem_undo: sem_lock() for read/write
109 * sem_undo.proc_next: only "current" is allowed to read/write that field.
113 #define sc_semmsl sem_ctls[0]
114 #define sc_semmns sem_ctls[1]
115 #define sc_semopm sem_ctls[2]
116 #define sc_semmni sem_ctls[3]
118 void sem_init_ns(struct ipc_namespace *ns)
120 ns->sc_semmsl = SEMMSL;
121 ns->sc_semmns = SEMMNS;
122 ns->sc_semopm = SEMOPM;
123 ns->sc_semmni = SEMMNI;
124 ns->used_sems = 0;
125 ipc_init_ids(&ns->ids[IPC_SEM_IDS]);
128 #ifdef CONFIG_IPC_NS
129 void sem_exit_ns(struct ipc_namespace *ns)
131 free_ipcs(ns, &sem_ids(ns), freeary);
132 idr_destroy(&ns->ids[IPC_SEM_IDS].ipcs_idr);
134 #endif
136 void __init sem_init (void)
138 sem_init_ns(&init_ipc_ns);
139 ipc_init_proc_interface("sysvipc/sem",
140 " key semid perms nsems uid gid cuid cgid otime ctime\n",
141 IPC_SEM_IDS, sysvipc_sem_proc_show);
145 * sem_lock_(check_) routines are called in the paths where the rw_mutex
146 * is not held.
148 static inline struct sem_array *sem_lock(struct ipc_namespace *ns, int id)
150 struct kern_ipc_perm *ipcp = ipc_lock(&sem_ids(ns), id);
152 if (IS_ERR(ipcp))
153 return (struct sem_array *)ipcp;
155 return container_of(ipcp, struct sem_array, sem_perm);
158 static inline struct sem_array *sem_lock_check(struct ipc_namespace *ns,
159 int id)
161 struct kern_ipc_perm *ipcp = ipc_lock_check(&sem_ids(ns), id);
163 if (IS_ERR(ipcp))
164 return (struct sem_array *)ipcp;
166 return container_of(ipcp, struct sem_array, sem_perm);
169 static inline void sem_lock_and_putref(struct sem_array *sma)
171 ipc_lock_by_ptr(&sma->sem_perm);
172 ipc_rcu_putref(sma);
175 static inline void sem_getref_and_unlock(struct sem_array *sma)
177 ipc_rcu_getref(sma);
178 ipc_unlock(&(sma)->sem_perm);
181 static inline void sem_putref(struct sem_array *sma)
183 ipc_lock_by_ptr(&sma->sem_perm);
184 ipc_rcu_putref(sma);
185 ipc_unlock(&(sma)->sem_perm);
188 static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
190 ipc_rmid(&sem_ids(ns), &s->sem_perm);
194 * Lockless wakeup algorithm:
195 * Without the check/retry algorithm a lockless wakeup is possible:
196 * - queue.status is initialized to -EINTR before blocking.
197 * - wakeup is performed by
198 * * unlinking the queue entry from sma->sem_pending
199 * * setting queue.status to IN_WAKEUP
200 * This is the notification for the blocked thread that a
201 * result value is imminent.
202 * * call wake_up_process
203 * * set queue.status to the final value.
204 * - the previously blocked thread checks queue.status:
205 * * if it's IN_WAKEUP, then it must wait until the value changes
206 * * if it's not -EINTR, then the operation was completed by
207 * update_queue. semtimedop can return queue.status without
208 * performing any operation on the sem array.
209 * * otherwise it must acquire the spinlock and check what's up.
211 * The two-stage algorithm is necessary to protect against the following
212 * races:
213 * - if queue.status is set after wake_up_process, then the woken up idle
214 * thread could race forward and try (and fail) to acquire sma->lock
215 * before update_queue had a chance to set queue.status
216 * - if queue.status is written before wake_up_process and if the
217 * blocked process is woken up by a signal between writing
218 * queue.status and the wake_up_process, then the woken up
219 * process could return from semtimedop and die by calling
220 * sys_exit before wake_up_process is called. Then wake_up_process
221 * will oops, because the task structure is already invalid.
222 * (yes, this happened on s390 with sysv msg).
225 #define IN_WAKEUP 1
228 * newary - Create a new semaphore set
229 * @ns: namespace
230 * @params: ptr to the structure that contains key, semflg and nsems
232 * Called with sem_ids.rw_mutex held (as a writer)
235 static int newary(struct ipc_namespace *ns, struct ipc_params *params)
237 int id;
238 int retval;
239 struct sem_array *sma;
240 int size;
241 key_t key = params->key;
242 int nsems = params->u.nsems;
243 int semflg = params->flg;
244 int i;
246 if (!nsems)
247 return -EINVAL;
248 if (ns->used_sems + nsems > ns->sc_semmns)
249 return -ENOSPC;
251 size = sizeof (*sma) + nsems * sizeof (struct sem);
252 sma = ipc_rcu_alloc(size);
253 if (!sma) {
254 return -ENOMEM;
256 memset (sma, 0, size);
258 sma->sem_perm.mode = (semflg & S_IRWXUGO);
259 sma->sem_perm.key = key;
261 sma->sem_perm.security = NULL;
262 retval = security_sem_alloc(sma);
263 if (retval) {
264 ipc_rcu_putref(sma);
265 return retval;
268 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
269 if (id < 0) {
270 security_sem_free(sma);
271 ipc_rcu_putref(sma);
272 return id;
274 ns->used_sems += nsems;
276 sma->sem_base = (struct sem *) &sma[1];
278 for (i = 0; i < nsems; i++)
279 INIT_LIST_HEAD(&sma->sem_base[i].sem_pending);
281 sma->complex_count = 0;
282 INIT_LIST_HEAD(&sma->sem_pending);
283 INIT_LIST_HEAD(&sma->list_id);
284 sma->sem_nsems = nsems;
285 sma->sem_ctime = get_seconds();
286 sem_unlock(sma);
288 return sma->sem_perm.id;
293 * Called with sem_ids.rw_mutex and ipcp locked.
295 static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
297 struct sem_array *sma;
299 sma = container_of(ipcp, struct sem_array, sem_perm);
300 return security_sem_associate(sma, semflg);
304 * Called with sem_ids.rw_mutex and ipcp locked.
306 static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
307 struct ipc_params *params)
309 struct sem_array *sma;
311 sma = container_of(ipcp, struct sem_array, sem_perm);
312 if (params->u.nsems > sma->sem_nsems)
313 return -EINVAL;
315 return 0;
318 SYSCALL_DEFINE3(semget, key_t, key, int, nsems, int, semflg)
320 struct ipc_namespace *ns;
321 struct ipc_ops sem_ops;
322 struct ipc_params sem_params;
324 ns = current->nsproxy->ipc_ns;
326 if (nsems < 0 || nsems > ns->sc_semmsl)
327 return -EINVAL;
329 sem_ops.getnew = newary;
330 sem_ops.associate = sem_security;
331 sem_ops.more_checks = sem_more_checks;
333 sem_params.key = key;
334 sem_params.flg = semflg;
335 sem_params.u.nsems = nsems;
337 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
341 * Determine whether a sequence of semaphore operations would succeed
342 * all at once. Return 0 if yes, 1 if need to sleep, else return error code.
345 static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
346 int nsops, struct sem_undo *un, int pid)
348 int result, sem_op;
349 struct sembuf *sop;
350 struct sem * curr;
352 for (sop = sops; sop < sops + nsops; sop++) {
353 curr = sma->sem_base + sop->sem_num;
354 sem_op = sop->sem_op;
355 result = curr->semval;
357 if (!sem_op && result)
358 goto would_block;
360 result += sem_op;
361 if (result < 0)
362 goto would_block;
363 if (result > SEMVMX)
364 goto out_of_range;
365 if (sop->sem_flg & SEM_UNDO) {
366 int undo = un->semadj[sop->sem_num] - sem_op;
368 * Exceeding the undo range is an error.
370 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
371 goto out_of_range;
373 curr->semval = result;
376 sop--;
377 while (sop >= sops) {
378 sma->sem_base[sop->sem_num].sempid = pid;
379 if (sop->sem_flg & SEM_UNDO)
380 un->semadj[sop->sem_num] -= sop->sem_op;
381 sop--;
384 sma->sem_otime = get_seconds();
385 return 0;
387 out_of_range:
388 result = -ERANGE;
389 goto undo;
391 would_block:
392 if (sop->sem_flg & IPC_NOWAIT)
393 result = -EAGAIN;
394 else
395 result = 1;
397 undo:
398 sop--;
399 while (sop >= sops) {
400 sma->sem_base[sop->sem_num].semval -= sop->sem_op;
401 sop--;
404 return result;
408 * Wake up a process waiting on the sem queue with a given error.
409 * The queue is invalid (may not be accessed) after the function returns.
411 static void wake_up_sem_queue(struct sem_queue *q, int error)
414 * Hold preempt off so that we don't get preempted and have the
415 * wakee busy-wait until we're scheduled back on. We're holding
416 * locks here so it may not strictly be needed, however if the
417 * locks become preemptible then this prevents such a problem.
419 preempt_disable();
420 q->status = IN_WAKEUP;
421 wake_up_process(q->sleeper);
422 /* hands-off: q can disappear immediately after writing q->status. */
423 smp_wmb();
424 q->status = error;
425 preempt_enable();
428 static void unlink_queue(struct sem_array *sma, struct sem_queue *q)
430 list_del(&q->list);
431 if (q->nsops == 1)
432 list_del(&q->simple_list);
433 else
434 sma->complex_count--;
439 * update_queue(sma, semnum): Look for tasks that can be completed.
440 * @sma: semaphore array.
441 * @semnum: semaphore that was modified.
443 * update_queue must be called after a semaphore in a semaphore array
444 * was modified. If multiple semaphore were modified, then @semnum
445 * must be set to -1.
447 static void update_queue(struct sem_array *sma, int semnum)
449 struct sem_queue *q;
450 struct list_head *walk;
451 struct list_head *pending_list;
452 int offset;
454 /* if there are complex operations around, then knowing the semaphore
455 * that was modified doesn't help us. Assume that multiple semaphores
456 * were modified.
458 if (sma->complex_count)
459 semnum = -1;
461 if (semnum == -1) {
462 pending_list = &sma->sem_pending;
463 offset = offsetof(struct sem_queue, list);
464 } else {
465 pending_list = &sma->sem_base[semnum].sem_pending;
466 offset = offsetof(struct sem_queue, simple_list);
469 again:
470 walk = pending_list->next;
471 while (walk != pending_list) {
472 int error, alter;
474 q = (struct sem_queue *)((char *)walk - offset);
475 walk = walk->next;
477 /* If we are scanning the single sop, per-semaphore list of
478 * one semaphore and that semaphore is 0, then it is not
479 * necessary to scan the "alter" entries: simple increments
480 * that affect only one entry succeed immediately and cannot
481 * be in the per semaphore pending queue, and decrements
482 * cannot be successful if the value is already 0.
484 if (semnum != -1 && sma->sem_base[semnum].semval == 0 &&
485 q->alter)
486 break;
488 error = try_atomic_semop(sma, q->sops, q->nsops,
489 q->undo, q->pid);
491 /* Does q->sleeper still need to sleep? */
492 if (error > 0)
493 continue;
495 unlink_queue(sma, q);
498 * The next operation that must be checked depends on the type
499 * of the completed operation:
500 * - if the operation modified the array, then restart from the
501 * head of the queue and check for threads that might be
502 * waiting for the new semaphore values.
503 * - if the operation didn't modify the array, then just
504 * continue.
506 alter = q->alter;
507 wake_up_sem_queue(q, error);
508 if (alter && !error)
509 goto again;
513 /* The following counts are associated to each semaphore:
514 * semncnt number of tasks waiting on semval being nonzero
515 * semzcnt number of tasks waiting on semval being zero
516 * This model assumes that a task waits on exactly one semaphore.
517 * Since semaphore operations are to be performed atomically, tasks actually
518 * wait on a whole sequence of semaphores simultaneously.
519 * The counts we return here are a rough approximation, but still
520 * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
522 static int count_semncnt (struct sem_array * sma, ushort semnum)
524 int semncnt;
525 struct sem_queue * q;
527 semncnt = 0;
528 list_for_each_entry(q, &sma->sem_pending, list) {
529 struct sembuf * sops = q->sops;
530 int nsops = q->nsops;
531 int i;
532 for (i = 0; i < nsops; i++)
533 if (sops[i].sem_num == semnum
534 && (sops[i].sem_op < 0)
535 && !(sops[i].sem_flg & IPC_NOWAIT))
536 semncnt++;
538 return semncnt;
541 static int count_semzcnt (struct sem_array * sma, ushort semnum)
543 int semzcnt;
544 struct sem_queue * q;
546 semzcnt = 0;
547 list_for_each_entry(q, &sma->sem_pending, list) {
548 struct sembuf * sops = q->sops;
549 int nsops = q->nsops;
550 int i;
551 for (i = 0; i < nsops; i++)
552 if (sops[i].sem_num == semnum
553 && (sops[i].sem_op == 0)
554 && !(sops[i].sem_flg & IPC_NOWAIT))
555 semzcnt++;
557 return semzcnt;
560 static void free_un(struct rcu_head *head)
562 struct sem_undo *un = container_of(head, struct sem_undo, rcu);
563 kfree(un);
566 /* Free a semaphore set. freeary() is called with sem_ids.rw_mutex locked
567 * as a writer and the spinlock for this semaphore set hold. sem_ids.rw_mutex
568 * remains locked on exit.
570 static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
572 struct sem_undo *un, *tu;
573 struct sem_queue *q, *tq;
574 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
576 /* Free the existing undo structures for this semaphore set. */
577 assert_spin_locked(&sma->sem_perm.lock);
578 list_for_each_entry_safe(un, tu, &sma->list_id, list_id) {
579 list_del(&un->list_id);
580 spin_lock(&un->ulp->lock);
581 un->semid = -1;
582 list_del_rcu(&un->list_proc);
583 spin_unlock(&un->ulp->lock);
584 call_rcu(&un->rcu, free_un);
587 /* Wake up all pending processes and let them fail with EIDRM. */
588 list_for_each_entry_safe(q, tq, &sma->sem_pending, list) {
589 unlink_queue(sma, q);
590 wake_up_sem_queue(q, -EIDRM);
593 /* Remove the semaphore set from the IDR */
594 sem_rmid(ns, sma);
595 sem_unlock(sma);
597 ns->used_sems -= sma->sem_nsems;
598 security_sem_free(sma);
599 ipc_rcu_putref(sma);
602 static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
604 switch(version) {
605 case IPC_64:
606 return copy_to_user(buf, in, sizeof(*in));
607 case IPC_OLD:
609 struct semid_ds out;
611 memset(&out, 0, sizeof(out));
613 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
615 out.sem_otime = in->sem_otime;
616 out.sem_ctime = in->sem_ctime;
617 out.sem_nsems = in->sem_nsems;
619 return copy_to_user(buf, &out, sizeof(out));
621 default:
622 return -EINVAL;
626 static int semctl_nolock(struct ipc_namespace *ns, int semid,
627 int cmd, int version, union semun arg)
629 int err;
630 struct sem_array *sma;
632 switch(cmd) {
633 case IPC_INFO:
634 case SEM_INFO:
636 struct seminfo seminfo;
637 int max_id;
639 err = security_sem_semctl(NULL, cmd);
640 if (err)
641 return err;
643 memset(&seminfo,0,sizeof(seminfo));
644 seminfo.semmni = ns->sc_semmni;
645 seminfo.semmns = ns->sc_semmns;
646 seminfo.semmsl = ns->sc_semmsl;
647 seminfo.semopm = ns->sc_semopm;
648 seminfo.semvmx = SEMVMX;
649 seminfo.semmnu = SEMMNU;
650 seminfo.semmap = SEMMAP;
651 seminfo.semume = SEMUME;
652 down_read(&sem_ids(ns).rw_mutex);
653 if (cmd == SEM_INFO) {
654 seminfo.semusz = sem_ids(ns).in_use;
655 seminfo.semaem = ns->used_sems;
656 } else {
657 seminfo.semusz = SEMUSZ;
658 seminfo.semaem = SEMAEM;
660 max_id = ipc_get_maxid(&sem_ids(ns));
661 up_read(&sem_ids(ns).rw_mutex);
662 if (copy_to_user (arg.__buf, &seminfo, sizeof(struct seminfo)))
663 return -EFAULT;
664 return (max_id < 0) ? 0: max_id;
666 case IPC_STAT:
667 case SEM_STAT:
669 struct semid64_ds tbuf;
670 int id;
672 if (cmd == SEM_STAT) {
673 sma = sem_lock(ns, semid);
674 if (IS_ERR(sma))
675 return PTR_ERR(sma);
676 id = sma->sem_perm.id;
677 } else {
678 sma = sem_lock_check(ns, semid);
679 if (IS_ERR(sma))
680 return PTR_ERR(sma);
681 id = 0;
684 err = -EACCES;
685 if (ipcperms (&sma->sem_perm, S_IRUGO))
686 goto out_unlock;
688 err = security_sem_semctl(sma, cmd);
689 if (err)
690 goto out_unlock;
692 memset(&tbuf, 0, sizeof(tbuf));
694 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
695 tbuf.sem_otime = sma->sem_otime;
696 tbuf.sem_ctime = sma->sem_ctime;
697 tbuf.sem_nsems = sma->sem_nsems;
698 sem_unlock(sma);
699 if (copy_semid_to_user (arg.buf, &tbuf, version))
700 return -EFAULT;
701 return id;
703 default:
704 return -EINVAL;
706 out_unlock:
707 sem_unlock(sma);
708 return err;
711 static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
712 int cmd, int version, union semun arg)
714 struct sem_array *sma;
715 struct sem* curr;
716 int err;
717 ushort fast_sem_io[SEMMSL_FAST];
718 ushort* sem_io = fast_sem_io;
719 int nsems;
721 sma = sem_lock_check(ns, semid);
722 if (IS_ERR(sma))
723 return PTR_ERR(sma);
725 nsems = sma->sem_nsems;
727 err = -EACCES;
728 if (ipcperms (&sma->sem_perm, (cmd==SETVAL||cmd==SETALL)?S_IWUGO:S_IRUGO))
729 goto out_unlock;
731 err = security_sem_semctl(sma, cmd);
732 if (err)
733 goto out_unlock;
735 err = -EACCES;
736 switch (cmd) {
737 case GETALL:
739 ushort __user *array = arg.array;
740 int i;
742 if(nsems > SEMMSL_FAST) {
743 sem_getref_and_unlock(sma);
745 sem_io = ipc_alloc(sizeof(ushort)*nsems);
746 if(sem_io == NULL) {
747 sem_putref(sma);
748 return -ENOMEM;
751 sem_lock_and_putref(sma);
752 if (sma->sem_perm.deleted) {
753 sem_unlock(sma);
754 err = -EIDRM;
755 goto out_free;
759 for (i = 0; i < sma->sem_nsems; i++)
760 sem_io[i] = sma->sem_base[i].semval;
761 sem_unlock(sma);
762 err = 0;
763 if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
764 err = -EFAULT;
765 goto out_free;
767 case SETALL:
769 int i;
770 struct sem_undo *un;
772 sem_getref_and_unlock(sma);
774 if(nsems > SEMMSL_FAST) {
775 sem_io = ipc_alloc(sizeof(ushort)*nsems);
776 if(sem_io == NULL) {
777 sem_putref(sma);
778 return -ENOMEM;
782 if (copy_from_user (sem_io, arg.array, nsems*sizeof(ushort))) {
783 sem_putref(sma);
784 err = -EFAULT;
785 goto out_free;
788 for (i = 0; i < nsems; i++) {
789 if (sem_io[i] > SEMVMX) {
790 sem_putref(sma);
791 err = -ERANGE;
792 goto out_free;
795 sem_lock_and_putref(sma);
796 if (sma->sem_perm.deleted) {
797 sem_unlock(sma);
798 err = -EIDRM;
799 goto out_free;
802 for (i = 0; i < nsems; i++)
803 sma->sem_base[i].semval = sem_io[i];
805 assert_spin_locked(&sma->sem_perm.lock);
806 list_for_each_entry(un, &sma->list_id, list_id) {
807 for (i = 0; i < nsems; i++)
808 un->semadj[i] = 0;
810 sma->sem_ctime = get_seconds();
811 /* maybe some queued-up processes were waiting for this */
812 update_queue(sma, -1);
813 err = 0;
814 goto out_unlock;
816 /* GETVAL, GETPID, GETNCTN, GETZCNT, SETVAL: fall-through */
818 err = -EINVAL;
819 if(semnum < 0 || semnum >= nsems)
820 goto out_unlock;
822 curr = &sma->sem_base[semnum];
824 switch (cmd) {
825 case GETVAL:
826 err = curr->semval;
827 goto out_unlock;
828 case GETPID:
829 err = curr->sempid;
830 goto out_unlock;
831 case GETNCNT:
832 err = count_semncnt(sma,semnum);
833 goto out_unlock;
834 case GETZCNT:
835 err = count_semzcnt(sma,semnum);
836 goto out_unlock;
837 case SETVAL:
839 int val = arg.val;
840 struct sem_undo *un;
842 err = -ERANGE;
843 if (val > SEMVMX || val < 0)
844 goto out_unlock;
846 assert_spin_locked(&sma->sem_perm.lock);
847 list_for_each_entry(un, &sma->list_id, list_id)
848 un->semadj[semnum] = 0;
850 curr->semval = val;
851 curr->sempid = task_tgid_vnr(current);
852 sma->sem_ctime = get_seconds();
853 /* maybe some queued-up processes were waiting for this */
854 update_queue(sma, semnum);
855 err = 0;
856 goto out_unlock;
859 out_unlock:
860 sem_unlock(sma);
861 out_free:
862 if(sem_io != fast_sem_io)
863 ipc_free(sem_io, sizeof(ushort)*nsems);
864 return err;
867 static inline unsigned long
868 copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
870 switch(version) {
871 case IPC_64:
872 if (copy_from_user(out, buf, sizeof(*out)))
873 return -EFAULT;
874 return 0;
875 case IPC_OLD:
877 struct semid_ds tbuf_old;
879 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
880 return -EFAULT;
882 out->sem_perm.uid = tbuf_old.sem_perm.uid;
883 out->sem_perm.gid = tbuf_old.sem_perm.gid;
884 out->sem_perm.mode = tbuf_old.sem_perm.mode;
886 return 0;
888 default:
889 return -EINVAL;
894 * This function handles some semctl commands which require the rw_mutex
895 * to be held in write mode.
896 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
898 static int semctl_down(struct ipc_namespace *ns, int semid,
899 int cmd, int version, union semun arg)
901 struct sem_array *sma;
902 int err;
903 struct semid64_ds semid64;
904 struct kern_ipc_perm *ipcp;
906 if(cmd == IPC_SET) {
907 if (copy_semid_from_user(&semid64, arg.buf, version))
908 return -EFAULT;
911 ipcp = ipcctl_pre_down(&sem_ids(ns), semid, cmd, &semid64.sem_perm, 0);
912 if (IS_ERR(ipcp))
913 return PTR_ERR(ipcp);
915 sma = container_of(ipcp, struct sem_array, sem_perm);
917 err = security_sem_semctl(sma, cmd);
918 if (err)
919 goto out_unlock;
921 switch(cmd){
922 case IPC_RMID:
923 freeary(ns, ipcp);
924 goto out_up;
925 case IPC_SET:
926 ipc_update_perm(&semid64.sem_perm, ipcp);
927 sma->sem_ctime = get_seconds();
928 break;
929 default:
930 err = -EINVAL;
933 out_unlock:
934 sem_unlock(sma);
935 out_up:
936 up_write(&sem_ids(ns).rw_mutex);
937 return err;
940 SYSCALL_DEFINE(semctl)(int semid, int semnum, int cmd, union semun arg)
942 int err = -EINVAL;
943 int version;
944 struct ipc_namespace *ns;
946 if (semid < 0)
947 return -EINVAL;
949 version = ipc_parse_version(&cmd);
950 ns = current->nsproxy->ipc_ns;
952 switch(cmd) {
953 case IPC_INFO:
954 case SEM_INFO:
955 case IPC_STAT:
956 case SEM_STAT:
957 err = semctl_nolock(ns, semid, cmd, version, arg);
958 return err;
959 case GETALL:
960 case GETVAL:
961 case GETPID:
962 case GETNCNT:
963 case GETZCNT:
964 case SETVAL:
965 case SETALL:
966 err = semctl_main(ns,semid,semnum,cmd,version,arg);
967 return err;
968 case IPC_RMID:
969 case IPC_SET:
970 err = semctl_down(ns, semid, cmd, version, arg);
971 return err;
972 default:
973 return -EINVAL;
976 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
977 asmlinkage long SyS_semctl(int semid, int semnum, int cmd, union semun arg)
979 return SYSC_semctl((int) semid, (int) semnum, (int) cmd, arg);
981 SYSCALL_ALIAS(sys_semctl, SyS_semctl);
982 #endif
984 /* If the task doesn't already have a undo_list, then allocate one
985 * here. We guarantee there is only one thread using this undo list,
986 * and current is THE ONE
988 * If this allocation and assignment succeeds, but later
989 * portions of this code fail, there is no need to free the sem_undo_list.
990 * Just let it stay associated with the task, and it'll be freed later
991 * at exit time.
993 * This can block, so callers must hold no locks.
995 static inline int get_undo_list(struct sem_undo_list **undo_listp)
997 struct sem_undo_list *undo_list;
999 undo_list = current->sysvsem.undo_list;
1000 if (!undo_list) {
1001 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
1002 if (undo_list == NULL)
1003 return -ENOMEM;
1004 spin_lock_init(&undo_list->lock);
1005 atomic_set(&undo_list->refcnt, 1);
1006 INIT_LIST_HEAD(&undo_list->list_proc);
1008 current->sysvsem.undo_list = undo_list;
1010 *undo_listp = undo_list;
1011 return 0;
1014 static struct sem_undo *__lookup_undo(struct sem_undo_list *ulp, int semid)
1016 struct sem_undo *un;
1018 list_for_each_entry_rcu(un, &ulp->list_proc, list_proc) {
1019 if (un->semid == semid)
1020 return un;
1022 return NULL;
1025 static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
1027 struct sem_undo *un;
1029 assert_spin_locked(&ulp->lock);
1031 un = __lookup_undo(ulp, semid);
1032 if (un) {
1033 list_del_rcu(&un->list_proc);
1034 list_add_rcu(&un->list_proc, &ulp->list_proc);
1036 return un;
1040 * find_alloc_undo - Lookup (and if not present create) undo array
1041 * @ns: namespace
1042 * @semid: semaphore array id
1044 * The function looks up (and if not present creates) the undo structure.
1045 * The size of the undo structure depends on the size of the semaphore
1046 * array, thus the alloc path is not that straightforward.
1047 * Lifetime-rules: sem_undo is rcu-protected, on success, the function
1048 * performs a rcu_read_lock().
1050 static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
1052 struct sem_array *sma;
1053 struct sem_undo_list *ulp;
1054 struct sem_undo *un, *new;
1055 int nsems;
1056 int error;
1058 error = get_undo_list(&ulp);
1059 if (error)
1060 return ERR_PTR(error);
1062 rcu_read_lock();
1063 spin_lock(&ulp->lock);
1064 un = lookup_undo(ulp, semid);
1065 spin_unlock(&ulp->lock);
1066 if (likely(un!=NULL))
1067 goto out;
1068 rcu_read_unlock();
1070 /* no undo structure around - allocate one. */
1071 /* step 1: figure out the size of the semaphore array */
1072 sma = sem_lock_check(ns, semid);
1073 if (IS_ERR(sma))
1074 return ERR_PTR(PTR_ERR(sma));
1076 nsems = sma->sem_nsems;
1077 sem_getref_and_unlock(sma);
1079 /* step 2: allocate new undo structure */
1080 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
1081 if (!new) {
1082 sem_putref(sma);
1083 return ERR_PTR(-ENOMEM);
1086 /* step 3: Acquire the lock on semaphore array */
1087 sem_lock_and_putref(sma);
1088 if (sma->sem_perm.deleted) {
1089 sem_unlock(sma);
1090 kfree(new);
1091 un = ERR_PTR(-EIDRM);
1092 goto out;
1094 spin_lock(&ulp->lock);
1097 * step 4: check for races: did someone else allocate the undo struct?
1099 un = lookup_undo(ulp, semid);
1100 if (un) {
1101 kfree(new);
1102 goto success;
1104 /* step 5: initialize & link new undo structure */
1105 new->semadj = (short *) &new[1];
1106 new->ulp = ulp;
1107 new->semid = semid;
1108 assert_spin_locked(&ulp->lock);
1109 list_add_rcu(&new->list_proc, &ulp->list_proc);
1110 assert_spin_locked(&sma->sem_perm.lock);
1111 list_add(&new->list_id, &sma->list_id);
1112 un = new;
1114 success:
1115 spin_unlock(&ulp->lock);
1116 rcu_read_lock();
1117 sem_unlock(sma);
1118 out:
1119 return un;
1122 SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
1123 unsigned, nsops, const struct timespec __user *, timeout)
1125 int error = -EINVAL;
1126 struct sem_array *sma;
1127 struct sembuf fast_sops[SEMOPM_FAST];
1128 struct sembuf* sops = fast_sops, *sop;
1129 struct sem_undo *un;
1130 int undos = 0, alter = 0, max;
1131 struct sem_queue queue;
1132 unsigned long jiffies_left = 0;
1133 struct ipc_namespace *ns;
1135 ns = current->nsproxy->ipc_ns;
1137 if (nsops < 1 || semid < 0)
1138 return -EINVAL;
1139 if (nsops > ns->sc_semopm)
1140 return -E2BIG;
1141 if(nsops > SEMOPM_FAST) {
1142 sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
1143 if(sops==NULL)
1144 return -ENOMEM;
1146 if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
1147 error=-EFAULT;
1148 goto out_free;
1150 if (timeout) {
1151 struct timespec _timeout;
1152 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1153 error = -EFAULT;
1154 goto out_free;
1156 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1157 _timeout.tv_nsec >= 1000000000L) {
1158 error = -EINVAL;
1159 goto out_free;
1161 jiffies_left = timespec_to_jiffies(&_timeout);
1163 max = 0;
1164 for (sop = sops; sop < sops + nsops; sop++) {
1165 if (sop->sem_num >= max)
1166 max = sop->sem_num;
1167 if (sop->sem_flg & SEM_UNDO)
1168 undos = 1;
1169 if (sop->sem_op != 0)
1170 alter = 1;
1173 if (undos) {
1174 un = find_alloc_undo(ns, semid);
1175 if (IS_ERR(un)) {
1176 error = PTR_ERR(un);
1177 goto out_free;
1179 } else
1180 un = NULL;
1182 sma = sem_lock_check(ns, semid);
1183 if (IS_ERR(sma)) {
1184 if (un)
1185 rcu_read_unlock();
1186 error = PTR_ERR(sma);
1187 goto out_free;
1191 * semid identifiers are not unique - find_alloc_undo may have
1192 * allocated an undo structure, it was invalidated by an RMID
1193 * and now a new array with received the same id. Check and fail.
1194 * This case can be detected checking un->semid. The existance of
1195 * "un" itself is guaranteed by rcu.
1197 error = -EIDRM;
1198 if (un) {
1199 if (un->semid == -1) {
1200 rcu_read_unlock();
1201 goto out_unlock_free;
1202 } else {
1204 * rcu lock can be released, "un" cannot disappear:
1205 * - sem_lock is acquired, thus IPC_RMID is
1206 * impossible.
1207 * - exit_sem is impossible, it always operates on
1208 * current (or a dead task).
1211 rcu_read_unlock();
1215 error = -EFBIG;
1216 if (max >= sma->sem_nsems)
1217 goto out_unlock_free;
1219 error = -EACCES;
1220 if (ipcperms(&sma->sem_perm, alter ? S_IWUGO : S_IRUGO))
1221 goto out_unlock_free;
1223 error = security_sem_semop(sma, sops, nsops, alter);
1224 if (error)
1225 goto out_unlock_free;
1227 error = try_atomic_semop (sma, sops, nsops, un, task_tgid_vnr(current));
1228 if (error <= 0) {
1229 if (alter && error == 0)
1230 update_queue(sma, (nsops == 1) ? sops[0].sem_num : -1);
1232 goto out_unlock_free;
1235 /* We need to sleep on this operation, so we put the current
1236 * task into the pending queue and go to sleep.
1239 queue.sops = sops;
1240 queue.nsops = nsops;
1241 queue.undo = un;
1242 queue.pid = task_tgid_vnr(current);
1243 queue.alter = alter;
1244 if (alter)
1245 list_add_tail(&queue.list, &sma->sem_pending);
1246 else
1247 list_add(&queue.list, &sma->sem_pending);
1249 if (nsops == 1) {
1250 struct sem *curr;
1251 curr = &sma->sem_base[sops->sem_num];
1253 if (alter)
1254 list_add_tail(&queue.simple_list, &curr->sem_pending);
1255 else
1256 list_add(&queue.simple_list, &curr->sem_pending);
1257 } else {
1258 INIT_LIST_HEAD(&queue.simple_list);
1259 sma->complex_count++;
1262 queue.status = -EINTR;
1263 queue.sleeper = current;
1264 current->state = TASK_INTERRUPTIBLE;
1265 sem_unlock(sma);
1267 if (timeout)
1268 jiffies_left = schedule_timeout(jiffies_left);
1269 else
1270 schedule();
1272 error = queue.status;
1273 while(unlikely(error == IN_WAKEUP)) {
1274 cpu_relax();
1275 error = queue.status;
1278 if (error != -EINTR) {
1279 /* fast path: update_queue already obtained all requested
1280 * resources */
1281 goto out_free;
1284 sma = sem_lock(ns, semid);
1285 if (IS_ERR(sma)) {
1286 error = -EIDRM;
1287 goto out_free;
1291 * If queue.status != -EINTR we are woken up by another process
1293 error = queue.status;
1294 if (error != -EINTR) {
1295 goto out_unlock_free;
1299 * If an interrupt occurred we have to clean up the queue
1301 if (timeout && jiffies_left == 0)
1302 error = -EAGAIN;
1303 unlink_queue(sma, &queue);
1305 out_unlock_free:
1306 sem_unlock(sma);
1307 out_free:
1308 if(sops != fast_sops)
1309 kfree(sops);
1310 return error;
1313 SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
1314 unsigned, nsops)
1316 return sys_semtimedop(semid, tsops, nsops, NULL);
1319 /* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
1320 * parent and child tasks.
1323 int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
1325 struct sem_undo_list *undo_list;
1326 int error;
1328 if (clone_flags & CLONE_SYSVSEM) {
1329 error = get_undo_list(&undo_list);
1330 if (error)
1331 return error;
1332 atomic_inc(&undo_list->refcnt);
1333 tsk->sysvsem.undo_list = undo_list;
1334 } else
1335 tsk->sysvsem.undo_list = NULL;
1337 return 0;
1341 * add semadj values to semaphores, free undo structures.
1342 * undo structures are not freed when semaphore arrays are destroyed
1343 * so some of them may be out of date.
1344 * IMPLEMENTATION NOTE: There is some confusion over whether the
1345 * set of adjustments that needs to be done should be done in an atomic
1346 * manner or not. That is, if we are attempting to decrement the semval
1347 * should we queue up and wait until we can do so legally?
1348 * The original implementation attempted to do this (queue and wait).
1349 * The current implementation does not do so. The POSIX standard
1350 * and SVID should be consulted to determine what behavior is mandated.
1352 void exit_sem(struct task_struct *tsk)
1354 struct sem_undo_list *ulp;
1356 ulp = tsk->sysvsem.undo_list;
1357 if (!ulp)
1358 return;
1359 tsk->sysvsem.undo_list = NULL;
1361 if (!atomic_dec_and_test(&ulp->refcnt))
1362 return;
1364 for (;;) {
1365 struct sem_array *sma;
1366 struct sem_undo *un;
1367 int semid;
1368 int i;
1370 rcu_read_lock();
1371 un = list_entry_rcu(ulp->list_proc.next,
1372 struct sem_undo, list_proc);
1373 if (&un->list_proc == &ulp->list_proc)
1374 semid = -1;
1375 else
1376 semid = un->semid;
1377 rcu_read_unlock();
1379 if (semid == -1)
1380 break;
1382 sma = sem_lock_check(tsk->nsproxy->ipc_ns, un->semid);
1384 /* exit_sem raced with IPC_RMID, nothing to do */
1385 if (IS_ERR(sma))
1386 continue;
1388 un = __lookup_undo(ulp, semid);
1389 if (un == NULL) {
1390 /* exit_sem raced with IPC_RMID+semget() that created
1391 * exactly the same semid. Nothing to do.
1393 sem_unlock(sma);
1394 continue;
1397 /* remove un from the linked lists */
1398 assert_spin_locked(&sma->sem_perm.lock);
1399 list_del(&un->list_id);
1401 spin_lock(&ulp->lock);
1402 list_del_rcu(&un->list_proc);
1403 spin_unlock(&ulp->lock);
1405 /* perform adjustments registered in un */
1406 for (i = 0; i < sma->sem_nsems; i++) {
1407 struct sem * semaphore = &sma->sem_base[i];
1408 if (un->semadj[i]) {
1409 semaphore->semval += un->semadj[i];
1411 * Range checks of the new semaphore value,
1412 * not defined by sus:
1413 * - Some unices ignore the undo entirely
1414 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
1415 * - some cap the value (e.g. FreeBSD caps
1416 * at 0, but doesn't enforce SEMVMX)
1418 * Linux caps the semaphore value, both at 0
1419 * and at SEMVMX.
1421 * Manfred <manfred@colorfullife.com>
1423 if (semaphore->semval < 0)
1424 semaphore->semval = 0;
1425 if (semaphore->semval > SEMVMX)
1426 semaphore->semval = SEMVMX;
1427 semaphore->sempid = task_tgid_vnr(current);
1430 sma->sem_otime = get_seconds();
1431 /* maybe some queued-up processes were waiting for this */
1432 update_queue(sma, -1);
1433 sem_unlock(sma);
1435 call_rcu(&un->rcu, free_un);
1437 kfree(ulp);
1440 #ifdef CONFIG_PROC_FS
1441 static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
1443 struct sem_array *sma = it;
1445 return seq_printf(s,
1446 "%10d %10d %4o %10u %5u %5u %5u %5u %10lu %10lu\n",
1447 sma->sem_perm.key,
1448 sma->sem_perm.id,
1449 sma->sem_perm.mode,
1450 sma->sem_nsems,
1451 sma->sem_perm.uid,
1452 sma->sem_perm.gid,
1453 sma->sem_perm.cuid,
1454 sma->sem_perm.cgid,
1455 sma->sem_otime,
1456 sma->sem_ctime);
1458 #endif