]> bbs.cooldavid.org Git - net-next-2.6.git/blame - ipc/sem.c
ipc/sem.c: optimize single semop operations
[net-next-2.6.git] / ipc / sem.c
CommitLineData
1da177e4
LT
1/*
2 * linux/ipc/sem.c
3 * Copyright (C) 1992 Krishna Balasubramanian
4 * Copyright (C) 1995 Eric Schenk, Bruno Haible
5 *
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.
32 *
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.
51 *
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.
55 *
56 * /proc/sysvipc/sem support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
57 *
58 * SMP-threaded, sysctl's added
624dffcb 59 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
1da177e4 60 * Enforced range limit on SEM_UNDO
046c6884 61 * (c) 2001 Red Hat Inc
1da177e4
LT
62 * Lockless wakeup
63 * (c) 2003 Manfred Spraul <manfred@colorfullife.com>
073115d6
SG
64 *
65 * support for audit of ipc object properties and permission changes
66 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
e3893534
KK
67 *
68 * namespaces support
69 * OpenVZ, SWsoft Inc.
70 * Pavel Emelianov <xemul@openvz.org>
1da177e4
LT
71 */
72
1da177e4
LT
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>
1da177e4
LT
78#include <linux/security.h>
79#include <linux/syscalls.h>
80#include <linux/audit.h>
c59ede7b 81#include <linux/capability.h>
19b4946c 82#include <linux/seq_file.h>
3e148c79 83#include <linux/rwsem.h>
e3893534 84#include <linux/nsproxy.h>
ae5e1b22 85#include <linux/ipc_namespace.h>
5f921ae9 86
1da177e4
LT
87#include <asm/uaccess.h>
88#include "util.h"
89
ed2ddbf8 90#define sem_ids(ns) ((ns)->ids[IPC_SEM_IDS])
e3893534 91
e3893534 92#define sem_unlock(sma) ipc_unlock(&(sma)->sem_perm)
1b531f21 93#define sem_checkid(sma, semid) ipc_checkid(&sma->sem_perm, semid)
1da177e4 94
7748dbfa 95static int newary(struct ipc_namespace *, struct ipc_params *);
01b8b07a 96static void freeary(struct ipc_namespace *, struct kern_ipc_perm *);
1da177e4 97#ifdef CONFIG_PROC_FS
19b4946c 98static int sysvipc_sem_proc_show(struct seq_file *s, void *it);
1da177e4
LT
99#endif
100
101#define SEMMSL_FAST 256 /* 512 bytes on stack */
102#define SEMOPM_FAST 64 /* ~ 372 bytes on stack */
103
104/*
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.
110 *
111 */
112
e3893534
KK
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]
117
ed2ddbf8 118void sem_init_ns(struct ipc_namespace *ns)
e3893534 119{
e3893534
KK
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;
ed2ddbf8 125 ipc_init_ids(&ns->ids[IPC_SEM_IDS]);
e3893534
KK
126}
127
ae5e1b22 128#ifdef CONFIG_IPC_NS
e3893534
KK
129void sem_exit_ns(struct ipc_namespace *ns)
130{
01b8b07a 131 free_ipcs(ns, &sem_ids(ns), freeary);
7d6feeb2 132 idr_destroy(&ns->ids[IPC_SEM_IDS].ipcs_idr);
e3893534 133}
ae5e1b22 134#endif
1da177e4
LT
135
136void __init sem_init (void)
137{
ed2ddbf8 138 sem_init_ns(&init_ipc_ns);
19b4946c
MW
139 ipc_init_proc_interface("sysvipc/sem",
140 " key semid perms nsems uid gid cuid cgid otime ctime\n",
e3893534 141 IPC_SEM_IDS, sysvipc_sem_proc_show);
1da177e4
LT
142}
143
3e148c79
ND
144/*
145 * sem_lock_(check_) routines are called in the paths where the rw_mutex
146 * is not held.
147 */
023a5355
ND
148static inline struct sem_array *sem_lock(struct ipc_namespace *ns, int id)
149{
03f02c76
ND
150 struct kern_ipc_perm *ipcp = ipc_lock(&sem_ids(ns), id);
151
b1ed88b4
PP
152 if (IS_ERR(ipcp))
153 return (struct sem_array *)ipcp;
154
03f02c76 155 return container_of(ipcp, struct sem_array, sem_perm);
023a5355
ND
156}
157
158static inline struct sem_array *sem_lock_check(struct ipc_namespace *ns,
159 int id)
160{
03f02c76
ND
161 struct kern_ipc_perm *ipcp = ipc_lock_check(&sem_ids(ns), id);
162
b1ed88b4
PP
163 if (IS_ERR(ipcp))
164 return (struct sem_array *)ipcp;
165
03f02c76 166 return container_of(ipcp, struct sem_array, sem_perm);
023a5355
ND
167}
168
6ff37972
PP
169static inline void sem_lock_and_putref(struct sem_array *sma)
170{
171 ipc_lock_by_ptr(&sma->sem_perm);
172 ipc_rcu_putref(sma);
173}
174
175static inline void sem_getref_and_unlock(struct sem_array *sma)
176{
177 ipc_rcu_getref(sma);
178 ipc_unlock(&(sma)->sem_perm);
179}
180
181static inline void sem_putref(struct sem_array *sma)
182{
183 ipc_lock_by_ptr(&sma->sem_perm);
184 ipc_rcu_putref(sma);
185 ipc_unlock(&(sma)->sem_perm);
186}
187
7ca7e564
ND
188static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
189{
190 ipc_rmid(&sem_ids(ns), &s->sem_perm);
191}
192
1da177e4
LT
193/*
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
5f921ae9 208 * performing any operation on the sem array.
1da177e4
LT
209 * * otherwise it must acquire the spinlock and check what's up.
210 *
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).
223 *
224 */
225#define IN_WAKEUP 1
226
f4566f04
ND
227/**
228 * newary - Create a new semaphore set
229 * @ns: namespace
230 * @params: ptr to the structure that contains key, semflg and nsems
231 *
3e148c79 232 * Called with sem_ids.rw_mutex held (as a writer)
f4566f04
ND
233 */
234
7748dbfa 235static int newary(struct ipc_namespace *ns, struct ipc_params *params)
1da177e4
LT
236{
237 int id;
238 int retval;
239 struct sem_array *sma;
240 int size;
7748dbfa
ND
241 key_t key = params->key;
242 int nsems = params->u.nsems;
243 int semflg = params->flg;
b97e820f 244 int i;
1da177e4
LT
245
246 if (!nsems)
247 return -EINVAL;
e3893534 248 if (ns->used_sems + nsems > ns->sc_semmns)
1da177e4
LT
249 return -ENOSPC;
250
251 size = sizeof (*sma) + nsems * sizeof (struct sem);
252 sma = ipc_rcu_alloc(size);
253 if (!sma) {
254 return -ENOMEM;
255 }
256 memset (sma, 0, size);
257
258 sma->sem_perm.mode = (semflg & S_IRWXUGO);
259 sma->sem_perm.key = key;
260
261 sma->sem_perm.security = NULL;
262 retval = security_sem_alloc(sma);
263 if (retval) {
264 ipc_rcu_putref(sma);
265 return retval;
266 }
267
e3893534 268 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
283bb7fa 269 if (id < 0) {
1da177e4
LT
270 security_sem_free(sma);
271 ipc_rcu_putref(sma);
283bb7fa 272 return id;
1da177e4 273 }
e3893534 274 ns->used_sems += nsems;
1da177e4
LT
275
276 sma->sem_base = (struct sem *) &sma[1];
b97e820f
MS
277
278 for (i = 0; i < nsems; i++)
279 INIT_LIST_HEAD(&sma->sem_base[i].sem_pending);
280
281 sma->complex_count = 0;
a1193f8e 282 INIT_LIST_HEAD(&sma->sem_pending);
4daa28f6 283 INIT_LIST_HEAD(&sma->list_id);
1da177e4
LT
284 sma->sem_nsems = nsems;
285 sma->sem_ctime = get_seconds();
286 sem_unlock(sma);
287
7ca7e564 288 return sma->sem_perm.id;
1da177e4
LT
289}
290
7748dbfa 291
f4566f04 292/*
3e148c79 293 * Called with sem_ids.rw_mutex and ipcp locked.
f4566f04 294 */
03f02c76 295static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
7748dbfa 296{
03f02c76
ND
297 struct sem_array *sma;
298
299 sma = container_of(ipcp, struct sem_array, sem_perm);
300 return security_sem_associate(sma, semflg);
7748dbfa
ND
301}
302
f4566f04 303/*
3e148c79 304 * Called with sem_ids.rw_mutex and ipcp locked.
f4566f04 305 */
03f02c76
ND
306static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
307 struct ipc_params *params)
7748dbfa 308{
03f02c76
ND
309 struct sem_array *sma;
310
311 sma = container_of(ipcp, struct sem_array, sem_perm);
312 if (params->u.nsems > sma->sem_nsems)
7748dbfa
ND
313 return -EINVAL;
314
315 return 0;
316}
317
d5460c99 318SYSCALL_DEFINE3(semget, key_t, key, int, nsems, int, semflg)
1da177e4 319{
e3893534 320 struct ipc_namespace *ns;
7748dbfa
ND
321 struct ipc_ops sem_ops;
322 struct ipc_params sem_params;
e3893534
KK
323
324 ns = current->nsproxy->ipc_ns;
1da177e4 325
e3893534 326 if (nsems < 0 || nsems > ns->sc_semmsl)
1da177e4 327 return -EINVAL;
7ca7e564 328
7748dbfa
ND
329 sem_ops.getnew = newary;
330 sem_ops.associate = sem_security;
331 sem_ops.more_checks = sem_more_checks;
332
333 sem_params.key = key;
334 sem_params.flg = semflg;
335 sem_params.u.nsems = nsems;
1da177e4 336
7748dbfa 337 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
1da177e4
LT
338}
339
1da177e4
LT
340/*
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.
343 */
344
345static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
346 int nsops, struct sem_undo *un, int pid)
347{
348 int result, sem_op;
349 struct sembuf *sop;
350 struct sem * curr;
351
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;
356
357 if (!sem_op && result)
358 goto would_block;
359
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;
367 /*
368 * Exceeding the undo range is an error.
369 */
370 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
371 goto out_of_range;
372 }
373 curr->semval = result;
374 }
375
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--;
382 }
383
384 sma->sem_otime = get_seconds();
385 return 0;
386
387out_of_range:
388 result = -ERANGE;
389 goto undo;
390
391would_block:
392 if (sop->sem_flg & IPC_NOWAIT)
393 result = -EAGAIN;
394 else
395 result = 1;
396
397undo:
398 sop--;
399 while (sop >= sops) {
400 sma->sem_base[sop->sem_num].semval -= sop->sem_op;
401 sop--;
402 }
403
404 return result;
405}
406
d4212093
NP
407/*
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.
410 */
411static void wake_up_sem_queue(struct sem_queue *q, int error)
412{
413 /*
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.
418 */
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();
426}
427
b97e820f
MS
428static void unlink_queue(struct sem_array *sma, struct sem_queue *q)
429{
430 list_del(&q->list);
431 if (q->nsops == 1)
432 list_del(&q->simple_list);
433 else
434 sma->complex_count--;
435}
436
636c6be8
MS
437
438/**
439 * update_queue(sma, semnum): Look for tasks that can be completed.
440 * @sma: semaphore array.
441 * @semnum: semaphore that was modified.
442 *
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.
1da177e4 446 */
636c6be8 447static void update_queue(struct sem_array *sma, int semnum)
1da177e4 448{
636c6be8
MS
449 struct sem_queue *q;
450 struct list_head *walk;
451 struct list_head *pending_list;
452 int offset;
453
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.
457 */
458 if (sma->complex_count)
459 semnum = -1;
460
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);
467 }
9cad200c
NP
468
469again:
636c6be8
MS
470 walk = pending_list->next;
471 while (walk != pending_list) {
472 int error, alter;
473
474 q = (struct sem_queue *)((char *)walk - offset);
475 walk = walk->next;
1da177e4 476
1da177e4
LT
477 error = try_atomic_semop(sma, q->sops, q->nsops,
478 q->undo, q->pid);
479
480 /* Does q->sleeper still need to sleep? */
9cad200c
NP
481 if (error > 0)
482 continue;
483
b97e820f 484 unlink_queue(sma, q);
9cad200c
NP
485
486 /*
487 * The next operation that must be checked depends on the type
488 * of the completed operation:
489 * - if the operation modified the array, then restart from the
490 * head of the queue and check for threads that might be
b6e90822 491 * waiting for the new semaphore values.
9cad200c
NP
492 * - if the operation didn't modify the array, then just
493 * continue.
494 */
495 alter = q->alter;
d4212093 496 wake_up_sem_queue(q, error);
b6e90822 497 if (alter && !error)
9cad200c 498 goto again;
1da177e4
LT
499 }
500}
501
502/* The following counts are associated to each semaphore:
503 * semncnt number of tasks waiting on semval being nonzero
504 * semzcnt number of tasks waiting on semval being zero
505 * This model assumes that a task waits on exactly one semaphore.
506 * Since semaphore operations are to be performed atomically, tasks actually
507 * wait on a whole sequence of semaphores simultaneously.
508 * The counts we return here are a rough approximation, but still
509 * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
510 */
511static int count_semncnt (struct sem_array * sma, ushort semnum)
512{
513 int semncnt;
514 struct sem_queue * q;
515
516 semncnt = 0;
a1193f8e 517 list_for_each_entry(q, &sma->sem_pending, list) {
1da177e4
LT
518 struct sembuf * sops = q->sops;
519 int nsops = q->nsops;
520 int i;
521 for (i = 0; i < nsops; i++)
522 if (sops[i].sem_num == semnum
523 && (sops[i].sem_op < 0)
524 && !(sops[i].sem_flg & IPC_NOWAIT))
525 semncnt++;
526 }
527 return semncnt;
528}
a1193f8e 529
1da177e4
LT
530static int count_semzcnt (struct sem_array * sma, ushort semnum)
531{
532 int semzcnt;
533 struct sem_queue * q;
534
535 semzcnt = 0;
a1193f8e 536 list_for_each_entry(q, &sma->sem_pending, list) {
1da177e4
LT
537 struct sembuf * sops = q->sops;
538 int nsops = q->nsops;
539 int i;
540 for (i = 0; i < nsops; i++)
541 if (sops[i].sem_num == semnum
542 && (sops[i].sem_op == 0)
543 && !(sops[i].sem_flg & IPC_NOWAIT))
544 semzcnt++;
545 }
546 return semzcnt;
547}
548
6d97e234 549static void free_un(struct rcu_head *head)
380af1b3
MS
550{
551 struct sem_undo *un = container_of(head, struct sem_undo, rcu);
552 kfree(un);
553}
554
3e148c79
ND
555/* Free a semaphore set. freeary() is called with sem_ids.rw_mutex locked
556 * as a writer and the spinlock for this semaphore set hold. sem_ids.rw_mutex
557 * remains locked on exit.
1da177e4 558 */
01b8b07a 559static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
1da177e4 560{
380af1b3
MS
561 struct sem_undo *un, *tu;
562 struct sem_queue *q, *tq;
01b8b07a 563 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
1da177e4 564
380af1b3 565 /* Free the existing undo structures for this semaphore set. */
4daa28f6 566 assert_spin_locked(&sma->sem_perm.lock);
380af1b3
MS
567 list_for_each_entry_safe(un, tu, &sma->list_id, list_id) {
568 list_del(&un->list_id);
569 spin_lock(&un->ulp->lock);
1da177e4 570 un->semid = -1;
380af1b3
MS
571 list_del_rcu(&un->list_proc);
572 spin_unlock(&un->ulp->lock);
573 call_rcu(&un->rcu, free_un);
574 }
1da177e4
LT
575
576 /* Wake up all pending processes and let them fail with EIDRM. */
380af1b3 577 list_for_each_entry_safe(q, tq, &sma->sem_pending, list) {
b97e820f 578 unlink_queue(sma, q);
d4212093 579 wake_up_sem_queue(q, -EIDRM);
1da177e4
LT
580 }
581
7ca7e564
ND
582 /* Remove the semaphore set from the IDR */
583 sem_rmid(ns, sma);
1da177e4
LT
584 sem_unlock(sma);
585
e3893534 586 ns->used_sems -= sma->sem_nsems;
1da177e4
LT
587 security_sem_free(sma);
588 ipc_rcu_putref(sma);
589}
590
591static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
592{
593 switch(version) {
594 case IPC_64:
595 return copy_to_user(buf, in, sizeof(*in));
596 case IPC_OLD:
597 {
598 struct semid_ds out;
599
600 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
601
602 out.sem_otime = in->sem_otime;
603 out.sem_ctime = in->sem_ctime;
604 out.sem_nsems = in->sem_nsems;
605
606 return copy_to_user(buf, &out, sizeof(out));
607 }
608 default:
609 return -EINVAL;
610 }
611}
612
4b9fcb0e
PP
613static int semctl_nolock(struct ipc_namespace *ns, int semid,
614 int cmd, int version, union semun arg)
1da177e4
LT
615{
616 int err = -EINVAL;
617 struct sem_array *sma;
618
619 switch(cmd) {
620 case IPC_INFO:
621 case SEM_INFO:
622 {
623 struct seminfo seminfo;
624 int max_id;
625
626 err = security_sem_semctl(NULL, cmd);
627 if (err)
628 return err;
629
630 memset(&seminfo,0,sizeof(seminfo));
e3893534
KK
631 seminfo.semmni = ns->sc_semmni;
632 seminfo.semmns = ns->sc_semmns;
633 seminfo.semmsl = ns->sc_semmsl;
634 seminfo.semopm = ns->sc_semopm;
1da177e4
LT
635 seminfo.semvmx = SEMVMX;
636 seminfo.semmnu = SEMMNU;
637 seminfo.semmap = SEMMAP;
638 seminfo.semume = SEMUME;
3e148c79 639 down_read(&sem_ids(ns).rw_mutex);
1da177e4 640 if (cmd == SEM_INFO) {
e3893534
KK
641 seminfo.semusz = sem_ids(ns).in_use;
642 seminfo.semaem = ns->used_sems;
1da177e4
LT
643 } else {
644 seminfo.semusz = SEMUSZ;
645 seminfo.semaem = SEMAEM;
646 }
7ca7e564 647 max_id = ipc_get_maxid(&sem_ids(ns));
3e148c79 648 up_read(&sem_ids(ns).rw_mutex);
1da177e4
LT
649 if (copy_to_user (arg.__buf, &seminfo, sizeof(struct seminfo)))
650 return -EFAULT;
651 return (max_id < 0) ? 0: max_id;
652 }
4b9fcb0e 653 case IPC_STAT:
1da177e4
LT
654 case SEM_STAT:
655 {
656 struct semid64_ds tbuf;
657 int id;
658
4b9fcb0e
PP
659 if (cmd == SEM_STAT) {
660 sma = sem_lock(ns, semid);
661 if (IS_ERR(sma))
662 return PTR_ERR(sma);
663 id = sma->sem_perm.id;
664 } else {
665 sma = sem_lock_check(ns, semid);
666 if (IS_ERR(sma))
667 return PTR_ERR(sma);
668 id = 0;
669 }
1da177e4
LT
670
671 err = -EACCES;
672 if (ipcperms (&sma->sem_perm, S_IRUGO))
673 goto out_unlock;
674
675 err = security_sem_semctl(sma, cmd);
676 if (err)
677 goto out_unlock;
678
023a5355
ND
679 memset(&tbuf, 0, sizeof(tbuf));
680
1da177e4
LT
681 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
682 tbuf.sem_otime = sma->sem_otime;
683 tbuf.sem_ctime = sma->sem_ctime;
684 tbuf.sem_nsems = sma->sem_nsems;
685 sem_unlock(sma);
686 if (copy_semid_to_user (arg.buf, &tbuf, version))
687 return -EFAULT;
688 return id;
689 }
690 default:
691 return -EINVAL;
692 }
693 return err;
694out_unlock:
695 sem_unlock(sma);
696 return err;
697}
698
e3893534
KK
699static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
700 int cmd, int version, union semun arg)
1da177e4
LT
701{
702 struct sem_array *sma;
703 struct sem* curr;
704 int err;
705 ushort fast_sem_io[SEMMSL_FAST];
706 ushort* sem_io = fast_sem_io;
707 int nsems;
708
023a5355
ND
709 sma = sem_lock_check(ns, semid);
710 if (IS_ERR(sma))
711 return PTR_ERR(sma);
1da177e4
LT
712
713 nsems = sma->sem_nsems;
714
1da177e4
LT
715 err = -EACCES;
716 if (ipcperms (&sma->sem_perm, (cmd==SETVAL||cmd==SETALL)?S_IWUGO:S_IRUGO))
717 goto out_unlock;
718
719 err = security_sem_semctl(sma, cmd);
720 if (err)
721 goto out_unlock;
722
723 err = -EACCES;
724 switch (cmd) {
725 case GETALL:
726 {
727 ushort __user *array = arg.array;
728 int i;
729
730 if(nsems > SEMMSL_FAST) {
6ff37972 731 sem_getref_and_unlock(sma);
1da177e4
LT
732
733 sem_io = ipc_alloc(sizeof(ushort)*nsems);
734 if(sem_io == NULL) {
6ff37972 735 sem_putref(sma);
1da177e4
LT
736 return -ENOMEM;
737 }
738
6ff37972 739 sem_lock_and_putref(sma);
1da177e4
LT
740 if (sma->sem_perm.deleted) {
741 sem_unlock(sma);
742 err = -EIDRM;
743 goto out_free;
744 }
745 }
746
747 for (i = 0; i < sma->sem_nsems; i++)
748 sem_io[i] = sma->sem_base[i].semval;
749 sem_unlock(sma);
750 err = 0;
751 if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
752 err = -EFAULT;
753 goto out_free;
754 }
755 case SETALL:
756 {
757 int i;
758 struct sem_undo *un;
759
6ff37972 760 sem_getref_and_unlock(sma);
1da177e4
LT
761
762 if(nsems > SEMMSL_FAST) {
763 sem_io = ipc_alloc(sizeof(ushort)*nsems);
764 if(sem_io == NULL) {
6ff37972 765 sem_putref(sma);
1da177e4
LT
766 return -ENOMEM;
767 }
768 }
769
770 if (copy_from_user (sem_io, arg.array, nsems*sizeof(ushort))) {
6ff37972 771 sem_putref(sma);
1da177e4
LT
772 err = -EFAULT;
773 goto out_free;
774 }
775
776 for (i = 0; i < nsems; i++) {
777 if (sem_io[i] > SEMVMX) {
6ff37972 778 sem_putref(sma);
1da177e4
LT
779 err = -ERANGE;
780 goto out_free;
781 }
782 }
6ff37972 783 sem_lock_and_putref(sma);
1da177e4
LT
784 if (sma->sem_perm.deleted) {
785 sem_unlock(sma);
786 err = -EIDRM;
787 goto out_free;
788 }
789
790 for (i = 0; i < nsems; i++)
791 sma->sem_base[i].semval = sem_io[i];
4daa28f6
MS
792
793 assert_spin_locked(&sma->sem_perm.lock);
794 list_for_each_entry(un, &sma->list_id, list_id) {
1da177e4
LT
795 for (i = 0; i < nsems; i++)
796 un->semadj[i] = 0;
4daa28f6 797 }
1da177e4
LT
798 sma->sem_ctime = get_seconds();
799 /* maybe some queued-up processes were waiting for this */
636c6be8 800 update_queue(sma, -1);
1da177e4
LT
801 err = 0;
802 goto out_unlock;
803 }
1da177e4
LT
804 /* GETVAL, GETPID, GETNCTN, GETZCNT, SETVAL: fall-through */
805 }
806 err = -EINVAL;
807 if(semnum < 0 || semnum >= nsems)
808 goto out_unlock;
809
810 curr = &sma->sem_base[semnum];
811
812 switch (cmd) {
813 case GETVAL:
814 err = curr->semval;
815 goto out_unlock;
816 case GETPID:
817 err = curr->sempid;
818 goto out_unlock;
819 case GETNCNT:
820 err = count_semncnt(sma,semnum);
821 goto out_unlock;
822 case GETZCNT:
823 err = count_semzcnt(sma,semnum);
824 goto out_unlock;
825 case SETVAL:
826 {
827 int val = arg.val;
828 struct sem_undo *un;
4daa28f6 829
1da177e4
LT
830 err = -ERANGE;
831 if (val > SEMVMX || val < 0)
832 goto out_unlock;
833
4daa28f6
MS
834 assert_spin_locked(&sma->sem_perm.lock);
835 list_for_each_entry(un, &sma->list_id, list_id)
1da177e4 836 un->semadj[semnum] = 0;
4daa28f6 837
1da177e4 838 curr->semval = val;
b488893a 839 curr->sempid = task_tgid_vnr(current);
1da177e4
LT
840 sma->sem_ctime = get_seconds();
841 /* maybe some queued-up processes were waiting for this */
636c6be8 842 update_queue(sma, semnum);
1da177e4
LT
843 err = 0;
844 goto out_unlock;
845 }
846 }
847out_unlock:
848 sem_unlock(sma);
849out_free:
850 if(sem_io != fast_sem_io)
851 ipc_free(sem_io, sizeof(ushort)*nsems);
852 return err;
853}
854
016d7132
PP
855static inline unsigned long
856copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
1da177e4
LT
857{
858 switch(version) {
859 case IPC_64:
016d7132 860 if (copy_from_user(out, buf, sizeof(*out)))
1da177e4 861 return -EFAULT;
1da177e4 862 return 0;
1da177e4
LT
863 case IPC_OLD:
864 {
865 struct semid_ds tbuf_old;
866
867 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
868 return -EFAULT;
869
016d7132
PP
870 out->sem_perm.uid = tbuf_old.sem_perm.uid;
871 out->sem_perm.gid = tbuf_old.sem_perm.gid;
872 out->sem_perm.mode = tbuf_old.sem_perm.mode;
1da177e4
LT
873
874 return 0;
875 }
876 default:
877 return -EINVAL;
878 }
879}
880
522bb2a2
PP
881/*
882 * This function handles some semctl commands which require the rw_mutex
883 * to be held in write mode.
884 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
885 */
21a4826a
PP
886static int semctl_down(struct ipc_namespace *ns, int semid,
887 int cmd, int version, union semun arg)
1da177e4
LT
888{
889 struct sem_array *sma;
890 int err;
016d7132 891 struct semid64_ds semid64;
1da177e4
LT
892 struct kern_ipc_perm *ipcp;
893
894 if(cmd == IPC_SET) {
016d7132 895 if (copy_semid_from_user(&semid64, arg.buf, version))
1da177e4 896 return -EFAULT;
1da177e4 897 }
073115d6 898
a5f75e7f
PP
899 ipcp = ipcctl_pre_down(&sem_ids(ns), semid, cmd, &semid64.sem_perm, 0);
900 if (IS_ERR(ipcp))
901 return PTR_ERR(ipcp);
073115d6 902
a5f75e7f 903 sma = container_of(ipcp, struct sem_array, sem_perm);
1da177e4
LT
904
905 err = security_sem_semctl(sma, cmd);
906 if (err)
907 goto out_unlock;
908
909 switch(cmd){
910 case IPC_RMID:
01b8b07a 911 freeary(ns, ipcp);
522bb2a2 912 goto out_up;
1da177e4 913 case IPC_SET:
8f4a3809 914 ipc_update_perm(&semid64.sem_perm, ipcp);
1da177e4 915 sma->sem_ctime = get_seconds();
1da177e4
LT
916 break;
917 default:
1da177e4 918 err = -EINVAL;
1da177e4 919 }
1da177e4
LT
920
921out_unlock:
922 sem_unlock(sma);
522bb2a2
PP
923out_up:
924 up_write(&sem_ids(ns).rw_mutex);
1da177e4
LT
925 return err;
926}
927
6673e0c3 928SYSCALL_DEFINE(semctl)(int semid, int semnum, int cmd, union semun arg)
1da177e4
LT
929{
930 int err = -EINVAL;
931 int version;
e3893534 932 struct ipc_namespace *ns;
1da177e4
LT
933
934 if (semid < 0)
935 return -EINVAL;
936
937 version = ipc_parse_version(&cmd);
e3893534 938 ns = current->nsproxy->ipc_ns;
1da177e4
LT
939
940 switch(cmd) {
941 case IPC_INFO:
942 case SEM_INFO:
4b9fcb0e 943 case IPC_STAT:
1da177e4 944 case SEM_STAT:
4b9fcb0e 945 err = semctl_nolock(ns, semid, cmd, version, arg);
1da177e4
LT
946 return err;
947 case GETALL:
948 case GETVAL:
949 case GETPID:
950 case GETNCNT:
951 case GETZCNT:
1da177e4
LT
952 case SETVAL:
953 case SETALL:
e3893534 954 err = semctl_main(ns,semid,semnum,cmd,version,arg);
1da177e4
LT
955 return err;
956 case IPC_RMID:
957 case IPC_SET:
21a4826a 958 err = semctl_down(ns, semid, cmd, version, arg);
1da177e4
LT
959 return err;
960 default:
961 return -EINVAL;
962 }
963}
6673e0c3
HC
964#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
965asmlinkage long SyS_semctl(int semid, int semnum, int cmd, union semun arg)
966{
967 return SYSC_semctl((int) semid, (int) semnum, (int) cmd, arg);
968}
969SYSCALL_ALIAS(sys_semctl, SyS_semctl);
970#endif
1da177e4 971
1da177e4
LT
972/* If the task doesn't already have a undo_list, then allocate one
973 * here. We guarantee there is only one thread using this undo list,
974 * and current is THE ONE
975 *
976 * If this allocation and assignment succeeds, but later
977 * portions of this code fail, there is no need to free the sem_undo_list.
978 * Just let it stay associated with the task, and it'll be freed later
979 * at exit time.
980 *
981 * This can block, so callers must hold no locks.
982 */
983static inline int get_undo_list(struct sem_undo_list **undo_listp)
984{
985 struct sem_undo_list *undo_list;
1da177e4
LT
986
987 undo_list = current->sysvsem.undo_list;
988 if (!undo_list) {
2453a306 989 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
1da177e4
LT
990 if (undo_list == NULL)
991 return -ENOMEM;
00a5dfdb 992 spin_lock_init(&undo_list->lock);
1da177e4 993 atomic_set(&undo_list->refcnt, 1);
4daa28f6
MS
994 INIT_LIST_HEAD(&undo_list->list_proc);
995
1da177e4
LT
996 current->sysvsem.undo_list = undo_list;
997 }
998 *undo_listp = undo_list;
999 return 0;
1000}
1001
bf17bb71 1002static struct sem_undo *__lookup_undo(struct sem_undo_list *ulp, int semid)
1da177e4 1003{
bf17bb71 1004 struct sem_undo *un;
4daa28f6 1005
bf17bb71
NP
1006 list_for_each_entry_rcu(un, &ulp->list_proc, list_proc) {
1007 if (un->semid == semid)
1008 return un;
1da177e4 1009 }
4daa28f6 1010 return NULL;
1da177e4
LT
1011}
1012
bf17bb71
NP
1013static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
1014{
1015 struct sem_undo *un;
1016
1017 assert_spin_locked(&ulp->lock);
1018
1019 un = __lookup_undo(ulp, semid);
1020 if (un) {
1021 list_del_rcu(&un->list_proc);
1022 list_add_rcu(&un->list_proc, &ulp->list_proc);
1023 }
1024 return un;
1025}
1026
4daa28f6
MS
1027/**
1028 * find_alloc_undo - Lookup (and if not present create) undo array
1029 * @ns: namespace
1030 * @semid: semaphore array id
1031 *
1032 * The function looks up (and if not present creates) the undo structure.
1033 * The size of the undo structure depends on the size of the semaphore
1034 * array, thus the alloc path is not that straightforward.
380af1b3
MS
1035 * Lifetime-rules: sem_undo is rcu-protected, on success, the function
1036 * performs a rcu_read_lock().
4daa28f6
MS
1037 */
1038static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
1da177e4
LT
1039{
1040 struct sem_array *sma;
1041 struct sem_undo_list *ulp;
1042 struct sem_undo *un, *new;
1043 int nsems;
1044 int error;
1045
1046 error = get_undo_list(&ulp);
1047 if (error)
1048 return ERR_PTR(error);
1049
380af1b3 1050 rcu_read_lock();
c530c6ac 1051 spin_lock(&ulp->lock);
1da177e4 1052 un = lookup_undo(ulp, semid);
c530c6ac 1053 spin_unlock(&ulp->lock);
1da177e4
LT
1054 if (likely(un!=NULL))
1055 goto out;
380af1b3 1056 rcu_read_unlock();
1da177e4
LT
1057
1058 /* no undo structure around - allocate one. */
4daa28f6 1059 /* step 1: figure out the size of the semaphore array */
023a5355
ND
1060 sma = sem_lock_check(ns, semid);
1061 if (IS_ERR(sma))
1062 return ERR_PTR(PTR_ERR(sma));
1063
1da177e4 1064 nsems = sma->sem_nsems;
6ff37972 1065 sem_getref_and_unlock(sma);
1da177e4 1066
4daa28f6 1067 /* step 2: allocate new undo structure */
4668edc3 1068 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
1da177e4 1069 if (!new) {
6ff37972 1070 sem_putref(sma);
1da177e4
LT
1071 return ERR_PTR(-ENOMEM);
1072 }
1da177e4 1073
380af1b3 1074 /* step 3: Acquire the lock on semaphore array */
6ff37972 1075 sem_lock_and_putref(sma);
1da177e4
LT
1076 if (sma->sem_perm.deleted) {
1077 sem_unlock(sma);
1da177e4
LT
1078 kfree(new);
1079 un = ERR_PTR(-EIDRM);
1080 goto out;
1081 }
380af1b3
MS
1082 spin_lock(&ulp->lock);
1083
1084 /*
1085 * step 4: check for races: did someone else allocate the undo struct?
1086 */
1087 un = lookup_undo(ulp, semid);
1088 if (un) {
1089 kfree(new);
1090 goto success;
1091 }
4daa28f6
MS
1092 /* step 5: initialize & link new undo structure */
1093 new->semadj = (short *) &new[1];
380af1b3 1094 new->ulp = ulp;
4daa28f6
MS
1095 new->semid = semid;
1096 assert_spin_locked(&ulp->lock);
380af1b3 1097 list_add_rcu(&new->list_proc, &ulp->list_proc);
4daa28f6
MS
1098 assert_spin_locked(&sma->sem_perm.lock);
1099 list_add(&new->list_id, &sma->list_id);
380af1b3 1100 un = new;
4daa28f6 1101
380af1b3 1102success:
c530c6ac 1103 spin_unlock(&ulp->lock);
380af1b3
MS
1104 rcu_read_lock();
1105 sem_unlock(sma);
1da177e4
LT
1106out:
1107 return un;
1108}
1109
d5460c99
HC
1110SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
1111 unsigned, nsops, const struct timespec __user *, timeout)
1da177e4
LT
1112{
1113 int error = -EINVAL;
1114 struct sem_array *sma;
1115 struct sembuf fast_sops[SEMOPM_FAST];
1116 struct sembuf* sops = fast_sops, *sop;
1117 struct sem_undo *un;
b78755ab 1118 int undos = 0, alter = 0, max;
1da177e4
LT
1119 struct sem_queue queue;
1120 unsigned long jiffies_left = 0;
e3893534
KK
1121 struct ipc_namespace *ns;
1122
1123 ns = current->nsproxy->ipc_ns;
1da177e4
LT
1124
1125 if (nsops < 1 || semid < 0)
1126 return -EINVAL;
e3893534 1127 if (nsops > ns->sc_semopm)
1da177e4
LT
1128 return -E2BIG;
1129 if(nsops > SEMOPM_FAST) {
1130 sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
1131 if(sops==NULL)
1132 return -ENOMEM;
1133 }
1134 if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
1135 error=-EFAULT;
1136 goto out_free;
1137 }
1138 if (timeout) {
1139 struct timespec _timeout;
1140 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1141 error = -EFAULT;
1142 goto out_free;
1143 }
1144 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1145 _timeout.tv_nsec >= 1000000000L) {
1146 error = -EINVAL;
1147 goto out_free;
1148 }
1149 jiffies_left = timespec_to_jiffies(&_timeout);
1150 }
1151 max = 0;
1152 for (sop = sops; sop < sops + nsops; sop++) {
1153 if (sop->sem_num >= max)
1154 max = sop->sem_num;
1155 if (sop->sem_flg & SEM_UNDO)
b78755ab
MS
1156 undos = 1;
1157 if (sop->sem_op != 0)
1da177e4
LT
1158 alter = 1;
1159 }
1da177e4 1160
1da177e4 1161 if (undos) {
4daa28f6 1162 un = find_alloc_undo(ns, semid);
1da177e4
LT
1163 if (IS_ERR(un)) {
1164 error = PTR_ERR(un);
1165 goto out_free;
1166 }
1167 } else
1168 un = NULL;
1169
023a5355
ND
1170 sma = sem_lock_check(ns, semid);
1171 if (IS_ERR(sma)) {
380af1b3
MS
1172 if (un)
1173 rcu_read_unlock();
023a5355 1174 error = PTR_ERR(sma);
1da177e4 1175 goto out_free;
023a5355
ND
1176 }
1177
1da177e4 1178 /*
4daa28f6 1179 * semid identifiers are not unique - find_alloc_undo may have
1da177e4 1180 * allocated an undo structure, it was invalidated by an RMID
4daa28f6 1181 * and now a new array with received the same id. Check and fail.
380af1b3
MS
1182 * This case can be detected checking un->semid. The existance of
1183 * "un" itself is guaranteed by rcu.
1da177e4 1184 */
4daa28f6 1185 error = -EIDRM;
380af1b3
MS
1186 if (un) {
1187 if (un->semid == -1) {
1188 rcu_read_unlock();
1189 goto out_unlock_free;
1190 } else {
1191 /*
1192 * rcu lock can be released, "un" cannot disappear:
1193 * - sem_lock is acquired, thus IPC_RMID is
1194 * impossible.
1195 * - exit_sem is impossible, it always operates on
1196 * current (or a dead task).
1197 */
1198
1199 rcu_read_unlock();
1200 }
1201 }
4daa28f6 1202
1da177e4
LT
1203 error = -EFBIG;
1204 if (max >= sma->sem_nsems)
1205 goto out_unlock_free;
1206
1207 error = -EACCES;
1208 if (ipcperms(&sma->sem_perm, alter ? S_IWUGO : S_IRUGO))
1209 goto out_unlock_free;
1210
1211 error = security_sem_semop(sma, sops, nsops, alter);
1212 if (error)
1213 goto out_unlock_free;
1214
b488893a 1215 error = try_atomic_semop (sma, sops, nsops, un, task_tgid_vnr(current));
1da177e4
LT
1216 if (error <= 0) {
1217 if (alter && error == 0)
636c6be8
MS
1218 update_queue(sma, (nsops == 1) ? sops[0].sem_num : -1);
1219
1da177e4
LT
1220 goto out_unlock_free;
1221 }
1222
1223 /* We need to sleep on this operation, so we put the current
1224 * task into the pending queue and go to sleep.
1225 */
1226
1da177e4
LT
1227 queue.sops = sops;
1228 queue.nsops = nsops;
1229 queue.undo = un;
b488893a 1230 queue.pid = task_tgid_vnr(current);
1da177e4
LT
1231 queue.alter = alter;
1232 if (alter)
a1193f8e 1233 list_add_tail(&queue.list, &sma->sem_pending);
1da177e4 1234 else
a1193f8e 1235 list_add(&queue.list, &sma->sem_pending);
1da177e4 1236
b97e820f
MS
1237 if (nsops == 1) {
1238 struct sem *curr;
1239 curr = &sma->sem_base[sops->sem_num];
1240
1241 if (alter)
1242 list_add_tail(&queue.simple_list, &curr->sem_pending);
1243 else
1244 list_add(&queue.simple_list, &curr->sem_pending);
1245 } else {
1246 INIT_LIST_HEAD(&queue.simple_list);
1247 sma->complex_count++;
1248 }
1249
1da177e4
LT
1250 queue.status = -EINTR;
1251 queue.sleeper = current;
1252 current->state = TASK_INTERRUPTIBLE;
1253 sem_unlock(sma);
1254
1255 if (timeout)
1256 jiffies_left = schedule_timeout(jiffies_left);
1257 else
1258 schedule();
1259
1260 error = queue.status;
1261 while(unlikely(error == IN_WAKEUP)) {
1262 cpu_relax();
1263 error = queue.status;
1264 }
1265
1266 if (error != -EINTR) {
1267 /* fast path: update_queue already obtained all requested
1268 * resources */
1269 goto out_free;
1270 }
1271
e3893534 1272 sma = sem_lock(ns, semid);
023a5355 1273 if (IS_ERR(sma)) {
1da177e4
LT
1274 error = -EIDRM;
1275 goto out_free;
1276 }
1277
1278 /*
1279 * If queue.status != -EINTR we are woken up by another process
1280 */
1281 error = queue.status;
1282 if (error != -EINTR) {
1283 goto out_unlock_free;
1284 }
1285
1286 /*
1287 * If an interrupt occurred we have to clean up the queue
1288 */
1289 if (timeout && jiffies_left == 0)
1290 error = -EAGAIN;
b97e820f 1291 unlink_queue(sma, &queue);
1da177e4
LT
1292
1293out_unlock_free:
1294 sem_unlock(sma);
1295out_free:
1296 if(sops != fast_sops)
1297 kfree(sops);
1298 return error;
1299}
1300
d5460c99
HC
1301SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
1302 unsigned, nsops)
1da177e4
LT
1303{
1304 return sys_semtimedop(semid, tsops, nsops, NULL);
1305}
1306
1307/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
1308 * parent and child tasks.
1da177e4
LT
1309 */
1310
1311int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
1312{
1313 struct sem_undo_list *undo_list;
1314 int error;
1315
1316 if (clone_flags & CLONE_SYSVSEM) {
1317 error = get_undo_list(&undo_list);
1318 if (error)
1319 return error;
1da177e4
LT
1320 atomic_inc(&undo_list->refcnt);
1321 tsk->sysvsem.undo_list = undo_list;
1322 } else
1323 tsk->sysvsem.undo_list = NULL;
1324
1325 return 0;
1326}
1327
1328/*
1329 * add semadj values to semaphores, free undo structures.
1330 * undo structures are not freed when semaphore arrays are destroyed
1331 * so some of them may be out of date.
1332 * IMPLEMENTATION NOTE: There is some confusion over whether the
1333 * set of adjustments that needs to be done should be done in an atomic
1334 * manner or not. That is, if we are attempting to decrement the semval
1335 * should we queue up and wait until we can do so legally?
1336 * The original implementation attempted to do this (queue and wait).
1337 * The current implementation does not do so. The POSIX standard
1338 * and SVID should be consulted to determine what behavior is mandated.
1339 */
1340void exit_sem(struct task_struct *tsk)
1341{
4daa28f6 1342 struct sem_undo_list *ulp;
1da177e4 1343
4daa28f6
MS
1344 ulp = tsk->sysvsem.undo_list;
1345 if (!ulp)
1da177e4 1346 return;
9edff4ab 1347 tsk->sysvsem.undo_list = NULL;
1da177e4 1348
4daa28f6 1349 if (!atomic_dec_and_test(&ulp->refcnt))
1da177e4
LT
1350 return;
1351
380af1b3 1352 for (;;) {
1da177e4 1353 struct sem_array *sma;
380af1b3
MS
1354 struct sem_undo *un;
1355 int semid;
4daa28f6
MS
1356 int i;
1357
380af1b3 1358 rcu_read_lock();
05725f7e
JP
1359 un = list_entry_rcu(ulp->list_proc.next,
1360 struct sem_undo, list_proc);
380af1b3
MS
1361 if (&un->list_proc == &ulp->list_proc)
1362 semid = -1;
1363 else
1364 semid = un->semid;
1365 rcu_read_unlock();
4daa28f6 1366
380af1b3
MS
1367 if (semid == -1)
1368 break;
1da177e4 1369
380af1b3 1370 sma = sem_lock_check(tsk->nsproxy->ipc_ns, un->semid);
1da177e4 1371
380af1b3
MS
1372 /* exit_sem raced with IPC_RMID, nothing to do */
1373 if (IS_ERR(sma))
1374 continue;
1da177e4 1375
bf17bb71 1376 un = __lookup_undo(ulp, semid);
380af1b3
MS
1377 if (un == NULL) {
1378 /* exit_sem raced with IPC_RMID+semget() that created
1379 * exactly the same semid. Nothing to do.
1380 */
1381 sem_unlock(sma);
1382 continue;
1383 }
1384
1385 /* remove un from the linked lists */
4daa28f6
MS
1386 assert_spin_locked(&sma->sem_perm.lock);
1387 list_del(&un->list_id);
1388
380af1b3
MS
1389 spin_lock(&ulp->lock);
1390 list_del_rcu(&un->list_proc);
1391 spin_unlock(&ulp->lock);
1392
4daa28f6
MS
1393 /* perform adjustments registered in un */
1394 for (i = 0; i < sma->sem_nsems; i++) {
5f921ae9 1395 struct sem * semaphore = &sma->sem_base[i];
4daa28f6
MS
1396 if (un->semadj[i]) {
1397 semaphore->semval += un->semadj[i];
1da177e4
LT
1398 /*
1399 * Range checks of the new semaphore value,
1400 * not defined by sus:
1401 * - Some unices ignore the undo entirely
1402 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
1403 * - some cap the value (e.g. FreeBSD caps
1404 * at 0, but doesn't enforce SEMVMX)
1405 *
1406 * Linux caps the semaphore value, both at 0
1407 * and at SEMVMX.
1408 *
1409 * Manfred <manfred@colorfullife.com>
1410 */
5f921ae9
IM
1411 if (semaphore->semval < 0)
1412 semaphore->semval = 0;
1413 if (semaphore->semval > SEMVMX)
1414 semaphore->semval = SEMVMX;
b488893a 1415 semaphore->sempid = task_tgid_vnr(current);
1da177e4
LT
1416 }
1417 }
1418 sma->sem_otime = get_seconds();
1419 /* maybe some queued-up processes were waiting for this */
636c6be8 1420 update_queue(sma, -1);
1da177e4 1421 sem_unlock(sma);
380af1b3
MS
1422
1423 call_rcu(&un->rcu, free_un);
1da177e4 1424 }
4daa28f6 1425 kfree(ulp);
1da177e4
LT
1426}
1427
1428#ifdef CONFIG_PROC_FS
19b4946c 1429static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
1da177e4 1430{
19b4946c
MW
1431 struct sem_array *sma = it;
1432
1433 return seq_printf(s,
b97e820f 1434 "%10d %10d %4o %10u %5u %5u %5u %5u %10lu %10lu\n",
19b4946c 1435 sma->sem_perm.key,
7ca7e564 1436 sma->sem_perm.id,
19b4946c
MW
1437 sma->sem_perm.mode,
1438 sma->sem_nsems,
1439 sma->sem_perm.uid,
1440 sma->sem_perm.gid,
1441 sma->sem_perm.cuid,
1442 sma->sem_perm.cgid,
1443 sma->sem_otime,
1444 sma->sem_ctime);
1da177e4
LT
1445}
1446#endif