blob: e9418df5ff3ecf0c3cb3bb6e6fbac9de5fcac828 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Christian Kujau624dffc2006-01-15 02:43:54 +010059 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * Enforced range limit on SEM_UNDO
61 * (c) 2001 Red Hat Inc <alan@redhat.com>
62 * Lockless wakeup
63 * (c) 2003 Manfred Spraul <manfred@colorfullife.com>
Steve Grubb073115d2006-04-02 17:07:33 -040064 *
65 * support for audit of ipc object properties and permission changes
66 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
Kirill Korotaeve3893532006-10-02 02:18:22 -070067 *
68 * namespaces support
69 * OpenVZ, SWsoft Inc.
70 * Pavel Emelianov <xemul@openvz.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 */
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/security.h>
79#include <linux/syscalls.h>
80#include <linux/audit.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080081#include <linux/capability.h>
Mike Waychison19b49462005-09-06 15:17:10 -070082#include <linux/seq_file.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070083#include <linux/rwsem.h>
Kirill Korotaeve3893532006-10-02 02:18:22 -070084#include <linux/nsproxy.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080085#include <linux/ipc_namespace.h>
Ingo Molnar5f921ae2006-03-26 01:37:17 -080086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include <asm/uaccess.h>
88#include "util.h"
89
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080090#define sem_ids(ns) ((ns)->ids[IPC_SEM_IDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Kirill Korotaeve3893532006-10-02 02:18:22 -070092#define sem_unlock(sma) ipc_unlock(&(sma)->sem_perm)
Nadia Derbey1b531f22007-10-18 23:40:55 -070093#define sem_checkid(sma, semid) ipc_checkid(&sma->sem_perm, semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Nadia Derbey7748dbf2007-10-18 23:40:49 -070095static int newary(struct ipc_namespace *, struct ipc_params *);
Pierre Peiffer01b8b072008-02-08 04:18:57 -080096static void freeary(struct ipc_namespace *, struct kern_ipc_perm *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -070098static int sysvipc_sem_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#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
Kirill Korotaeve3893532006-10-02 02:18:22 -0700113#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]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800118void sem_init_ns(struct ipc_namespace *ns)
Kirill Korotaeve3893532006-10-02 02:18:22 -0700119{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700120 ns->sc_semmsl = SEMMSL;
121 ns->sc_semmns = SEMMNS;
122 ns->sc_semopm = SEMOPM;
123 ns->sc_semmni = SEMMNI;
124 ns->used_sems = 0;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800125 ipc_init_ids(&ns->ids[IPC_SEM_IDS]);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700126}
127
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800128#ifdef CONFIG_IPC_NS
Kirill Korotaeve3893532006-10-02 02:18:22 -0700129void sem_exit_ns(struct ipc_namespace *ns)
130{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800131 free_ipcs(ns, &sem_ids(ns), freeary);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700132}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800133#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135void __init sem_init (void)
136{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800137 sem_init_ns(&init_ipc_ns);
Mike Waychison19b49462005-09-06 15:17:10 -0700138 ipc_init_proc_interface("sysvipc/sem",
139 " key semid perms nsems uid gid cuid cgid otime ctime\n",
Kirill Korotaeve3893532006-10-02 02:18:22 -0700140 IPC_SEM_IDS, sysvipc_sem_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Nadia Derbey3e148c72007-10-18 23:40:54 -0700143/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700144 * sem_lock_(check_) routines are called in the paths where the rw_mutex
145 * is not held.
146 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700147static inline struct sem_array *sem_lock(struct ipc_namespace *ns, int id)
148{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700149 struct kern_ipc_perm *ipcp = ipc_lock(&sem_ids(ns), id);
150
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800151 if (IS_ERR(ipcp))
152 return (struct sem_array *)ipcp;
153
Nadia Derbey03f02c72007-10-18 23:40:51 -0700154 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700155}
156
157static inline struct sem_array *sem_lock_check(struct ipc_namespace *ns,
158 int id)
159{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700160 struct kern_ipc_perm *ipcp = ipc_lock_check(&sem_ids(ns), id);
161
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800162 if (IS_ERR(ipcp))
163 return (struct sem_array *)ipcp;
164
Nadia Derbey03f02c72007-10-18 23:40:51 -0700165 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700166}
167
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700168static inline void sem_lock_and_putref(struct sem_array *sma)
169{
170 ipc_lock_by_ptr(&sma->sem_perm);
171 ipc_rcu_putref(sma);
172}
173
174static inline void sem_getref_and_unlock(struct sem_array *sma)
175{
176 ipc_rcu_getref(sma);
177 ipc_unlock(&(sma)->sem_perm);
178}
179
180static inline void sem_putref(struct sem_array *sma)
181{
182 ipc_lock_by_ptr(&sma->sem_perm);
183 ipc_rcu_putref(sma);
184 ipc_unlock(&(sma)->sem_perm);
185}
186
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700187static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
188{
189 ipc_rmid(&sem_ids(ns), &s->sem_perm);
190}
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192/*
193 * Lockless wakeup algorithm:
194 * Without the check/retry algorithm a lockless wakeup is possible:
195 * - queue.status is initialized to -EINTR before blocking.
196 * - wakeup is performed by
197 * * unlinking the queue entry from sma->sem_pending
198 * * setting queue.status to IN_WAKEUP
199 * This is the notification for the blocked thread that a
200 * result value is imminent.
201 * * call wake_up_process
202 * * set queue.status to the final value.
203 * - the previously blocked thread checks queue.status:
204 * * if it's IN_WAKEUP, then it must wait until the value changes
205 * * if it's not -EINTR, then the operation was completed by
206 * update_queue. semtimedop can return queue.status without
Ingo Molnar5f921ae2006-03-26 01:37:17 -0800207 * performing any operation on the sem array.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * * otherwise it must acquire the spinlock and check what's up.
209 *
210 * The two-stage algorithm is necessary to protect against the following
211 * races:
212 * - if queue.status is set after wake_up_process, then the woken up idle
213 * thread could race forward and try (and fail) to acquire sma->lock
214 * before update_queue had a chance to set queue.status
215 * - if queue.status is written before wake_up_process and if the
216 * blocked process is woken up by a signal between writing
217 * queue.status and the wake_up_process, then the woken up
218 * process could return from semtimedop and die by calling
219 * sys_exit before wake_up_process is called. Then wake_up_process
220 * will oops, because the task structure is already invalid.
221 * (yes, this happened on s390 with sysv msg).
222 *
223 */
224#define IN_WAKEUP 1
225
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700226/**
227 * newary - Create a new semaphore set
228 * @ns: namespace
229 * @params: ptr to the structure that contains key, semflg and nsems
230 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700231 * Called with sem_ids.rw_mutex held (as a writer)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700232 */
233
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700234static int newary(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 int id;
237 int retval;
238 struct sem_array *sma;
239 int size;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700240 key_t key = params->key;
241 int nsems = params->u.nsems;
242 int semflg = params->flg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 if (!nsems)
245 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700246 if (ns->used_sems + nsems > ns->sc_semmns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -ENOSPC;
248
249 size = sizeof (*sma) + nsems * sizeof (struct sem);
250 sma = ipc_rcu_alloc(size);
251 if (!sma) {
252 return -ENOMEM;
253 }
254 memset (sma, 0, size);
255
256 sma->sem_perm.mode = (semflg & S_IRWXUGO);
257 sma->sem_perm.key = key;
258
259 sma->sem_perm.security = NULL;
260 retval = security_sem_alloc(sma);
261 if (retval) {
262 ipc_rcu_putref(sma);
263 return retval;
264 }
265
Kirill Korotaeve3893532006-10-02 02:18:22 -0700266 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700267 if (id < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 security_sem_free(sma);
269 ipc_rcu_putref(sma);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700270 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Kirill Korotaeve3893532006-10-02 02:18:22 -0700272 ns->used_sems += nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 sma->sem_base = (struct sem *) &sma[1];
275 /* sma->sem_pending = NULL; */
276 sma->sem_pending_last = &sma->sem_pending;
277 /* sma->undo = NULL; */
278 sma->sem_nsems = nsems;
279 sma->sem_ctime = get_seconds();
280 sem_unlock(sma);
281
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700282 return sma->sem_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700285
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700286/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700287 * Called with sem_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700288 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700289static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700291 struct sem_array *sma;
292
293 sma = container_of(ipcp, struct sem_array, sem_perm);
294 return security_sem_associate(sma, semflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700295}
296
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700297/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700298 * Called with sem_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700299 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700300static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
301 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700302{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700303 struct sem_array *sma;
304
305 sma = container_of(ipcp, struct sem_array, sem_perm);
306 if (params->u.nsems > sma->sem_nsems)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700307 return -EINVAL;
308
309 return 0;
310}
311
312asmlinkage long sys_semget(key_t key, int nsems, int semflg)
313{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700314 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700315 struct ipc_ops sem_ops;
316 struct ipc_params sem_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Kirill Korotaeve3893532006-10-02 02:18:22 -0700318 ns = current->nsproxy->ipc_ns;
319
320 if (nsems < 0 || nsems > ns->sc_semmsl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -EINVAL;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700322
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700323 sem_ops.getnew = newary;
324 sem_ops.associate = sem_security;
325 sem_ops.more_checks = sem_more_checks;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700326
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700327 sem_params.key = key;
328 sem_params.flg = semflg;
329 sem_params.u.nsems = nsems;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700330
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700331 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
334/* Manage the doubly linked list sma->sem_pending as a FIFO:
335 * insert new queue elements at the tail sma->sem_pending_last.
336 */
337static inline void append_to_queue (struct sem_array * sma,
338 struct sem_queue * q)
339{
340 *(q->prev = sma->sem_pending_last) = q;
341 *(sma->sem_pending_last = &q->next) = NULL;
342}
343
344static inline void prepend_to_queue (struct sem_array * sma,
345 struct sem_queue * q)
346{
347 q->next = sma->sem_pending;
348 *(q->prev = &sma->sem_pending) = q;
349 if (q->next)
350 q->next->prev = &q->next;
351 else /* sma->sem_pending_last == &sma->sem_pending */
352 sma->sem_pending_last = &q->next;
353}
354
355static inline void remove_from_queue (struct sem_array * sma,
356 struct sem_queue * q)
357{
358 *(q->prev) = q->next;
359 if (q->next)
360 q->next->prev = q->prev;
361 else /* sma->sem_pending_last == &q->next */
362 sma->sem_pending_last = q->prev;
363 q->prev = NULL; /* mark as removed */
364}
365
366/*
367 * Determine whether a sequence of semaphore operations would succeed
368 * all at once. Return 0 if yes, 1 if need to sleep, else return error code.
369 */
370
371static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
372 int nsops, struct sem_undo *un, int pid)
373{
374 int result, sem_op;
375 struct sembuf *sop;
376 struct sem * curr;
377
378 for (sop = sops; sop < sops + nsops; sop++) {
379 curr = sma->sem_base + sop->sem_num;
380 sem_op = sop->sem_op;
381 result = curr->semval;
382
383 if (!sem_op && result)
384 goto would_block;
385
386 result += sem_op;
387 if (result < 0)
388 goto would_block;
389 if (result > SEMVMX)
390 goto out_of_range;
391 if (sop->sem_flg & SEM_UNDO) {
392 int undo = un->semadj[sop->sem_num] - sem_op;
393 /*
394 * Exceeding the undo range is an error.
395 */
396 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
397 goto out_of_range;
398 }
399 curr->semval = result;
400 }
401
402 sop--;
403 while (sop >= sops) {
404 sma->sem_base[sop->sem_num].sempid = pid;
405 if (sop->sem_flg & SEM_UNDO)
406 un->semadj[sop->sem_num] -= sop->sem_op;
407 sop--;
408 }
409
410 sma->sem_otime = get_seconds();
411 return 0;
412
413out_of_range:
414 result = -ERANGE;
415 goto undo;
416
417would_block:
418 if (sop->sem_flg & IPC_NOWAIT)
419 result = -EAGAIN;
420 else
421 result = 1;
422
423undo:
424 sop--;
425 while (sop >= sops) {
426 sma->sem_base[sop->sem_num].semval -= sop->sem_op;
427 sop--;
428 }
429
430 return result;
431}
432
433/* Go through the pending queue for the indicated semaphore
434 * looking for tasks that can be completed.
435 */
436static void update_queue (struct sem_array * sma)
437{
438 int error;
439 struct sem_queue * q;
440
441 q = sma->sem_pending;
442 while(q) {
443 error = try_atomic_semop(sma, q->sops, q->nsops,
444 q->undo, q->pid);
445
446 /* Does q->sleeper still need to sleep? */
447 if (error <= 0) {
448 struct sem_queue *n;
449 remove_from_queue(sma,q);
450 q->status = IN_WAKEUP;
451 /*
452 * Continue scanning. The next operation
453 * that must be checked depends on the type of the
454 * completed operation:
455 * - if the operation modified the array, then
456 * restart from the head of the queue and
457 * check for threads that might be waiting
458 * for semaphore values to become 0.
459 * - if the operation didn't modify the array,
460 * then just continue.
461 */
462 if (q->alter)
463 n = sma->sem_pending;
464 else
465 n = q->next;
466 wake_up_process(q->sleeper);
467 /* hands-off: q will disappear immediately after
468 * writing q->status.
469 */
Linus Torvalds1224b372005-12-24 12:19:38 -0800470 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 q->status = error;
472 q = n;
473 } else {
474 q = q->next;
475 }
476 }
477}
478
479/* The following counts are associated to each semaphore:
480 * semncnt number of tasks waiting on semval being nonzero
481 * semzcnt number of tasks waiting on semval being zero
482 * This model assumes that a task waits on exactly one semaphore.
483 * Since semaphore operations are to be performed atomically, tasks actually
484 * wait on a whole sequence of semaphores simultaneously.
485 * The counts we return here are a rough approximation, but still
486 * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
487 */
488static int count_semncnt (struct sem_array * sma, ushort semnum)
489{
490 int semncnt;
491 struct sem_queue * q;
492
493 semncnt = 0;
494 for (q = sma->sem_pending; q; q = q->next) {
495 struct sembuf * sops = q->sops;
496 int nsops = q->nsops;
497 int i;
498 for (i = 0; i < nsops; i++)
499 if (sops[i].sem_num == semnum
500 && (sops[i].sem_op < 0)
501 && !(sops[i].sem_flg & IPC_NOWAIT))
502 semncnt++;
503 }
504 return semncnt;
505}
506static int count_semzcnt (struct sem_array * sma, ushort semnum)
507{
508 int semzcnt;
509 struct sem_queue * q;
510
511 semzcnt = 0;
512 for (q = sma->sem_pending; q; q = q->next) {
513 struct sembuf * sops = q->sops;
514 int nsops = q->nsops;
515 int i;
516 for (i = 0; i < nsops; i++)
517 if (sops[i].sem_num == semnum
518 && (sops[i].sem_op == 0)
519 && !(sops[i].sem_flg & IPC_NOWAIT))
520 semzcnt++;
521 }
522 return semzcnt;
523}
524
Nadia Derbey3e148c72007-10-18 23:40:54 -0700525/* Free a semaphore set. freeary() is called with sem_ids.rw_mutex locked
526 * as a writer and the spinlock for this semaphore set hold. sem_ids.rw_mutex
527 * remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800529static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct sem_undo *un;
532 struct sem_queue *q;
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800533 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* Invalidate the existing undo structures for this semaphore set.
536 * (They will be freed without any further action in exit_sem()
537 * or during the next semop.)
538 */
539 for (un = sma->undo; un; un = un->id_next)
540 un->semid = -1;
541
542 /* Wake up all pending processes and let them fail with EIDRM. */
543 q = sma->sem_pending;
544 while(q) {
545 struct sem_queue *n;
546 /* lazy remove_from_queue: we are killing the whole queue */
547 q->prev = NULL;
548 n = q->next;
549 q->status = IN_WAKEUP;
550 wake_up_process(q->sleeper); /* doesn't sleep */
Manfred Spraul6003a932005-12-23 23:57:41 +0100551 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 q->status = -EIDRM; /* hands-off q */
553 q = n;
554 }
555
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700556 /* Remove the semaphore set from the IDR */
557 sem_rmid(ns, sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 sem_unlock(sma);
559
Kirill Korotaeve3893532006-10-02 02:18:22 -0700560 ns->used_sems -= sma->sem_nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 security_sem_free(sma);
562 ipc_rcu_putref(sma);
563}
564
565static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
566{
567 switch(version) {
568 case IPC_64:
569 return copy_to_user(buf, in, sizeof(*in));
570 case IPC_OLD:
571 {
572 struct semid_ds out;
573
574 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
575
576 out.sem_otime = in->sem_otime;
577 out.sem_ctime = in->sem_ctime;
578 out.sem_nsems = in->sem_nsems;
579
580 return copy_to_user(buf, &out, sizeof(out));
581 }
582 default:
583 return -EINVAL;
584 }
585}
586
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800587static int semctl_nolock(struct ipc_namespace *ns, int semid,
588 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 int err = -EINVAL;
591 struct sem_array *sma;
592
593 switch(cmd) {
594 case IPC_INFO:
595 case SEM_INFO:
596 {
597 struct seminfo seminfo;
598 int max_id;
599
600 err = security_sem_semctl(NULL, cmd);
601 if (err)
602 return err;
603
604 memset(&seminfo,0,sizeof(seminfo));
Kirill Korotaeve3893532006-10-02 02:18:22 -0700605 seminfo.semmni = ns->sc_semmni;
606 seminfo.semmns = ns->sc_semmns;
607 seminfo.semmsl = ns->sc_semmsl;
608 seminfo.semopm = ns->sc_semopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 seminfo.semvmx = SEMVMX;
610 seminfo.semmnu = SEMMNU;
611 seminfo.semmap = SEMMAP;
612 seminfo.semume = SEMUME;
Nadia Derbey3e148c72007-10-18 23:40:54 -0700613 down_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (cmd == SEM_INFO) {
Kirill Korotaeve3893532006-10-02 02:18:22 -0700615 seminfo.semusz = sem_ids(ns).in_use;
616 seminfo.semaem = ns->used_sems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 } else {
618 seminfo.semusz = SEMUSZ;
619 seminfo.semaem = SEMAEM;
620 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700621 max_id = ipc_get_maxid(&sem_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700622 up_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (copy_to_user (arg.__buf, &seminfo, sizeof(struct seminfo)))
624 return -EFAULT;
625 return (max_id < 0) ? 0: max_id;
626 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800627 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 case SEM_STAT:
629 {
630 struct semid64_ds tbuf;
631 int id;
632
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800633 if (cmd == SEM_STAT) {
634 sma = sem_lock(ns, semid);
635 if (IS_ERR(sma))
636 return PTR_ERR(sma);
637 id = sma->sem_perm.id;
638 } else {
639 sma = sem_lock_check(ns, semid);
640 if (IS_ERR(sma))
641 return PTR_ERR(sma);
642 id = 0;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 err = -EACCES;
646 if (ipcperms (&sma->sem_perm, S_IRUGO))
647 goto out_unlock;
648
649 err = security_sem_semctl(sma, cmd);
650 if (err)
651 goto out_unlock;
652
Nadia Derbey023a5352007-10-18 23:40:51 -0700653 memset(&tbuf, 0, sizeof(tbuf));
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
656 tbuf.sem_otime = sma->sem_otime;
657 tbuf.sem_ctime = sma->sem_ctime;
658 tbuf.sem_nsems = sma->sem_nsems;
659 sem_unlock(sma);
660 if (copy_semid_to_user (arg.buf, &tbuf, version))
661 return -EFAULT;
662 return id;
663 }
664 default:
665 return -EINVAL;
666 }
667 return err;
668out_unlock:
669 sem_unlock(sma);
670 return err;
671}
672
Kirill Korotaeve3893532006-10-02 02:18:22 -0700673static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
674 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 struct sem_array *sma;
677 struct sem* curr;
678 int err;
679 ushort fast_sem_io[SEMMSL_FAST];
680 ushort* sem_io = fast_sem_io;
681 int nsems;
682
Nadia Derbey023a5352007-10-18 23:40:51 -0700683 sma = sem_lock_check(ns, semid);
684 if (IS_ERR(sma))
685 return PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 nsems = sma->sem_nsems;
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 err = -EACCES;
690 if (ipcperms (&sma->sem_perm, (cmd==SETVAL||cmd==SETALL)?S_IWUGO:S_IRUGO))
691 goto out_unlock;
692
693 err = security_sem_semctl(sma, cmd);
694 if (err)
695 goto out_unlock;
696
697 err = -EACCES;
698 switch (cmd) {
699 case GETALL:
700 {
701 ushort __user *array = arg.array;
702 int i;
703
704 if(nsems > SEMMSL_FAST) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700705 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 sem_io = ipc_alloc(sizeof(ushort)*nsems);
708 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700709 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return -ENOMEM;
711 }
712
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700713 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (sma->sem_perm.deleted) {
715 sem_unlock(sma);
716 err = -EIDRM;
717 goto out_free;
718 }
719 }
720
721 for (i = 0; i < sma->sem_nsems; i++)
722 sem_io[i] = sma->sem_base[i].semval;
723 sem_unlock(sma);
724 err = 0;
725 if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
726 err = -EFAULT;
727 goto out_free;
728 }
729 case SETALL:
730 {
731 int i;
732 struct sem_undo *un;
733
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700734 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 if(nsems > SEMMSL_FAST) {
737 sem_io = ipc_alloc(sizeof(ushort)*nsems);
738 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700739 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return -ENOMEM;
741 }
742 }
743
744 if (copy_from_user (sem_io, arg.array, nsems*sizeof(ushort))) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700745 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 err = -EFAULT;
747 goto out_free;
748 }
749
750 for (i = 0; i < nsems; i++) {
751 if (sem_io[i] > SEMVMX) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700752 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 err = -ERANGE;
754 goto out_free;
755 }
756 }
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700757 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (sma->sem_perm.deleted) {
759 sem_unlock(sma);
760 err = -EIDRM;
761 goto out_free;
762 }
763
764 for (i = 0; i < nsems; i++)
765 sma->sem_base[i].semval = sem_io[i];
766 for (un = sma->undo; un; un = un->id_next)
767 for (i = 0; i < nsems; i++)
768 un->semadj[i] = 0;
769 sma->sem_ctime = get_seconds();
770 /* maybe some queued-up processes were waiting for this */
771 update_queue(sma);
772 err = 0;
773 goto out_unlock;
774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 /* GETVAL, GETPID, GETNCTN, GETZCNT, SETVAL: fall-through */
776 }
777 err = -EINVAL;
778 if(semnum < 0 || semnum >= nsems)
779 goto out_unlock;
780
781 curr = &sma->sem_base[semnum];
782
783 switch (cmd) {
784 case GETVAL:
785 err = curr->semval;
786 goto out_unlock;
787 case GETPID:
788 err = curr->sempid;
789 goto out_unlock;
790 case GETNCNT:
791 err = count_semncnt(sma,semnum);
792 goto out_unlock;
793 case GETZCNT:
794 err = count_semzcnt(sma,semnum);
795 goto out_unlock;
796 case SETVAL:
797 {
798 int val = arg.val;
799 struct sem_undo *un;
800 err = -ERANGE;
801 if (val > SEMVMX || val < 0)
802 goto out_unlock;
803
804 for (un = sma->undo; un; un = un->id_next)
805 un->semadj[semnum] = 0;
806 curr->semval = val;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700807 curr->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 sma->sem_ctime = get_seconds();
809 /* maybe some queued-up processes were waiting for this */
810 update_queue(sma);
811 err = 0;
812 goto out_unlock;
813 }
814 }
815out_unlock:
816 sem_unlock(sma);
817out_free:
818 if(sem_io != fast_sem_io)
819 ipc_free(sem_io, sizeof(ushort)*nsems);
820 return err;
821}
822
Pierre Peiffer016d7132008-04-29 01:00:50 -0700823static inline unsigned long
824copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 switch(version) {
827 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700828 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 case IPC_OLD:
832 {
833 struct semid_ds tbuf_old;
834
835 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
836 return -EFAULT;
837
Pierre Peiffer016d7132008-04-29 01:00:50 -0700838 out->sem_perm.uid = tbuf_old.sem_perm.uid;
839 out->sem_perm.gid = tbuf_old.sem_perm.gid;
840 out->sem_perm.mode = tbuf_old.sem_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 return 0;
843 }
844 default:
845 return -EINVAL;
846 }
847}
848
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700849/*
850 * This function handles some semctl commands which require the rw_mutex
851 * to be held in write mode.
852 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
853 */
Pierre Peiffer21a48262008-04-29 01:00:49 -0700854static int semctl_down(struct ipc_namespace *ns, int semid,
855 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 struct sem_array *sma;
858 int err;
Pierre Peiffer016d7132008-04-29 01:00:50 -0700859 struct semid64_ds semid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct kern_ipc_perm *ipcp;
861
862 if(cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700863 if (copy_semid_from_user(&semid64, arg.buf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700867 ipcp = ipcctl_pre_down(&sem_ids(ns), semid, cmd, &semid64.sem_perm, 0);
868 if (IS_ERR(ipcp))
869 return PTR_ERR(ipcp);
Steve Grubb073115d2006-04-02 17:07:33 -0400870
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700871 sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 err = security_sem_semctl(sma, cmd);
874 if (err)
875 goto out_unlock;
876
877 switch(cmd){
878 case IPC_RMID:
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800879 freeary(ns, ipcp);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700880 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 case IPC_SET:
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700882 ipc_update_perm(&semid64.sem_perm, ipcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 sma->sem_ctime = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 break;
885 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889out_unlock:
890 sem_unlock(sma);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700891out_up:
892 up_write(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return err;
894}
895
896asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg)
897{
898 int err = -EINVAL;
899 int version;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700900 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 if (semid < 0)
903 return -EINVAL;
904
905 version = ipc_parse_version(&cmd);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700906 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 switch(cmd) {
909 case IPC_INFO:
910 case SEM_INFO:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800911 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 case SEM_STAT:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800913 err = semctl_nolock(ns, semid, cmd, version, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return err;
915 case GETALL:
916 case GETVAL:
917 case GETPID:
918 case GETNCNT:
919 case GETZCNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 case SETVAL:
921 case SETALL:
Kirill Korotaeve3893532006-10-02 02:18:22 -0700922 err = semctl_main(ns,semid,semnum,cmd,version,arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return err;
924 case IPC_RMID:
925 case IPC_SET:
Pierre Peiffer21a48262008-04-29 01:00:49 -0700926 err = semctl_down(ns, semid, cmd, version, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return err;
928 default:
929 return -EINVAL;
930 }
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/* If the task doesn't already have a undo_list, then allocate one
934 * here. We guarantee there is only one thread using this undo list,
935 * and current is THE ONE
936 *
937 * If this allocation and assignment succeeds, but later
938 * portions of this code fail, there is no need to free the sem_undo_list.
939 * Just let it stay associated with the task, and it'll be freed later
940 * at exit time.
941 *
942 * This can block, so callers must hold no locks.
943 */
944static inline int get_undo_list(struct sem_undo_list **undo_listp)
945{
946 struct sem_undo_list *undo_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 undo_list = current->sysvsem.undo_list;
949 if (!undo_list) {
Matt Helsley2453a302006-10-02 02:18:25 -0700950 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (undo_list == NULL)
952 return -ENOMEM;
Ingo Molnar00a5dfd2005-08-05 23:05:27 +0200953 spin_lock_init(&undo_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 atomic_set(&undo_list->refcnt, 1);
955 current->sysvsem.undo_list = undo_list;
956 }
957 *undo_listp = undo_list;
958 return 0;
959}
960
961static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
962{
963 struct sem_undo **last, *un;
964
965 last = &ulp->proc_list;
966 un = *last;
967 while(un != NULL) {
968 if(un->semid==semid)
969 break;
970 if(un->semid==-1) {
971 *last=un->proc_next;
972 kfree(un);
973 } else {
974 last=&un->proc_next;
975 }
976 un=*last;
977 }
978 return un;
979}
980
Kirill Korotaeve3893532006-10-02 02:18:22 -0700981static struct sem_undo *find_undo(struct ipc_namespace *ns, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 struct sem_array *sma;
984 struct sem_undo_list *ulp;
985 struct sem_undo *un, *new;
986 int nsems;
987 int error;
988
989 error = get_undo_list(&ulp);
990 if (error)
991 return ERR_PTR(error);
992
Pierre Peifferc530c6a2007-10-18 23:40:55 -0700993 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 un = lookup_undo(ulp, semid);
Pierre Peifferc530c6a2007-10-18 23:40:55 -0700995 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (likely(un!=NULL))
997 goto out;
998
999 /* no undo structure around - allocate one. */
Nadia Derbey023a5352007-10-18 23:40:51 -07001000 sma = sem_lock_check(ns, semid);
1001 if (IS_ERR(sma))
1002 return ERR_PTR(PTR_ERR(sma));
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 nsems = sma->sem_nsems;
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001005 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Burman Yan4668edc2006-12-06 20:38:51 -08001007 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (!new) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001009 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 return ERR_PTR(-ENOMEM);
1011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 new->semadj = (short *) &new[1];
1013 new->semid = semid;
1014
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001015 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 un = lookup_undo(ulp, semid);
1017 if (un) {
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001018 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 kfree(new);
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001020 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto out;
1022 }
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001023 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (sma->sem_perm.deleted) {
1025 sem_unlock(sma);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001026 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 kfree(new);
1028 un = ERR_PTR(-EIDRM);
1029 goto out;
1030 }
1031 new->proc_next = ulp->proc_list;
1032 ulp->proc_list = new;
1033 new->id_next = sma->undo;
1034 sma->undo = new;
1035 sem_unlock(sma);
1036 un = new;
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001037 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038out:
1039 return un;
1040}
1041
1042asmlinkage long sys_semtimedop(int semid, struct sembuf __user *tsops,
1043 unsigned nsops, const struct timespec __user *timeout)
1044{
1045 int error = -EINVAL;
1046 struct sem_array *sma;
1047 struct sembuf fast_sops[SEMOPM_FAST];
1048 struct sembuf* sops = fast_sops, *sop;
1049 struct sem_undo *un;
Manfred Spraulb78755a2005-06-23 00:10:06 -07001050 int undos = 0, alter = 0, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 struct sem_queue queue;
1052 unsigned long jiffies_left = 0;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001053 struct ipc_namespace *ns;
1054
1055 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 if (nsops < 1 || semid < 0)
1058 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001059 if (nsops > ns->sc_semopm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return -E2BIG;
1061 if(nsops > SEMOPM_FAST) {
1062 sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
1063 if(sops==NULL)
1064 return -ENOMEM;
1065 }
1066 if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
1067 error=-EFAULT;
1068 goto out_free;
1069 }
1070 if (timeout) {
1071 struct timespec _timeout;
1072 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1073 error = -EFAULT;
1074 goto out_free;
1075 }
1076 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1077 _timeout.tv_nsec >= 1000000000L) {
1078 error = -EINVAL;
1079 goto out_free;
1080 }
1081 jiffies_left = timespec_to_jiffies(&_timeout);
1082 }
1083 max = 0;
1084 for (sop = sops; sop < sops + nsops; sop++) {
1085 if (sop->sem_num >= max)
1086 max = sop->sem_num;
1087 if (sop->sem_flg & SEM_UNDO)
Manfred Spraulb78755a2005-06-23 00:10:06 -07001088 undos = 1;
1089 if (sop->sem_op != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 alter = 1;
1091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093retry_undos:
1094 if (undos) {
Kirill Korotaeve3893532006-10-02 02:18:22 -07001095 un = find_undo(ns, semid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (IS_ERR(un)) {
1097 error = PTR_ERR(un);
1098 goto out_free;
1099 }
1100 } else
1101 un = NULL;
1102
Nadia Derbey023a5352007-10-18 23:40:51 -07001103 sma = sem_lock_check(ns, semid);
1104 if (IS_ERR(sma)) {
1105 error = PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -07001107 }
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /*
Nadia Derbey023a5352007-10-18 23:40:51 -07001110 * semid identifiers are not unique - find_undo may have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * allocated an undo structure, it was invalidated by an RMID
1112 * and now a new array with received the same id. Check and retry.
1113 */
1114 if (un && un->semid == -1) {
1115 sem_unlock(sma);
1116 goto retry_undos;
1117 }
1118 error = -EFBIG;
1119 if (max >= sma->sem_nsems)
1120 goto out_unlock_free;
1121
1122 error = -EACCES;
1123 if (ipcperms(&sma->sem_perm, alter ? S_IWUGO : S_IRUGO))
1124 goto out_unlock_free;
1125
1126 error = security_sem_semop(sma, sops, nsops, alter);
1127 if (error)
1128 goto out_unlock_free;
1129
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001130 error = try_atomic_semop (sma, sops, nsops, un, task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (error <= 0) {
1132 if (alter && error == 0)
1133 update_queue (sma);
1134 goto out_unlock_free;
1135 }
1136
1137 /* We need to sleep on this operation, so we put the current
1138 * task into the pending queue and go to sleep.
1139 */
1140
1141 queue.sma = sma;
1142 queue.sops = sops;
1143 queue.nsops = nsops;
1144 queue.undo = un;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001145 queue.pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 queue.id = semid;
1147 queue.alter = alter;
1148 if (alter)
1149 append_to_queue(sma ,&queue);
1150 else
1151 prepend_to_queue(sma ,&queue);
1152
1153 queue.status = -EINTR;
1154 queue.sleeper = current;
1155 current->state = TASK_INTERRUPTIBLE;
1156 sem_unlock(sma);
1157
1158 if (timeout)
1159 jiffies_left = schedule_timeout(jiffies_left);
1160 else
1161 schedule();
1162
1163 error = queue.status;
1164 while(unlikely(error == IN_WAKEUP)) {
1165 cpu_relax();
1166 error = queue.status;
1167 }
1168
1169 if (error != -EINTR) {
1170 /* fast path: update_queue already obtained all requested
1171 * resources */
1172 goto out_free;
1173 }
1174
Kirill Korotaeve3893532006-10-02 02:18:22 -07001175 sma = sem_lock(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001176 if (IS_ERR(sma)) {
Eric Sesterhenn27315c92006-03-26 18:28:38 +02001177 BUG_ON(queue.prev != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 error = -EIDRM;
1179 goto out_free;
1180 }
1181
1182 /*
1183 * If queue.status != -EINTR we are woken up by another process
1184 */
1185 error = queue.status;
1186 if (error != -EINTR) {
1187 goto out_unlock_free;
1188 }
1189
1190 /*
1191 * If an interrupt occurred we have to clean up the queue
1192 */
1193 if (timeout && jiffies_left == 0)
1194 error = -EAGAIN;
1195 remove_from_queue(sma,&queue);
1196 goto out_unlock_free;
1197
1198out_unlock_free:
1199 sem_unlock(sma);
1200out_free:
1201 if(sops != fast_sops)
1202 kfree(sops);
1203 return error;
1204}
1205
1206asmlinkage long sys_semop (int semid, struct sembuf __user *tsops, unsigned nsops)
1207{
1208 return sys_semtimedop(semid, tsops, nsops, NULL);
1209}
1210
1211/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
1212 * parent and child tasks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
1214
1215int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
1216{
1217 struct sem_undo_list *undo_list;
1218 int error;
1219
1220 if (clone_flags & CLONE_SYSVSEM) {
1221 error = get_undo_list(&undo_list);
1222 if (error)
1223 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 atomic_inc(&undo_list->refcnt);
1225 tsk->sysvsem.undo_list = undo_list;
1226 } else
1227 tsk->sysvsem.undo_list = NULL;
1228
1229 return 0;
1230}
1231
1232/*
1233 * add semadj values to semaphores, free undo structures.
1234 * undo structures are not freed when semaphore arrays are destroyed
1235 * so some of them may be out of date.
1236 * IMPLEMENTATION NOTE: There is some confusion over whether the
1237 * set of adjustments that needs to be done should be done in an atomic
1238 * manner or not. That is, if we are attempting to decrement the semval
1239 * should we queue up and wait until we can do so legally?
1240 * The original implementation attempted to do this (queue and wait).
1241 * The current implementation does not do so. The POSIX standard
1242 * and SVID should be consulted to determine what behavior is mandated.
1243 */
1244void exit_sem(struct task_struct *tsk)
1245{
1246 struct sem_undo_list *undo_list;
1247 struct sem_undo *u, **up;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001248 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 undo_list = tsk->sysvsem.undo_list;
1251 if (!undo_list)
1252 return;
Manfred Spraul9edff4a2008-04-29 01:00:57 -07001253 tsk->sysvsem.undo_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 if (!atomic_dec_and_test(&undo_list->refcnt))
1256 return;
1257
Kirill Korotaeve3893532006-10-02 02:18:22 -07001258 ns = tsk->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 /* There's no need to hold the semundo list lock, as current
1260 * is the last task exiting for this undo list.
1261 */
1262 for (up = &undo_list->proc_list; (u = *up); *up = u->proc_next, kfree(u)) {
1263 struct sem_array *sma;
1264 int nsems, i;
1265 struct sem_undo *un, **unp;
1266 int semid;
1267
1268 semid = u->semid;
1269
1270 if(semid == -1)
1271 continue;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001272 sma = sem_lock(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001273 if (IS_ERR(sma))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 continue;
1275
1276 if (u->semid == -1)
1277 goto next_entry;
1278
Nadia Derbey1b531f22007-10-18 23:40:55 -07001279 BUG_ON(sem_checkid(sma, u->semid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 /* remove u from the sma->undo list */
1282 for (unp = &sma->undo; (un = *unp); unp = &un->id_next) {
1283 if (u == un)
1284 goto found;
1285 }
1286 printk ("exit_sem undo list error id=%d\n", u->semid);
1287 goto next_entry;
1288found:
1289 *unp = un->id_next;
1290 /* perform adjustments registered in u */
1291 nsems = sma->sem_nsems;
1292 for (i = 0; i < nsems; i++) {
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001293 struct sem * semaphore = &sma->sem_base[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (u->semadj[i]) {
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001295 semaphore->semval += u->semadj[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
1297 * Range checks of the new semaphore value,
1298 * not defined by sus:
1299 * - Some unices ignore the undo entirely
1300 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
1301 * - some cap the value (e.g. FreeBSD caps
1302 * at 0, but doesn't enforce SEMVMX)
1303 *
1304 * Linux caps the semaphore value, both at 0
1305 * and at SEMVMX.
1306 *
1307 * Manfred <manfred@colorfullife.com>
1308 */
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001309 if (semaphore->semval < 0)
1310 semaphore->semval = 0;
1311 if (semaphore->semval > SEMVMX)
1312 semaphore->semval = SEMVMX;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001313 semaphore->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315 }
1316 sma->sem_otime = get_seconds();
1317 /* maybe some queued-up processes were waiting for this */
1318 update_queue(sma);
1319next_entry:
1320 sem_unlock(sma);
1321 }
1322 kfree(undo_list);
1323}
1324
1325#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001326static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Mike Waychison19b49462005-09-06 15:17:10 -07001328 struct sem_array *sma = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Mike Waychison19b49462005-09-06 15:17:10 -07001330 return seq_printf(s,
1331 "%10d %10d %4o %10lu %5u %5u %5u %5u %10lu %10lu\n",
1332 sma->sem_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001333 sma->sem_perm.id,
Mike Waychison19b49462005-09-06 15:17:10 -07001334 sma->sem_perm.mode,
1335 sma->sem_nsems,
1336 sma->sem_perm.uid,
1337 sma->sem_perm.gid,
1338 sma->sem_perm.cuid,
1339 sma->sem_perm.cgid,
1340 sma->sem_otime,
1341 sma->sem_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343#endif