blob: a82c88d0900f307435985d1ee3504f29188ed2c5 [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>
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -080014 * (c) 2016 Davidlohr Bueso <dave@stgolabs.net>
Manfred Spraulc5cf6352010-05-26 14:43:43 -070015 * Further wakeup optimizations, documentation
16 * (c) 2010 Manfred Spraul <manfred@colorfullife.com>
Steve Grubb073115d2006-04-02 17:07:33 -040017 *
18 * support for audit of ipc object properties and permission changes
19 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
Kirill Korotaeve3893532006-10-02 02:18:22 -070020 *
21 * namespaces support
22 * OpenVZ, SWsoft Inc.
23 * Pavel Emelianov <xemul@openvz.org>
Manfred Spraulc5cf6352010-05-26 14:43:43 -070024 *
25 * Implementation notes: (May 2010)
26 * This file implements System V semaphores.
27 *
28 * User space visible behavior:
29 * - FIFO ordering for semop() operations (just FIFO, not starvation
30 * protection)
31 * - multiple semaphore operations that alter the same semaphore in
32 * one semop() are handled.
33 * - sem_ctime (time of last semctl()) is updated in the IPC_SET, SETVAL and
34 * SETALL calls.
35 * - two Linux specific semctl() commands: SEM_STAT, SEM_INFO.
36 * - undo adjustments at process exit are limited to 0..SEMVMX.
37 * - namespace are supported.
38 * - SEMMSL, SEMMNS, SEMOPM and SEMMNI can be configured at runtine by writing
39 * to /proc/sys/kernel/sem.
40 * - statistics about the usage are reported in /proc/sysvipc/sem.
41 *
42 * Internals:
43 * - scalability:
44 * - all global variables are read-mostly.
45 * - semop() calls and semctl(RMID) are synchronized by RCU.
46 * - most operations do write operations (actually: spin_lock calls) to
47 * the per-semaphore array structure.
48 * Thus: Perfect SMP scaling between independent semaphore arrays.
49 * If multiple semaphores in one array are used, then cache line
50 * trashing on the semaphore array spinlock will limit the scaling.
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -070051 * - semncnt and semzcnt are calculated on demand in count_semcnt()
Manfred Spraulc5cf6352010-05-26 14:43:43 -070052 * - 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
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -080057 * dropping all locks. (see wake_up_sem_queue_prepare())
Manfred Spraulc5cf6352010-05-26 14:43:43 -070058 * - All work is done by the waker, the woken up task does not have to do
59 * anything - not even acquiring a lock or dropping a refcount.
60 * - A woken up task may not even touch the semaphore array anymore, it may
61 * have been destroyed already by a semctl(RMID).
Manfred Spraulc5cf6352010-05-26 14:43:43 -070062 * - UNDO values are stored in an array (one per process and per
63 * semaphore array, lazily allocated). For backwards compatibility, multiple
64 * modes for the UNDO variables are supported (per process, per thread)
65 * (see copy_semundo, CLONE_SYSVSEM)
66 * - There are two lists of the pending operations: a per-array list
67 * and per-semaphore list (stored in the array). This allows to achieve FIFO
68 * ordering without always scanning all pending operations.
69 * The worst-case behavior is nevertheless O(N^2) for N wakeups.
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/slab.h>
73#include <linux/spinlock.h>
74#include <linux/init.h>
75#include <linux/proc_fs.h>
76#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#include <linux/security.h>
78#include <linux/syscalls.h>
79#include <linux/audit.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080080#include <linux/capability.h>
Mike Waychison19b49462005-09-06 15:17:10 -070081#include <linux/seq_file.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070082#include <linux/rwsem.h>
Kirill Korotaeve3893532006-10-02 02:18:22 -070083#include <linux/nsproxy.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080084#include <linux/ipc_namespace.h>
Ingo Molnar5f921ae2006-03-26 01:37:17 -080085
Paul McQuade7153e402014-06-06 14:37:37 -070086#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include "util.h"
88
Manfred Spraule57940d2011-11-02 13:38:54 -070089/* One semaphore structure for each semaphore in the system. */
90struct sem {
91 int semval; /* current value */
Davidlohr Buesoa5f4db82016-03-22 14:27:48 -070092 /*
93 * PID of the process that last modified the semaphore. For
94 * Linux, specifically these are:
95 * - semop
96 * - semctl, via SETVAL and SETALL.
97 * - at task exit when performing undo adjustments (see exit_sem).
98 */
99 int sempid;
Rik van Riel6062a8d2013-04-30 19:15:44 -0700100 spinlock_t lock; /* spinlock for fine-grained semtimedop */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700101 struct list_head pending_alter; /* pending single-sop operations */
102 /* that alter the semaphore */
103 struct list_head pending_const; /* pending single-sop operations */
104 /* that do not alter the semaphore*/
Manfred Sprauld12e1e52013-07-08 16:01:25 -0700105 time_t sem_otime; /* candidate for sem_otime */
Manfred Spraulf5c936c2013-07-08 16:01:22 -0700106} ____cacheline_aligned_in_smp;
Manfred Spraule57940d2011-11-02 13:38:54 -0700107
108/* One queue for each sleeping process in the system. */
109struct sem_queue {
Manfred Spraule57940d2011-11-02 13:38:54 -0700110 struct list_head list; /* queue of pending operations */
111 struct task_struct *sleeper; /* this process */
112 struct sem_undo *undo; /* undo structure */
113 int pid; /* process id of requesting process */
114 int status; /* completion status of operation */
115 struct sembuf *sops; /* array of pending operations */
Manfred Sprauled247b72014-06-06 14:37:49 -0700116 struct sembuf *blocking; /* the operation that blocked */
Manfred Spraule57940d2011-11-02 13:38:54 -0700117 int nsops; /* number of operations */
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800118 bool alter; /* does *sops alter the array? */
119 bool dupsop; /* sops on more than one sem_num */
Manfred Spraule57940d2011-11-02 13:38:54 -0700120};
121
122/* Each task has a list of undo requests. They are executed automatically
123 * when the process exits.
124 */
125struct sem_undo {
126 struct list_head list_proc; /* per-process list: *
127 * all undos from one process
128 * rcu protected */
129 struct rcu_head rcu; /* rcu struct for sem_undo */
130 struct sem_undo_list *ulp; /* back ptr to sem_undo_list */
131 struct list_head list_id; /* per semaphore array list:
132 * all undos for one array */
133 int semid; /* semaphore set identifier */
134 short *semadj; /* array of adjustments */
135 /* one per semaphore */
136};
137
138/* sem_undo_list controls shared access to the list of sem_undo structures
139 * that may be shared among all a CLONE_SYSVSEM task group.
140 */
141struct sem_undo_list {
142 atomic_t refcnt;
143 spinlock_t lock;
144 struct list_head list_proc;
145};
146
147
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800148#define sem_ids(ns) ((ns)->ids[IPC_SEM_IDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Nadia Derbey1b531f22007-10-18 23:40:55 -0700150#define sem_checkid(sma, semid) ipc_checkid(&sma->sem_perm, semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700152static int newary(struct ipc_namespace *, struct ipc_params *);
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800153static void freeary(struct ipc_namespace *, struct kern_ipc_perm *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -0700155static int sysvipc_sem_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#endif
157
158#define SEMMSL_FAST 256 /* 512 bytes on stack */
159#define SEMOPM_FAST 64 /* ~ 372 bytes on stack */
160
161/*
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700162 * Locking:
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700163 * a) global sem_lock() for read/write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 * sem_undo.id_next,
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700165 * sem_array.complex_count,
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700166 * sem_array.complex_mode
167 * sem_array.pending{_alter,_const},
168 * sem_array.sem_undo
Paul McQuade46c0a8c2014-06-06 14:37:37 -0700169 *
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700170 * b) global or semaphore sem_lock() for read/write:
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700171 * sem_array.sem_base[i].pending_{const,alter}:
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700172 * sem_array.complex_mode (for read)
173 *
174 * c) special:
175 * sem_undo_list.list_proc:
176 * * undo_list->lock for write
177 * * rcu for read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179
Kirill Korotaeve3893532006-10-02 02:18:22 -0700180#define sc_semmsl sem_ctls[0]
181#define sc_semmns sem_ctls[1]
182#define sc_semopm sem_ctls[2]
183#define sc_semmni sem_ctls[3]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800185void sem_init_ns(struct ipc_namespace *ns)
Kirill Korotaeve3893532006-10-02 02:18:22 -0700186{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700187 ns->sc_semmsl = SEMMSL;
188 ns->sc_semmns = SEMMNS;
189 ns->sc_semopm = SEMOPM;
190 ns->sc_semmni = SEMMNI;
191 ns->used_sems = 0;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800192 ipc_init_ids(&ns->ids[IPC_SEM_IDS]);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700193}
194
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800195#ifdef CONFIG_IPC_NS
Kirill Korotaeve3893532006-10-02 02:18:22 -0700196void sem_exit_ns(struct ipc_namespace *ns)
197{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800198 free_ipcs(ns, &sem_ids(ns), freeary);
Serge E. Hallyn7d6feeb2009-12-15 16:47:27 -0800199 idr_destroy(&ns->ids[IPC_SEM_IDS].ipcs_idr);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700200}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Manfred Spraul239521f2014-01-27 17:07:04 -0800203void __init sem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800205 sem_init_ns(&init_ipc_ns);
Mike Waychison19b49462005-09-06 15:17:10 -0700206 ipc_init_proc_interface("sysvipc/sem",
207 " key semid perms nsems uid gid cuid cgid otime ctime\n",
Kirill Korotaeve3893532006-10-02 02:18:22 -0700208 IPC_SEM_IDS, sysvipc_sem_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Manfred Spraulf269f402013-07-08 16:01:24 -0700211/**
212 * unmerge_queues - unmerge queues, if possible.
213 * @sma: semaphore array
214 *
215 * The function unmerges the wait queues if complex_count is 0.
216 * It must be called prior to dropping the global semaphore array lock.
217 */
218static void unmerge_queues(struct sem_array *sma)
219{
220 struct sem_queue *q, *tq;
221
222 /* complex operations still around? */
223 if (sma->complex_count)
224 return;
225 /*
226 * We will switch back to simple mode.
227 * Move all pending operation back into the per-semaphore
228 * queues.
229 */
230 list_for_each_entry_safe(q, tq, &sma->pending_alter, list) {
231 struct sem *curr;
232 curr = &sma->sem_base[q->sops[0].sem_num];
233
234 list_add_tail(&q->list, &curr->pending_alter);
235 }
236 INIT_LIST_HEAD(&sma->pending_alter);
237}
238
239/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800240 * merge_queues - merge single semop queues into global queue
Manfred Spraulf269f402013-07-08 16:01:24 -0700241 * @sma: semaphore array
242 *
243 * This function merges all per-semaphore queues into the global queue.
244 * It is necessary to achieve FIFO ordering for the pending single-sop
245 * operations when a multi-semop operation must sleep.
246 * Only the alter operations must be moved, the const operations can stay.
247 */
248static void merge_queues(struct sem_array *sma)
249{
250 int i;
251 for (i = 0; i < sma->sem_nsems; i++) {
252 struct sem *sem = sma->sem_base + i;
253
254 list_splice_init(&sem->pending_alter, &sma->pending_alter);
255 }
256}
257
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700258static void sem_rcu_free(struct rcu_head *head)
259{
260 struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu);
261 struct sem_array *sma = ipc_rcu_to_struct(p);
262
263 security_sem_free(sma);
264 ipc_rcu_free(head);
265}
266
Nadia Derbey3e148c72007-10-18 23:40:54 -0700267/*
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700268 * Enter the mode suitable for non-simple operations:
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700269 * Caller must own sem_perm.lock.
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700270 */
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700271static void complexmode_enter(struct sem_array *sma)
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700272{
273 int i;
274 struct sem *sem;
275
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700276 if (sma->complex_mode) {
277 /* We are already in complex_mode. Nothing to do */
Manfred Spraul6d07b682013-09-30 13:45:06 -0700278 return;
279 }
280
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700281 /* We need a full barrier after seting complex_mode:
282 * The write to complex_mode must be visible
283 * before we read the first sem->lock spinlock state.
284 */
285 smp_store_mb(sma->complex_mode, true);
286
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700287 for (i = 0; i < sma->sem_nsems; i++) {
288 sem = sma->sem_base + i;
289 spin_unlock_wait(&sem->lock);
290 }
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700291 /*
292 * spin_unlock_wait() is not a memory barriers, it is only a
293 * control barrier. The code must pair with spin_unlock(&sem->lock),
294 * thus just the control barrier is insufficient.
295 *
296 * smp_rmb() is sufficient, as writes cannot pass the control barrier.
297 */
298 smp_rmb();
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700299}
300
301/*
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700302 * Try to leave the mode that disallows simple operations:
303 * Caller must own sem_perm.lock.
304 */
305static void complexmode_tryleave(struct sem_array *sma)
306{
307 if (sma->complex_count) {
308 /* Complex ops are sleeping.
309 * We must stay in complex mode
310 */
311 return;
312 }
313 /*
314 * Immediately after setting complex_mode to false,
315 * a simple op can start. Thus: all memory writes
316 * performed by the current operation must be visible
317 * before we set complex_mode to false.
318 */
319 smp_store_release(&sma->complex_mode, false);
320}
321
322#define SEM_GLOBAL_LOCK (-1)
323/*
Rik van Riel6062a8d2013-04-30 19:15:44 -0700324 * If the request contains only one semaphore operation, and there are
325 * no complex transactions pending, lock only the semaphore involved.
326 * Otherwise, lock the entire semaphore array, since we either have
327 * multiple semaphores in our own semops, or we need to look at
328 * semaphores from other pending complex operations.
Rik van Riel6062a8d2013-04-30 19:15:44 -0700329 */
330static inline int sem_lock(struct sem_array *sma, struct sembuf *sops,
331 int nsops)
332{
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700333 struct sem *sem;
Rik van Riel6062a8d2013-04-30 19:15:44 -0700334
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700335 if (nsops != 1) {
336 /* Complex operation - acquire a full lock */
337 ipc_lock_object(&sma->sem_perm);
338
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700339 /* Prevent parallel simple ops */
340 complexmode_enter(sma);
341 return SEM_GLOBAL_LOCK;
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700342 }
343
344 /*
345 * Only one semaphore affected - try to optimize locking.
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700346 * Optimized locking is possible if no complex operation
347 * is either enqueued or processed right now.
348 *
349 * Both facts are tracked by complex_mode.
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700350 */
351 sem = sma->sem_base + sops->sem_num;
352
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700353 /*
354 * Initial check for complex_mode. Just an optimization,
355 * no locking, no memory barrier.
356 */
357 if (!sma->complex_mode) {
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700358 /*
359 * It appears that no complex operation is around.
360 * Acquire the per-semaphore lock.
361 */
Rik van Riel6062a8d2013-04-30 19:15:44 -0700362 spin_lock(&sem->lock);
363
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700364 /*
365 * See 51d7d5205d33
366 * ("powerpc: Add smp_mb() to arch_spin_is_locked()"):
367 * A full barrier is required: the write of sem->lock
368 * must be visible before the read is executed
369 */
370 smp_mb();
Rik van Riel6062a8d2013-04-30 19:15:44 -0700371
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700372 if (!smp_load_acquire(&sma->complex_mode)) {
373 /* fast path successful! */
374 return sops->sem_num;
Rik van Riel6062a8d2013-04-30 19:15:44 -0700375 }
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700376 spin_unlock(&sem->lock);
Rik van Riel6062a8d2013-04-30 19:15:44 -0700377 }
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700378
379 /* slow path: acquire the full lock */
380 ipc_lock_object(&sma->sem_perm);
381
382 if (sma->complex_count == 0) {
383 /* False alarm:
384 * There is no complex operation, thus we can switch
385 * back to the fast path.
386 */
387 spin_lock(&sem->lock);
388 ipc_unlock_object(&sma->sem_perm);
389 return sops->sem_num;
390 } else {
391 /* Not a false alarm, thus complete the sequence for a
392 * full lock.
393 */
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700394 complexmode_enter(sma);
395 return SEM_GLOBAL_LOCK;
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700396 }
Rik van Riel6062a8d2013-04-30 19:15:44 -0700397}
398
399static inline void sem_unlock(struct sem_array *sma, int locknum)
400{
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700401 if (locknum == SEM_GLOBAL_LOCK) {
Manfred Spraulf269f402013-07-08 16:01:24 -0700402 unmerge_queues(sma);
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700403 complexmode_tryleave(sma);
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -0700404 ipc_unlock_object(&sma->sem_perm);
Rik van Riel6062a8d2013-04-30 19:15:44 -0700405 } else {
406 struct sem *sem = sma->sem_base + locknum;
407 spin_unlock(&sem->lock);
408 }
Rik van Riel6062a8d2013-04-30 19:15:44 -0700409}
410
411/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700412 * sem_lock_(check_) routines are called in the paths where the rwsem
Nadia Derbey3e148c72007-10-18 23:40:54 -0700413 * is not held.
Linus Torvalds321310c2013-05-04 10:47:57 -0700414 *
415 * The caller holds the RCU read lock.
Nadia Derbey3e148c72007-10-18 23:40:54 -0700416 */
Rik van Riel6062a8d2013-04-30 19:15:44 -0700417static inline struct sem_array *sem_obtain_lock(struct ipc_namespace *ns,
418 int id, struct sembuf *sops, int nsops, int *locknum)
Nadia Derbey023a5352007-10-18 23:40:51 -0700419{
Rik van Rielc460b662013-04-30 19:15:35 -0700420 struct kern_ipc_perm *ipcp;
421 struct sem_array *sma;
Nadia Derbey03f02c72007-10-18 23:40:51 -0700422
Davidlohr Bueso55b7ae52015-06-30 14:58:42 -0700423 ipcp = ipc_obtain_object_idr(&sem_ids(ns), id);
Linus Torvalds321310c2013-05-04 10:47:57 -0700424 if (IS_ERR(ipcp))
425 return ERR_CAST(ipcp);
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800426
Rik van Riel6062a8d2013-04-30 19:15:44 -0700427 sma = container_of(ipcp, struct sem_array, sem_perm);
428 *locknum = sem_lock(sma, sops, nsops);
Rik van Rielc460b662013-04-30 19:15:35 -0700429
430 /* ipc_rmid() may have already freed the ID while sem_lock
431 * was spinning: verify that the structure is still valid
432 */
Rafael Aquini72a8ff22014-01-27 17:07:02 -0800433 if (ipc_valid_object(ipcp))
Rik van Rielc460b662013-04-30 19:15:35 -0700434 return container_of(ipcp, struct sem_array, sem_perm);
435
Rik van Riel6062a8d2013-04-30 19:15:44 -0700436 sem_unlock(sma, *locknum);
Linus Torvalds321310c2013-05-04 10:47:57 -0700437 return ERR_PTR(-EINVAL);
Nadia Derbey023a5352007-10-18 23:40:51 -0700438}
439
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700440static inline struct sem_array *sem_obtain_object(struct ipc_namespace *ns, int id)
441{
Davidlohr Bueso55b7ae52015-06-30 14:58:42 -0700442 struct kern_ipc_perm *ipcp = ipc_obtain_object_idr(&sem_ids(ns), id);
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700443
444 if (IS_ERR(ipcp))
445 return ERR_CAST(ipcp);
446
447 return container_of(ipcp, struct sem_array, sem_perm);
448}
449
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700450static inline struct sem_array *sem_obtain_object_check(struct ipc_namespace *ns,
451 int id)
452{
453 struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&sem_ids(ns), id);
454
455 if (IS_ERR(ipcp))
456 return ERR_CAST(ipcp);
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800457
Nadia Derbey03f02c72007-10-18 23:40:51 -0700458 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700459}
460
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700461static inline void sem_lock_and_putref(struct sem_array *sma)
462{
Rik van Riel6062a8d2013-04-30 19:15:44 -0700463 sem_lock(sma, NULL, -1);
Fabian Frederick9b24fef2016-08-02 14:03:07 -0700464 ipc_rcu_putref(sma, sem_rcu_free);
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700465}
466
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700467static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
468{
469 ipc_rmid(&sem_ids(ns), &s->sem_perm);
470}
471
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700472/**
473 * newary - Create a new semaphore set
474 * @ns: namespace
475 * @params: ptr to the structure that contains key, semflg and nsems
476 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700477 * Called with sem_ids.rwsem held (as a writer)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700478 */
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700479static int newary(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 int id;
482 int retval;
483 struct sem_array *sma;
484 int size;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700485 key_t key = params->key;
486 int nsems = params->u.nsems;
487 int semflg = params->flg;
Manfred Spraulb97e8202009-12-15 16:47:32 -0800488 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (!nsems)
491 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700492 if (ns->used_sems + nsems > ns->sc_semmns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return -ENOSPC;
494
Manfred Spraul239521f2014-01-27 17:07:04 -0800495 size = sizeof(*sma) + nsems * sizeof(struct sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 sma = ipc_rcu_alloc(size);
Davidlohr Bueso3ab08fe2014-01-27 17:07:06 -0800497 if (!sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return -ENOMEM;
Davidlohr Bueso3ab08fe2014-01-27 17:07:06 -0800499
Manfred Spraul239521f2014-01-27 17:07:04 -0800500 memset(sma, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 sma->sem_perm.mode = (semflg & S_IRWXUGO);
503 sma->sem_perm.key = key;
504
505 sma->sem_perm.security = NULL;
506 retval = security_sem_alloc(sma);
507 if (retval) {
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700508 ipc_rcu_putref(sma, ipc_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return retval;
510 }
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 sma->sem_base = (struct sem *) &sma[1];
Manfred Spraulb97e8202009-12-15 16:47:32 -0800513
Rik van Riel6062a8d2013-04-30 19:15:44 -0700514 for (i = 0; i < nsems; i++) {
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700515 INIT_LIST_HEAD(&sma->sem_base[i].pending_alter);
516 INIT_LIST_HEAD(&sma->sem_base[i].pending_const);
Rik van Riel6062a8d2013-04-30 19:15:44 -0700517 spin_lock_init(&sma->sem_base[i].lock);
518 }
Manfred Spraulb97e8202009-12-15 16:47:32 -0800519
520 sma->complex_count = 0;
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700521 sma->complex_mode = true; /* dropped by sem_unlock below */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700522 INIT_LIST_HEAD(&sma->pending_alter);
523 INIT_LIST_HEAD(&sma->pending_const);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700524 INIT_LIST_HEAD(&sma->list_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 sma->sem_nsems = nsems;
526 sma->sem_ctime = get_seconds();
Manfred Spraule8577d12014-12-02 15:59:34 -0800527
528 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
529 if (id < 0) {
530 ipc_rcu_putref(sma, sem_rcu_free);
531 return id;
532 }
533 ns->used_sems += nsems;
534
Rik van Riel6062a8d2013-04-30 19:15:44 -0700535 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -0700536 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700538 return sma->sem_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700541
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700542/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700543 * Called with sem_ids.rwsem and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700544 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700545static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700547 struct sem_array *sma;
548
549 sma = container_of(ipcp, struct sem_array, sem_perm);
550 return security_sem_associate(sma, semflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700551}
552
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700553/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700554 * Called with sem_ids.rwsem and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700555 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700556static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
557 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700558{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700559 struct sem_array *sma;
560
561 sma = container_of(ipcp, struct sem_array, sem_perm);
562 if (params->u.nsems > sma->sem_nsems)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700563 return -EINVAL;
564
565 return 0;
566}
567
Heiko Carstensd5460c92009-01-14 14:14:27 +0100568SYSCALL_DEFINE3(semget, key_t, key, int, nsems, int, semflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700569{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700570 struct ipc_namespace *ns;
Mathias Krauseeb66ec42014-06-06 14:37:36 -0700571 static const struct ipc_ops sem_ops = {
572 .getnew = newary,
573 .associate = sem_security,
574 .more_checks = sem_more_checks,
575 };
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700576 struct ipc_params sem_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Kirill Korotaeve3893532006-10-02 02:18:22 -0700578 ns = current->nsproxy->ipc_ns;
579
580 if (nsems < 0 || nsems > ns->sc_semmsl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return -EINVAL;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700582
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700583 sem_params.key = key;
584 sem_params.flg = semflg;
585 sem_params.u.nsems = nsems;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700586
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700587 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Petr Mladek78f50092014-01-27 17:07:00 -0800590/**
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800591 * perform_atomic_semop[_slow] - Attempt to perform semaphore
592 * operations on a given array.
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700593 * @sma: semaphore array
Manfred Sprauld198cd62014-06-06 14:37:49 -0700594 * @q: struct sem_queue that describes the operation
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700595 *
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800596 * Caller blocking are as follows, based the value
597 * indicated by the semaphore operation (sem_op):
598 *
599 * (1) >0 never blocks.
600 * (2) 0 (wait-for-zero operation): semval is non-zero.
601 * (3) <0 attempting to decrement semval to a value smaller than zero.
602 *
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700603 * Returns 0 if the operation was possible.
604 * Returns 1 if the operation is impossible, the caller must sleep.
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800605 * Returns <0 for error codes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800607static int perform_atomic_semop_slow(struct sem_array *sma, struct sem_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Manfred Sprauld198cd62014-06-06 14:37:49 -0700609 int result, sem_op, nsops, pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct sembuf *sop;
Manfred Spraul239521f2014-01-27 17:07:04 -0800611 struct sem *curr;
Manfred Sprauld198cd62014-06-06 14:37:49 -0700612 struct sembuf *sops;
613 struct sem_undo *un;
614
615 sops = q->sops;
616 nsops = q->nsops;
617 un = q->undo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 for (sop = sops; sop < sops + nsops; sop++) {
620 curr = sma->sem_base + sop->sem_num;
621 sem_op = sop->sem_op;
622 result = curr->semval;
Petr Mladek78f50092014-01-27 17:07:00 -0800623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!sem_op && result)
625 goto would_block;
626
627 result += sem_op;
628 if (result < 0)
629 goto would_block;
630 if (result > SEMVMX)
631 goto out_of_range;
Petr Mladek78f50092014-01-27 17:07:00 -0800632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (sop->sem_flg & SEM_UNDO) {
634 int undo = un->semadj[sop->sem_num] - sem_op;
Petr Mladek78f50092014-01-27 17:07:00 -0800635 /* Exceeding the undo range is an error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
637 goto out_of_range;
Petr Mladek78f50092014-01-27 17:07:00 -0800638 un->semadj[sop->sem_num] = undo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
Petr Mladek78f50092014-01-27 17:07:00 -0800640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 curr->semval = result;
642 }
643
644 sop--;
Manfred Sprauld198cd62014-06-06 14:37:49 -0700645 pid = q->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 while (sop >= sops) {
647 sma->sem_base[sop->sem_num].sempid = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 sop--;
649 }
Petr Mladek78f50092014-01-27 17:07:00 -0800650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return 0;
652
653out_of_range:
654 result = -ERANGE;
655 goto undo;
656
657would_block:
Manfred Sprauled247b72014-06-06 14:37:49 -0700658 q->blocking = sop;
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (sop->sem_flg & IPC_NOWAIT)
661 result = -EAGAIN;
662 else
663 result = 1;
664
665undo:
666 sop--;
667 while (sop >= sops) {
Petr Mladek78f50092014-01-27 17:07:00 -0800668 sem_op = sop->sem_op;
669 sma->sem_base[sop->sem_num].semval -= sem_op;
670 if (sop->sem_flg & SEM_UNDO)
671 un->semadj[sop->sem_num] += sem_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 sop--;
673 }
674
675 return result;
676}
677
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800678static int perform_atomic_semop(struct sem_array *sma, struct sem_queue *q)
679{
680 int result, sem_op, nsops;
681 struct sembuf *sop;
682 struct sem *curr;
683 struct sembuf *sops;
684 struct sem_undo *un;
685
686 sops = q->sops;
687 nsops = q->nsops;
688 un = q->undo;
689
690 if (unlikely(q->dupsop))
691 return perform_atomic_semop_slow(sma, q);
692
693 /*
694 * We scan the semaphore set twice, first to ensure that the entire
695 * operation can succeed, therefore avoiding any pointless writes
696 * to shared memory and having to undo such changes in order to block
697 * until the operations can go through.
698 */
699 for (sop = sops; sop < sops + nsops; sop++) {
700 curr = sma->sem_base + sop->sem_num;
701 sem_op = sop->sem_op;
702 result = curr->semval;
703
704 if (!sem_op && result)
705 goto would_block; /* wait-for-zero */
706
707 result += sem_op;
708 if (result < 0)
709 goto would_block;
710
711 if (result > SEMVMX)
712 return -ERANGE;
713
714 if (sop->sem_flg & SEM_UNDO) {
715 int undo = un->semadj[sop->sem_num] - sem_op;
716
717 /* Exceeding the undo range is an error. */
718 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
719 return -ERANGE;
720 }
721 }
722
723 for (sop = sops; sop < sops + nsops; sop++) {
724 curr = sma->sem_base + sop->sem_num;
725 sem_op = sop->sem_op;
726 result = curr->semval;
727
728 if (sop->sem_flg & SEM_UNDO) {
729 int undo = un->semadj[sop->sem_num] - sem_op;
730
731 un->semadj[sop->sem_num] = undo;
732 }
733 curr->semval += sem_op;
734 curr->sempid = q->pid;
735 }
736
737 return 0;
738
739would_block:
740 q->blocking = sop;
741 return sop->sem_flg & IPC_NOWAIT ? -EAGAIN : 1;
742}
743
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800744static inline void wake_up_sem_queue_prepare(struct sem_queue *q, int error,
745 struct wake_q_head *wake_q)
Nick Piggind4212092009-12-15 16:47:30 -0800746{
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800747 wake_q_add(wake_q, q->sleeper);
748 /*
749 * Rely on the above implicit barrier, such that we can
750 * ensure that we hold reference to the task before setting
751 * q->status. Otherwise we could race with do_exit if the
752 * task is awoken by an external event before calling
753 * wake_up_process().
754 */
755 WRITE_ONCE(q->status, error);
Nick Piggind4212092009-12-15 16:47:30 -0800756}
757
Manfred Spraulb97e8202009-12-15 16:47:32 -0800758static void unlink_queue(struct sem_array *sma, struct sem_queue *q)
759{
760 list_del(&q->list);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700761 if (q->nsops > 1)
Manfred Spraulb97e8202009-12-15 16:47:32 -0800762 sma->complex_count--;
763}
764
Manfred Spraulfd5db422010-05-26 14:43:40 -0700765/** check_restart(sma, q)
766 * @sma: semaphore array
767 * @q: the operation that just completed
768 *
769 * update_queue is O(N^2) when it restarts scanning the whole queue of
770 * waiting operations. Therefore this function checks if the restart is
771 * really necessary. It is called after a previously waiting operation
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700772 * modified the array.
773 * Note that wait-for-zero operations are handled without restart.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700774 */
Davidlohr Bueso4663d3e2016-12-14 15:06:40 -0800775static inline int check_restart(struct sem_array *sma, struct sem_queue *q)
Manfred Spraulfd5db422010-05-26 14:43:40 -0700776{
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700777 /* pending complex alter operations are too difficult to analyse */
778 if (!list_empty(&sma->pending_alter))
Manfred Spraulfd5db422010-05-26 14:43:40 -0700779 return 1;
780
781 /* we were a sleeping complex operation. Too difficult */
782 if (q->nsops > 1)
783 return 1;
784
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700785 /* It is impossible that someone waits for the new value:
786 * - complex operations always restart.
787 * - wait-for-zero are handled seperately.
788 * - q is a previously sleeping simple operation that
789 * altered the array. It must be a decrement, because
790 * simple increments never sleep.
791 * - If there are older (higher priority) decrements
792 * in the queue, then they have observed the original
793 * semval value and couldn't proceed. The operation
794 * decremented to value - thus they won't proceed either.
795 */
796 return 0;
797}
Manfred Spraulfd5db422010-05-26 14:43:40 -0700798
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700799/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800800 * wake_const_ops - wake up non-alter tasks
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700801 * @sma: semaphore array.
802 * @semnum: semaphore that was modified.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800803 * @wake_q: lockless wake-queue head.
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700804 *
805 * wake_const_ops must be called after a semaphore in a semaphore array
806 * was set to 0. If complex const operations are pending, wake_const_ops must
807 * be called with semnum = -1, as well as with the number of each modified
808 * semaphore.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800809 * The tasks that must be woken up are added to @wake_q. The return code
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700810 * is stored in q->pid.
811 * The function returns 1 if at least one operation was completed successfully.
812 */
813static int wake_const_ops(struct sem_array *sma, int semnum,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800814 struct wake_q_head *wake_q)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700815{
Davidlohr Buesof150f022016-12-14 15:06:43 -0800816 struct sem_queue *q, *tmp;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700817 struct list_head *pending_list;
818 int semop_completed = 0;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700819
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700820 if (semnum == -1)
821 pending_list = &sma->pending_const;
822 else
823 pending_list = &sma->sem_base[semnum].pending_const;
824
Davidlohr Buesof150f022016-12-14 15:06:43 -0800825 list_for_each_entry_safe(q, tmp, pending_list, list) {
826 int error = perform_atomic_semop(sma, q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700827
Davidlohr Buesof150f022016-12-14 15:06:43 -0800828 if (error > 0)
829 continue;
830 /* operation completed, remove from queue & wakeup */
831 unlink_queue(sma, q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700832
Davidlohr Buesof150f022016-12-14 15:06:43 -0800833 wake_up_sem_queue_prepare(q, error, wake_q);
834 if (error == 0)
835 semop_completed = 1;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700836 }
Davidlohr Buesof150f022016-12-14 15:06:43 -0800837
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700838 return semop_completed;
839}
840
841/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800842 * do_smart_wakeup_zero - wakeup all wait for zero tasks
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700843 * @sma: semaphore array
844 * @sops: operations that were performed
845 * @nsops: number of operations
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800846 * @wake_q: lockless wake-queue head
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700847 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800848 * Checks all required queue for wait-for-zero operations, based
849 * on the actual changes that were performed on the semaphore array.
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700850 * The function returns 1 if at least one operation was completed successfully.
851 */
852static int do_smart_wakeup_zero(struct sem_array *sma, struct sembuf *sops,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800853 int nsops, struct wake_q_head *wake_q)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700854{
855 int i;
856 int semop_completed = 0;
857 int got_zero = 0;
858
859 /* first: the per-semaphore queues, if known */
860 if (sops) {
861 for (i = 0; i < nsops; i++) {
862 int num = sops[i].sem_num;
863
864 if (sma->sem_base[num].semval == 0) {
865 got_zero = 1;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800866 semop_completed |= wake_const_ops(sma, num, wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700867 }
868 }
869 } else {
870 /*
871 * No sops means modified semaphores not known.
872 * Assume all were changed.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700873 */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700874 for (i = 0; i < sma->sem_nsems; i++) {
875 if (sma->sem_base[i].semval == 0) {
876 got_zero = 1;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800877 semop_completed |= wake_const_ops(sma, i, wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700878 }
879 }
Manfred Spraulfd5db422010-05-26 14:43:40 -0700880 }
881 /*
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700882 * If one of the modified semaphores got 0,
883 * then check the global queue, too.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700884 */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700885 if (got_zero)
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800886 semop_completed |= wake_const_ops(sma, -1, wake_q);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700887
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700888 return semop_completed;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700889}
890
Manfred Spraul636c6be2009-12-15 16:47:33 -0800891
892/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800893 * update_queue - look for tasks that can be completed.
Manfred Spraul636c6be2009-12-15 16:47:33 -0800894 * @sma: semaphore array.
895 * @semnum: semaphore that was modified.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800896 * @wake_q: lockless wake-queue head.
Manfred Spraul636c6be2009-12-15 16:47:33 -0800897 *
898 * update_queue must be called after a semaphore in a semaphore array
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700899 * was modified. If multiple semaphores were modified, update_queue must
900 * be called with semnum = -1, as well as with the number of each modified
901 * semaphore.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800902 * The tasks that must be woken up are added to @wake_q. The return code
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700903 * is stored in q->pid.
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700904 * The function internally checks if const operations can now succeed.
905 *
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700906 * The function return 1 if at least one semop was completed successfully.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800908static int update_queue(struct sem_array *sma, int semnum, struct wake_q_head *wake_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Davidlohr Buesof150f022016-12-14 15:06:43 -0800910 struct sem_queue *q, *tmp;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800911 struct list_head *pending_list;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700912 int semop_completed = 0;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800913
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700914 if (semnum == -1)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700915 pending_list = &sma->pending_alter;
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700916 else
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700917 pending_list = &sma->sem_base[semnum].pending_alter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Nick Piggin9cad2002009-12-15 16:47:29 -0800919again:
Davidlohr Buesof150f022016-12-14 15:06:43 -0800920 list_for_each_entry_safe(q, tmp, pending_list, list) {
Manfred Spraulfd5db422010-05-26 14:43:40 -0700921 int error, restart;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800922
Manfred Sprauld987f8b22009-12-15 16:47:34 -0800923 /* If we are scanning the single sop, per-semaphore list of
924 * one semaphore and that semaphore is 0, then it is not
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700925 * necessary to scan further: simple increments
Manfred Sprauld987f8b22009-12-15 16:47:34 -0800926 * that affect only one entry succeed immediately and cannot
927 * be in the per semaphore pending queue, and decrements
928 * cannot be successful if the value is already 0.
929 */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700930 if (semnum != -1 && sma->sem_base[semnum].semval == 0)
Manfred Sprauld987f8b22009-12-15 16:47:34 -0800931 break;
932
Manfred Sprauld198cd62014-06-06 14:37:49 -0700933 error = perform_atomic_semop(sma, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 /* Does q->sleeper still need to sleep? */
Nick Piggin9cad2002009-12-15 16:47:29 -0800936 if (error > 0)
937 continue;
Manfred Spraula1193f82008-07-25 01:48:06 -0700938
Manfred Spraulb97e8202009-12-15 16:47:32 -0800939 unlink_queue(sma, q);
Manfred Spraula1193f82008-07-25 01:48:06 -0700940
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700941 if (error) {
Manfred Spraulfd5db422010-05-26 14:43:40 -0700942 restart = 0;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700943 } else {
944 semop_completed = 1;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800945 do_smart_wakeup_zero(sma, q->sops, q->nsops, wake_q);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700946 restart = check_restart(sma, q);
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700947 }
Manfred Spraulfd5db422010-05-26 14:43:40 -0700948
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800949 wake_up_sem_queue_prepare(q, error, wake_q);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700950 if (restart)
Nick Piggin9cad2002009-12-15 16:47:29 -0800951 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700953 return semop_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700956/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800957 * set_semotime - set sem_otime
Manfred Spraul0e8c6652013-09-30 13:45:25 -0700958 * @sma: semaphore array
959 * @sops: operations that modified the array, may be NULL
960 *
961 * sem_otime is replicated to avoid cache line trashing.
962 * This function sets one instance to the current time.
963 */
964static void set_semotime(struct sem_array *sma, struct sembuf *sops)
965{
966 if (sops == NULL) {
967 sma->sem_base[0].sem_otime = get_seconds();
968 } else {
969 sma->sem_base[sops[0].sem_num].sem_otime =
970 get_seconds();
971 }
972}
973
974/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800975 * do_smart_update - optimized update_queue
Manfred Spraulfd5db422010-05-26 14:43:40 -0700976 * @sma: semaphore array
977 * @sops: operations that were performed
978 * @nsops: number of operations
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700979 * @otime: force setting otime
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800980 * @wake_q: lockless wake-queue head
Manfred Spraulfd5db422010-05-26 14:43:40 -0700981 *
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700982 * do_smart_update() does the required calls to update_queue and wakeup_zero,
983 * based on the actual changes that were performed on the semaphore array.
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700984 * Note that the function does not do the actual wake-up: the caller is
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800985 * responsible for calling wake_up_q().
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700986 * It is safe to perform this call after dropping all locks.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700987 */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700988static void do_smart_update(struct sem_array *sma, struct sembuf *sops, int nsops,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800989 int otime, struct wake_q_head *wake_q)
Manfred Spraulfd5db422010-05-26 14:43:40 -0700990{
991 int i;
992
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800993 otime |= do_smart_wakeup_zero(sma, sops, nsops, wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700994
Manfred Spraulf269f402013-07-08 16:01:24 -0700995 if (!list_empty(&sma->pending_alter)) {
996 /* semaphore array uses the global queue - just process it. */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800997 otime |= update_queue(sma, -1, wake_q);
Manfred Spraulf269f402013-07-08 16:01:24 -0700998 } else {
999 if (!sops) {
1000 /*
1001 * No sops, thus the modified semaphores are not
1002 * known. Check all.
1003 */
1004 for (i = 0; i < sma->sem_nsems; i++)
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001005 otime |= update_queue(sma, i, wake_q);
Manfred Spraulf269f402013-07-08 16:01:24 -07001006 } else {
1007 /*
1008 * Check the semaphores that were increased:
1009 * - No complex ops, thus all sleeping ops are
1010 * decrease.
1011 * - if we decreased the value, then any sleeping
1012 * semaphore ops wont be able to run: If the
1013 * previous value was too small, then the new
1014 * value will be too small, too.
1015 */
1016 for (i = 0; i < nsops; i++) {
1017 if (sops[i].sem_op > 0) {
1018 otime |= update_queue(sma,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001019 sops[i].sem_num, wake_q);
Manfred Spraulf269f402013-07-08 16:01:24 -07001020 }
Manfred Spraulab465df2013-05-26 11:08:52 +02001021 }
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001022 }
Manfred Spraulfd5db422010-05-26 14:43:40 -07001023 }
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001024 if (otime)
1025 set_semotime(sma, sops);
Manfred Spraulfd5db422010-05-26 14:43:40 -07001026}
1027
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001028/*
Manfred Spraulb220c572014-06-06 14:37:51 -07001029 * check_qop: Test if a queued operation sleeps on the semaphore semnum
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001030 */
1031static int check_qop(struct sem_array *sma, int semnum, struct sem_queue *q,
1032 bool count_zero)
1033{
Manfred Spraulb220c572014-06-06 14:37:51 -07001034 struct sembuf *sop = q->blocking;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001035
Manfred Spraul9b44ee22014-06-06 14:37:52 -07001036 /*
1037 * Linux always (since 0.99.10) reported a task as sleeping on all
1038 * semaphores. This violates SUS, therefore it was changed to the
1039 * standard compliant behavior.
1040 * Give the administrators a chance to notice that an application
1041 * might misbehave because it relies on the Linux behavior.
1042 */
1043 pr_info_once("semctl(GETNCNT/GETZCNT) is since 3.16 Single Unix Specification compliant.\n"
1044 "The task %s (%d) triggered the difference, watch for misbehavior.\n",
1045 current->comm, task_pid_nr(current));
1046
Manfred Spraulb220c572014-06-06 14:37:51 -07001047 if (sop->sem_num != semnum)
1048 return 0;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001049
Manfred Spraulb220c572014-06-06 14:37:51 -07001050 if (count_zero && sop->sem_op == 0)
1051 return 1;
1052 if (!count_zero && sop->sem_op < 0)
1053 return 1;
1054
1055 return 0;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/* The following counts are associated to each semaphore:
1059 * semncnt number of tasks waiting on semval being nonzero
1060 * semzcnt number of tasks waiting on semval being zero
Manfred Spraulb220c572014-06-06 14:37:51 -07001061 *
1062 * Per definition, a task waits only on the semaphore of the first semop
1063 * that cannot proceed, even if additional operation would block, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 */
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001065static int count_semcnt(struct sem_array *sma, ushort semnum,
1066 bool count_zero)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001068 struct list_head *l;
Manfred Spraul239521f2014-01-27 17:07:04 -08001069 struct sem_queue *q;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001070 int semcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001072 semcnt = 0;
1073 /* First: check the simple operations. They are easy to evaluate */
1074 if (count_zero)
1075 l = &sma->sem_base[semnum].pending_const;
1076 else
1077 l = &sma->sem_base[semnum].pending_alter;
1078
1079 list_for_each_entry(q, l, list) {
1080 /* all task on a per-semaphore list sleep on exactly
1081 * that semaphore
1082 */
1083 semcnt++;
Rik van Rielde2657f2013-05-09 16:59:59 -04001084 }
1085
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001086 /* Then: check the complex operations. */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001087 list_for_each_entry(q, &sma->pending_alter, list) {
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001088 semcnt += check_qop(sma, semnum, q, count_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001090 if (count_zero) {
1091 list_for_each_entry(q, &sma->pending_const, list) {
1092 semcnt += check_qop(sma, semnum, q, count_zero);
1093 }
Rik van Rielebc2e5e2013-05-09 16:53:28 -04001094 }
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001095 return semcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001098/* Free a semaphore set. freeary() is called with sem_ids.rwsem locked
1099 * as a writer and the spinlock for this semaphore set hold. sem_ids.rwsem
Nadia Derbey3e148c72007-10-18 23:40:54 -07001100 * remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001102static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Manfred Spraul380af1b2008-07-25 01:48:06 -07001104 struct sem_undo *un, *tu;
1105 struct sem_queue *q, *tq;
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001106 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001107 int i;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001108 DEFINE_WAKE_Q(wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Manfred Spraul380af1b2008-07-25 01:48:06 -07001110 /* Free the existing undo structures for this semaphore set. */
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001111 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001112 list_for_each_entry_safe(un, tu, &sma->list_id, list_id) {
1113 list_del(&un->list_id);
1114 spin_lock(&un->ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 un->semid = -1;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001116 list_del_rcu(&un->list_proc);
1117 spin_unlock(&un->ulp->lock);
Lai Jiangshan693a8b62011-03-18 12:09:35 +08001118 kfree_rcu(un, rcu);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 /* Wake up all pending processes and let them fail with EIDRM. */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001122 list_for_each_entry_safe(q, tq, &sma->pending_const, list) {
1123 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001124 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001125 }
1126
1127 list_for_each_entry_safe(q, tq, &sma->pending_alter, list) {
Manfred Spraulb97e8202009-12-15 16:47:32 -08001128 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001129 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001131 for (i = 0; i < sma->sem_nsems; i++) {
1132 struct sem *sem = sma->sem_base + i;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001133 list_for_each_entry_safe(q, tq, &sem->pending_const, list) {
1134 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001135 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001136 }
1137 list_for_each_entry_safe(q, tq, &sem->pending_alter, list) {
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001138 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001139 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001140 }
1141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001143 /* Remove the semaphore set from the IDR */
1144 sem_rmid(ns, sma);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001145 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001146 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001148 wake_up_q(&wake_q);
Kirill Korotaeve3893532006-10-02 02:18:22 -07001149 ns->used_sems -= sma->sem_nsems;
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -07001150 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
1153static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
1154{
Manfred Spraul239521f2014-01-27 17:07:04 -08001155 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 case IPC_64:
1157 return copy_to_user(buf, in, sizeof(*in));
1158 case IPC_OLD:
1159 {
1160 struct semid_ds out;
1161
Dan Rosenberg982f7c22010-09-30 15:15:31 -07001162 memset(&out, 0, sizeof(out));
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
1165
1166 out.sem_otime = in->sem_otime;
1167 out.sem_ctime = in->sem_ctime;
1168 out.sem_nsems = in->sem_nsems;
1169
1170 return copy_to_user(buf, &out, sizeof(out));
1171 }
1172 default:
1173 return -EINVAL;
1174 }
1175}
1176
Manfred Sprauld12e1e52013-07-08 16:01:25 -07001177static time_t get_semotime(struct sem_array *sma)
1178{
1179 int i;
1180 time_t res;
1181
1182 res = sma->sem_base[0].sem_otime;
1183 for (i = 1; i < sma->sem_nsems; i++) {
1184 time_t to = sma->sem_base[i].sem_otime;
1185
1186 if (to > res)
1187 res = to;
1188 }
1189 return res;
1190}
1191
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001192static int semctl_nolock(struct ipc_namespace *ns, int semid,
Al Viroe1fd1f42013-03-05 15:04:55 -05001193 int cmd, int version, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Amerigo Wange5cc9c72009-12-15 16:47:35 -08001195 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct sem_array *sma;
1197
Manfred Spraul239521f2014-01-27 17:07:04 -08001198 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 case IPC_INFO:
1200 case SEM_INFO:
1201 {
1202 struct seminfo seminfo;
1203 int max_id;
1204
1205 err = security_sem_semctl(NULL, cmd);
1206 if (err)
1207 return err;
Paul McQuade46c0a8c2014-06-06 14:37:37 -07001208
Manfred Spraul239521f2014-01-27 17:07:04 -08001209 memset(&seminfo, 0, sizeof(seminfo));
Kirill Korotaeve3893532006-10-02 02:18:22 -07001210 seminfo.semmni = ns->sc_semmni;
1211 seminfo.semmns = ns->sc_semmns;
1212 seminfo.semmsl = ns->sc_semmsl;
1213 seminfo.semopm = ns->sc_semopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 seminfo.semvmx = SEMVMX;
1215 seminfo.semmnu = SEMMNU;
1216 seminfo.semmap = SEMMAP;
1217 seminfo.semume = SEMUME;
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001218 down_read(&sem_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (cmd == SEM_INFO) {
Kirill Korotaeve3893532006-10-02 02:18:22 -07001220 seminfo.semusz = sem_ids(ns).in_use;
1221 seminfo.semaem = ns->used_sems;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 } else {
1223 seminfo.semusz = SEMUSZ;
1224 seminfo.semaem = SEMAEM;
1225 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001226 max_id = ipc_get_maxid(&sem_ids(ns));
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001227 up_read(&sem_ids(ns).rwsem);
Paul McQuade46c0a8c2014-06-06 14:37:37 -07001228 if (copy_to_user(p, &seminfo, sizeof(struct seminfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return -EFAULT;
Manfred Spraul239521f2014-01-27 17:07:04 -08001230 return (max_id < 0) ? 0 : max_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001232 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 case SEM_STAT:
1234 {
1235 struct semid64_ds tbuf;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001236 int id = 0;
1237
1238 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Linus Torvalds941b0302013-05-04 11:04:29 -07001240 rcu_read_lock();
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001241 if (cmd == SEM_STAT) {
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001242 sma = sem_obtain_object(ns, semid);
1243 if (IS_ERR(sma)) {
1244 err = PTR_ERR(sma);
1245 goto out_unlock;
1246 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001247 id = sma->sem_perm.id;
1248 } else {
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001249 sma = sem_obtain_object_check(ns, semid);
1250 if (IS_ERR(sma)) {
1251 err = PTR_ERR(sma);
1252 goto out_unlock;
1253 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001257 if (ipcperms(ns, &sma->sem_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto out_unlock;
1259
1260 err = security_sem_semctl(sma, cmd);
1261 if (err)
1262 goto out_unlock;
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
Manfred Sprauld12e1e52013-07-08 16:01:25 -07001265 tbuf.sem_otime = get_semotime(sma);
1266 tbuf.sem_ctime = sma->sem_ctime;
1267 tbuf.sem_nsems = sma->sem_nsems;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001268 rcu_read_unlock();
Al Viroe1fd1f42013-03-05 15:04:55 -05001269 if (copy_semid_to_user(p, &tbuf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return -EFAULT;
1271 return id;
1272 }
1273 default:
1274 return -EINVAL;
1275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276out_unlock:
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001277 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return err;
1279}
1280
Al Viroe1fd1f42013-03-05 15:04:55 -05001281static int semctl_setval(struct ipc_namespace *ns, int semid, int semnum,
1282 unsigned long arg)
1283{
1284 struct sem_undo *un;
1285 struct sem_array *sma;
Manfred Spraul239521f2014-01-27 17:07:04 -08001286 struct sem *curr;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001287 int err, val;
1288 DEFINE_WAKE_Q(wake_q);
1289
Al Viroe1fd1f42013-03-05 15:04:55 -05001290#if defined(CONFIG_64BIT) && defined(__BIG_ENDIAN)
1291 /* big-endian 64bit */
1292 val = arg >> 32;
1293#else
1294 /* 32bit or little-endian 64bit */
1295 val = arg;
1296#endif
1297
Rik van Riel6062a8d2013-04-30 19:15:44 -07001298 if (val > SEMVMX || val < 0)
1299 return -ERANGE;
Al Viroe1fd1f42013-03-05 15:04:55 -05001300
Rik van Riel6062a8d2013-04-30 19:15:44 -07001301 rcu_read_lock();
1302 sma = sem_obtain_object_check(ns, semid);
1303 if (IS_ERR(sma)) {
1304 rcu_read_unlock();
1305 return PTR_ERR(sma);
1306 }
1307
1308 if (semnum < 0 || semnum >= sma->sem_nsems) {
1309 rcu_read_unlock();
1310 return -EINVAL;
1311 }
1312
1313
1314 if (ipcperms(ns, &sma->sem_perm, S_IWUGO)) {
1315 rcu_read_unlock();
1316 return -EACCES;
1317 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001318
1319 err = security_sem_semctl(sma, SETVAL);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001320 if (err) {
1321 rcu_read_unlock();
1322 return -EACCES;
1323 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001324
Rik van Riel6062a8d2013-04-30 19:15:44 -07001325 sem_lock(sma, NULL, -1);
Al Viroe1fd1f42013-03-05 15:04:55 -05001326
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001327 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001328 sem_unlock(sma, -1);
1329 rcu_read_unlock();
1330 return -EIDRM;
1331 }
1332
Al Viroe1fd1f42013-03-05 15:04:55 -05001333 curr = &sma->sem_base[semnum];
1334
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001335 ipc_assert_locked_object(&sma->sem_perm);
Al Viroe1fd1f42013-03-05 15:04:55 -05001336 list_for_each_entry(un, &sma->list_id, list_id)
1337 un->semadj[semnum] = 0;
1338
1339 curr->semval = val;
1340 curr->sempid = task_tgid_vnr(current);
1341 sma->sem_ctime = get_seconds();
1342 /* maybe some queued-up processes were waiting for this */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001343 do_smart_update(sma, NULL, 0, 0, &wake_q);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001344 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001345 rcu_read_unlock();
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001346 wake_up_q(&wake_q);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001347 return 0;
Al Viroe1fd1f42013-03-05 15:04:55 -05001348}
1349
Kirill Korotaeve3893532006-10-02 02:18:22 -07001350static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
Al Viroe1fd1f42013-03-05 15:04:55 -05001351 int cmd, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct sem_array *sma;
Manfred Spraul239521f2014-01-27 17:07:04 -08001354 struct sem *curr;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001355 int err, nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 ushort fast_sem_io[SEMMSL_FAST];
Manfred Spraul239521f2014-01-27 17:07:04 -08001357 ushort *sem_io = fast_sem_io;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001358 DEFINE_WAKE_Q(wake_q);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001359
1360 rcu_read_lock();
1361 sma = sem_obtain_object_check(ns, semid);
1362 if (IS_ERR(sma)) {
1363 rcu_read_unlock();
1364 return PTR_ERR(sma);
1365 }
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 nsems = sma->sem_nsems;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 err = -EACCES;
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001370 if (ipcperms(ns, &sma->sem_perm, cmd == SETALL ? S_IWUGO : S_IRUGO))
1371 goto out_rcu_wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 err = security_sem_semctl(sma, cmd);
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001374 if (err)
1375 goto out_rcu_wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 err = -EACCES;
1378 switch (cmd) {
1379 case GETALL:
1380 {
Al Viroe1fd1f42013-03-05 15:04:55 -05001381 ushort __user *array = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 int i;
1383
Al Viroce857222013-05-03 00:30:49 +01001384 sem_lock(sma, NULL, -1);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001385 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001386 err = -EIDRM;
1387 goto out_unlock;
1388 }
Manfred Spraul239521f2014-01-27 17:07:04 -08001389 if (nsems > SEMMSL_FAST) {
Al Viroce857222013-05-03 00:30:49 +01001390 if (!ipc_rcu_getref(sma)) {
Al Viroce857222013-05-03 00:30:49 +01001391 err = -EIDRM;
Manfred Spraul6e224f92013-10-16 13:46:45 -07001392 goto out_unlock;
Al Viroce857222013-05-03 00:30:49 +01001393 }
1394 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001395 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 sem_io = ipc_alloc(sizeof(ushort)*nsems);
Manfred Spraul239521f2014-01-27 17:07:04 -08001397 if (sem_io == NULL) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001398 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -ENOMEM;
1400 }
1401
Linus Torvalds4091fd92013-05-04 10:13:40 -07001402 rcu_read_lock();
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001403 sem_lock_and_putref(sma);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001404 if (!ipc_valid_object(&sma->sem_perm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 err = -EIDRM;
Manfred Spraul6e224f92013-10-16 13:46:45 -07001406 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
Al Viroce857222013-05-03 00:30:49 +01001408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 for (i = 0; i < sma->sem_nsems; i++)
1410 sem_io[i] = sma->sem_base[i].semval;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001411 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001412 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 err = 0;
Manfred Spraul239521f2014-01-27 17:07:04 -08001414 if (copy_to_user(array, sem_io, nsems*sizeof(ushort)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 err = -EFAULT;
1416 goto out_free;
1417 }
1418 case SETALL:
1419 {
1420 int i;
1421 struct sem_undo *un;
1422
Rik van Riel6062a8d2013-04-30 19:15:44 -07001423 if (!ipc_rcu_getref(sma)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001424 err = -EIDRM;
1425 goto out_rcu_wakeup;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001426 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001427 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Manfred Spraul239521f2014-01-27 17:07:04 -08001429 if (nsems > SEMMSL_FAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 sem_io = ipc_alloc(sizeof(ushort)*nsems);
Manfred Spraul239521f2014-01-27 17:07:04 -08001431 if (sem_io == NULL) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001432 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return -ENOMEM;
1434 }
1435 }
1436
Manfred Spraul239521f2014-01-27 17:07:04 -08001437 if (copy_from_user(sem_io, p, nsems*sizeof(ushort))) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001438 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 err = -EFAULT;
1440 goto out_free;
1441 }
1442
1443 for (i = 0; i < nsems; i++) {
1444 if (sem_io[i] > SEMVMX) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001445 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 err = -ERANGE;
1447 goto out_free;
1448 }
1449 }
Linus Torvalds4091fd92013-05-04 10:13:40 -07001450 rcu_read_lock();
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001451 sem_lock_and_putref(sma);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001452 if (!ipc_valid_object(&sma->sem_perm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 err = -EIDRM;
Manfred Spraul6e224f92013-10-16 13:46:45 -07001454 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
Davidlohr Buesoa5f4db82016-03-22 14:27:48 -07001457 for (i = 0; i < nsems; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 sma->sem_base[i].semval = sem_io[i];
Davidlohr Buesoa5f4db82016-03-22 14:27:48 -07001459 sma->sem_base[i].sempid = task_tgid_vnr(current);
1460 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001461
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001462 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001463 list_for_each_entry(un, &sma->list_id, list_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 for (i = 0; i < nsems; i++)
1465 un->semadj[i] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 sma->sem_ctime = get_seconds();
1468 /* maybe some queued-up processes were waiting for this */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001469 do_smart_update(sma, NULL, 0, 0, &wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 err = 0;
1471 goto out_unlock;
1472 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001473 /* GETVAL, GETPID, GETNCTN, GETZCNT: fall-through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
1475 err = -EINVAL;
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001476 if (semnum < 0 || semnum >= nsems)
1477 goto out_rcu_wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Rik van Riel6062a8d2013-04-30 19:15:44 -07001479 sem_lock(sma, NULL, -1);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001480 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001481 err = -EIDRM;
1482 goto out_unlock;
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 curr = &sma->sem_base[semnum];
1485
1486 switch (cmd) {
1487 case GETVAL:
1488 err = curr->semval;
1489 goto out_unlock;
1490 case GETPID:
1491 err = curr->sempid;
1492 goto out_unlock;
1493 case GETNCNT:
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001494 err = count_semcnt(sma, semnum, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 goto out_unlock;
1496 case GETZCNT:
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001497 err = count_semcnt(sma, semnum, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501out_unlock:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001502 sem_unlock(sma, -1);
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001503out_rcu_wakeup:
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001504 rcu_read_unlock();
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001505 wake_up_q(&wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506out_free:
Manfred Spraul239521f2014-01-27 17:07:04 -08001507 if (sem_io != fast_sem_io)
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -08001508 ipc_free(sem_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 return err;
1510}
1511
Pierre Peiffer016d7132008-04-29 01:00:50 -07001512static inline unsigned long
1513copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Manfred Spraul239521f2014-01-27 17:07:04 -08001515 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -07001517 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 case IPC_OLD:
1521 {
1522 struct semid_ds tbuf_old;
1523
Manfred Spraul239521f2014-01-27 17:07:04 -08001524 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return -EFAULT;
1526
Pierre Peiffer016d7132008-04-29 01:00:50 -07001527 out->sem_perm.uid = tbuf_old.sem_perm.uid;
1528 out->sem_perm.gid = tbuf_old.sem_perm.gid;
1529 out->sem_perm.mode = tbuf_old.sem_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 return 0;
1532 }
1533 default:
1534 return -EINVAL;
1535 }
1536}
1537
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001538/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001539 * This function handles some semctl commands which require the rwsem
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001540 * to be held in write mode.
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001541 * NOTE: no locks must be held, the rwsem is taken inside this function.
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001542 */
Pierre Peiffer21a48262008-04-29 01:00:49 -07001543static int semctl_down(struct ipc_namespace *ns, int semid,
Al Viroe1fd1f42013-03-05 15:04:55 -05001544 int cmd, int version, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 struct sem_array *sma;
1547 int err;
Pierre Peiffer016d7132008-04-29 01:00:50 -07001548 struct semid64_ds semid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 struct kern_ipc_perm *ipcp;
1550
Manfred Spraul239521f2014-01-27 17:07:04 -08001551 if (cmd == IPC_SET) {
Al Viroe1fd1f42013-03-05 15:04:55 -05001552 if (copy_semid_from_user(&semid64, p, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001556 down_write(&sem_ids(ns).rwsem);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001557 rcu_read_lock();
1558
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001559 ipcp = ipcctl_pre_down_nolock(ns, &sem_ids(ns), semid, cmd,
1560 &semid64.sem_perm, 0);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001561 if (IS_ERR(ipcp)) {
1562 err = PTR_ERR(ipcp);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001563 goto out_unlock1;
1564 }
Steve Grubb073115d2006-04-02 17:07:33 -04001565
Pierre Peiffera5f75e72008-04-29 01:00:54 -07001566 sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 err = security_sem_semctl(sma, cmd);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001569 if (err)
1570 goto out_unlock1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001572 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 case IPC_RMID:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001574 sem_lock(sma, NULL, -1);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001575 /* freeary unlocks the ipc object and rcu */
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001576 freeary(ns, ipcp);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001577 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 case IPC_SET:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001579 sem_lock(sma, NULL, -1);
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001580 err = ipc_update_perm(&semid64.sem_perm, ipcp);
1581 if (err)
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001582 goto out_unlock0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 sma->sem_ctime = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 break;
1585 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 err = -EINVAL;
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001587 goto out_unlock1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001590out_unlock0:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001591 sem_unlock(sma, -1);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001592out_unlock1:
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001593 rcu_read_unlock();
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001594out_up:
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001595 up_write(&sem_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 return err;
1597}
1598
Al Viroe1fd1f42013-03-05 15:04:55 -05001599SYSCALL_DEFINE4(semctl, int, semid, int, semnum, int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 int version;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001602 struct ipc_namespace *ns;
Al Viroe1fd1f42013-03-05 15:04:55 -05001603 void __user *p = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 if (semid < 0)
1606 return -EINVAL;
1607
1608 version = ipc_parse_version(&cmd);
Kirill Korotaeve3893532006-10-02 02:18:22 -07001609 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Manfred Spraul239521f2014-01-27 17:07:04 -08001611 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 case IPC_INFO:
1613 case SEM_INFO:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001614 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 case SEM_STAT:
Al Viroe1fd1f42013-03-05 15:04:55 -05001616 return semctl_nolock(ns, semid, cmd, version, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 case GETALL:
1618 case GETVAL:
1619 case GETPID:
1620 case GETNCNT:
1621 case GETZCNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 case SETALL:
Al Viroe1fd1f42013-03-05 15:04:55 -05001623 return semctl_main(ns, semid, semnum, cmd, p);
1624 case SETVAL:
1625 return semctl_setval(ns, semid, semnum, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 case IPC_RMID:
1627 case IPC_SET:
Al Viroe1fd1f42013-03-05 15:04:55 -05001628 return semctl_down(ns, semid, cmd, version, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 default:
1630 return -EINVAL;
1631 }
1632}
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634/* If the task doesn't already have a undo_list, then allocate one
1635 * here. We guarantee there is only one thread using this undo list,
1636 * and current is THE ONE
1637 *
1638 * If this allocation and assignment succeeds, but later
1639 * portions of this code fail, there is no need to free the sem_undo_list.
1640 * Just let it stay associated with the task, and it'll be freed later
1641 * at exit time.
1642 *
1643 * This can block, so callers must hold no locks.
1644 */
1645static inline int get_undo_list(struct sem_undo_list **undo_listp)
1646{
1647 struct sem_undo_list *undo_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 undo_list = current->sysvsem.undo_list;
1650 if (!undo_list) {
Matt Helsley2453a302006-10-02 02:18:25 -07001651 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (undo_list == NULL)
1653 return -ENOMEM;
Ingo Molnar00a5dfd2005-08-05 23:05:27 +02001654 spin_lock_init(&undo_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 atomic_set(&undo_list->refcnt, 1);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001656 INIT_LIST_HEAD(&undo_list->list_proc);
1657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 current->sysvsem.undo_list = undo_list;
1659 }
1660 *undo_listp = undo_list;
1661 return 0;
1662}
1663
Nick Pigginbf17bb72009-12-15 16:47:28 -08001664static struct sem_undo *__lookup_undo(struct sem_undo_list *ulp, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Nick Pigginbf17bb72009-12-15 16:47:28 -08001666 struct sem_undo *un;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Nick Pigginbf17bb72009-12-15 16:47:28 -08001668 list_for_each_entry_rcu(un, &ulp->list_proc, list_proc) {
1669 if (un->semid == semid)
1670 return un;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001672 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
Nick Pigginbf17bb72009-12-15 16:47:28 -08001675static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
1676{
1677 struct sem_undo *un;
1678
Manfred Spraul239521f2014-01-27 17:07:04 -08001679 assert_spin_locked(&ulp->lock);
Nick Pigginbf17bb72009-12-15 16:47:28 -08001680
1681 un = __lookup_undo(ulp, semid);
1682 if (un) {
1683 list_del_rcu(&un->list_proc);
1684 list_add_rcu(&un->list_proc, &ulp->list_proc);
1685 }
1686 return un;
1687}
1688
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001689/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -08001690 * find_alloc_undo - lookup (and if not present create) undo array
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001691 * @ns: namespace
1692 * @semid: semaphore array id
1693 *
1694 * The function looks up (and if not present creates) the undo structure.
1695 * The size of the undo structure depends on the size of the semaphore
1696 * array, thus the alloc path is not that straightforward.
Manfred Spraul380af1b2008-07-25 01:48:06 -07001697 * Lifetime-rules: sem_undo is rcu-protected, on success, the function
1698 * performs a rcu_read_lock().
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001699 */
1700static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
1702 struct sem_array *sma;
1703 struct sem_undo_list *ulp;
1704 struct sem_undo *un, *new;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001705 int nsems, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 error = get_undo_list(&ulp);
1708 if (error)
1709 return ERR_PTR(error);
1710
Manfred Spraul380af1b2008-07-25 01:48:06 -07001711 rcu_read_lock();
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001712 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 un = lookup_undo(ulp, semid);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001714 spin_unlock(&ulp->lock);
Manfred Spraul239521f2014-01-27 17:07:04 -08001715 if (likely(un != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 goto out;
1717
1718 /* no undo structure around - allocate one. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001719 /* step 1: figure out the size of the semaphore array */
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001720 sma = sem_obtain_object_check(ns, semid);
1721 if (IS_ERR(sma)) {
1722 rcu_read_unlock();
Julia Lawall4de85cd2010-05-26 14:43:44 -07001723 return ERR_CAST(sma);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001724 }
Nadia Derbey023a5352007-10-18 23:40:51 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 nsems = sma->sem_nsems;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001727 if (!ipc_rcu_getref(sma)) {
1728 rcu_read_unlock();
1729 un = ERR_PTR(-EIDRM);
1730 goto out;
1731 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001732 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001734 /* step 2: allocate new undo structure */
Burman Yan4668edc2006-12-06 20:38:51 -08001735 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (!new) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001737 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return ERR_PTR(-ENOMEM);
1739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Manfred Spraul380af1b2008-07-25 01:48:06 -07001741 /* step 3: Acquire the lock on semaphore array */
Linus Torvalds4091fd92013-05-04 10:13:40 -07001742 rcu_read_lock();
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001743 sem_lock_and_putref(sma);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001744 if (!ipc_valid_object(&sma->sem_perm)) {
Rik van Riel6062a8d2013-04-30 19:15:44 -07001745 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001746 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 kfree(new);
1748 un = ERR_PTR(-EIDRM);
1749 goto out;
1750 }
Manfred Spraul380af1b2008-07-25 01:48:06 -07001751 spin_lock(&ulp->lock);
1752
1753 /*
1754 * step 4: check for races: did someone else allocate the undo struct?
1755 */
1756 un = lookup_undo(ulp, semid);
1757 if (un) {
1758 kfree(new);
1759 goto success;
1760 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001761 /* step 5: initialize & link new undo structure */
1762 new->semadj = (short *) &new[1];
Manfred Spraul380af1b2008-07-25 01:48:06 -07001763 new->ulp = ulp;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001764 new->semid = semid;
1765 assert_spin_locked(&ulp->lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001766 list_add_rcu(&new->list_proc, &ulp->list_proc);
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001767 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001768 list_add(&new->list_id, &sma->list_id);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001769 un = new;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001770
1771success:
1772 spin_unlock(&ulp->lock);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001773 sem_unlock(sma, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774out:
1775 return un;
1776}
1777
Heiko Carstensd5460c92009-01-14 14:14:27 +01001778SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
1779 unsigned, nsops, const struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 int error = -EINVAL;
1782 struct sem_array *sma;
1783 struct sembuf fast_sops[SEMOPM_FAST];
Manfred Spraul239521f2014-01-27 17:07:04 -08001784 struct sembuf *sops = fast_sops, *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 struct sem_undo *un;
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001786 int max, locknum;
1787 bool undos = false, alter = false, dupsop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 struct sem_queue queue;
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001789 unsigned long dup = 0, jiffies_left = 0;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001790 struct ipc_namespace *ns;
1791
1792 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 if (nsops < 1 || semid < 0)
1795 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001796 if (nsops > ns->sc_semopm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return -E2BIG;
Manfred Spraul239521f2014-01-27 17:07:04 -08001798 if (nsops > SEMOPM_FAST) {
1799 sops = kmalloc(sizeof(*sops)*nsops, GFP_KERNEL);
1800 if (sops == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 return -ENOMEM;
1802 }
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001803
Manfred Spraul239521f2014-01-27 17:07:04 -08001804 if (copy_from_user(sops, tsops, nsops * sizeof(*tsops))) {
1805 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 goto out_free;
1807 }
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (timeout) {
1810 struct timespec _timeout;
1811 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1812 error = -EFAULT;
1813 goto out_free;
1814 }
1815 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1816 _timeout.tv_nsec >= 1000000000L) {
1817 error = -EINVAL;
1818 goto out_free;
1819 }
1820 jiffies_left = timespec_to_jiffies(&_timeout);
1821 }
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 max = 0;
1824 for (sop = sops; sop < sops + nsops; sop++) {
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001825 unsigned long mask = 1ULL << ((sop->sem_num) % BITS_PER_LONG);
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (sop->sem_num >= max)
1828 max = sop->sem_num;
1829 if (sop->sem_flg & SEM_UNDO)
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001830 undos = true;
1831 if (dup & mask) {
1832 /*
1833 * There was a previous alter access that appears
1834 * to have accessed the same semaphore, thus use
1835 * the dupsop logic. "appears", because the detection
1836 * can only check % BITS_PER_LONG.
1837 */
1838 dupsop = true;
1839 }
1840 if (sop->sem_op != 0) {
1841 alter = true;
1842 dup |= mask;
1843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (undos) {
Rik van Riel6062a8d2013-04-30 19:15:44 -07001847 /* On success, find_alloc_undo takes the rcu_read_lock */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001848 un = find_alloc_undo(ns, semid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (IS_ERR(un)) {
1850 error = PTR_ERR(un);
1851 goto out_free;
1852 }
Rik van Riel6062a8d2013-04-30 19:15:44 -07001853 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 un = NULL;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001855 rcu_read_lock();
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001858 sma = sem_obtain_object_check(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001859 if (IS_ERR(sma)) {
Rik van Riel6062a8d2013-04-30 19:15:44 -07001860 rcu_read_unlock();
Nadia Derbey023a5352007-10-18 23:40:51 -07001861 error = PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -07001863 }
1864
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001865 error = -EFBIG;
Davidlohr Bueso248e7352016-12-14 15:06:31 -08001866 if (max >= sma->sem_nsems) {
1867 rcu_read_unlock();
1868 goto out_free;
1869 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001870
1871 error = -EACCES;
Davidlohr Bueso248e7352016-12-14 15:06:31 -08001872 if (ipcperms(ns, &sma->sem_perm, alter ? S_IWUGO : S_IRUGO)) {
1873 rcu_read_unlock();
1874 goto out_free;
1875 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001876
1877 error = security_sem_semop(sma, sops, nsops, alter);
Davidlohr Bueso248e7352016-12-14 15:06:31 -08001878 if (error) {
1879 rcu_read_unlock();
1880 goto out_free;
1881 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001882
Manfred Spraul6e224f92013-10-16 13:46:45 -07001883 error = -EIDRM;
1884 locknum = sem_lock(sma, sops, nsops);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001885 /*
1886 * We eventually might perform the following check in a lockless
1887 * fashion, considering ipc_valid_object() locking constraints.
1888 * If nsops == 1 and there is no contention for sem_perm.lock, then
1889 * only a per-semaphore lock is held and it's OK to proceed with the
1890 * check below. More details on the fine grained locking scheme
1891 * entangled here and why it's RMID race safe on comments at sem_lock()
1892 */
1893 if (!ipc_valid_object(&sma->sem_perm))
Manfred Spraul6e224f92013-10-16 13:46:45 -07001894 goto out_unlock_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 /*
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001896 * semid identifiers are not unique - find_alloc_undo may have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 * allocated an undo structure, it was invalidated by an RMID
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001898 * and now a new array with received the same id. Check and fail.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001899 * This case can be detected checking un->semid. The existence of
Manfred Spraul380af1b2008-07-25 01:48:06 -07001900 * "un" itself is guaranteed by rcu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 */
Rik van Riel6062a8d2013-04-30 19:15:44 -07001902 if (un && un->semid == -1)
1903 goto out_unlock_free;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001904
Manfred Sprauld198cd62014-06-06 14:37:49 -07001905 queue.sops = sops;
1906 queue.nsops = nsops;
1907 queue.undo = un;
1908 queue.pid = task_tgid_vnr(current);
1909 queue.alter = alter;
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001910 queue.dupsop = dupsop;
Manfred Sprauld198cd62014-06-06 14:37:49 -07001911
1912 error = perform_atomic_semop(sma, &queue);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001913 if (error == 0) { /* non-blocking succesfull path */
1914 DEFINE_WAKE_Q(wake_q);
1915
1916 /*
1917 * If the operation was successful, then do
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001918 * the required updates.
1919 */
1920 if (alter)
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001921 do_smart_update(sma, sops, nsops, 1, &wake_q);
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001922 else
1923 set_semotime(sma, sops);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001924
1925 sem_unlock(sma, locknum);
1926 rcu_read_unlock();
1927 wake_up_q(&wake_q);
1928
1929 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001931 if (error < 0) /* non-blocking error path */
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001932 goto out_unlock_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001934 /*
1935 * We need to sleep on this operation, so we put the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 * task into the pending queue and go to sleep.
1937 */
Manfred Spraulb97e8202009-12-15 16:47:32 -08001938 if (nsops == 1) {
1939 struct sem *curr;
1940 curr = &sma->sem_base[sops->sem_num];
1941
Manfred Spraulf269f402013-07-08 16:01:24 -07001942 if (alter) {
1943 if (sma->complex_count) {
1944 list_add_tail(&queue.list,
1945 &sma->pending_alter);
1946 } else {
1947
1948 list_add_tail(&queue.list,
1949 &curr->pending_alter);
1950 }
1951 } else {
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001952 list_add_tail(&queue.list, &curr->pending_const);
Manfred Spraulf269f402013-07-08 16:01:24 -07001953 }
Manfred Spraulb97e8202009-12-15 16:47:32 -08001954 } else {
Manfred Spraulf269f402013-07-08 16:01:24 -07001955 if (!sma->complex_count)
1956 merge_queues(sma);
1957
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001958 if (alter)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001959 list_add_tail(&queue.list, &sma->pending_alter);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001960 else
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001961 list_add_tail(&queue.list, &sma->pending_const);
1962
Manfred Spraulb97e8202009-12-15 16:47:32 -08001963 sma->complex_count++;
1964 }
1965
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001966 do {
1967 queue.status = -EINTR;
1968 queue.sleeper = current;
Manfred Spraul0b0577f2011-11-02 13:38:52 -07001969
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001970 __set_current_state(TASK_INTERRUPTIBLE);
1971 sem_unlock(sma, locknum);
Linus Torvalds321310c2013-05-04 10:47:57 -07001972 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001974 if (timeout)
1975 jiffies_left = schedule_timeout(jiffies_left);
1976 else
1977 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001979 /*
1980 * fastpath: the semop has completed, either successfully or
1981 * not, from the syscall pov, is quite irrelevant to us at this
1982 * point; we're done.
1983 *
1984 * We _do_ care, nonetheless, about being awoken by a signal or
1985 * spuriously. The queue.status is checked again in the
1986 * slowpath (aka after taking sem_lock), such that we can detect
1987 * scenarios where we were awakened externally, during the
1988 * window between wake_q_add() and wake_up_q().
1989 */
1990 error = READ_ONCE(queue.status);
1991 if (error != -EINTR) {
1992 /*
1993 * User space could assume that semop() is a memory
1994 * barrier: Without the mb(), the cpu could
1995 * speculatively read in userspace stale data that was
1996 * overwritten by the previous owner of the semaphore.
1997 */
1998 smp_mb();
1999 goto out_free;
2000 }
Manfred Spraul0b0577f2011-11-02 13:38:52 -07002001
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08002002 rcu_read_lock();
2003 sma = sem_obtain_lock(ns, semid, sops, nsops, &locknum);
2004 error = READ_ONCE(queue.status);
2005
2006 /*
2007 * Array removed? If yes, leave without sem_unlock().
2008 */
2009 if (IS_ERR(sma)) {
2010 rcu_read_unlock();
2011 goto out_free;
2012 }
2013
2014 /*
2015 * If queue.status != -EINTR we are woken up by another process.
2016 * Leave without unlink_queue(), but with sem_unlock().
2017 */
2018 if (error != -EINTR)
2019 goto out_unlock_free;
2020
2021 /*
2022 * If an interrupt occurred we have to clean up the queue.
2023 */
2024 if (timeout && jiffies_left == 0)
2025 error = -EAGAIN;
2026 } while (error == -EINTR && !signal_pending(current)); /* spurious */
Manfred Spraul0b0577f2011-11-02 13:38:52 -07002027
Manfred Spraulb97e8202009-12-15 16:47:32 -08002028 unlink_queue(sma, &queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030out_unlock_free:
Rik van Riel6062a8d2013-04-30 19:15:44 -07002031 sem_unlock(sma, locknum);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07002032 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033out_free:
Manfred Spraul239521f2014-01-27 17:07:04 -08002034 if (sops != fast_sops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 kfree(sops);
2036 return error;
2037}
2038
Heiko Carstensd5460c92009-01-14 14:14:27 +01002039SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
2040 unsigned, nsops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041{
2042 return sys_semtimedop(semid, tsops, nsops, NULL);
2043}
2044
2045/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
2046 * parent and child tasks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 */
2048
2049int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
2050{
2051 struct sem_undo_list *undo_list;
2052 int error;
2053
2054 if (clone_flags & CLONE_SYSVSEM) {
2055 error = get_undo_list(&undo_list);
2056 if (error)
2057 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 atomic_inc(&undo_list->refcnt);
2059 tsk->sysvsem.undo_list = undo_list;
Paul McQuade46c0a8c2014-06-06 14:37:37 -07002060 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 tsk->sysvsem.undo_list = NULL;
2062
2063 return 0;
2064}
2065
2066/*
2067 * add semadj values to semaphores, free undo structures.
2068 * undo structures are not freed when semaphore arrays are destroyed
2069 * so some of them may be out of date.
2070 * IMPLEMENTATION NOTE: There is some confusion over whether the
2071 * set of adjustments that needs to be done should be done in an atomic
2072 * manner or not. That is, if we are attempting to decrement the semval
2073 * should we queue up and wait until we can do so legally?
2074 * The original implementation attempted to do this (queue and wait).
2075 * The current implementation does not do so. The POSIX standard
2076 * and SVID should be consulted to determine what behavior is mandated.
2077 */
2078void exit_sem(struct task_struct *tsk)
2079{
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002080 struct sem_undo_list *ulp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002082 ulp = tsk->sysvsem.undo_list;
2083 if (!ulp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return;
Manfred Spraul9edff4a2008-04-29 01:00:57 -07002085 tsk->sysvsem.undo_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002087 if (!atomic_dec_and_test(&ulp->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return;
2089
Manfred Spraul380af1b2008-07-25 01:48:06 -07002090 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 struct sem_array *sma;
Manfred Spraul380af1b2008-07-25 01:48:06 -07002092 struct sem_undo *un;
Rik van Riel6062a8d2013-04-30 19:15:44 -07002093 int semid, i;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08002094 DEFINE_WAKE_Q(wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Nikolay Borisov2a1613a2016-10-11 13:55:05 -07002096 cond_resched();
2097
Manfred Spraul380af1b2008-07-25 01:48:06 -07002098 rcu_read_lock();
Jiri Pirko05725f72009-04-14 20:17:16 +02002099 un = list_entry_rcu(ulp->list_proc.next,
2100 struct sem_undo, list_proc);
Herton R. Krzesinski602b8592015-08-14 15:35:02 -07002101 if (&un->list_proc == &ulp->list_proc) {
2102 /*
2103 * We must wait for freeary() before freeing this ulp,
2104 * in case we raced with last sem_undo. There is a small
2105 * possibility where we exit while freeary() didn't
2106 * finish unlocking sem_undo_list.
2107 */
2108 spin_unlock_wait(&ulp->lock);
Rik van Riel6062a8d2013-04-30 19:15:44 -07002109 rcu_read_unlock();
Manfred Spraul380af1b2008-07-25 01:48:06 -07002110 break;
Rik van Riel6062a8d2013-04-30 19:15:44 -07002111 }
Herton R. Krzesinski602b8592015-08-14 15:35:02 -07002112 spin_lock(&ulp->lock);
2113 semid = un->semid;
2114 spin_unlock(&ulp->lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002115
Herton R. Krzesinski602b8592015-08-14 15:35:02 -07002116 /* exit_sem raced with IPC_RMID, nothing to do */
2117 if (semid == -1) {
2118 rcu_read_unlock();
2119 continue;
2120 }
2121
2122 sma = sem_obtain_object_check(tsk->nsproxy->ipc_ns, semid);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002123 /* exit_sem raced with IPC_RMID, nothing to do */
Rik van Riel6062a8d2013-04-30 19:15:44 -07002124 if (IS_ERR(sma)) {
2125 rcu_read_unlock();
Manfred Spraul380af1b2008-07-25 01:48:06 -07002126 continue;
Rik van Riel6062a8d2013-04-30 19:15:44 -07002127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Rik van Riel6062a8d2013-04-30 19:15:44 -07002129 sem_lock(sma, NULL, -1);
Manfred Spraul6e224f92013-10-16 13:46:45 -07002130 /* exit_sem raced with IPC_RMID, nothing to do */
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08002131 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07002132 sem_unlock(sma, -1);
2133 rcu_read_unlock();
2134 continue;
2135 }
Nick Pigginbf17bb72009-12-15 16:47:28 -08002136 un = __lookup_undo(ulp, semid);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002137 if (un == NULL) {
2138 /* exit_sem raced with IPC_RMID+semget() that created
2139 * exactly the same semid. Nothing to do.
2140 */
Rik van Riel6062a8d2013-04-30 19:15:44 -07002141 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07002142 rcu_read_unlock();
Manfred Spraul380af1b2008-07-25 01:48:06 -07002143 continue;
2144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Manfred Spraul380af1b2008-07-25 01:48:06 -07002146 /* remove un from the linked lists */
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07002147 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002148 list_del(&un->list_id);
2149
Herton R. Krzesinskia9795582015-08-14 15:35:05 -07002150 /* we are the last process using this ulp, acquiring ulp->lock
2151 * isn't required. Besides that, we are also protected against
2152 * IPC_RMID as we hold sma->sem_perm lock now
2153 */
Manfred Spraul380af1b2008-07-25 01:48:06 -07002154 list_del_rcu(&un->list_proc);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002155
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002156 /* perform adjustments registered in un */
2157 for (i = 0; i < sma->sem_nsems; i++) {
Manfred Spraul239521f2014-01-27 17:07:04 -08002158 struct sem *semaphore = &sma->sem_base[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002159 if (un->semadj[i]) {
2160 semaphore->semval += un->semadj[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /*
2162 * Range checks of the new semaphore value,
2163 * not defined by sus:
2164 * - Some unices ignore the undo entirely
2165 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
2166 * - some cap the value (e.g. FreeBSD caps
2167 * at 0, but doesn't enforce SEMVMX)
2168 *
2169 * Linux caps the semaphore value, both at 0
2170 * and at SEMVMX.
2171 *
Manfred Spraul239521f2014-01-27 17:07:04 -08002172 * Manfred <manfred@colorfullife.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 */
Ingo Molnar5f921ae2006-03-26 01:37:17 -08002174 if (semaphore->semval < 0)
2175 semaphore->semval = 0;
2176 if (semaphore->semval > SEMVMX)
2177 semaphore->semval = SEMVMX;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002178 semaphore->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 }
2180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 /* maybe some queued-up processes were waiting for this */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08002182 do_smart_update(sma, NULL, 0, 1, &wake_q);
Rik van Riel6062a8d2013-04-30 19:15:44 -07002183 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07002184 rcu_read_unlock();
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08002185 wake_up_q(&wake_q);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002186
Lai Jiangshan693a8b62011-03-18 12:09:35 +08002187 kfree_rcu(un, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002189 kfree(ulp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
2192#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07002193static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08002195 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07002196 struct sem_array *sma = it;
Manfred Sprauld12e1e52013-07-08 16:01:25 -07002197 time_t sem_otime;
2198
Manfred Sprauld8c63372013-09-30 13:45:07 -07002199 /*
2200 * The proc interface isn't aware of sem_lock(), it calls
2201 * ipc_lock_object() directly (in sysvipc_find_ipc).
Manfred Spraul5864a2f2016-10-11 13:54:50 -07002202 * In order to stay compatible with sem_lock(), we must
2203 * enter / leave complex_mode.
Manfred Sprauld8c63372013-09-30 13:45:07 -07002204 */
Manfred Spraul5864a2f2016-10-11 13:54:50 -07002205 complexmode_enter(sma);
Manfred Sprauld8c63372013-09-30 13:45:07 -07002206
Manfred Sprauld12e1e52013-07-08 16:01:25 -07002207 sem_otime = get_semotime(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Joe Perches7f032d62015-04-15 16:17:54 -07002209 seq_printf(s,
2210 "%10d %10d %4o %10u %5u %5u %5u %5u %10lu %10lu\n",
2211 sma->sem_perm.key,
2212 sma->sem_perm.id,
2213 sma->sem_perm.mode,
2214 sma->sem_nsems,
2215 from_kuid_munged(user_ns, sma->sem_perm.uid),
2216 from_kgid_munged(user_ns, sma->sem_perm.gid),
2217 from_kuid_munged(user_ns, sma->sem_perm.cuid),
2218 from_kgid_munged(user_ns, sma->sem_perm.cgid),
2219 sem_otime,
2220 sma->sem_ctime);
2221
Manfred Spraul5864a2f2016-10-11 13:54:50 -07002222 complexmode_tryleave(sma);
2223
Joe Perches7f032d62015-04-15 16:17:54 -07002224 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225}
2226#endif