blob: cd1093cf7e8fa595b9cabe1bf5413d01dc633e08 [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * /proc/sysvipc/sem support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
7 *
8 * SMP-threaded, sysctl's added
Christian Kujau624dffc2006-01-15 02:43:54 +01009 * (c) 1999 Manfred Spraul <manfred@colorfullife.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Enforced range limit on SEM_UNDO
Alan Cox046c6882009-01-05 14:06:29 +000011 * (c) 2001 Red Hat Inc
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Lockless wakeup
13 * (c) 2003 Manfred Spraul <manfred@colorfullife.com>
Manfred Spraulc5cf6352010-05-26 14:43:43 -070014 * Further wakeup optimizations, documentation
15 * (c) 2010 Manfred Spraul <manfred@colorfullife.com>
Steve Grubb073115d2006-04-02 17:07:33 -040016 *
17 * support for audit of ipc object properties and permission changes
18 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
Kirill Korotaeve3893532006-10-02 02:18:22 -070019 *
20 * namespaces support
21 * OpenVZ, SWsoft Inc.
22 * Pavel Emelianov <xemul@openvz.org>
Manfred Spraulc5cf6352010-05-26 14:43:43 -070023 *
24 * Implementation notes: (May 2010)
25 * This file implements System V semaphores.
26 *
27 * User space visible behavior:
28 * - FIFO ordering for semop() operations (just FIFO, not starvation
29 * protection)
30 * - multiple semaphore operations that alter the same semaphore in
31 * one semop() are handled.
32 * - sem_ctime (time of last semctl()) is updated in the IPC_SET, SETVAL and
33 * SETALL calls.
34 * - two Linux specific semctl() commands: SEM_STAT, SEM_INFO.
35 * - undo adjustments at process exit are limited to 0..SEMVMX.
36 * - namespace are supported.
37 * - SEMMSL, SEMMNS, SEMOPM and SEMMNI can be configured at runtine by writing
38 * to /proc/sys/kernel/sem.
39 * - statistics about the usage are reported in /proc/sysvipc/sem.
40 *
41 * Internals:
42 * - scalability:
43 * - all global variables are read-mostly.
44 * - semop() calls and semctl(RMID) are synchronized by RCU.
45 * - most operations do write operations (actually: spin_lock calls) to
46 * the per-semaphore array structure.
47 * Thus: Perfect SMP scaling between independent semaphore arrays.
48 * If multiple semaphores in one array are used, then cache line
49 * trashing on the semaphore array spinlock will limit the scaling.
50 * - semncnt and semzcnt are calculated on demand in count_semncnt() and
51 * count_semzcnt()
52 * - the task that performs a successful semop() scans the list of all
53 * sleeping tasks and completes any pending operations that can be fulfilled.
54 * Semaphores are actively given to waiting tasks (necessary for FIFO).
55 * (see update_queue())
56 * - To improve the scalability, the actual wake-up calls are performed after
57 * dropping all locks. (see wake_up_sem_queue_prepare(),
58 * wake_up_sem_queue_do())
59 * - All work is done by the waker, the woken up task does not have to do
60 * anything - not even acquiring a lock or dropping a refcount.
61 * - A woken up task may not even touch the semaphore array anymore, it may
62 * have been destroyed already by a semctl(RMID).
63 * - The synchronizations between wake-ups due to a timeout/signal and a
64 * wake-up due to a completed semaphore operation is achieved by using an
65 * intermediate state (IN_WAKEUP).
66 * - UNDO values are stored in an array (one per process and per
67 * semaphore array, lazily allocated). For backwards compatibility, multiple
68 * modes for the UNDO variables are supported (per process, per thread)
69 * (see copy_semundo, CLONE_SYSVSEM)
70 * - There are two lists of the pending operations: a per-array list
71 * and per-semaphore list (stored in the array). This allows to achieve FIFO
72 * ordering without always scanning all pending operations.
73 * The worst-case behavior is nevertheless O(N^2) for N wakeups.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/slab.h>
77#include <linux/spinlock.h>
78#include <linux/init.h>
79#include <linux/proc_fs.h>
80#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/security.h>
82#include <linux/syscalls.h>
83#include <linux/audit.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080084#include <linux/capability.h>
Mike Waychison19b49462005-09-06 15:17:10 -070085#include <linux/seq_file.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070086#include <linux/rwsem.h>
Kirill Korotaeve3893532006-10-02 02:18:22 -070087#include <linux/nsproxy.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080088#include <linux/ipc_namespace.h>
Ingo Molnar5f921ae2006-03-26 01:37:17 -080089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include <asm/uaccess.h>
91#include "util.h"
92
Manfred Spraule57940d2011-11-02 13:38:54 -070093/* One semaphore structure for each semaphore in the system. */
94struct sem {
95 int semval; /* current value */
96 int sempid; /* pid of last operation */
97 struct list_head sem_pending; /* pending single-sop operations */
98};
99
100/* One queue for each sleeping process in the system. */
101struct sem_queue {
102 struct list_head simple_list; /* queue of pending operations */
103 struct list_head list; /* queue of pending operations */
104 struct task_struct *sleeper; /* this process */
105 struct sem_undo *undo; /* undo structure */
106 int pid; /* process id of requesting process */
107 int status; /* completion status of operation */
108 struct sembuf *sops; /* array of pending operations */
109 int nsops; /* number of operations */
110 int alter; /* does *sops alter the array? */
111};
112
113/* Each task has a list of undo requests. They are executed automatically
114 * when the process exits.
115 */
116struct sem_undo {
117 struct list_head list_proc; /* per-process list: *
118 * all undos from one process
119 * rcu protected */
120 struct rcu_head rcu; /* rcu struct for sem_undo */
121 struct sem_undo_list *ulp; /* back ptr to sem_undo_list */
122 struct list_head list_id; /* per semaphore array list:
123 * all undos for one array */
124 int semid; /* semaphore set identifier */
125 short *semadj; /* array of adjustments */
126 /* one per semaphore */
127};
128
129/* sem_undo_list controls shared access to the list of sem_undo structures
130 * that may be shared among all a CLONE_SYSVSEM task group.
131 */
132struct sem_undo_list {
133 atomic_t refcnt;
134 spinlock_t lock;
135 struct list_head list_proc;
136};
137
138
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800139#define sem_ids(ns) ((ns)->ids[IPC_SEM_IDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Kirill Korotaeve3893532006-10-02 02:18:22 -0700141#define sem_unlock(sma) ipc_unlock(&(sma)->sem_perm)
Nadia Derbey1b531f22007-10-18 23:40:55 -0700142#define sem_checkid(sma, semid) ipc_checkid(&sma->sem_perm, semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700144static int newary(struct ipc_namespace *, struct ipc_params *);
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800145static void freeary(struct ipc_namespace *, struct kern_ipc_perm *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -0700147static int sysvipc_sem_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#endif
149
150#define SEMMSL_FAST 256 /* 512 bytes on stack */
151#define SEMOPM_FAST 64 /* ~ 372 bytes on stack */
152
153/*
154 * linked list protection:
155 * sem_undo.id_next,
156 * sem_array.sem_pending{,last},
157 * sem_array.sem_undo: sem_lock() for read/write
158 * sem_undo.proc_next: only "current" is allowed to read/write that field.
159 *
160 */
161
Kirill Korotaeve3893532006-10-02 02:18:22 -0700162#define sc_semmsl sem_ctls[0]
163#define sc_semmns sem_ctls[1]
164#define sc_semopm sem_ctls[2]
165#define sc_semmni sem_ctls[3]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800167void sem_init_ns(struct ipc_namespace *ns)
Kirill Korotaeve3893532006-10-02 02:18:22 -0700168{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700169 ns->sc_semmsl = SEMMSL;
170 ns->sc_semmns = SEMMNS;
171 ns->sc_semopm = SEMOPM;
172 ns->sc_semmni = SEMMNI;
173 ns->used_sems = 0;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800174 ipc_init_ids(&ns->ids[IPC_SEM_IDS]);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700175}
176
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800177#ifdef CONFIG_IPC_NS
Kirill Korotaeve3893532006-10-02 02:18:22 -0700178void sem_exit_ns(struct ipc_namespace *ns)
179{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800180 free_ipcs(ns, &sem_ids(ns), freeary);
Serge E. Hallyn7d6feeb2009-12-15 16:47:27 -0800181 idr_destroy(&ns->ids[IPC_SEM_IDS].ipcs_idr);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700182}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800183#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185void __init sem_init (void)
186{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800187 sem_init_ns(&init_ipc_ns);
Mike Waychison19b49462005-09-06 15:17:10 -0700188 ipc_init_proc_interface("sysvipc/sem",
189 " key semid perms nsems uid gid cuid cgid otime ctime\n",
Kirill Korotaeve3893532006-10-02 02:18:22 -0700190 IPC_SEM_IDS, sysvipc_sem_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Nadia Derbey3e148c72007-10-18 23:40:54 -0700193/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700194 * sem_lock_(check_) routines are called in the paths where the rw_mutex
195 * is not held.
196 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700197static inline struct sem_array *sem_lock(struct ipc_namespace *ns, int id)
198{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700199 struct kern_ipc_perm *ipcp = ipc_lock(&sem_ids(ns), id);
200
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800201 if (IS_ERR(ipcp))
202 return (struct sem_array *)ipcp;
203
Nadia Derbey03f02c72007-10-18 23:40:51 -0700204 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700205}
206
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700207static inline struct sem_array *sem_obtain_object(struct ipc_namespace *ns, int id)
208{
209 struct kern_ipc_perm *ipcp = ipc_obtain_object(&sem_ids(ns), id);
210
211 if (IS_ERR(ipcp))
212 return ERR_CAST(ipcp);
213
214 return container_of(ipcp, struct sem_array, sem_perm);
215}
216
Nadia Derbey023a5352007-10-18 23:40:51 -0700217static inline struct sem_array *sem_lock_check(struct ipc_namespace *ns,
218 int id)
219{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700220 struct kern_ipc_perm *ipcp = ipc_lock_check(&sem_ids(ns), id);
221
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800222 if (IS_ERR(ipcp))
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700223 return ERR_CAST(ipcp);
224
225 return container_of(ipcp, struct sem_array, sem_perm);
226}
227
228static inline struct sem_array *sem_obtain_object_check(struct ipc_namespace *ns,
229 int id)
230{
231 struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&sem_ids(ns), id);
232
233 if (IS_ERR(ipcp))
234 return ERR_CAST(ipcp);
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800235
Nadia Derbey03f02c72007-10-18 23:40:51 -0700236 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700237}
238
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700239static inline void sem_lock_and_putref(struct sem_array *sma)
240{
241 ipc_lock_by_ptr(&sma->sem_perm);
242 ipc_rcu_putref(sma);
243}
244
245static inline void sem_getref_and_unlock(struct sem_array *sma)
246{
247 ipc_rcu_getref(sma);
248 ipc_unlock(&(sma)->sem_perm);
249}
250
251static inline void sem_putref(struct sem_array *sma)
252{
253 ipc_lock_by_ptr(&sma->sem_perm);
254 ipc_rcu_putref(sma);
255 ipc_unlock(&(sma)->sem_perm);
256}
257
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700258/*
259 * Call inside the rcu read section.
260 */
261static inline void sem_getref(struct sem_array *sma)
262{
263 spin_lock(&(sma)->sem_perm.lock);
264 ipc_rcu_getref(sma);
265 ipc_unlock(&(sma)->sem_perm);
266}
267
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700268static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
269{
270 ipc_rmid(&sem_ids(ns), &s->sem_perm);
271}
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273/*
274 * Lockless wakeup algorithm:
275 * Without the check/retry algorithm a lockless wakeup is possible:
276 * - queue.status is initialized to -EINTR before blocking.
277 * - wakeup is performed by
278 * * unlinking the queue entry from sma->sem_pending
279 * * setting queue.status to IN_WAKEUP
280 * This is the notification for the blocked thread that a
281 * result value is imminent.
282 * * call wake_up_process
283 * * set queue.status to the final value.
284 * - the previously blocked thread checks queue.status:
285 * * if it's IN_WAKEUP, then it must wait until the value changes
286 * * if it's not -EINTR, then the operation was completed by
287 * update_queue. semtimedop can return queue.status without
Ingo Molnar5f921ae2006-03-26 01:37:17 -0800288 * performing any operation on the sem array.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * * otherwise it must acquire the spinlock and check what's up.
290 *
291 * The two-stage algorithm is necessary to protect against the following
292 * races:
293 * - if queue.status is set after wake_up_process, then the woken up idle
294 * thread could race forward and try (and fail) to acquire sma->lock
295 * before update_queue had a chance to set queue.status
296 * - if queue.status is written before wake_up_process and if the
297 * blocked process is woken up by a signal between writing
298 * queue.status and the wake_up_process, then the woken up
299 * process could return from semtimedop and die by calling
300 * sys_exit before wake_up_process is called. Then wake_up_process
301 * will oops, because the task structure is already invalid.
302 * (yes, this happened on s390 with sysv msg).
303 *
304 */
305#define IN_WAKEUP 1
306
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700307/**
308 * newary - Create a new semaphore set
309 * @ns: namespace
310 * @params: ptr to the structure that contains key, semflg and nsems
311 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700312 * Called with sem_ids.rw_mutex held (as a writer)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700313 */
314
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700315static int newary(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 int id;
318 int retval;
319 struct sem_array *sma;
320 int size;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700321 key_t key = params->key;
322 int nsems = params->u.nsems;
323 int semflg = params->flg;
Manfred Spraulb97e8202009-12-15 16:47:32 -0800324 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (!nsems)
327 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700328 if (ns->used_sems + nsems > ns->sc_semmns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return -ENOSPC;
330
331 size = sizeof (*sma) + nsems * sizeof (struct sem);
332 sma = ipc_rcu_alloc(size);
333 if (!sma) {
334 return -ENOMEM;
335 }
336 memset (sma, 0, size);
337
338 sma->sem_perm.mode = (semflg & S_IRWXUGO);
339 sma->sem_perm.key = key;
340
341 sma->sem_perm.security = NULL;
342 retval = security_sem_alloc(sma);
343 if (retval) {
344 ipc_rcu_putref(sma);
345 return retval;
346 }
347
Kirill Korotaeve3893532006-10-02 02:18:22 -0700348 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700349 if (id < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 security_sem_free(sma);
351 ipc_rcu_putref(sma);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700352 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Kirill Korotaeve3893532006-10-02 02:18:22 -0700354 ns->used_sems += nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 sma->sem_base = (struct sem *) &sma[1];
Manfred Spraulb97e8202009-12-15 16:47:32 -0800357
358 for (i = 0; i < nsems; i++)
359 INIT_LIST_HEAD(&sma->sem_base[i].sem_pending);
360
361 sma->complex_count = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700362 INIT_LIST_HEAD(&sma->sem_pending);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700363 INIT_LIST_HEAD(&sma->list_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 sma->sem_nsems = nsems;
365 sma->sem_ctime = get_seconds();
366 sem_unlock(sma);
367
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700368 return sma->sem_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700371
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700372/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700373 * Called with sem_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700374 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700375static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700377 struct sem_array *sma;
378
379 sma = container_of(ipcp, struct sem_array, sem_perm);
380 return security_sem_associate(sma, semflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700381}
382
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700383/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700384 * Called with sem_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700385 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700386static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
387 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700388{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700389 struct sem_array *sma;
390
391 sma = container_of(ipcp, struct sem_array, sem_perm);
392 if (params->u.nsems > sma->sem_nsems)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700393 return -EINVAL;
394
395 return 0;
396}
397
Heiko Carstensd5460c92009-01-14 14:14:27 +0100398SYSCALL_DEFINE3(semget, key_t, key, int, nsems, int, semflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700399{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700400 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700401 struct ipc_ops sem_ops;
402 struct ipc_params sem_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Kirill Korotaeve3893532006-10-02 02:18:22 -0700404 ns = current->nsproxy->ipc_ns;
405
406 if (nsems < 0 || nsems > ns->sc_semmsl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return -EINVAL;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700408
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700409 sem_ops.getnew = newary;
410 sem_ops.associate = sem_security;
411 sem_ops.more_checks = sem_more_checks;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700412
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700413 sem_params.key = key;
414 sem_params.flg = semflg;
415 sem_params.u.nsems = nsems;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700416
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700417 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * Determine whether a sequence of semaphore operations would succeed
422 * all at once. Return 0 if yes, 1 if need to sleep, else return error code.
423 */
424
425static int try_atomic_semop (struct sem_array * sma, struct sembuf * sops,
426 int nsops, struct sem_undo *un, int pid)
427{
428 int result, sem_op;
429 struct sembuf *sop;
430 struct sem * curr;
431
432 for (sop = sops; sop < sops + nsops; sop++) {
433 curr = sma->sem_base + sop->sem_num;
434 sem_op = sop->sem_op;
435 result = curr->semval;
436
437 if (!sem_op && result)
438 goto would_block;
439
440 result += sem_op;
441 if (result < 0)
442 goto would_block;
443 if (result > SEMVMX)
444 goto out_of_range;
445 if (sop->sem_flg & SEM_UNDO) {
446 int undo = un->semadj[sop->sem_num] - sem_op;
447 /*
448 * Exceeding the undo range is an error.
449 */
450 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
451 goto out_of_range;
452 }
453 curr->semval = result;
454 }
455
456 sop--;
457 while (sop >= sops) {
458 sma->sem_base[sop->sem_num].sempid = pid;
459 if (sop->sem_flg & SEM_UNDO)
460 un->semadj[sop->sem_num] -= sop->sem_op;
461 sop--;
462 }
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return 0;
465
466out_of_range:
467 result = -ERANGE;
468 goto undo;
469
470would_block:
471 if (sop->sem_flg & IPC_NOWAIT)
472 result = -EAGAIN;
473 else
474 result = 1;
475
476undo:
477 sop--;
478 while (sop >= sops) {
479 sma->sem_base[sop->sem_num].semval -= sop->sem_op;
480 sop--;
481 }
482
483 return result;
484}
485
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700486/** wake_up_sem_queue_prepare(q, error): Prepare wake-up
487 * @q: queue entry that must be signaled
488 * @error: Error value for the signal
489 *
490 * Prepare the wake-up of the queue entry q.
Nick Piggind4212092009-12-15 16:47:30 -0800491 */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700492static void wake_up_sem_queue_prepare(struct list_head *pt,
493 struct sem_queue *q, int error)
Nick Piggind4212092009-12-15 16:47:30 -0800494{
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700495 if (list_empty(pt)) {
496 /*
497 * Hold preempt off so that we don't get preempted and have the
498 * wakee busy-wait until we're scheduled back on.
499 */
500 preempt_disable();
501 }
Nick Piggind4212092009-12-15 16:47:30 -0800502 q->status = IN_WAKEUP;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700503 q->pid = error;
504
505 list_add_tail(&q->simple_list, pt);
506}
507
508/**
509 * wake_up_sem_queue_do(pt) - do the actual wake-up
510 * @pt: list of tasks to be woken up
511 *
512 * Do the actual wake-up.
513 * The function is called without any locks held, thus the semaphore array
514 * could be destroyed already and the tasks can disappear as soon as the
515 * status is set to the actual return code.
516 */
517static void wake_up_sem_queue_do(struct list_head *pt)
518{
519 struct sem_queue *q, *t;
520 int did_something;
521
522 did_something = !list_empty(pt);
523 list_for_each_entry_safe(q, t, pt, simple_list) {
524 wake_up_process(q->sleeper);
525 /* q can disappear immediately after writing q->status. */
526 smp_wmb();
527 q->status = q->pid;
528 }
529 if (did_something)
530 preempt_enable();
Nick Piggind4212092009-12-15 16:47:30 -0800531}
532
Manfred Spraulb97e8202009-12-15 16:47:32 -0800533static void unlink_queue(struct sem_array *sma, struct sem_queue *q)
534{
535 list_del(&q->list);
536 if (q->nsops == 1)
537 list_del(&q->simple_list);
538 else
539 sma->complex_count--;
540}
541
Manfred Spraulfd5db422010-05-26 14:43:40 -0700542/** check_restart(sma, q)
543 * @sma: semaphore array
544 * @q: the operation that just completed
545 *
546 * update_queue is O(N^2) when it restarts scanning the whole queue of
547 * waiting operations. Therefore this function checks if the restart is
548 * really necessary. It is called after a previously waiting operation
549 * was completed.
550 */
551static int check_restart(struct sem_array *sma, struct sem_queue *q)
552{
553 struct sem *curr;
554 struct sem_queue *h;
555
556 /* if the operation didn't modify the array, then no restart */
557 if (q->alter == 0)
558 return 0;
559
560 /* pending complex operations are too difficult to analyse */
561 if (sma->complex_count)
562 return 1;
563
564 /* we were a sleeping complex operation. Too difficult */
565 if (q->nsops > 1)
566 return 1;
567
568 curr = sma->sem_base + q->sops[0].sem_num;
569
570 /* No-one waits on this queue */
571 if (list_empty(&curr->sem_pending))
572 return 0;
573
574 /* the new semaphore value */
575 if (curr->semval) {
576 /* It is impossible that someone waits for the new value:
577 * - q is a previously sleeping simple operation that
578 * altered the array. It must be a decrement, because
579 * simple increments never sleep.
580 * - The value is not 0, thus wait-for-zero won't proceed.
581 * - If there are older (higher priority) decrements
582 * in the queue, then they have observed the original
583 * semval value and couldn't proceed. The operation
584 * decremented to value - thus they won't proceed either.
585 */
586 BUG_ON(q->sops[0].sem_op >= 0);
587 return 0;
588 }
589 /*
590 * semval is 0. Check if there are wait-for-zero semops.
591 * They must be the first entries in the per-semaphore simple queue
592 */
593 h = list_first_entry(&curr->sem_pending, struct sem_queue, simple_list);
594 BUG_ON(h->nsops != 1);
595 BUG_ON(h->sops[0].sem_num != q->sops[0].sem_num);
596
597 /* Yes, there is a wait-for-zero semop. Restart */
598 if (h->sops[0].sem_op == 0)
599 return 1;
600
601 /* Again - no-one is waiting for the new value. */
602 return 0;
603}
604
Manfred Spraul636c6be2009-12-15 16:47:33 -0800605
606/**
607 * update_queue(sma, semnum): Look for tasks that can be completed.
608 * @sma: semaphore array.
609 * @semnum: semaphore that was modified.
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700610 * @pt: list head for the tasks that must be woken up.
Manfred Spraul636c6be2009-12-15 16:47:33 -0800611 *
612 * update_queue must be called after a semaphore in a semaphore array
613 * was modified. If multiple semaphore were modified, then @semnum
614 * must be set to -1.
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700615 * The tasks that must be woken up are added to @pt. The return code
616 * is stored in q->pid.
617 * The function return 1 if at least one semop was completed successfully.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700619static int update_queue(struct sem_array *sma, int semnum, struct list_head *pt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Manfred Spraul636c6be2009-12-15 16:47:33 -0800621 struct sem_queue *q;
622 struct list_head *walk;
623 struct list_head *pending_list;
624 int offset;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700625 int semop_completed = 0;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800626
627 /* if there are complex operations around, then knowing the semaphore
628 * that was modified doesn't help us. Assume that multiple semaphores
629 * were modified.
630 */
631 if (sma->complex_count)
632 semnum = -1;
633
634 if (semnum == -1) {
635 pending_list = &sma->sem_pending;
636 offset = offsetof(struct sem_queue, list);
637 } else {
638 pending_list = &sma->sem_base[semnum].sem_pending;
639 offset = offsetof(struct sem_queue, simple_list);
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Nick Piggin9cad2002009-12-15 16:47:29 -0800642again:
Manfred Spraul636c6be2009-12-15 16:47:33 -0800643 walk = pending_list->next;
644 while (walk != pending_list) {
Manfred Spraulfd5db422010-05-26 14:43:40 -0700645 int error, restart;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800646
647 q = (struct sem_queue *)((char *)walk - offset);
648 walk = walk->next;
Nick Piggin9cad2002009-12-15 16:47:29 -0800649
Manfred Sprauld987f8b2009-12-15 16:47:34 -0800650 /* If we are scanning the single sop, per-semaphore list of
651 * one semaphore and that semaphore is 0, then it is not
652 * necessary to scan the "alter" entries: simple increments
653 * that affect only one entry succeed immediately and cannot
654 * be in the per semaphore pending queue, and decrements
655 * cannot be successful if the value is already 0.
656 */
657 if (semnum != -1 && sma->sem_base[semnum].semval == 0 &&
658 q->alter)
659 break;
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 error = try_atomic_semop(sma, q->sops, q->nsops,
662 q->undo, q->pid);
663
664 /* Does q->sleeper still need to sleep? */
Nick Piggin9cad2002009-12-15 16:47:29 -0800665 if (error > 0)
666 continue;
Manfred Spraula1193f82008-07-25 01:48:06 -0700667
Manfred Spraulb97e8202009-12-15 16:47:32 -0800668 unlink_queue(sma, q);
Manfred Spraula1193f82008-07-25 01:48:06 -0700669
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700670 if (error) {
Manfred Spraulfd5db422010-05-26 14:43:40 -0700671 restart = 0;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700672 } else {
673 semop_completed = 1;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700674 restart = check_restart(sma, q);
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700675 }
Manfred Spraulfd5db422010-05-26 14:43:40 -0700676
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700677 wake_up_sem_queue_prepare(pt, q, error);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700678 if (restart)
Nick Piggin9cad2002009-12-15 16:47:29 -0800679 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700681 return semop_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700684/**
685 * do_smart_update(sma, sops, nsops, otime, pt) - optimized update_queue
Manfred Spraulfd5db422010-05-26 14:43:40 -0700686 * @sma: semaphore array
687 * @sops: operations that were performed
688 * @nsops: number of operations
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700689 * @otime: force setting otime
690 * @pt: list head of the tasks that must be woken up.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700691 *
692 * do_smart_update() does the required called to update_queue, based on the
693 * actual changes that were performed on the semaphore array.
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700694 * Note that the function does not do the actual wake-up: the caller is
695 * responsible for calling wake_up_sem_queue_do(@pt).
696 * It is safe to perform this call after dropping all locks.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700697 */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700698static void do_smart_update(struct sem_array *sma, struct sembuf *sops, int nsops,
699 int otime, struct list_head *pt)
Manfred Spraulfd5db422010-05-26 14:43:40 -0700700{
701 int i;
702
703 if (sma->complex_count || sops == NULL) {
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700704 if (update_queue(sma, -1, pt))
705 otime = 1;
706 goto done;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700707 }
708
709 for (i = 0; i < nsops; i++) {
710 if (sops[i].sem_op > 0 ||
711 (sops[i].sem_op < 0 &&
712 sma->sem_base[sops[i].sem_num].semval == 0))
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700713 if (update_queue(sma, sops[i].sem_num, pt))
714 otime = 1;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700715 }
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700716done:
717 if (otime)
718 sma->sem_otime = get_seconds();
Manfred Spraulfd5db422010-05-26 14:43:40 -0700719}
720
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/* The following counts are associated to each semaphore:
723 * semncnt number of tasks waiting on semval being nonzero
724 * semzcnt number of tasks waiting on semval being zero
725 * This model assumes that a task waits on exactly one semaphore.
726 * Since semaphore operations are to be performed atomically, tasks actually
727 * wait on a whole sequence of semaphores simultaneously.
728 * The counts we return here are a rough approximation, but still
729 * warrant that semncnt+semzcnt>0 if the task is on the pending queue.
730 */
731static int count_semncnt (struct sem_array * sma, ushort semnum)
732{
733 int semncnt;
734 struct sem_queue * q;
735
736 semncnt = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700737 list_for_each_entry(q, &sma->sem_pending, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 struct sembuf * sops = q->sops;
739 int nsops = q->nsops;
740 int i;
741 for (i = 0; i < nsops; i++)
742 if (sops[i].sem_num == semnum
743 && (sops[i].sem_op < 0)
744 && !(sops[i].sem_flg & IPC_NOWAIT))
745 semncnt++;
746 }
747 return semncnt;
748}
Manfred Spraula1193f82008-07-25 01:48:06 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750static int count_semzcnt (struct sem_array * sma, ushort semnum)
751{
752 int semzcnt;
753 struct sem_queue * q;
754
755 semzcnt = 0;
Manfred Spraula1193f82008-07-25 01:48:06 -0700756 list_for_each_entry(q, &sma->sem_pending, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 struct sembuf * sops = q->sops;
758 int nsops = q->nsops;
759 int i;
760 for (i = 0; i < nsops; i++)
761 if (sops[i].sem_num == semnum
762 && (sops[i].sem_op == 0)
763 && !(sops[i].sem_flg & IPC_NOWAIT))
764 semzcnt++;
765 }
766 return semzcnt;
767}
768
Nadia Derbey3e148c72007-10-18 23:40:54 -0700769/* Free a semaphore set. freeary() is called with sem_ids.rw_mutex locked
770 * as a writer and the spinlock for this semaphore set hold. sem_ids.rw_mutex
771 * remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800773static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Manfred Spraul380af1b2008-07-25 01:48:06 -0700775 struct sem_undo *un, *tu;
776 struct sem_queue *q, *tq;
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800777 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700778 struct list_head tasks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Manfred Spraul380af1b2008-07-25 01:48:06 -0700780 /* Free the existing undo structures for this semaphore set. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700781 assert_spin_locked(&sma->sem_perm.lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -0700782 list_for_each_entry_safe(un, tu, &sma->list_id, list_id) {
783 list_del(&un->list_id);
784 spin_lock(&un->ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 un->semid = -1;
Manfred Spraul380af1b2008-07-25 01:48:06 -0700786 list_del_rcu(&un->list_proc);
787 spin_unlock(&un->ulp->lock);
Lai Jiangshan693a8b62011-03-18 12:09:35 +0800788 kfree_rcu(un, rcu);
Manfred Spraul380af1b2008-07-25 01:48:06 -0700789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 /* Wake up all pending processes and let them fail with EIDRM. */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700792 INIT_LIST_HEAD(&tasks);
Manfred Spraul380af1b2008-07-25 01:48:06 -0700793 list_for_each_entry_safe(q, tq, &sma->sem_pending, list) {
Manfred Spraulb97e8202009-12-15 16:47:32 -0800794 unlink_queue(sma, q);
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700795 wake_up_sem_queue_prepare(&tasks, q, -EIDRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700798 /* Remove the semaphore set from the IDR */
799 sem_rmid(ns, sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 sem_unlock(sma);
801
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700802 wake_up_sem_queue_do(&tasks);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700803 ns->used_sems -= sma->sem_nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 security_sem_free(sma);
805 ipc_rcu_putref(sma);
806}
807
808static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
809{
810 switch(version) {
811 case IPC_64:
812 return copy_to_user(buf, in, sizeof(*in));
813 case IPC_OLD:
814 {
815 struct semid_ds out;
816
Dan Rosenberg982f7c22010-09-30 15:15:31 -0700817 memset(&out, 0, sizeof(out));
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
820
821 out.sem_otime = in->sem_otime;
822 out.sem_ctime = in->sem_ctime;
823 out.sem_nsems = in->sem_nsems;
824
825 return copy_to_user(buf, &out, sizeof(out));
826 }
827 default:
828 return -EINVAL;
829 }
830}
831
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800832static int semctl_nolock(struct ipc_namespace *ns, int semid,
Al Viroe1fd1f42013-03-05 15:04:55 -0500833 int cmd, int version, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Amerigo Wange5cc9c72009-12-15 16:47:35 -0800835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct sem_array *sma;
837
838 switch(cmd) {
839 case IPC_INFO:
840 case SEM_INFO:
841 {
842 struct seminfo seminfo;
843 int max_id;
844
845 err = security_sem_semctl(NULL, cmd);
846 if (err)
847 return err;
848
849 memset(&seminfo,0,sizeof(seminfo));
Kirill Korotaeve3893532006-10-02 02:18:22 -0700850 seminfo.semmni = ns->sc_semmni;
851 seminfo.semmns = ns->sc_semmns;
852 seminfo.semmsl = ns->sc_semmsl;
853 seminfo.semopm = ns->sc_semopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 seminfo.semvmx = SEMVMX;
855 seminfo.semmnu = SEMMNU;
856 seminfo.semmap = SEMMAP;
857 seminfo.semume = SEMUME;
Nadia Derbey3e148c72007-10-18 23:40:54 -0700858 down_read(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (cmd == SEM_INFO) {
Kirill Korotaeve3893532006-10-02 02:18:22 -0700860 seminfo.semusz = sem_ids(ns).in_use;
861 seminfo.semaem = ns->used_sems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 } else {
863 seminfo.semusz = SEMUSZ;
864 seminfo.semaem = SEMAEM;
865 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700866 max_id = ipc_get_maxid(&sem_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700867 up_read(&sem_ids(ns).rw_mutex);
Al Viroe1fd1f42013-03-05 15:04:55 -0500868 if (copy_to_user(p, &seminfo, sizeof(struct seminfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return -EFAULT;
870 return (max_id < 0) ? 0: max_id;
871 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800872 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 case SEM_STAT:
874 {
875 struct semid64_ds tbuf;
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700876 int id = 0;
877
878 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800880 if (cmd == SEM_STAT) {
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700881 rcu_read_lock();
882 sma = sem_obtain_object(ns, semid);
883 if (IS_ERR(sma)) {
884 err = PTR_ERR(sma);
885 goto out_unlock;
886 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800887 id = sma->sem_perm.id;
888 } else {
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700889 rcu_read_lock();
890 sma = sem_obtain_object_check(ns, semid);
891 if (IS_ERR(sma)) {
892 err = PTR_ERR(sma);
893 goto out_unlock;
894 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -0800895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700898 if (ipcperms(ns, &sma->sem_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 goto out_unlock;
900
901 err = security_sem_semctl(sma, cmd);
902 if (err)
903 goto out_unlock;
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
906 tbuf.sem_otime = sma->sem_otime;
907 tbuf.sem_ctime = sma->sem_ctime;
908 tbuf.sem_nsems = sma->sem_nsems;
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700909 rcu_read_unlock();
Al Viroe1fd1f42013-03-05 15:04:55 -0500910 if (copy_semid_to_user(p, &tbuf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return -EFAULT;
912 return id;
913 }
914 default:
915 return -EINVAL;
916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917out_unlock:
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700918 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return err;
920}
921
Al Viroe1fd1f42013-03-05 15:04:55 -0500922static int semctl_setval(struct ipc_namespace *ns, int semid, int semnum,
923 unsigned long arg)
924{
925 struct sem_undo *un;
926 struct sem_array *sma;
927 struct sem* curr;
928 int err;
929 int nsems;
930 struct list_head tasks;
931 int val;
932#if defined(CONFIG_64BIT) && defined(__BIG_ENDIAN)
933 /* big-endian 64bit */
934 val = arg >> 32;
935#else
936 /* 32bit or little-endian 64bit */
937 val = arg;
938#endif
939
940 sma = sem_lock_check(ns, semid);
941 if (IS_ERR(sma))
942 return PTR_ERR(sma);
943
944 INIT_LIST_HEAD(&tasks);
945 nsems = sma->sem_nsems;
946
947 err = -EACCES;
948 if (ipcperms(ns, &sma->sem_perm, S_IWUGO))
949 goto out_unlock;
950
951 err = security_sem_semctl(sma, SETVAL);
952 if (err)
953 goto out_unlock;
954
955 err = -EINVAL;
956 if(semnum < 0 || semnum >= nsems)
957 goto out_unlock;
958
959 curr = &sma->sem_base[semnum];
960
961 err = -ERANGE;
962 if (val > SEMVMX || val < 0)
963 goto out_unlock;
964
965 assert_spin_locked(&sma->sem_perm.lock);
966 list_for_each_entry(un, &sma->list_id, list_id)
967 un->semadj[semnum] = 0;
968
969 curr->semval = val;
970 curr->sempid = task_tgid_vnr(current);
971 sma->sem_ctime = get_seconds();
972 /* maybe some queued-up processes were waiting for this */
973 do_smart_update(sma, NULL, 0, 0, &tasks);
974 err = 0;
975out_unlock:
976 sem_unlock(sma);
977 wake_up_sem_queue_do(&tasks);
978 return err;
979}
980
Kirill Korotaeve3893532006-10-02 02:18:22 -0700981static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
Al Viroe1fd1f42013-03-05 15:04:55 -0500982 int cmd, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
984 struct sem_array *sma;
985 struct sem* curr;
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700986 int err, nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 ushort fast_sem_io[SEMMSL_FAST];
988 ushort* sem_io = fast_sem_io;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700989 struct list_head tasks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700991 INIT_LIST_HEAD(&tasks);
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700992
993 rcu_read_lock();
994 sma = sem_obtain_object_check(ns, semid);
995 if (IS_ERR(sma)) {
996 rcu_read_unlock();
997 return PTR_ERR(sma);
998 }
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 nsems = sma->sem_nsems;
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001003 if (ipcperms(ns, &sma->sem_perm,
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001004 cmd == SETALL ? S_IWUGO : S_IRUGO)) {
1005 rcu_read_unlock();
1006 goto out_wakeup;
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 err = security_sem_semctl(sma, cmd);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001010 if (err) {
1011 rcu_read_unlock();
1012 goto out_wakeup;
1013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 err = -EACCES;
1016 switch (cmd) {
1017 case GETALL:
1018 {
Al Viroe1fd1f42013-03-05 15:04:55 -05001019 ushort __user *array = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 int i;
1021
1022 if(nsems > SEMMSL_FAST) {
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001023 sem_getref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 sem_io = ipc_alloc(sizeof(ushort)*nsems);
1026 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001027 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return -ENOMEM;
1029 }
1030
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001031 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (sma->sem_perm.deleted) {
1033 sem_unlock(sma);
1034 err = -EIDRM;
1035 goto out_free;
1036 }
1037 }
1038
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001039 spin_lock(&sma->sem_perm.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 for (i = 0; i < sma->sem_nsems; i++)
1041 sem_io[i] = sma->sem_base[i].semval;
1042 sem_unlock(sma);
1043 err = 0;
1044 if(copy_to_user(array, sem_io, nsems*sizeof(ushort)))
1045 err = -EFAULT;
1046 goto out_free;
1047 }
1048 case SETALL:
1049 {
1050 int i;
1051 struct sem_undo *un;
1052
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001053 ipc_rcu_getref(sma);
1054 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if(nsems > SEMMSL_FAST) {
1057 sem_io = ipc_alloc(sizeof(ushort)*nsems);
1058 if(sem_io == NULL) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001059 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return -ENOMEM;
1061 }
1062 }
1063
Al Viroe1fd1f42013-03-05 15:04:55 -05001064 if (copy_from_user (sem_io, p, nsems*sizeof(ushort))) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001065 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 err = -EFAULT;
1067 goto out_free;
1068 }
1069
1070 for (i = 0; i < nsems; i++) {
1071 if (sem_io[i] > SEMVMX) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001072 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 err = -ERANGE;
1074 goto out_free;
1075 }
1076 }
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001077 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (sma->sem_perm.deleted) {
1079 sem_unlock(sma);
1080 err = -EIDRM;
1081 goto out_free;
1082 }
1083
1084 for (i = 0; i < nsems; i++)
1085 sma->sem_base[i].semval = sem_io[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001086
1087 assert_spin_locked(&sma->sem_perm.lock);
1088 list_for_each_entry(un, &sma->list_id, list_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 for (i = 0; i < nsems; i++)
1090 un->semadj[i] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 sma->sem_ctime = get_seconds();
1093 /* maybe some queued-up processes were waiting for this */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001094 do_smart_update(sma, NULL, 0, 0, &tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 err = 0;
1096 goto out_unlock;
1097 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001098 /* GETVAL, GETPID, GETNCTN, GETZCNT: fall-through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 err = -EINVAL;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001101 if (semnum < 0 || semnum >= nsems) {
1102 rcu_read_unlock();
1103 goto out_wakeup;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001106 spin_lock(&sma->sem_perm.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 curr = &sma->sem_base[semnum];
1108
1109 switch (cmd) {
1110 case GETVAL:
1111 err = curr->semval;
1112 goto out_unlock;
1113 case GETPID:
1114 err = curr->sempid;
1115 goto out_unlock;
1116 case GETNCNT:
1117 err = count_semncnt(sma,semnum);
1118 goto out_unlock;
1119 case GETZCNT:
1120 err = count_semzcnt(sma,semnum);
1121 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124out_unlock:
1125 sem_unlock(sma);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001126out_wakeup:
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001127 wake_up_sem_queue_do(&tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128out_free:
1129 if(sem_io != fast_sem_io)
1130 ipc_free(sem_io, sizeof(ushort)*nsems);
1131 return err;
1132}
1133
Pierre Peiffer016d7132008-04-29 01:00:50 -07001134static inline unsigned long
1135copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 switch(version) {
1138 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -07001139 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 case IPC_OLD:
1143 {
1144 struct semid_ds tbuf_old;
1145
1146 if(copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
1147 return -EFAULT;
1148
Pierre Peiffer016d7132008-04-29 01:00:50 -07001149 out->sem_perm.uid = tbuf_old.sem_perm.uid;
1150 out->sem_perm.gid = tbuf_old.sem_perm.gid;
1151 out->sem_perm.mode = tbuf_old.sem_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 return 0;
1154 }
1155 default:
1156 return -EINVAL;
1157 }
1158}
1159
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001160/*
1161 * This function handles some semctl commands which require the rw_mutex
1162 * to be held in write mode.
1163 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
1164 */
Pierre Peiffer21a48262008-04-29 01:00:49 -07001165static int semctl_down(struct ipc_namespace *ns, int semid,
Al Viroe1fd1f42013-03-05 15:04:55 -05001166 int cmd, int version, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
1168 struct sem_array *sma;
1169 int err;
Pierre Peiffer016d7132008-04-29 01:00:50 -07001170 struct semid64_ds semid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 struct kern_ipc_perm *ipcp;
1172
1173 if(cmd == IPC_SET) {
Al Viroe1fd1f42013-03-05 15:04:55 -05001174 if (copy_semid_from_user(&semid64, p, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001178 ipcp = ipcctl_pre_down_nolock(ns, &sem_ids(ns), semid, cmd,
1179 &semid64.sem_perm, 0);
Pierre Peiffera5f75e72008-04-29 01:00:54 -07001180 if (IS_ERR(ipcp))
1181 return PTR_ERR(ipcp);
Steve Grubb073115d2006-04-02 17:07:33 -04001182
Pierre Peiffera5f75e72008-04-29 01:00:54 -07001183 sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 err = security_sem_semctl(sma, cmd);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001186 if (err) {
1187 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 goto out_unlock;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 switch(cmd){
1192 case IPC_RMID:
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001193 ipc_lock_object(&sma->sem_perm);
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001194 freeary(ns, ipcp);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001195 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 case IPC_SET:
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001197 ipc_lock_object(&sma->sem_perm);
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001198 err = ipc_update_perm(&semid64.sem_perm, ipcp);
1199 if (err)
1200 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 sma->sem_ctime = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 break;
1203 default:
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001204 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 err = -EINVAL;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001206 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209out_unlock:
1210 sem_unlock(sma);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001211out_up:
1212 up_write(&sem_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return err;
1214}
1215
Al Viroe1fd1f42013-03-05 15:04:55 -05001216SYSCALL_DEFINE4(semctl, int, semid, int, semnum, int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int version;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001219 struct ipc_namespace *ns;
Al Viroe1fd1f42013-03-05 15:04:55 -05001220 void __user *p = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 if (semid < 0)
1223 return -EINVAL;
1224
1225 version = ipc_parse_version(&cmd);
Kirill Korotaeve3893532006-10-02 02:18:22 -07001226 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 switch(cmd) {
1229 case IPC_INFO:
1230 case SEM_INFO:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001231 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 case SEM_STAT:
Al Viroe1fd1f42013-03-05 15:04:55 -05001233 return semctl_nolock(ns, semid, cmd, version, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 case GETALL:
1235 case GETVAL:
1236 case GETPID:
1237 case GETNCNT:
1238 case GETZCNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 case SETALL:
Al Viroe1fd1f42013-03-05 15:04:55 -05001240 return semctl_main(ns, semid, semnum, cmd, p);
1241 case SETVAL:
1242 return semctl_setval(ns, semid, semnum, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 case IPC_RMID:
1244 case IPC_SET:
Al Viroe1fd1f42013-03-05 15:04:55 -05001245 return semctl_down(ns, semid, cmd, version, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 default:
1247 return -EINVAL;
1248 }
1249}
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/* If the task doesn't already have a undo_list, then allocate one
1252 * here. We guarantee there is only one thread using this undo list,
1253 * and current is THE ONE
1254 *
1255 * If this allocation and assignment succeeds, but later
1256 * portions of this code fail, there is no need to free the sem_undo_list.
1257 * Just let it stay associated with the task, and it'll be freed later
1258 * at exit time.
1259 *
1260 * This can block, so callers must hold no locks.
1261 */
1262static inline int get_undo_list(struct sem_undo_list **undo_listp)
1263{
1264 struct sem_undo_list *undo_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 undo_list = current->sysvsem.undo_list;
1267 if (!undo_list) {
Matt Helsley2453a302006-10-02 02:18:25 -07001268 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (undo_list == NULL)
1270 return -ENOMEM;
Ingo Molnar00a5dfd2005-08-05 23:05:27 +02001271 spin_lock_init(&undo_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 atomic_set(&undo_list->refcnt, 1);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001273 INIT_LIST_HEAD(&undo_list->list_proc);
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 current->sysvsem.undo_list = undo_list;
1276 }
1277 *undo_listp = undo_list;
1278 return 0;
1279}
1280
Nick Pigginbf17bb72009-12-15 16:47:28 -08001281static struct sem_undo *__lookup_undo(struct sem_undo_list *ulp, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Nick Pigginbf17bb72009-12-15 16:47:28 -08001283 struct sem_undo *un;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Nick Pigginbf17bb72009-12-15 16:47:28 -08001285 list_for_each_entry_rcu(un, &ulp->list_proc, list_proc) {
1286 if (un->semid == semid)
1287 return un;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001289 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Nick Pigginbf17bb72009-12-15 16:47:28 -08001292static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
1293{
1294 struct sem_undo *un;
1295
1296 assert_spin_locked(&ulp->lock);
1297
1298 un = __lookup_undo(ulp, semid);
1299 if (un) {
1300 list_del_rcu(&un->list_proc);
1301 list_add_rcu(&un->list_proc, &ulp->list_proc);
1302 }
1303 return un;
1304}
1305
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001306/**
1307 * find_alloc_undo - Lookup (and if not present create) undo array
1308 * @ns: namespace
1309 * @semid: semaphore array id
1310 *
1311 * The function looks up (and if not present creates) the undo structure.
1312 * The size of the undo structure depends on the size of the semaphore
1313 * array, thus the alloc path is not that straightforward.
Manfred Spraul380af1b2008-07-25 01:48:06 -07001314 * Lifetime-rules: sem_undo is rcu-protected, on success, the function
1315 * performs a rcu_read_lock().
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001316 */
1317static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 struct sem_array *sma;
1320 struct sem_undo_list *ulp;
1321 struct sem_undo *un, *new;
1322 int nsems;
1323 int error;
1324
1325 error = get_undo_list(&ulp);
1326 if (error)
1327 return ERR_PTR(error);
1328
Manfred Spraul380af1b2008-07-25 01:48:06 -07001329 rcu_read_lock();
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001330 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 un = lookup_undo(ulp, semid);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001332 spin_unlock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (likely(un!=NULL))
1334 goto out;
1335
1336 /* no undo structure around - allocate one. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001337 /* step 1: figure out the size of the semaphore array */
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001338 sma = sem_obtain_object_check(ns, semid);
1339 if (IS_ERR(sma)) {
1340 rcu_read_unlock();
Julia Lawall4de85cd2010-05-26 14:43:44 -07001341 return ERR_CAST(sma);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001342 }
Nadia Derbey023a5352007-10-18 23:40:51 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 nsems = sma->sem_nsems;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001345 ipc_rcu_getref(sma);
1346 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001348 /* step 2: allocate new undo structure */
Burman Yan4668edc2006-12-06 20:38:51 -08001349 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (!new) {
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001351 sem_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return ERR_PTR(-ENOMEM);
1353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Manfred Spraul380af1b2008-07-25 01:48:06 -07001355 /* step 3: Acquire the lock on semaphore array */
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001356 sem_lock_and_putref(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (sma->sem_perm.deleted) {
1358 sem_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 kfree(new);
1360 un = ERR_PTR(-EIDRM);
1361 goto out;
1362 }
Manfred Spraul380af1b2008-07-25 01:48:06 -07001363 spin_lock(&ulp->lock);
1364
1365 /*
1366 * step 4: check for races: did someone else allocate the undo struct?
1367 */
1368 un = lookup_undo(ulp, semid);
1369 if (un) {
1370 kfree(new);
1371 goto success;
1372 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001373 /* step 5: initialize & link new undo structure */
1374 new->semadj = (short *) &new[1];
Manfred Spraul380af1b2008-07-25 01:48:06 -07001375 new->ulp = ulp;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001376 new->semid = semid;
1377 assert_spin_locked(&ulp->lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001378 list_add_rcu(&new->list_proc, &ulp->list_proc);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001379 assert_spin_locked(&sma->sem_perm.lock);
1380 list_add(&new->list_id, &sma->list_id);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001381 un = new;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001382
1383success:
1384 spin_unlock(&ulp->lock);
1385 rcu_read_lock();
1386 sem_unlock(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387out:
1388 return un;
1389}
1390
Manfred Spraulc61284e2010-07-20 13:24:23 -07001391
1392/**
1393 * get_queue_result - Retrieve the result code from sem_queue
1394 * @q: Pointer to queue structure
1395 *
1396 * Retrieve the return code from the pending queue. If IN_WAKEUP is found in
1397 * q->status, then we must loop until the value is replaced with the final
1398 * value: This may happen if a task is woken up by an unrelated event (e.g.
1399 * signal) and in parallel the task is woken up by another task because it got
1400 * the requested semaphores.
1401 *
1402 * The function can be called with or without holding the semaphore spinlock.
1403 */
1404static int get_queue_result(struct sem_queue *q)
1405{
1406 int error;
1407
1408 error = q->status;
1409 while (unlikely(error == IN_WAKEUP)) {
1410 cpu_relax();
1411 error = q->status;
1412 }
1413
1414 return error;
1415}
1416
1417
Heiko Carstensd5460c92009-01-14 14:14:27 +01001418SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
1419 unsigned, nsops, const struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
1421 int error = -EINVAL;
1422 struct sem_array *sma;
1423 struct sembuf fast_sops[SEMOPM_FAST];
1424 struct sembuf* sops = fast_sops, *sop;
1425 struct sem_undo *un;
Manfred Spraulb78755a2005-06-23 00:10:06 -07001426 int undos = 0, alter = 0, max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 struct sem_queue queue;
1428 unsigned long jiffies_left = 0;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001429 struct ipc_namespace *ns;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001430 struct list_head tasks;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001431
1432 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 if (nsops < 1 || semid < 0)
1435 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001436 if (nsops > ns->sc_semopm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return -E2BIG;
1438 if(nsops > SEMOPM_FAST) {
1439 sops = kmalloc(sizeof(*sops)*nsops,GFP_KERNEL);
1440 if(sops==NULL)
1441 return -ENOMEM;
1442 }
1443 if (copy_from_user (sops, tsops, nsops * sizeof(*tsops))) {
1444 error=-EFAULT;
1445 goto out_free;
1446 }
1447 if (timeout) {
1448 struct timespec _timeout;
1449 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1450 error = -EFAULT;
1451 goto out_free;
1452 }
1453 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1454 _timeout.tv_nsec >= 1000000000L) {
1455 error = -EINVAL;
1456 goto out_free;
1457 }
1458 jiffies_left = timespec_to_jiffies(&_timeout);
1459 }
1460 max = 0;
1461 for (sop = sops; sop < sops + nsops; sop++) {
1462 if (sop->sem_num >= max)
1463 max = sop->sem_num;
1464 if (sop->sem_flg & SEM_UNDO)
Manfred Spraulb78755a2005-06-23 00:10:06 -07001465 undos = 1;
1466 if (sop->sem_op != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 alter = 1;
1468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (undos) {
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001471 un = find_alloc_undo(ns, semid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (IS_ERR(un)) {
1473 error = PTR_ERR(un);
1474 goto out_free;
1475 }
1476 } else
1477 un = NULL;
1478
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001479 INIT_LIST_HEAD(&tasks);
1480
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001481 rcu_read_lock();
1482 sma = sem_obtain_object_check(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001483 if (IS_ERR(sma)) {
Manfred Spraul380af1b2008-07-25 01:48:06 -07001484 if (un)
1485 rcu_read_unlock();
Nadia Derbey023a5352007-10-18 23:40:51 -07001486 error = PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -07001488 }
1489
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001490 error = -EFBIG;
1491 if (max >= sma->sem_nsems) {
1492 rcu_read_unlock();
1493 goto out_wakeup;
1494 }
1495
1496 error = -EACCES;
1497 if (ipcperms(ns, &sma->sem_perm, alter ? S_IWUGO : S_IRUGO)) {
1498 rcu_read_unlock();
1499 goto out_wakeup;
1500 }
1501
1502 error = security_sem_semop(sma, sops, nsops, alter);
1503 if (error) {
1504 rcu_read_unlock();
1505 goto out_wakeup;
1506 }
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 /*
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001509 * semid identifiers are not unique - find_alloc_undo may have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 * allocated an undo structure, it was invalidated by an RMID
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001511 * and now a new array with received the same id. Check and fail.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001512 * This case can be detected checking un->semid. The existence of
Manfred Spraul380af1b2008-07-25 01:48:06 -07001513 * "un" itself is guaranteed by rcu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001515 error = -EIDRM;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001516 ipc_lock_object(&sma->sem_perm);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001517 if (un) {
1518 if (un->semid == -1) {
1519 rcu_read_unlock();
1520 goto out_unlock_free;
1521 } else {
1522 /*
1523 * rcu lock can be released, "un" cannot disappear:
1524 * - sem_lock is acquired, thus IPC_RMID is
1525 * impossible.
1526 * - exit_sem is impossible, it always operates on
1527 * current (or a dead task).
1528 */
1529
1530 rcu_read_unlock();
1531 }
1532 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001533
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001534 error = try_atomic_semop (sma, sops, nsops, un, task_tgid_vnr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (error <= 0) {
1536 if (alter && error == 0)
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001537 do_smart_update(sma, sops, nsops, 1, &tasks);
Manfred Spraul636c6be2009-12-15 16:47:33 -08001538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 goto out_unlock_free;
1540 }
1541
1542 /* We need to sleep on this operation, so we put the current
1543 * task into the pending queue and go to sleep.
1544 */
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 queue.sops = sops;
1547 queue.nsops = nsops;
1548 queue.undo = un;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001549 queue.pid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 queue.alter = alter;
1551 if (alter)
Manfred Spraula1193f82008-07-25 01:48:06 -07001552 list_add_tail(&queue.list, &sma->sem_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 else
Manfred Spraula1193f82008-07-25 01:48:06 -07001554 list_add(&queue.list, &sma->sem_pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Manfred Spraulb97e8202009-12-15 16:47:32 -08001556 if (nsops == 1) {
1557 struct sem *curr;
1558 curr = &sma->sem_base[sops->sem_num];
1559
1560 if (alter)
1561 list_add_tail(&queue.simple_list, &curr->sem_pending);
1562 else
1563 list_add(&queue.simple_list, &curr->sem_pending);
1564 } else {
1565 INIT_LIST_HEAD(&queue.simple_list);
1566 sma->complex_count++;
1567 }
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 queue.status = -EINTR;
1570 queue.sleeper = current;
Manfred Spraul0b0577f2011-11-02 13:38:52 -07001571
1572sleep_again:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 current->state = TASK_INTERRUPTIBLE;
1574 sem_unlock(sma);
1575
1576 if (timeout)
1577 jiffies_left = schedule_timeout(jiffies_left);
1578 else
1579 schedule();
1580
Manfred Spraulc61284e2010-07-20 13:24:23 -07001581 error = get_queue_result(&queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 if (error != -EINTR) {
1584 /* fast path: update_queue already obtained all requested
Manfred Spraulc61284e2010-07-20 13:24:23 -07001585 * resources.
1586 * Perform a smp_mb(): User space could assume that semop()
1587 * is a memory barrier: Without the mb(), the cpu could
1588 * speculatively read in user space stale data that was
1589 * overwritten by the previous owner of the semaphore.
1590 */
1591 smp_mb();
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 goto out_free;
1594 }
1595
Kirill Korotaeve3893532006-10-02 02:18:22 -07001596 sma = sem_lock(ns, semid);
Manfred Sprauld694ad62011-07-25 17:11:47 -07001597
1598 /*
1599 * Wait until it's guaranteed that no wakeup_sem_queue_do() is ongoing.
1600 */
1601 error = get_queue_result(&queue);
1602
1603 /*
1604 * Array removed? If yes, leave without sem_unlock().
1605 */
Nadia Derbey023a5352007-10-18 23:40:51 -07001606 if (IS_ERR(sma)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 goto out_free;
1608 }
1609
Manfred Spraulc61284e2010-07-20 13:24:23 -07001610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /*
Manfred Sprauld694ad62011-07-25 17:11:47 -07001612 * If queue.status != -EINTR we are woken up by another process.
1613 * Leave without unlink_queue(), but with sem_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 */
Manfred Spraulc61284e2010-07-20 13:24:23 -07001615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (error != -EINTR) {
1617 goto out_unlock_free;
1618 }
1619
1620 /*
1621 * If an interrupt occurred we have to clean up the queue
1622 */
1623 if (timeout && jiffies_left == 0)
1624 error = -EAGAIN;
Manfred Spraul0b0577f2011-11-02 13:38:52 -07001625
1626 /*
1627 * If the wakeup was spurious, just retry
1628 */
1629 if (error == -EINTR && !signal_pending(current))
1630 goto sleep_again;
1631
Manfred Spraulb97e8202009-12-15 16:47:32 -08001632 unlink_queue(sma, &queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634out_unlock_free:
1635 sem_unlock(sma);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001636out_wakeup:
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001637 wake_up_sem_queue_do(&tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638out_free:
1639 if(sops != fast_sops)
1640 kfree(sops);
1641 return error;
1642}
1643
Heiko Carstensd5460c92009-01-14 14:14:27 +01001644SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
1645 unsigned, nsops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 return sys_semtimedop(semid, tsops, nsops, NULL);
1648}
1649
1650/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
1651 * parent and child tasks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 */
1653
1654int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
1655{
1656 struct sem_undo_list *undo_list;
1657 int error;
1658
1659 if (clone_flags & CLONE_SYSVSEM) {
1660 error = get_undo_list(&undo_list);
1661 if (error)
1662 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 atomic_inc(&undo_list->refcnt);
1664 tsk->sysvsem.undo_list = undo_list;
1665 } else
1666 tsk->sysvsem.undo_list = NULL;
1667
1668 return 0;
1669}
1670
1671/*
1672 * add semadj values to semaphores, free undo structures.
1673 * undo structures are not freed when semaphore arrays are destroyed
1674 * so some of them may be out of date.
1675 * IMPLEMENTATION NOTE: There is some confusion over whether the
1676 * set of adjustments that needs to be done should be done in an atomic
1677 * manner or not. That is, if we are attempting to decrement the semval
1678 * should we queue up and wait until we can do so legally?
1679 * The original implementation attempted to do this (queue and wait).
1680 * The current implementation does not do so. The POSIX standard
1681 * and SVID should be consulted to determine what behavior is mandated.
1682 */
1683void exit_sem(struct task_struct *tsk)
1684{
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001685 struct sem_undo_list *ulp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001687 ulp = tsk->sysvsem.undo_list;
1688 if (!ulp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return;
Manfred Spraul9edff4a2008-04-29 01:00:57 -07001690 tsk->sysvsem.undo_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001692 if (!atomic_dec_and_test(&ulp->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return;
1694
Manfred Spraul380af1b2008-07-25 01:48:06 -07001695 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 struct sem_array *sma;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001697 struct sem_undo *un;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001698 struct list_head tasks;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001699 int semid;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001700 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Manfred Spraul380af1b2008-07-25 01:48:06 -07001702 rcu_read_lock();
Jiri Pirko05725f72009-04-14 20:17:16 +02001703 un = list_entry_rcu(ulp->list_proc.next,
1704 struct sem_undo, list_proc);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001705 if (&un->list_proc == &ulp->list_proc)
1706 semid = -1;
1707 else
1708 semid = un->semid;
1709 rcu_read_unlock();
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001710
Manfred Spraul380af1b2008-07-25 01:48:06 -07001711 if (semid == -1)
1712 break;
1713
1714 sma = sem_lock_check(tsk->nsproxy->ipc_ns, un->semid);
1715
1716 /* exit_sem raced with IPC_RMID, nothing to do */
Nadia Derbey023a5352007-10-18 23:40:51 -07001717 if (IS_ERR(sma))
Manfred Spraul380af1b2008-07-25 01:48:06 -07001718 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Nick Pigginbf17bb72009-12-15 16:47:28 -08001720 un = __lookup_undo(ulp, semid);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001721 if (un == NULL) {
1722 /* exit_sem raced with IPC_RMID+semget() that created
1723 * exactly the same semid. Nothing to do.
1724 */
1725 sem_unlock(sma);
1726 continue;
1727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Manfred Spraul380af1b2008-07-25 01:48:06 -07001729 /* remove un from the linked lists */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001730 assert_spin_locked(&sma->sem_perm.lock);
1731 list_del(&un->list_id);
1732
Manfred Spraul380af1b2008-07-25 01:48:06 -07001733 spin_lock(&ulp->lock);
1734 list_del_rcu(&un->list_proc);
1735 spin_unlock(&ulp->lock);
1736
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001737 /* perform adjustments registered in un */
1738 for (i = 0; i < sma->sem_nsems; i++) {
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001739 struct sem * semaphore = &sma->sem_base[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001740 if (un->semadj[i]) {
1741 semaphore->semval += un->semadj[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 /*
1743 * Range checks of the new semaphore value,
1744 * not defined by sus:
1745 * - Some unices ignore the undo entirely
1746 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
1747 * - some cap the value (e.g. FreeBSD caps
1748 * at 0, but doesn't enforce SEMVMX)
1749 *
1750 * Linux caps the semaphore value, both at 0
1751 * and at SEMVMX.
1752 *
1753 * Manfred <manfred@colorfullife.com>
1754 */
Ingo Molnar5f921ae2006-03-26 01:37:17 -08001755 if (semaphore->semval < 0)
1756 semaphore->semval = 0;
1757 if (semaphore->semval > SEMVMX)
1758 semaphore->semval = SEMVMX;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001759 semaphore->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 /* maybe some queued-up processes were waiting for this */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001763 INIT_LIST_HEAD(&tasks);
1764 do_smart_update(sma, NULL, 0, 1, &tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 sem_unlock(sma);
Manfred Spraul0a2b9d42010-05-26 14:43:41 -07001766 wake_up_sem_queue_do(&tasks);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001767
Lai Jiangshan693a8b62011-03-18 12:09:35 +08001768 kfree_rcu(un, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001770 kfree(ulp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
1773#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001774static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001776 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07001777 struct sem_array *sma = it;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Mike Waychison19b49462005-09-06 15:17:10 -07001779 return seq_printf(s,
Manfred Spraulb97e8202009-12-15 16:47:32 -08001780 "%10d %10d %4o %10u %5u %5u %5u %5u %10lu %10lu\n",
Mike Waychison19b49462005-09-06 15:17:10 -07001781 sma->sem_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001782 sma->sem_perm.id,
Mike Waychison19b49462005-09-06 15:17:10 -07001783 sma->sem_perm.mode,
1784 sma->sem_nsems,
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001785 from_kuid_munged(user_ns, sma->sem_perm.uid),
1786 from_kgid_munged(user_ns, sma->sem_perm.gid),
1787 from_kuid_munged(user_ns, sma->sem_perm.cuid),
1788 from_kgid_munged(user_ns, sma->sem_perm.cgid),
Mike Waychison19b49462005-09-06 15:17:10 -07001789 sma->sem_otime,
1790 sma->sem_ctime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792#endif