blob: 3ca232736b3186197376e51d3b755729caf2ad34 [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];
Manfred Spraula1193f82008-07-25 01:48:06 -0700275 INIT_LIST_HEAD(&sma->sem_pending);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700276 INIT_LIST_HEAD(&sma->list_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 sma->sem_nsems = nsems;
278 sma->sem_ctime = get_seconds();
279 sem_unlock(sma);
280
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700281 return sma->sem_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700284
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700285/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700286 * Called with sem_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700287 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700288static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700290 struct sem_array *sma;
291
292 sma = container_of(ipcp, struct sem_array, sem_perm);
293 return security_sem_associate(sma, semflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700294}
295
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700296/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700297 * Called with sem_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700298 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700299static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
300 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700301{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700302 struct sem_array *sma;
303
304 sma = container_of(ipcp, struct sem_array, sem_perm);
305 if (params->u.nsems > sma->sem_nsems)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700306 return -EINVAL;
307
308 return 0;
309}
310
311asmlinkage long sys_semget(key_t key, int nsems, int semflg)
312{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700313 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700314 struct ipc_ops sem_ops;
315 struct ipc_params sem_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Kirill Korotaeve3893532006-10-02 02:18:22 -0700317 ns = current->nsproxy->ipc_ns;
318
319 if (nsems < 0 || nsems > ns->sc_semmsl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EINVAL;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700321
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700322 sem_ops.getnew = newary;
323 sem_ops.associate = sem_security;
324 sem_ops.more_checks = sem_more_checks;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700325
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700326 sem_params.key = key;
327 sem_params.flg = semflg;
328 sem_params.u.nsems = nsems;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700329
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700330 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/*
334 * Determine whether a sequence of semaphore operations would succeed
335 * all at once. Return 0 if yes, 1 if need to sleep, else return error code.
336 */
337
338static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
339 int nsops, struct sem_undo *un, int pid)
340{
341 int result, sem_op;
342 struct sembuf *sop;
343 struct sem * curr;
344
345 for (sop = sops; sop < sops + nsops; sop++) {
346 curr = sma->sem_base + sop->sem_num;
347 sem_op = sop->sem_op;
348 result = curr->semval;
349
350 if (!sem_op && result)
351 goto would_block;
352
353 result += sem_op;
354 if (result < 0)
355 goto would_block;
356 if (result > SEMVMX)
357 goto out_of_range;
358 if (sop->sem_flg & SEM_UNDO) {
359 int undo = un->semadj[sop->sem_num] - sem_op;
360 /*
361 * Exceeding the undo range is an error.
362 */
363 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
364 goto out_of_range;
365 }
366 curr->semval = result;
367 }
368
369 sop--;
370 while (sop >= sops) {
371 sma->sem_base[sop->sem_num].sempid = pid;
372 if (sop->sem_flg & SEM_UNDO)
373 un->semadj[sop->sem_num] -= sop->sem_op;
374 sop--;
375 }
376
377 sma->sem_otime = get_seconds();
378 return 0;
379
380out_of_range:
381 result = -ERANGE;
382 goto undo;
383
384would_block:
385 if (sop->sem_flg & IPC_NOWAIT)
386 result = -EAGAIN;
387 else
388 result = 1;
389
390undo:
391 sop--;
392 while (sop >= sops) {
393 sma->sem_base[sop->sem_num].semval -= sop->sem_op;
394 sop--;
395 }
396
397 return result;
398}
399
400/* Go through the pending queue for the indicated semaphore
401 * looking for tasks that can be completed.
402 */
403static void update_queue (struct sem_array * sma)
404{
405 int error;
406 struct sem_queue * q;
407
Manfred Spraula1193f82008-07-25 01:48:06 -0700408 q = list_entry(sma->sem_pending.next, struct sem_queue, list);
409 while (&q->list != &sma->sem_pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 error = try_atomic_semop(sma, q->sops, q->nsops,
411 q->undo, q->pid);
412
413 /* Does q->sleeper still need to sleep? */
414 if (error <= 0) {
415 struct sem_queue *n;
Manfred Spraula1193f82008-07-25 01:48:06 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /*
418 * Continue scanning. The next operation
419 * that must be checked depends on the type of the
420 * completed operation:
421 * - if the operation modified the array, then
422 * restart from the head of the queue and
423 * check for threads that might be waiting
424 * for semaphore values to become 0.
425 * - if the operation didn't modify the array,
426 * then just continue.
Manfred Spraula1193f82008-07-25 01:48:06 -0700427 * The order of list_del() and reading ->next
428 * is crucial: In the former case, the list_del()
429 * must be done first [because we might be the
430 * first entry in ->sem_pending], in the latter
431 * case the list_del() must be done last
432 * [because the list is invalid after the list_del()]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 */
Manfred Spraula1193f82008-07-25 01:48:06 -0700434 if (q->alter) {
435 list_del(&q->list);
436 n = list_entry(sma->sem_pending.next,
437 struct sem_queue, list);
438 } else {
439 n = list_entry(q->list.next, struct sem_queue,
440 list);
441 list_del(&q->list);
442 }
443
444 /* wake up the waiting thread */
445 q->status = IN_WAKEUP;
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 wake_up_process(q->sleeper);
448 /* hands-off: q will disappear immediately after
449 * writing q->status.
450 */
Linus Torvalds1224b372005-12-24 12:19:38 -0800451 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 q->status = error;
453 q = n;
454 } else {
Manfred Spraula1193f82008-07-25 01:48:06 -0700455 q = list_entry(q->list.next, struct sem_queue, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457 }
458}
459
460/* The following counts are associated to each semaphore:
461 * semncnt number of tasks waiting on semval being nonzero
462 * semzcnt number of tasks waiting on semval being zero
463 * This model assumes that a task waits on exactly one semaphore.
464 * Since semaphore operations are to be performed atomically, tasks actually
465 * wait on a whole sequence of semaphores simultaneously.
466 * The counts we return here are a rough approximation, but still
467 * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
468 */
469static int count_semncnt (struct sem_array * sma, ushort semnum)
470{
471 int semncnt;
472 struct sem_queue * q;
473
474 semncnt = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700475 list_for_each_entry(q, &sma->sem_pending, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct sembuf * sops = q->sops;
477 int nsops = q->nsops;
478 int i;
479 for (i = 0; i < nsops; i++)
480 if (sops[i].sem_num == semnum
481 && (sops[i].sem_op < 0)
482 && !(sops[i].sem_flg & IPC_NOWAIT))
483 semncnt++;
484 }
485 return semncnt;
486}
Manfred Spraula1193f82008-07-25 01:48:06 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488static int count_semzcnt (struct sem_array * sma, ushort semnum)
489{
490 int semzcnt;
491 struct sem_queue * q;
492
493 semzcnt = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700494 list_for_each_entry(q, &sma->sem_pending, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 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 semzcnt++;
503 }
504 return semzcnt;
505}
506
Nadia Derbey3e148c72007-10-18 23:40:54 -0700507/* Free a semaphore set. freeary() is called with sem_ids.rw_mutex locked
508 * as a writer and the spinlock for this semaphore set hold. sem_ids.rw_mutex
509 * remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800511static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 struct sem_undo *un;
Manfred Spraula1193f82008-07-25 01:48:06 -0700514 struct sem_queue *q, *t;
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800515 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 /* Invalidate the existing undo structures for this semaphore set.
518 * (They will be freed without any further action in exit_sem()
519 * or during the next semop.)
520 */
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700521 assert_spin_locked(&sma->sem_perm.lock);
522 list_for_each_entry(un, &sma->list_id, list_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 un->semid = -1;
524
525 /* Wake up all pending processes and let them fail with EIDRM. */
Manfred Spraula1193f82008-07-25 01:48:06 -0700526
527 list_for_each_entry_safe(q, t, &sma->sem_pending, list) {
528 list_del(&q->list);
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 q->status = IN_WAKEUP;
531 wake_up_process(q->sleeper); /* doesn't sleep */
Manfred Spraul6003a932005-12-23 23:57:41 +0100532 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 q->status = -EIDRM; /* hands-off q */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700536 /* Remove the semaphore set from the IDR */
537 sem_rmid(ns, sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 sem_unlock(sma);
539
Kirill Korotaeve3893532006-10-02 02:18:22 -0700540 ns->used_sems -= sma->sem_nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 security_sem_free(sma);
542 ipc_rcu_putref(sma);
543}
544
545static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
546{
547 switch(version) {
548 case IPC_64:
549 return copy_to_user(buf, in, sizeof(*in));
550 case IPC_OLD:
551 {
552 struct semid_ds out;
553
554 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
555
556 out.sem_otime = in->sem_otime;
557 out.sem_ctime = in->sem_ctime;
558 out.sem_nsems = in->sem_nsems;
559
560 return copy_to_user(buf, &out, sizeof(out));
561 }
562 default:
563 return -EINVAL;
564 }
565}
566
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800567static int semctl_nolock(struct ipc_namespace *ns, int semid,
568 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 int err = -EINVAL;
571 struct sem_array *sma;
572
573 switch(cmd) {
574 case IPC_INFO:
575 case SEM_INFO:
576 {
577 struct seminfo seminfo;
578 int max_id;
579
580 err = security_sem_semctl(NULL, cmd);
581 if (err)
582 return err;
583
584 memset(&seminfo,0,sizeof(seminfo));
Kirill Korotaeve3893532006-10-02 02:18:22 -0700585 seminfo.semmni = ns->sc_semmni;
586 seminfo.semmns = ns->sc_semmns;
587 seminfo.semmsl = ns->sc_semmsl;
588 seminfo.semopm = ns->sc_semopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 seminfo.semvmx = SEMVMX;
590 seminfo.semmnu = SEMMNU;
591 seminfo.semmap = SEMMAP;
592 seminfo.semume = SEMUME;
Nadia Derbey3e148c72007-10-18 23:40:54 -0700593 down_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (cmd == SEM_INFO) {
Kirill Korotaeve3893532006-10-02 02:18:22 -0700595 seminfo.semusz = sem_ids(ns).in_use;
596 seminfo.semaem = ns->used_sems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 } else {
598 seminfo.semusz = SEMUSZ;
599 seminfo.semaem = SEMAEM;
600 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700601 max_id = ipc_get_maxid(&sem_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700602 up_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (copy_to_user (arg.__buf, &seminfo, sizeof(struct seminfo)))
604 return -EFAULT;
605 return (max_id < 0) ? 0: max_id;
606 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800607 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 case SEM_STAT:
609 {
610 struct semid64_ds tbuf;
611 int id;
612
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800613 if (cmd == SEM_STAT) {
614 sma = sem_lock(ns, semid);
615 if (IS_ERR(sma))
616 return PTR_ERR(sma);
617 id = sma->sem_perm.id;
618 } else {
619 sma = sem_lock_check(ns, semid);
620 if (IS_ERR(sma))
621 return PTR_ERR(sma);
622 id = 0;
623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 err = -EACCES;
626 if (ipcperms (&sma->sem_perm, S_IRUGO))
627 goto out_unlock;
628
629 err = security_sem_semctl(sma, cmd);
630 if (err)
631 goto out_unlock;
632
Nadia Derbey023a5352007-10-18 23:40:51 -0700633 memset(&tbuf, 0, sizeof(tbuf));
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
636 tbuf.sem_otime = sma->sem_otime;
637 tbuf.sem_ctime = sma->sem_ctime;
638 tbuf.sem_nsems = sma->sem_nsems;
639 sem_unlock(sma);
640 if (copy_semid_to_user (arg.buf, &tbuf, version))
641 return -EFAULT;
642 return id;
643 }
644 default:
645 return -EINVAL;
646 }
647 return err;
648out_unlock:
649 sem_unlock(sma);
650 return err;
651}
652
Kirill Korotaeve3893532006-10-02 02:18:22 -0700653static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
654 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 struct sem_array *sma;
657 struct sem* curr;
658 int err;
659 ushort fast_sem_io[SEMMSL_FAST];
660 ushort* sem_io = fast_sem_io;
661 int nsems;
662
Nadia Derbey023a5352007-10-18 23:40:51 -0700663 sma = sem_lock_check(ns, semid);
664 if (IS_ERR(sma))
665 return PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 nsems = sma->sem_nsems;
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 err = -EACCES;
670 if (ipcperms (&sma->sem_perm, (cmd==SETVAL||cmd==SETALL)?S_IWUGO:S_IRUGO))
671 goto out_unlock;
672
673 err = security_sem_semctl(sma, cmd);
674 if (err)
675 goto out_unlock;
676
677 err = -EACCES;
678 switch (cmd) {
679 case GETALL:
680 {
681 ushort __user *array = arg.array;
682 int i;
683
684 if(nsems > SEMMSL_FAST) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700685 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 sem_io = ipc_alloc(sizeof(ushort)*nsems);
688 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700689 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return -ENOMEM;
691 }
692
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700693 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (sma->sem_perm.deleted) {
695 sem_unlock(sma);
696 err = -EIDRM;
697 goto out_free;
698 }
699 }
700
701 for (i = 0; i < sma->sem_nsems; i++)
702 sem_io[i] = sma->sem_base[i].semval;
703 sem_unlock(sma);
704 err = 0;
705 if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
706 err = -EFAULT;
707 goto out_free;
708 }
709 case SETALL:
710 {
711 int i;
712 struct sem_undo *un;
713
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700714 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if(nsems > SEMMSL_FAST) {
717 sem_io = ipc_alloc(sizeof(ushort)*nsems);
718 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700719 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return -ENOMEM;
721 }
722 }
723
724 if (copy_from_user (sem_io, arg.array, nsems*sizeof(ushort))) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700725 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 err = -EFAULT;
727 goto out_free;
728 }
729
730 for (i = 0; i < nsems; i++) {
731 if (sem_io[i] > SEMVMX) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700732 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 err = -ERANGE;
734 goto out_free;
735 }
736 }
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700737 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (sma->sem_perm.deleted) {
739 sem_unlock(sma);
740 err = -EIDRM;
741 goto out_free;
742 }
743
744 for (i = 0; i < nsems; i++)
745 sma->sem_base[i].semval = sem_io[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700746
747 assert_spin_locked(&sma->sem_perm.lock);
748 list_for_each_entry(un, &sma->list_id, list_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 for (i = 0; i < nsems; i++)
750 un->semadj[i] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 sma->sem_ctime = get_seconds();
753 /* maybe some queued-up processes were waiting for this */
754 update_queue(sma);
755 err = 0;
756 goto out_unlock;
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /* GETVAL, GETPID, GETNCTN, GETZCNT, SETVAL: fall-through */
759 }
760 err = -EINVAL;
761 if(semnum < 0 || semnum >= nsems)
762 goto out_unlock;
763
764 curr = &sma->sem_base[semnum];
765
766 switch (cmd) {
767 case GETVAL:
768 err = curr->semval;
769 goto out_unlock;
770 case GETPID:
771 err = curr->sempid;
772 goto out_unlock;
773 case GETNCNT:
774 err = count_semncnt(sma,semnum);
775 goto out_unlock;
776 case GETZCNT:
777 err = count_semzcnt(sma,semnum);
778 goto out_unlock;
779 case SETVAL:
780 {
781 int val = arg.val;
782 struct sem_undo *un;
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 err = -ERANGE;
785 if (val > SEMVMX || val < 0)
786 goto out_unlock;
787
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700788 assert_spin_locked(&sma->sem_perm.lock);
789 list_for_each_entry(un, &sma->list_id, list_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 un->semadj[semnum] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 curr->semval = val;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700793 curr->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 sma->sem_ctime = get_seconds();
795 /* maybe some queued-up processes were waiting for this */
796 update_queue(sma);
797 err = 0;
798 goto out_unlock;
799 }
800 }
801out_unlock:
802 sem_unlock(sma);
803out_free:
804 if(sem_io != fast_sem_io)
805 ipc_free(sem_io, sizeof(ushort)*nsems);
806 return err;
807}
808
Pierre Peiffer016d7132008-04-29 01:00:50 -0700809static inline unsigned long
810copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 switch(version) {
813 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700814 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 case IPC_OLD:
818 {
819 struct semid_ds tbuf_old;
820
821 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
822 return -EFAULT;
823
Pierre Peiffer016d7132008-04-29 01:00:50 -0700824 out->sem_perm.uid = tbuf_old.sem_perm.uid;
825 out->sem_perm.gid = tbuf_old.sem_perm.gid;
826 out->sem_perm.mode = tbuf_old.sem_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 return 0;
829 }
830 default:
831 return -EINVAL;
832 }
833}
834
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700835/*
836 * This function handles some semctl commands which require the rw_mutex
837 * to be held in write mode.
838 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
839 */
Pierre Peiffer21a48262008-04-29 01:00:49 -0700840static int semctl_down(struct ipc_namespace *ns, int semid,
841 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct sem_array *sma;
844 int err;
Pierre Peiffer016d7132008-04-29 01:00:50 -0700845 struct semid64_ds semid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct kern_ipc_perm *ipcp;
847
848 if(cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700849 if (copy_semid_from_user(&semid64, arg.buf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700853 ipcp = ipcctl_pre_down(&sem_ids(ns), semid, cmd, &semid64.sem_perm, 0);
854 if (IS_ERR(ipcp))
855 return PTR_ERR(ipcp);
Steve Grubb073115d2006-04-02 17:07:33 -0400856
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700857 sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 err = security_sem_semctl(sma, cmd);
860 if (err)
861 goto out_unlock;
862
863 switch(cmd){
864 case IPC_RMID:
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800865 freeary(ns, ipcp);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700866 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 case IPC_SET:
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700868 ipc_update_perm(&semid64.sem_perm, ipcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 sma->sem_ctime = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 break;
871 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875out_unlock:
876 sem_unlock(sma);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700877out_up:
878 up_write(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return err;
880}
881
882asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg)
883{
884 int err = -EINVAL;
885 int version;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700886 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (semid < 0)
889 return -EINVAL;
890
891 version = ipc_parse_version(&cmd);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700892 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 switch(cmd) {
895 case IPC_INFO:
896 case SEM_INFO:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800897 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 case SEM_STAT:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800899 err = semctl_nolock(ns, semid, cmd, version, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return err;
901 case GETALL:
902 case GETVAL:
903 case GETPID:
904 case GETNCNT:
905 case GETZCNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 case SETVAL:
907 case SETALL:
Kirill Korotaeve3893532006-10-02 02:18:22 -0700908 err = semctl_main(ns,semid,semnum,cmd,version,arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return err;
910 case IPC_RMID:
911 case IPC_SET:
Pierre Peiffer21a48262008-04-29 01:00:49 -0700912 err = semctl_down(ns, semid, cmd, version, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return err;
914 default:
915 return -EINVAL;
916 }
917}
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919/* If the task doesn't already have a undo_list, then allocate one
920 * here. We guarantee there is only one thread using this undo list,
921 * and current is THE ONE
922 *
923 * If this allocation and assignment succeeds, but later
924 * portions of this code fail, there is no need to free the sem_undo_list.
925 * Just let it stay associated with the task, and it'll be freed later
926 * at exit time.
927 *
928 * This can block, so callers must hold no locks.
929 */
930static inline int get_undo_list(struct sem_undo_list **undo_listp)
931{
932 struct sem_undo_list *undo_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 undo_list = current->sysvsem.undo_list;
935 if (!undo_list) {
Matt Helsley2453a302006-10-02 02:18:25 -0700936 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (undo_list == NULL)
938 return -ENOMEM;
Ingo Molnar00a5dfd2005-08-05 23:05:27 +0200939 spin_lock_init(&undo_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 atomic_set(&undo_list->refcnt, 1);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700941 INIT_LIST_HEAD(&undo_list->list_proc);
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 current->sysvsem.undo_list = undo_list;
944 }
945 *undo_listp = undo_list;
946 return 0;
947}
948
949static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
950{
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700951 struct sem_undo *walk, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700953 assert_spin_locked(&ulp->lock);
954 list_for_each_entry_safe(walk, tmp, &ulp->list_proc, list_proc) {
955 if (walk->semid == semid)
956 return walk;
957 if (walk->semid == -1) {
958 list_del(&walk->list_proc);
959 kfree(walk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700962 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700965/**
966 * find_alloc_undo - Lookup (and if not present create) undo array
967 * @ns: namespace
968 * @semid: semaphore array id
969 *
970 * The function looks up (and if not present creates) the undo structure.
971 * The size of the undo structure depends on the size of the semaphore
972 * array, thus the alloc path is not that straightforward.
973 */
974static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
976 struct sem_array *sma;
977 struct sem_undo_list *ulp;
978 struct sem_undo *un, *new;
979 int nsems;
980 int error;
981
982 error = get_undo_list(&ulp);
983 if (error)
984 return ERR_PTR(error);
985
Pierre Peifferc530c6a2007-10-18 23:40:55 -0700986 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 un = lookup_undo(ulp, semid);
Pierre Peifferc530c6a2007-10-18 23:40:55 -0700988 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (likely(un!=NULL))
990 goto out;
991
992 /* no undo structure around - allocate one. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700993 /* step 1: figure out the size of the semaphore array */
Nadia Derbey023a5352007-10-18 23:40:51 -0700994 sma = sem_lock_check(ns, semid);
995 if (IS_ERR(sma))
996 return ERR_PTR(PTR_ERR(sma));
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 nsems = sma->sem_nsems;
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700999 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001001 /* step 2: allocate new undo structure */
Burman Yan4668edc2006-12-06 20:38:51 -08001002 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!new) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001004 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return ERR_PTR(-ENOMEM);
1006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001008 /* step 3: Acquire the lock on the undo list pointer */
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001009 spin_lock(&ulp->lock);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001010
1011 /* step 4: check for races: someone else allocated the undo struct,
1012 * semaphore array was destroyed.
1013 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 un = lookup_undo(ulp, semid);
1015 if (un) {
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001016 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 kfree(new);
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001018 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 goto out;
1020 }
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001021 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (sma->sem_perm.deleted) {
1023 sem_unlock(sma);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001024 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 kfree(new);
1026 un = ERR_PTR(-EIDRM);
1027 goto out;
1028 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001029 /* step 5: initialize & link new undo structure */
1030 new->semadj = (short *) &new[1];
1031 new->semid = semid;
1032 assert_spin_locked(&ulp->lock);
1033 list_add(&new->list_proc, &ulp->list_proc);
1034 assert_spin_locked(&sma->sem_perm.lock);
1035 list_add(&new->list_id, &sma->list_id);
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 sem_unlock(sma);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001038 spin_unlock(&ulp->lock);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001039 un = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040out:
1041 return un;
1042}
1043
1044asmlinkage long sys_semtimedop(int semid, struct sembuf __user *tsops,
1045 unsigned nsops, const struct timespec __user *timeout)
1046{
1047 int error = -EINVAL;
1048 struct sem_array *sma;
1049 struct sembuf fast_sops[SEMOPM_FAST];
1050 struct sembuf* sops = fast_sops, *sop;
1051 struct sem_undo *un;
Manfred Spraulb78755a2005-06-23 00:10:06 -07001052 int undos = 0, alter = 0, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 struct sem_queue queue;
1054 unsigned long jiffies_left = 0;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001055 struct ipc_namespace *ns;
1056
1057 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (nsops < 1 || semid < 0)
1060 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001061 if (nsops > ns->sc_semopm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return -E2BIG;
1063 if(nsops > SEMOPM_FAST) {
1064 sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
1065 if(sops==NULL)
1066 return -ENOMEM;
1067 }
1068 if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
1069 error=-EFAULT;
1070 goto out_free;
1071 }
1072 if (timeout) {
1073 struct timespec _timeout;
1074 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1075 error = -EFAULT;
1076 goto out_free;
1077 }
1078 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1079 _timeout.tv_nsec >= 1000000000L) {
1080 error = -EINVAL;
1081 goto out_free;
1082 }
1083 jiffies_left = timespec_to_jiffies(&_timeout);
1084 }
1085 max = 0;
1086 for (sop = sops; sop < sops + nsops; sop++) {
1087 if (sop->sem_num >= max)
1088 max = sop->sem_num;
1089 if (sop->sem_flg & SEM_UNDO)
Manfred Spraulb78755a2005-06-23 00:10:06 -07001090 undos = 1;
1091 if (sop->sem_op != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 alter = 1;
1093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (undos) {
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001096 un = find_alloc_undo(ns, semid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (IS_ERR(un)) {
1098 error = PTR_ERR(un);
1099 goto out_free;
1100 }
1101 } else
1102 un = NULL;
1103
Nadia Derbey023a5352007-10-18 23:40:51 -07001104 sma = sem_lock_check(ns, semid);
1105 if (IS_ERR(sma)) {
1106 error = PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -07001108 }
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001111 * semid identifiers are not unique - find_alloc_undo may have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * allocated an undo structure, it was invalidated by an RMID
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001113 * and now a new array with received the same id. Check and fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001115 error = -EIDRM;
1116 if (un && un->semid == -1)
1117 goto out_unlock_free;
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 error = -EFBIG;
1120 if (max >= sma->sem_nsems)
1121 goto out_unlock_free;
1122
1123 error = -EACCES;
1124 if (ipcperms(&sma->sem_perm, alter ? S_IWUGO : S_IRUGO))
1125 goto out_unlock_free;
1126
1127 error = security_sem_semop(sma, sops, nsops, alter);
1128 if (error)
1129 goto out_unlock_free;
1130
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001131 error = try_atomic_semop (sma, sops, nsops, un, task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (error <= 0) {
1133 if (alter && error == 0)
1134 update_queue (sma);
1135 goto out_unlock_free;
1136 }
1137
1138 /* We need to sleep on this operation, so we put the current
1139 * task into the pending queue and go to sleep.
1140 */
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 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.alter = alter;
1147 if (alter)
Manfred Spraula1193f82008-07-25 01:48:06 -07001148 list_add_tail(&queue.list, &sma->sem_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 else
Manfred Spraula1193f82008-07-25 01:48:06 -07001150 list_add(&queue.list, &sma->sem_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 queue.status = -EINTR;
1153 queue.sleeper = current;
1154 current->state = TASK_INTERRUPTIBLE;
1155 sem_unlock(sma);
1156
1157 if (timeout)
1158 jiffies_left = schedule_timeout(jiffies_left);
1159 else
1160 schedule();
1161
1162 error = queue.status;
1163 while(unlikely(error == IN_WAKEUP)) {
1164 cpu_relax();
1165 error = queue.status;
1166 }
1167
1168 if (error != -EINTR) {
1169 /* fast path: update_queue already obtained all requested
1170 * resources */
1171 goto out_free;
1172 }
1173
Kirill Korotaeve3893532006-10-02 02:18:22 -07001174 sma = sem_lock(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001175 if (IS_ERR(sma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 error = -EIDRM;
1177 goto out_free;
1178 }
1179
1180 /*
1181 * If queue.status != -EINTR we are woken up by another process
1182 */
1183 error = queue.status;
1184 if (error != -EINTR) {
1185 goto out_unlock_free;
1186 }
1187
1188 /*
1189 * If an interrupt occurred we have to clean up the queue
1190 */
1191 if (timeout && jiffies_left == 0)
1192 error = -EAGAIN;
Manfred Spraula1193f82008-07-25 01:48:06 -07001193 list_del(&queue.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 goto out_unlock_free;
1195
1196out_unlock_free:
1197 sem_unlock(sma);
1198out_free:
1199 if(sops != fast_sops)
1200 kfree(sops);
1201 return error;
1202}
1203
1204asmlinkage long sys_semop (int semid, struct sembuf __user *tsops, unsigned nsops)
1205{
1206 return sys_semtimedop(semid, tsops, nsops, NULL);
1207}
1208
1209/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
1210 * parent and child tasks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 */
1212
1213int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
1214{
1215 struct sem_undo_list *undo_list;
1216 int error;
1217
1218 if (clone_flags & CLONE_SYSVSEM) {
1219 error = get_undo_list(&undo_list);
1220 if (error)
1221 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 atomic_inc(&undo_list->refcnt);
1223 tsk->sysvsem.undo_list = undo_list;
1224 } else
1225 tsk->sysvsem.undo_list = NULL;
1226
1227 return 0;
1228}
1229
1230/*
1231 * add semadj values to semaphores, free undo structures.
1232 * undo structures are not freed when semaphore arrays are destroyed
1233 * so some of them may be out of date.
1234 * IMPLEMENTATION NOTE: There is some confusion over whether the
1235 * set of adjustments that needs to be done should be done in an atomic
1236 * manner or not. That is, if we are attempting to decrement the semval
1237 * should we queue up and wait until we can do so legally?
1238 * The original implementation attempted to do this (queue and wait).
1239 * The current implementation does not do so. The POSIX standard
1240 * and SVID should be consulted to determine what behavior is mandated.
1241 */
1242void exit_sem(struct task_struct *tsk)
1243{
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001244 struct sem_undo_list *ulp;
1245 struct sem_undo *un, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001247 ulp = tsk->sysvsem.undo_list;
1248 if (!ulp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return;
Manfred Spraul9edff4a2008-04-29 01:00:57 -07001250 tsk->sysvsem.undo_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001252 if (!atomic_dec_and_test(&ulp->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return;
1254
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001255 spin_lock(&ulp->lock);
1256
1257 list_for_each_entry_safe(un, tmp, &ulp->list_proc, list_proc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 struct sem_array *sma;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001259 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001261 if (un->semid == -1)
1262 goto free;
1263
1264 sma = sem_lock(tsk->nsproxy->ipc_ns, un->semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001265 if (IS_ERR(sma))
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001266 goto free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001268 if (un->semid == -1)
1269 goto unlock_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001271 BUG_ON(sem_checkid(sma, un->semid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001273 /* remove un from sma->list_id */
1274 assert_spin_locked(&sma->sem_perm.lock);
1275 list_del(&un->list_id);
1276
1277 /* perform adjustments registered in un */
1278 for (i = 0; i < sma->sem_nsems; i++) {
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001279 struct sem * semaphore = &sma->sem_base[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001280 if (un->semadj[i]) {
1281 semaphore->semval += un->semadj[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /*
1283 * Range checks of the new semaphore value,
1284 * not defined by sus:
1285 * - Some unices ignore the undo entirely
1286 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
1287 * - some cap the value (e.g. FreeBSD caps
1288 * at 0, but doesn't enforce SEMVMX)
1289 *
1290 * Linux caps the semaphore value, both at 0
1291 * and at SEMVMX.
1292 *
1293 * Manfred <manfred@colorfullife.com>
1294 */
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001295 if (semaphore->semval < 0)
1296 semaphore->semval = 0;
1297 if (semaphore->semval > SEMVMX)
1298 semaphore->semval = SEMVMX;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001299 semaphore->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301 }
1302 sma->sem_otime = get_seconds();
1303 /* maybe some queued-up processes were waiting for this */
1304 update_queue(sma);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001305unlock_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 sem_unlock(sma);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001307free:
1308 assert_spin_locked(&ulp->lock);
1309 list_del(&un->list_proc);
1310 kfree(un);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001312 spin_unlock(&ulp->lock);
1313 kfree(ulp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
1316#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001317static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Mike Waychison19b49462005-09-06 15:17:10 -07001319 struct sem_array *sma = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Mike Waychison19b49462005-09-06 15:17:10 -07001321 return seq_printf(s,
1322 "%10d %10d %4o %10lu %5u %5u %5u %5u %10lu %10lu\n",
1323 sma->sem_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001324 sma->sem_perm.id,
Mike Waychison19b49462005-09-06 15:17:10 -07001325 sma->sem_perm.mode,
1326 sma->sem_nsems,
1327 sma->sem_perm.uid,
1328 sma->sem_perm.gid,
1329 sma->sem_perm.cuid,
1330 sma->sem_perm.cgid,
1331 sma->sem_otime,
1332 sma->sem_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334#endif