blob: 2f2a47959576964c200e7493464818da982c3e7a [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
Alan Cox046c6882009-01-05 14:06:29 +000061 * (c) 2001 Red Hat Inc
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * 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);
Serge E. Hallyn7d6feeb2009-12-15 16:47:27 -0800132 idr_destroy(&ns->ids[IPC_SEM_IDS].ipcs_idr);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700133}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136void __init sem_init (void)
137{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800138 sem_init_ns(&init_ipc_ns);
Mike Waychison19b49462005-09-06 15:17:10 -0700139 ipc_init_proc_interface("sysvipc/sem",
140 " key semid perms nsems uid gid cuid cgid otime ctime\n",
Kirill Korotaeve3893532006-10-02 02:18:22 -0700141 IPC_SEM_IDS, sysvipc_sem_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Nadia Derbey3e148c72007-10-18 23:40:54 -0700144/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700145 * sem_lock_(check_) routines are called in the paths where the rw_mutex
146 * is not held.
147 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700148static inline struct sem_array *sem_lock(struct ipc_namespace *ns, int id)
149{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700150 struct kern_ipc_perm *ipcp = ipc_lock(&sem_ids(ns), id);
151
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800152 if (IS_ERR(ipcp))
153 return (struct sem_array *)ipcp;
154
Nadia Derbey03f02c72007-10-18 23:40:51 -0700155 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700156}
157
158static inline struct sem_array *sem_lock_check(struct ipc_namespace *ns,
159 int id)
160{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700161 struct kern_ipc_perm *ipcp = ipc_lock_check(&sem_ids(ns), id);
162
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800163 if (IS_ERR(ipcp))
164 return (struct sem_array *)ipcp;
165
Nadia Derbey03f02c72007-10-18 23:40:51 -0700166 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700167}
168
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700169static inline void sem_lock_and_putref(struct sem_array *sma)
170{
171 ipc_lock_by_ptr(&sma->sem_perm);
172 ipc_rcu_putref(sma);
173}
174
175static inline void sem_getref_and_unlock(struct sem_array *sma)
176{
177 ipc_rcu_getref(sma);
178 ipc_unlock(&(sma)->sem_perm);
179}
180
181static inline void sem_putref(struct sem_array *sma)
182{
183 ipc_lock_by_ptr(&sma->sem_perm);
184 ipc_rcu_putref(sma);
185 ipc_unlock(&(sma)->sem_perm);
186}
187
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700188static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
189{
190 ipc_rmid(&sem_ids(ns), &s->sem_perm);
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/*
194 * Lockless wakeup algorithm:
195 * Without the check/retry algorithm a lockless wakeup is possible:
196 * - queue.status is initialized to -EINTR before blocking.
197 * - wakeup is performed by
198 * * unlinking the queue entry from sma->sem_pending
199 * * setting queue.status to IN_WAKEUP
200 * This is the notification for the blocked thread that a
201 * result value is imminent.
202 * * call wake_up_process
203 * * set queue.status to the final value.
204 * - the previously blocked thread checks queue.status:
205 * * if it's IN_WAKEUP, then it must wait until the value changes
206 * * if it's not -EINTR, then the operation was completed by
207 * update_queue. semtimedop can return queue.status without
Ingo Molnar5f921ae2006-03-26 01:37:17 -0800208 * performing any operation on the sem array.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * * otherwise it must acquire the spinlock and check what's up.
210 *
211 * The two-stage algorithm is necessary to protect against the following
212 * races:
213 * - if queue.status is set after wake_up_process, then the woken up idle
214 * thread could race forward and try (and fail) to acquire sma->lock
215 * before update_queue had a chance to set queue.status
216 * - if queue.status is written before wake_up_process and if the
217 * blocked process is woken up by a signal between writing
218 * queue.status and the wake_up_process, then the woken up
219 * process could return from semtimedop and die by calling
220 * sys_exit before wake_up_process is called. Then wake_up_process
221 * will oops, because the task structure is already invalid.
222 * (yes, this happened on s390 with sysv msg).
223 *
224 */
225#define IN_WAKEUP 1
226
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700227/**
228 * newary - Create a new semaphore set
229 * @ns: namespace
230 * @params: ptr to the structure that contains key, semflg and nsems
231 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700232 * Called with sem_ids.rw_mutex held (as a writer)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700233 */
234
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700235static int newary(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 int id;
238 int retval;
239 struct sem_array *sma;
240 int size;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700241 key_t key = params->key;
242 int nsems = params->u.nsems;
243 int semflg = params->flg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 if (!nsems)
246 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700247 if (ns->used_sems + nsems > ns->sc_semmns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -ENOSPC;
249
250 size = sizeof (*sma) + nsems * sizeof (struct sem);
251 sma = ipc_rcu_alloc(size);
252 if (!sma) {
253 return -ENOMEM;
254 }
255 memset (sma, 0, size);
256
257 sma->sem_perm.mode = (semflg & S_IRWXUGO);
258 sma->sem_perm.key = key;
259
260 sma->sem_perm.security = NULL;
261 retval = security_sem_alloc(sma);
262 if (retval) {
263 ipc_rcu_putref(sma);
264 return retval;
265 }
266
Kirill Korotaeve3893532006-10-02 02:18:22 -0700267 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700268 if (id < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 security_sem_free(sma);
270 ipc_rcu_putref(sma);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700271 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
Kirill Korotaeve3893532006-10-02 02:18:22 -0700273 ns->used_sems += nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 sma->sem_base = (struct sem *) &sma[1];
Manfred Spraula1193f82008-07-25 01:48:06 -0700276 INIT_LIST_HEAD(&sma->sem_pending);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700277 INIT_LIST_HEAD(&sma->list_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 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
Heiko Carstensd5460c92009-01-14 14:14:27 +0100312SYSCALL_DEFINE3(semget, key_t, key, int, nsems, int, semflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700313{
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334/*
335 * Determine whether a sequence of semaphore operations would succeed
336 * all at once. Return 0 if yes, 1 if need to sleep, else return error code.
337 */
338
339static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
340 int nsops, struct sem_undo *un, int pid)
341{
342 int result, sem_op;
343 struct sembuf *sop;
344 struct sem * curr;
345
346 for (sop = sops; sop < sops + nsops; sop++) {
347 curr = sma->sem_base + sop->sem_num;
348 sem_op = sop->sem_op;
349 result = curr->semval;
350
351 if (!sem_op && result)
352 goto would_block;
353
354 result += sem_op;
355 if (result < 0)
356 goto would_block;
357 if (result > SEMVMX)
358 goto out_of_range;
359 if (sop->sem_flg & SEM_UNDO) {
360 int undo = un->semadj[sop->sem_num] - sem_op;
361 /*
362 * Exceeding the undo range is an error.
363 */
364 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
365 goto out_of_range;
366 }
367 curr->semval = result;
368 }
369
370 sop--;
371 while (sop >= sops) {
372 sma->sem_base[sop->sem_num].sempid = pid;
373 if (sop->sem_flg & SEM_UNDO)
374 un->semadj[sop->sem_num] -= sop->sem_op;
375 sop--;
376 }
377
378 sma->sem_otime = get_seconds();
379 return 0;
380
381out_of_range:
382 result = -ERANGE;
383 goto undo;
384
385would_block:
386 if (sop->sem_flg & IPC_NOWAIT)
387 result = -EAGAIN;
388 else
389 result = 1;
390
391undo:
392 sop--;
393 while (sop >= sops) {
394 sma->sem_base[sop->sem_num].semval -= sop->sem_op;
395 sop--;
396 }
397
398 return result;
399}
400
401/* Go through the pending queue for the indicated semaphore
402 * looking for tasks that can be completed.
403 */
404static void update_queue (struct sem_array * sma)
405{
406 int error;
407 struct sem_queue * q;
408
Manfred Spraula1193f82008-07-25 01:48:06 -0700409 q = list_entry(sma->sem_pending.next, struct sem_queue, list);
410 while (&q->list != &sma->sem_pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 error = try_atomic_semop(sma, q->sops, q->nsops,
412 q->undo, q->pid);
413
414 /* Does q->sleeper still need to sleep? */
415 if (error <= 0) {
416 struct sem_queue *n;
Manfred Spraula1193f82008-07-25 01:48:06 -0700417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 /*
419 * Continue scanning. The next operation
420 * that must be checked depends on the type of the
421 * completed operation:
422 * - if the operation modified the array, then
423 * restart from the head of the queue and
424 * check for threads that might be waiting
425 * for semaphore values to become 0.
426 * - if the operation didn't modify the array,
427 * then just continue.
Manfred Spraula1193f82008-07-25 01:48:06 -0700428 * The order of list_del() and reading ->next
429 * is crucial: In the former case, the list_del()
430 * must be done first [because we might be the
431 * first entry in ->sem_pending], in the latter
432 * case the list_del() must be done last
433 * [because the list is invalid after the list_del()]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 */
Manfred Spraula1193f82008-07-25 01:48:06 -0700435 if (q->alter) {
436 list_del(&q->list);
437 n = list_entry(sma->sem_pending.next,
438 struct sem_queue, list);
439 } else {
440 n = list_entry(q->list.next, struct sem_queue,
441 list);
442 list_del(&q->list);
443 }
444
445 /* wake up the waiting thread */
446 q->status = IN_WAKEUP;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 wake_up_process(q->sleeper);
449 /* hands-off: q will disappear immediately after
450 * writing q->status.
451 */
Linus Torvalds1224b372005-12-24 12:19:38 -0800452 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 q->status = error;
454 q = n;
455 } else {
Manfred Spraula1193f82008-07-25 01:48:06 -0700456 q = list_entry(q->list.next, struct sem_queue, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 }
459}
460
461/* The following counts are associated to each semaphore:
462 * semncnt number of tasks waiting on semval being nonzero
463 * semzcnt number of tasks waiting on semval being zero
464 * This model assumes that a task waits on exactly one semaphore.
465 * Since semaphore operations are to be performed atomically, tasks actually
466 * wait on a whole sequence of semaphores simultaneously.
467 * The counts we return here are a rough approximation, but still
468 * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
469 */
470static int count_semncnt (struct sem_array * sma, ushort semnum)
471{
472 int semncnt;
473 struct sem_queue * q;
474
475 semncnt = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700476 list_for_each_entry(q, &sma->sem_pending, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct sembuf * sops = q->sops;
478 int nsops = q->nsops;
479 int i;
480 for (i = 0; i < nsops; i++)
481 if (sops[i].sem_num == semnum
482 && (sops[i].sem_op < 0)
483 && !(sops[i].sem_flg & IPC_NOWAIT))
484 semncnt++;
485 }
486 return semncnt;
487}
Manfred Spraula1193f82008-07-25 01:48:06 -0700488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489static int count_semzcnt (struct sem_array * sma, ushort semnum)
490{
491 int semzcnt;
492 struct sem_queue * q;
493
494 semzcnt = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700495 list_for_each_entry(q, &sma->sem_pending, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 struct sembuf * sops = q->sops;
497 int nsops = q->nsops;
498 int i;
499 for (i = 0; i < nsops; i++)
500 if (sops[i].sem_num == semnum
501 && (sops[i].sem_op == 0)
502 && !(sops[i].sem_flg & IPC_NOWAIT))
503 semzcnt++;
504 }
505 return semzcnt;
506}
507
Adrian Bunk6d97e232008-10-15 22:05:16 -0700508static void free_un(struct rcu_head *head)
Manfred Spraul380af1b2008-07-25 01:48:06 -0700509{
510 struct sem_undo *un = container_of(head, struct sem_undo, rcu);
511 kfree(un);
512}
513
Nadia Derbey3e148c72007-10-18 23:40:54 -0700514/* Free a semaphore set. freeary() is called with sem_ids.rw_mutex locked
515 * as a writer and the spinlock for this semaphore set hold. sem_ids.rw_mutex
516 * remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800518static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Manfred Spraul380af1b2008-07-25 01:48:06 -0700520 struct sem_undo *un, *tu;
521 struct sem_queue *q, *tq;
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800522 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Manfred Spraul380af1b2008-07-25 01:48:06 -0700524 /* Free the existing undo structures for this semaphore set. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700525 assert_spin_locked(&sma->sem_perm.lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -0700526 list_for_each_entry_safe(un, tu, &sma->list_id, list_id) {
527 list_del(&un->list_id);
528 spin_lock(&un->ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 un->semid = -1;
Manfred Spraul380af1b2008-07-25 01:48:06 -0700530 list_del_rcu(&un->list_proc);
531 spin_unlock(&un->ulp->lock);
532 call_rcu(&un->rcu, free_un);
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* Wake up all pending processes and let them fail with EIDRM. */
Manfred Spraul380af1b2008-07-25 01:48:06 -0700536 list_for_each_entry_safe(q, tq, &sma->sem_pending, list) {
Manfred Spraula1193f82008-07-25 01:48:06 -0700537 list_del(&q->list);
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 q->status = IN_WAKEUP;
540 wake_up_process(q->sleeper); /* doesn't sleep */
Manfred Spraul6003a932005-12-23 23:57:41 +0100541 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 q->status = -EIDRM; /* hands-off q */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700545 /* Remove the semaphore set from the IDR */
546 sem_rmid(ns, sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 sem_unlock(sma);
548
Kirill Korotaeve3893532006-10-02 02:18:22 -0700549 ns->used_sems -= sma->sem_nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 security_sem_free(sma);
551 ipc_rcu_putref(sma);
552}
553
554static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
555{
556 switch(version) {
557 case IPC_64:
558 return copy_to_user(buf, in, sizeof(*in));
559 case IPC_OLD:
560 {
561 struct semid_ds out;
562
563 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
564
565 out.sem_otime = in->sem_otime;
566 out.sem_ctime = in->sem_ctime;
567 out.sem_nsems = in->sem_nsems;
568
569 return copy_to_user(buf, &out, sizeof(out));
570 }
571 default:
572 return -EINVAL;
573 }
574}
575
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800576static int semctl_nolock(struct ipc_namespace *ns, int semid,
577 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 int err = -EINVAL;
580 struct sem_array *sma;
581
582 switch(cmd) {
583 case IPC_INFO:
584 case SEM_INFO:
585 {
586 struct seminfo seminfo;
587 int max_id;
588
589 err = security_sem_semctl(NULL, cmd);
590 if (err)
591 return err;
592
593 memset(&seminfo,0,sizeof(seminfo));
Kirill Korotaeve3893532006-10-02 02:18:22 -0700594 seminfo.semmni = ns->sc_semmni;
595 seminfo.semmns = ns->sc_semmns;
596 seminfo.semmsl = ns->sc_semmsl;
597 seminfo.semopm = ns->sc_semopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 seminfo.semvmx = SEMVMX;
599 seminfo.semmnu = SEMMNU;
600 seminfo.semmap = SEMMAP;
601 seminfo.semume = SEMUME;
Nadia Derbey3e148c72007-10-18 23:40:54 -0700602 down_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (cmd == SEM_INFO) {
Kirill Korotaeve3893532006-10-02 02:18:22 -0700604 seminfo.semusz = sem_ids(ns).in_use;
605 seminfo.semaem = ns->used_sems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 } else {
607 seminfo.semusz = SEMUSZ;
608 seminfo.semaem = SEMAEM;
609 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700610 max_id = ipc_get_maxid(&sem_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700611 up_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (copy_to_user (arg.__buf, &seminfo, sizeof(struct seminfo)))
613 return -EFAULT;
614 return (max_id < 0) ? 0: max_id;
615 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800616 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 case SEM_STAT:
618 {
619 struct semid64_ds tbuf;
620 int id;
621
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800622 if (cmd == SEM_STAT) {
623 sma = sem_lock(ns, semid);
624 if (IS_ERR(sma))
625 return PTR_ERR(sma);
626 id = sma->sem_perm.id;
627 } else {
628 sma = sem_lock_check(ns, semid);
629 if (IS_ERR(sma))
630 return PTR_ERR(sma);
631 id = 0;
632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 err = -EACCES;
635 if (ipcperms (&sma->sem_perm, S_IRUGO))
636 goto out_unlock;
637
638 err = security_sem_semctl(sma, cmd);
639 if (err)
640 goto out_unlock;
641
Nadia Derbey023a5352007-10-18 23:40:51 -0700642 memset(&tbuf, 0, sizeof(tbuf));
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
645 tbuf.sem_otime = sma->sem_otime;
646 tbuf.sem_ctime = sma->sem_ctime;
647 tbuf.sem_nsems = sma->sem_nsems;
648 sem_unlock(sma);
649 if (copy_semid_to_user (arg.buf, &tbuf, version))
650 return -EFAULT;
651 return id;
652 }
653 default:
654 return -EINVAL;
655 }
656 return err;
657out_unlock:
658 sem_unlock(sma);
659 return err;
660}
661
Kirill Korotaeve3893532006-10-02 02:18:22 -0700662static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
663 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct sem_array *sma;
666 struct sem* curr;
667 int err;
668 ushort fast_sem_io[SEMMSL_FAST];
669 ushort* sem_io = fast_sem_io;
670 int nsems;
671
Nadia Derbey023a5352007-10-18 23:40:51 -0700672 sma = sem_lock_check(ns, semid);
673 if (IS_ERR(sma))
674 return PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 nsems = sma->sem_nsems;
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 err = -EACCES;
679 if (ipcperms (&sma->sem_perm, (cmd==SETVAL||cmd==SETALL)?S_IWUGO:S_IRUGO))
680 goto out_unlock;
681
682 err = security_sem_semctl(sma, cmd);
683 if (err)
684 goto out_unlock;
685
686 err = -EACCES;
687 switch (cmd) {
688 case GETALL:
689 {
690 ushort __user *array = arg.array;
691 int i;
692
693 if(nsems > SEMMSL_FAST) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700694 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 sem_io = ipc_alloc(sizeof(ushort)*nsems);
697 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700698 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return -ENOMEM;
700 }
701
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700702 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (sma->sem_perm.deleted) {
704 sem_unlock(sma);
705 err = -EIDRM;
706 goto out_free;
707 }
708 }
709
710 for (i = 0; i < sma->sem_nsems; i++)
711 sem_io[i] = sma->sem_base[i].semval;
712 sem_unlock(sma);
713 err = 0;
714 if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
715 err = -EFAULT;
716 goto out_free;
717 }
718 case SETALL:
719 {
720 int i;
721 struct sem_undo *un;
722
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700723 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 if(nsems > SEMMSL_FAST) {
726 sem_io = ipc_alloc(sizeof(ushort)*nsems);
727 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700728 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -ENOMEM;
730 }
731 }
732
733 if (copy_from_user (sem_io, arg.array, nsems*sizeof(ushort))) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700734 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 err = -EFAULT;
736 goto out_free;
737 }
738
739 for (i = 0; i < nsems; i++) {
740 if (sem_io[i] > SEMVMX) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700741 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 err = -ERANGE;
743 goto out_free;
744 }
745 }
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700746 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (sma->sem_perm.deleted) {
748 sem_unlock(sma);
749 err = -EIDRM;
750 goto out_free;
751 }
752
753 for (i = 0; i < nsems; i++)
754 sma->sem_base[i].semval = sem_io[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700755
756 assert_spin_locked(&sma->sem_perm.lock);
757 list_for_each_entry(un, &sma->list_id, list_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 for (i = 0; i < nsems; i++)
759 un->semadj[i] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 sma->sem_ctime = get_seconds();
762 /* maybe some queued-up processes were waiting for this */
763 update_queue(sma);
764 err = 0;
765 goto out_unlock;
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /* GETVAL, GETPID, GETNCTN, GETZCNT, SETVAL: fall-through */
768 }
769 err = -EINVAL;
770 if(semnum < 0 || semnum >= nsems)
771 goto out_unlock;
772
773 curr = &sma->sem_base[semnum];
774
775 switch (cmd) {
776 case GETVAL:
777 err = curr->semval;
778 goto out_unlock;
779 case GETPID:
780 err = curr->sempid;
781 goto out_unlock;
782 case GETNCNT:
783 err = count_semncnt(sma,semnum);
784 goto out_unlock;
785 case GETZCNT:
786 err = count_semzcnt(sma,semnum);
787 goto out_unlock;
788 case SETVAL:
789 {
790 int val = arg.val;
791 struct sem_undo *un;
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 err = -ERANGE;
794 if (val > SEMVMX || val < 0)
795 goto out_unlock;
796
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700797 assert_spin_locked(&sma->sem_perm.lock);
798 list_for_each_entry(un, &sma->list_id, list_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 un->semadj[semnum] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 curr->semval = val;
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700802 curr->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 sma->sem_ctime = get_seconds();
804 /* maybe some queued-up processes were waiting for this */
805 update_queue(sma);
806 err = 0;
807 goto out_unlock;
808 }
809 }
810out_unlock:
811 sem_unlock(sma);
812out_free:
813 if(sem_io != fast_sem_io)
814 ipc_free(sem_io, sizeof(ushort)*nsems);
815 return err;
816}
817
Pierre Peiffer016d7132008-04-29 01:00:50 -0700818static inline unsigned long
819copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
821 switch(version) {
822 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700823 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 case IPC_OLD:
827 {
828 struct semid_ds tbuf_old;
829
830 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
831 return -EFAULT;
832
Pierre Peiffer016d7132008-04-29 01:00:50 -0700833 out->sem_perm.uid = tbuf_old.sem_perm.uid;
834 out->sem_perm.gid = tbuf_old.sem_perm.gid;
835 out->sem_perm.mode = tbuf_old.sem_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 return 0;
838 }
839 default:
840 return -EINVAL;
841 }
842}
843
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700844/*
845 * This function handles some semctl commands which require the rw_mutex
846 * to be held in write mode.
847 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
848 */
Pierre Peiffer21a48262008-04-29 01:00:49 -0700849static int semctl_down(struct ipc_namespace *ns, int semid,
850 int cmd, int version, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 struct sem_array *sma;
853 int err;
Pierre Peiffer016d7132008-04-29 01:00:50 -0700854 struct semid64_ds semid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct kern_ipc_perm *ipcp;
856
857 if(cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700858 if (copy_semid_from_user(&semid64, arg.buf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700862 ipcp = ipcctl_pre_down(&sem_ids(ns), semid, cmd, &semid64.sem_perm, 0);
863 if (IS_ERR(ipcp))
864 return PTR_ERR(ipcp);
Steve Grubb073115d2006-04-02 17:07:33 -0400865
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700866 sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 err = security_sem_semctl(sma, cmd);
869 if (err)
870 goto out_unlock;
871
872 switch(cmd){
873 case IPC_RMID:
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800874 freeary(ns, ipcp);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700875 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 case IPC_SET:
Pierre Peiffer8f4a3802008-04-29 01:00:51 -0700877 ipc_update_perm(&semid64.sem_perm, ipcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 sma->sem_ctime = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 break;
880 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884out_unlock:
885 sem_unlock(sma);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -0700886out_up:
887 up_write(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return err;
889}
890
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100891SYSCALL_DEFINE(semctl)(int semid, int semnum, int cmd, union semun arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 int err = -EINVAL;
894 int version;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700895 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (semid < 0)
898 return -EINVAL;
899
900 version = ipc_parse_version(&cmd);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700901 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 switch(cmd) {
904 case IPC_INFO:
905 case SEM_INFO:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800906 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 case SEM_STAT:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800908 err = semctl_nolock(ns, semid, cmd, version, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return err;
910 case GETALL:
911 case GETVAL:
912 case GETPID:
913 case GETNCNT:
914 case GETZCNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 case SETVAL:
916 case SETALL:
Kirill Korotaeve3893532006-10-02 02:18:22 -0700917 err = semctl_main(ns,semid,semnum,cmd,version,arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return err;
919 case IPC_RMID:
920 case IPC_SET:
Pierre Peiffer21a48262008-04-29 01:00:49 -0700921 err = semctl_down(ns, semid, cmd, version, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return err;
923 default:
924 return -EINVAL;
925 }
926}
Heiko Carstens6673e0c2009-01-14 14:14:02 +0100927#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
928asmlinkage long SyS_semctl(int semid, int semnum, int cmd, union semun arg)
929{
930 return SYSC_semctl((int) semid, (int) semnum, (int) cmd, arg);
931}
932SYSCALL_ALIAS(sys_semctl, SyS_semctl);
933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/* If the task doesn't already have a undo_list, then allocate one
936 * here. We guarantee there is only one thread using this undo list,
937 * and current is THE ONE
938 *
939 * If this allocation and assignment succeeds, but later
940 * portions of this code fail, there is no need to free the sem_undo_list.
941 * Just let it stay associated with the task, and it'll be freed later
942 * at exit time.
943 *
944 * This can block, so callers must hold no locks.
945 */
946static inline int get_undo_list(struct sem_undo_list **undo_listp)
947{
948 struct sem_undo_list *undo_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 undo_list = current->sysvsem.undo_list;
951 if (!undo_list) {
Matt Helsley2453a302006-10-02 02:18:25 -0700952 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (undo_list == NULL)
954 return -ENOMEM;
Ingo Molnar00a5dfd2005-08-05 23:05:27 +0200955 spin_lock_init(&undo_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 atomic_set(&undo_list->refcnt, 1);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700957 INIT_LIST_HEAD(&undo_list->list_proc);
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 current->sysvsem.undo_list = undo_list;
960 }
961 *undo_listp = undo_list;
962 return 0;
963}
964
965static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
966{
Manfred Spraul380af1b2008-07-25 01:48:06 -0700967 struct sem_undo *walk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Manfred Spraul380af1b2008-07-25 01:48:06 -0700969 list_for_each_entry_rcu(walk, &ulp->list_proc, list_proc) {
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700970 if (walk->semid == semid)
971 return walk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700973 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700976/**
977 * find_alloc_undo - Lookup (and if not present create) undo array
978 * @ns: namespace
979 * @semid: semaphore array id
980 *
981 * The function looks up (and if not present creates) the undo structure.
982 * The size of the undo structure depends on the size of the semaphore
983 * array, thus the alloc path is not that straightforward.
Manfred Spraul380af1b2008-07-25 01:48:06 -0700984 * Lifetime-rules: sem_undo is rcu-protected, on success, the function
985 * performs a rcu_read_lock().
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700986 */
987static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct sem_array *sma;
990 struct sem_undo_list *ulp;
991 struct sem_undo *un, *new;
992 int nsems;
993 int error;
994
995 error = get_undo_list(&ulp);
996 if (error)
997 return ERR_PTR(error);
998
Manfred Spraul380af1b2008-07-25 01:48:06 -0700999 rcu_read_lock();
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001000 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 un = lookup_undo(ulp, semid);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001002 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (likely(un!=NULL))
1004 goto out;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001005 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 /* no undo structure around - allocate one. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001008 /* step 1: figure out the size of the semaphore array */
Nadia Derbey023a5352007-10-18 23:40:51 -07001009 sma = sem_lock_check(ns, semid);
1010 if (IS_ERR(sma))
1011 return ERR_PTR(PTR_ERR(sma));
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 nsems = sma->sem_nsems;
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001014 sem_getref_and_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001016 /* step 2: allocate new undo structure */
Burman Yan4668edc2006-12-06 20:38:51 -08001017 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!new) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001019 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return ERR_PTR(-ENOMEM);
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Manfred Spraul380af1b2008-07-25 01:48:06 -07001023 /* step 3: Acquire the lock on semaphore array */
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001024 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (sma->sem_perm.deleted) {
1026 sem_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 kfree(new);
1028 un = ERR_PTR(-EIDRM);
1029 goto out;
1030 }
Manfred Spraul380af1b2008-07-25 01:48:06 -07001031 spin_lock(&ulp->lock);
1032
1033 /*
1034 * step 4: check for races: did someone else allocate the undo struct?
1035 */
1036 un = lookup_undo(ulp, semid);
1037 if (un) {
1038 kfree(new);
1039 goto success;
1040 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001041 /* step 5: initialize & link new undo structure */
1042 new->semadj = (short *) &new[1];
Manfred Spraul380af1b2008-07-25 01:48:06 -07001043 new->ulp = ulp;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001044 new->semid = semid;
1045 assert_spin_locked(&ulp->lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001046 list_add_rcu(&new->list_proc, &ulp->list_proc);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001047 assert_spin_locked(&sma->sem_perm.lock);
1048 list_add(&new->list_id, &sma->list_id);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001049 un = new;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001050
1051success:
1052 spin_unlock(&ulp->lock);
1053 rcu_read_lock();
1054 sem_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055out:
1056 return un;
1057}
1058
Heiko Carstensd5460c92009-01-14 14:14:27 +01001059SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
1060 unsigned, nsops, const struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 int error = -EINVAL;
1063 struct sem_array *sma;
1064 struct sembuf fast_sops[SEMOPM_FAST];
1065 struct sembuf* sops = fast_sops, *sop;
1066 struct sem_undo *un;
Manfred Spraulb78755a2005-06-23 00:10:06 -07001067 int undos = 0, alter = 0, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 struct sem_queue queue;
1069 unsigned long jiffies_left = 0;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001070 struct ipc_namespace *ns;
1071
1072 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 if (nsops < 1 || semid < 0)
1075 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001076 if (nsops > ns->sc_semopm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return -E2BIG;
1078 if(nsops > SEMOPM_FAST) {
1079 sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
1080 if(sops==NULL)
1081 return -ENOMEM;
1082 }
1083 if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
1084 error=-EFAULT;
1085 goto out_free;
1086 }
1087 if (timeout) {
1088 struct timespec _timeout;
1089 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1090 error = -EFAULT;
1091 goto out_free;
1092 }
1093 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1094 _timeout.tv_nsec >= 1000000000L) {
1095 error = -EINVAL;
1096 goto out_free;
1097 }
1098 jiffies_left = timespec_to_jiffies(&_timeout);
1099 }
1100 max = 0;
1101 for (sop = sops; sop < sops + nsops; sop++) {
1102 if (sop->sem_num >= max)
1103 max = sop->sem_num;
1104 if (sop->sem_flg & SEM_UNDO)
Manfred Spraulb78755a2005-06-23 00:10:06 -07001105 undos = 1;
1106 if (sop->sem_op != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 alter = 1;
1108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (undos) {
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001111 un = find_alloc_undo(ns, semid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (IS_ERR(un)) {
1113 error = PTR_ERR(un);
1114 goto out_free;
1115 }
1116 } else
1117 un = NULL;
1118
Nadia Derbey023a5352007-10-18 23:40:51 -07001119 sma = sem_lock_check(ns, semid);
1120 if (IS_ERR(sma)) {
Manfred Spraul380af1b2008-07-25 01:48:06 -07001121 if (un)
1122 rcu_read_unlock();
Nadia Derbey023a5352007-10-18 23:40:51 -07001123 error = PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -07001125 }
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /*
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001128 * semid identifiers are not unique - find_alloc_undo may have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 * allocated an undo structure, it was invalidated by an RMID
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001130 * and now a new array with received the same id. Check and fail.
Manfred Spraul380af1b2008-07-25 01:48:06 -07001131 * This case can be detected checking un->semid. The existance of
1132 * "un" itself is guaranteed by rcu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001134 error = -EIDRM;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001135 if (un) {
1136 if (un->semid == -1) {
1137 rcu_read_unlock();
1138 goto out_unlock_free;
1139 } else {
1140 /*
1141 * rcu lock can be released, "un" cannot disappear:
1142 * - sem_lock is acquired, thus IPC_RMID is
1143 * impossible.
1144 * - exit_sem is impossible, it always operates on
1145 * current (or a dead task).
1146 */
1147
1148 rcu_read_unlock();
1149 }
1150 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 error = -EFBIG;
1153 if (max >= sma->sem_nsems)
1154 goto out_unlock_free;
1155
1156 error = -EACCES;
1157 if (ipcperms(&sma->sem_perm, alter ? S_IWUGO : S_IRUGO))
1158 goto out_unlock_free;
1159
1160 error = security_sem_semop(sma, sops, nsops, alter);
1161 if (error)
1162 goto out_unlock_free;
1163
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001164 error = try_atomic_semop (sma, sops, nsops, un, task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (error <= 0) {
1166 if (alter && error == 0)
1167 update_queue (sma);
1168 goto out_unlock_free;
1169 }
1170
1171 /* We need to sleep on this operation, so we put the current
1172 * task into the pending queue and go to sleep.
1173 */
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 queue.sops = sops;
1176 queue.nsops = nsops;
1177 queue.undo = un;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001178 queue.pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 queue.alter = alter;
1180 if (alter)
Manfred Spraula1193f82008-07-25 01:48:06 -07001181 list_add_tail(&queue.list, &sma->sem_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 else
Manfred Spraula1193f82008-07-25 01:48:06 -07001183 list_add(&queue.list, &sma->sem_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 queue.status = -EINTR;
1186 queue.sleeper = current;
1187 current->state = TASK_INTERRUPTIBLE;
1188 sem_unlock(sma);
1189
1190 if (timeout)
1191 jiffies_left = schedule_timeout(jiffies_left);
1192 else
1193 schedule();
1194
1195 error = queue.status;
1196 while(unlikely(error == IN_WAKEUP)) {
1197 cpu_relax();
1198 error = queue.status;
1199 }
1200
1201 if (error != -EINTR) {
1202 /* fast path: update_queue already obtained all requested
1203 * resources */
1204 goto out_free;
1205 }
1206
Kirill Korotaeve3893532006-10-02 02:18:22 -07001207 sma = sem_lock(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001208 if (IS_ERR(sma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 error = -EIDRM;
1210 goto out_free;
1211 }
1212
1213 /*
1214 * If queue.status != -EINTR we are woken up by another process
1215 */
1216 error = queue.status;
1217 if (error != -EINTR) {
1218 goto out_unlock_free;
1219 }
1220
1221 /*
1222 * If an interrupt occurred we have to clean up the queue
1223 */
1224 if (timeout && jiffies_left == 0)
1225 error = -EAGAIN;
Manfred Spraula1193f82008-07-25 01:48:06 -07001226 list_del(&queue.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228out_unlock_free:
1229 sem_unlock(sma);
1230out_free:
1231 if(sops != fast_sops)
1232 kfree(sops);
1233 return error;
1234}
1235
Heiko Carstensd5460c92009-01-14 14:14:27 +01001236SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
1237 unsigned, nsops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
1239 return sys_semtimedop(semid, tsops, nsops, NULL);
1240}
1241
1242/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
1243 * parent and child tasks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 */
1245
1246int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
1247{
1248 struct sem_undo_list *undo_list;
1249 int error;
1250
1251 if (clone_flags & CLONE_SYSVSEM) {
1252 error = get_undo_list(&undo_list);
1253 if (error)
1254 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 atomic_inc(&undo_list->refcnt);
1256 tsk->sysvsem.undo_list = undo_list;
1257 } else
1258 tsk->sysvsem.undo_list = NULL;
1259
1260 return 0;
1261}
1262
1263/*
1264 * add semadj values to semaphores, free undo structures.
1265 * undo structures are not freed when semaphore arrays are destroyed
1266 * so some of them may be out of date.
1267 * IMPLEMENTATION NOTE: There is some confusion over whether the
1268 * set of adjustments that needs to be done should be done in an atomic
1269 * manner or not. That is, if we are attempting to decrement the semval
1270 * should we queue up and wait until we can do so legally?
1271 * The original implementation attempted to do this (queue and wait).
1272 * The current implementation does not do so. The POSIX standard
1273 * and SVID should be consulted to determine what behavior is mandated.
1274 */
1275void exit_sem(struct task_struct *tsk)
1276{
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001277 struct sem_undo_list *ulp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001279 ulp = tsk->sysvsem.undo_list;
1280 if (!ulp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return;
Manfred Spraul9edff4a2008-04-29 01:00:57 -07001282 tsk->sysvsem.undo_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001284 if (!atomic_dec_and_test(&ulp->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return;
1286
Manfred Spraul380af1b2008-07-25 01:48:06 -07001287 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct sem_array *sma;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001289 struct sem_undo *un;
1290 int semid;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001291 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Manfred Spraul380af1b2008-07-25 01:48:06 -07001293 rcu_read_lock();
Jiri Pirko05725f72009-04-14 20:17:16 +02001294 un = list_entry_rcu(ulp->list_proc.next,
1295 struct sem_undo, list_proc);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001296 if (&un->list_proc == &ulp->list_proc)
1297 semid = -1;
1298 else
1299 semid = un->semid;
1300 rcu_read_unlock();
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001301
Manfred Spraul380af1b2008-07-25 01:48:06 -07001302 if (semid == -1)
1303 break;
1304
1305 sma = sem_lock_check(tsk->nsproxy->ipc_ns, un->semid);
1306
1307 /* exit_sem raced with IPC_RMID, nothing to do */
Nadia Derbey023a5352007-10-18 23:40:51 -07001308 if (IS_ERR(sma))
Manfred Spraul380af1b2008-07-25 01:48:06 -07001309 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Manfred Spraul380af1b2008-07-25 01:48:06 -07001311 un = lookup_undo(ulp, semid);
1312 if (un == NULL) {
1313 /* exit_sem raced with IPC_RMID+semget() that created
1314 * exactly the same semid. Nothing to do.
1315 */
1316 sem_unlock(sma);
1317 continue;
1318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Manfred Spraul380af1b2008-07-25 01:48:06 -07001320 /* remove un from the linked lists */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001321 assert_spin_locked(&sma->sem_perm.lock);
1322 list_del(&un->list_id);
1323
Manfred Spraul380af1b2008-07-25 01:48:06 -07001324 spin_lock(&ulp->lock);
1325 list_del_rcu(&un->list_proc);
1326 spin_unlock(&ulp->lock);
1327
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001328 /* perform adjustments registered in un */
1329 for (i = 0; i < sma->sem_nsems; i++) {
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001330 struct sem * semaphore = &sma->sem_base[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001331 if (un->semadj[i]) {
1332 semaphore->semval += un->semadj[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /*
1334 * Range checks of the new semaphore value,
1335 * not defined by sus:
1336 * - Some unices ignore the undo entirely
1337 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
1338 * - some cap the value (e.g. FreeBSD caps
1339 * at 0, but doesn't enforce SEMVMX)
1340 *
1341 * Linux caps the semaphore value, both at 0
1342 * and at SEMVMX.
1343 *
1344 * Manfred <manfred@colorfullife.com>
1345 */
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001346 if (semaphore->semval < 0)
1347 semaphore->semval = 0;
1348 if (semaphore->semval > SEMVMX)
1349 semaphore->semval = SEMVMX;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001350 semaphore->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352 }
1353 sma->sem_otime = get_seconds();
1354 /* maybe some queued-up processes were waiting for this */
1355 update_queue(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 sem_unlock(sma);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001357
1358 call_rcu(&un->rcu, free_un);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001360 kfree(ulp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001364static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Mike Waychison19b49462005-09-06 15:17:10 -07001366 struct sem_array *sma = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Mike Waychison19b49462005-09-06 15:17:10 -07001368 return seq_printf(s,
1369 "%10d %10d %4o %10lu %5u %5u %5u %5u %10lu %10lu\n",
1370 sma->sem_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001371 sma->sem_perm.id,
Mike Waychison19b49462005-09-06 15:17:10 -07001372 sma->sem_perm.mode,
1373 sma->sem_nsems,
1374 sma->sem_perm.uid,
1375 sma->sem_perm.gid,
1376 sma->sem_perm.cuid,
1377 sma->sem_perm.cgid,
1378 sma->sem_otime,
1379 sma->sem_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380}
1381#endif