blob: e468cd1c12f0d6bb6d78fc583d4fb83e13a2c927 [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 Spraul9de5ab82017-02-27 14:28:18 -0800162 * Switching from the mode suitable for simple ops
163 * to the mode for complex ops is costly. Therefore:
164 * use some hysteresis
165 */
166#define USE_GLOBAL_LOCK_HYSTERESIS 10
167
168/*
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700169 * Locking:
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700170 * a) global sem_lock() for read/write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * sem_undo.id_next,
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700172 * sem_array.complex_count,
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700173 * sem_array.pending{_alter,_const},
174 * sem_array.sem_undo
Paul McQuade46c0a8c2014-06-06 14:37:37 -0700175 *
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700176 * b) global or semaphore sem_lock() for read/write:
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700177 * sem_array.sem_base[i].pending_{const,alter}:
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700178 *
179 * c) special:
180 * sem_undo_list.list_proc:
181 * * undo_list->lock for write
182 * * rcu for read
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800183 * use_global_lock:
184 * * global sem_lock() for write
185 * * either local or global sem_lock() for read.
186 *
187 * Memory ordering:
188 * Most ordering is enforced by using spin_lock() and spin_unlock().
189 * The special case is use_global_lock:
190 * Setting it from non-zero to 0 is a RELEASE, this is ensured by
191 * using smp_store_release().
192 * Testing if it is non-zero is an ACQUIRE, this is ensured by using
193 * smp_load_acquire().
194 * Setting it from 0 to non-zero must be ordered with regards to
195 * this smp_load_acquire(), this is guaranteed because the smp_load_acquire()
196 * is inside a spin_lock() and after a write from 0 to non-zero a
197 * spin_lock()+spin_unlock() is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 */
199
Kirill Korotaeve3893532006-10-02 02:18:22 -0700200#define sc_semmsl sem_ctls[0]
201#define sc_semmns sem_ctls[1]
202#define sc_semopm sem_ctls[2]
203#define sc_semmni sem_ctls[3]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800205void sem_init_ns(struct ipc_namespace *ns)
Kirill Korotaeve3893532006-10-02 02:18:22 -0700206{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700207 ns->sc_semmsl = SEMMSL;
208 ns->sc_semmns = SEMMNS;
209 ns->sc_semopm = SEMOPM;
210 ns->sc_semmni = SEMMNI;
211 ns->used_sems = 0;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800212 ipc_init_ids(&ns->ids[IPC_SEM_IDS]);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700213}
214
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800215#ifdef CONFIG_IPC_NS
Kirill Korotaeve3893532006-10-02 02:18:22 -0700216void sem_exit_ns(struct ipc_namespace *ns)
217{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800218 free_ipcs(ns, &sem_ids(ns), freeary);
Serge E. Hallyn7d6feeb2009-12-15 16:47:27 -0800219 idr_destroy(&ns->ids[IPC_SEM_IDS].ipcs_idr);
Kirill Korotaeve3893532006-10-02 02:18:22 -0700220}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Manfred Spraul239521f2014-01-27 17:07:04 -0800223void __init sem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800225 sem_init_ns(&init_ipc_ns);
Mike Waychison19b49462005-09-06 15:17:10 -0700226 ipc_init_proc_interface("sysvipc/sem",
227 " key semid perms nsems uid gid cuid cgid otime ctime\n",
Kirill Korotaeve3893532006-10-02 02:18:22 -0700228 IPC_SEM_IDS, sysvipc_sem_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Manfred Spraulf269f402013-07-08 16:01:24 -0700231/**
232 * unmerge_queues - unmerge queues, if possible.
233 * @sma: semaphore array
234 *
235 * The function unmerges the wait queues if complex_count is 0.
236 * It must be called prior to dropping the global semaphore array lock.
237 */
238static void unmerge_queues(struct sem_array *sma)
239{
240 struct sem_queue *q, *tq;
241
242 /* complex operations still around? */
243 if (sma->complex_count)
244 return;
245 /*
246 * We will switch back to simple mode.
247 * Move all pending operation back into the per-semaphore
248 * queues.
249 */
250 list_for_each_entry_safe(q, tq, &sma->pending_alter, list) {
251 struct sem *curr;
252 curr = &sma->sem_base[q->sops[0].sem_num];
253
254 list_add_tail(&q->list, &curr->pending_alter);
255 }
256 INIT_LIST_HEAD(&sma->pending_alter);
257}
258
259/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800260 * merge_queues - merge single semop queues into global queue
Manfred Spraulf269f402013-07-08 16:01:24 -0700261 * @sma: semaphore array
262 *
263 * This function merges all per-semaphore queues into the global queue.
264 * It is necessary to achieve FIFO ordering for the pending single-sop
265 * operations when a multi-semop operation must sleep.
266 * Only the alter operations must be moved, the const operations can stay.
267 */
268static void merge_queues(struct sem_array *sma)
269{
270 int i;
271 for (i = 0; i < sma->sem_nsems; i++) {
272 struct sem *sem = sma->sem_base + i;
273
274 list_splice_init(&sem->pending_alter, &sma->pending_alter);
275 }
276}
277
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700278static void sem_rcu_free(struct rcu_head *head)
279{
280 struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu);
281 struct sem_array *sma = ipc_rcu_to_struct(p);
282
283 security_sem_free(sma);
284 ipc_rcu_free(head);
285}
286
Nadia Derbey3e148c72007-10-18 23:40:54 -0700287/*
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700288 * Enter the mode suitable for non-simple operations:
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700289 * Caller must own sem_perm.lock.
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700290 */
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700291static void complexmode_enter(struct sem_array *sma)
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700292{
293 int i;
294 struct sem *sem;
295
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800296 if (sma->use_global_lock > 0) {
297 /*
298 * We are already in global lock mode.
299 * Nothing to do, just reset the
300 * counter until we return to simple mode.
301 */
302 sma->use_global_lock = USE_GLOBAL_LOCK_HYSTERESIS;
Manfred Spraul6d07b682013-09-30 13:45:06 -0700303 return;
304 }
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800305 sma->use_global_lock = USE_GLOBAL_LOCK_HYSTERESIS;
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700306
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700307 for (i = 0; i < sma->sem_nsems; i++) {
308 sem = sma->sem_base + i;
Manfred Spraul27d7be12017-02-27 14:28:15 -0800309 spin_lock(&sem->lock);
310 spin_unlock(&sem->lock);
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700311 }
312}
313
314/*
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700315 * Try to leave the mode that disallows simple operations:
316 * Caller must own sem_perm.lock.
317 */
318static void complexmode_tryleave(struct sem_array *sma)
319{
320 if (sma->complex_count) {
321 /* Complex ops are sleeping.
322 * We must stay in complex mode
323 */
324 return;
325 }
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800326 if (sma->use_global_lock == 1) {
327 /*
328 * Immediately after setting use_global_lock to 0,
329 * a simple op can start. Thus: all memory writes
330 * performed by the current operation must be visible
331 * before we set use_global_lock to 0.
332 */
333 smp_store_release(&sma->use_global_lock, 0);
334 } else {
335 sma->use_global_lock--;
336 }
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700337}
338
339#define SEM_GLOBAL_LOCK (-1)
340/*
Rik van Riel6062a8d2013-04-30 19:15:44 -0700341 * If the request contains only one semaphore operation, and there are
342 * no complex transactions pending, lock only the semaphore involved.
343 * Otherwise, lock the entire semaphore array, since we either have
344 * multiple semaphores in our own semops, or we need to look at
345 * semaphores from other pending complex operations.
Rik van Riel6062a8d2013-04-30 19:15:44 -0700346 */
347static inline int sem_lock(struct sem_array *sma, struct sembuf *sops,
348 int nsops)
349{
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700350 struct sem *sem;
Rik van Riel6062a8d2013-04-30 19:15:44 -0700351
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700352 if (nsops != 1) {
353 /* Complex operation - acquire a full lock */
354 ipc_lock_object(&sma->sem_perm);
355
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700356 /* Prevent parallel simple ops */
357 complexmode_enter(sma);
358 return SEM_GLOBAL_LOCK;
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700359 }
360
361 /*
362 * Only one semaphore affected - try to optimize locking.
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700363 * Optimized locking is possible if no complex operation
364 * is either enqueued or processed right now.
365 *
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800366 * Both facts are tracked by use_global_mode.
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700367 */
368 sem = sma->sem_base + sops->sem_num;
369
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700370 /*
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800371 * Initial check for use_global_lock. Just an optimization,
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700372 * no locking, no memory barrier.
373 */
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800374 if (!sma->use_global_lock) {
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700375 /*
376 * It appears that no complex operation is around.
377 * Acquire the per-semaphore lock.
378 */
Rik van Riel6062a8d2013-04-30 19:15:44 -0700379 spin_lock(&sem->lock);
380
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800381 /* pairs with smp_store_release() */
382 if (!smp_load_acquire(&sma->use_global_lock)) {
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700383 /* fast path successful! */
384 return sops->sem_num;
Rik van Riel6062a8d2013-04-30 19:15:44 -0700385 }
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700386 spin_unlock(&sem->lock);
Rik van Riel6062a8d2013-04-30 19:15:44 -0700387 }
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700388
389 /* slow path: acquire the full lock */
390 ipc_lock_object(&sma->sem_perm);
391
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800392 if (sma->use_global_lock == 0) {
393 /*
394 * The use_global_lock mode ended while we waited for
395 * sma->sem_perm.lock. Thus we must switch to locking
396 * with sem->lock.
397 * Unlike in the fast path, there is no need to recheck
398 * sma->use_global_lock after we have acquired sem->lock:
399 * We own sma->sem_perm.lock, thus use_global_lock cannot
400 * change.
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700401 */
402 spin_lock(&sem->lock);
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800403
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700404 ipc_unlock_object(&sma->sem_perm);
405 return sops->sem_num;
406 } else {
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800407 /*
408 * Not a false alarm, thus continue to use the global lock
409 * mode. No need for complexmode_enter(), this was done by
410 * the caller that has set use_global_mode to non-zero.
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700411 */
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700412 return SEM_GLOBAL_LOCK;
Manfred Spraul5e9d5272013-09-30 13:45:04 -0700413 }
Rik van Riel6062a8d2013-04-30 19:15:44 -0700414}
415
416static inline void sem_unlock(struct sem_array *sma, int locknum)
417{
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700418 if (locknum == SEM_GLOBAL_LOCK) {
Manfred Spraulf269f402013-07-08 16:01:24 -0700419 unmerge_queues(sma);
Manfred Spraul5864a2f2016-10-11 13:54:50 -0700420 complexmode_tryleave(sma);
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -0700421 ipc_unlock_object(&sma->sem_perm);
Rik van Riel6062a8d2013-04-30 19:15:44 -0700422 } else {
423 struct sem *sem = sma->sem_base + locknum;
424 spin_unlock(&sem->lock);
425 }
Rik van Riel6062a8d2013-04-30 19:15:44 -0700426}
427
428/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700429 * sem_lock_(check_) routines are called in the paths where the rwsem
Nadia Derbey3e148c72007-10-18 23:40:54 -0700430 * is not held.
Linus Torvalds321310c2013-05-04 10:47:57 -0700431 *
432 * The caller holds the RCU read lock.
Nadia Derbey3e148c72007-10-18 23:40:54 -0700433 */
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700434static inline struct sem_array *sem_obtain_object(struct ipc_namespace *ns, int id)
435{
Davidlohr Bueso55b7ae52015-06-30 14:58:42 -0700436 struct kern_ipc_perm *ipcp = ipc_obtain_object_idr(&sem_ids(ns), id);
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700437
438 if (IS_ERR(ipcp))
439 return ERR_CAST(ipcp);
440
441 return container_of(ipcp, struct sem_array, sem_perm);
442}
443
Davidlohr Bueso16df3672013-04-30 19:15:29 -0700444static inline struct sem_array *sem_obtain_object_check(struct ipc_namespace *ns,
445 int id)
446{
447 struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&sem_ids(ns), id);
448
449 if (IS_ERR(ipcp))
450 return ERR_CAST(ipcp);
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800451
Nadia Derbey03f02c72007-10-18 23:40:51 -0700452 return container_of(ipcp, struct sem_array, sem_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700453}
454
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700455static inline void sem_lock_and_putref(struct sem_array *sma)
456{
Rik van Riel6062a8d2013-04-30 19:15:44 -0700457 sem_lock(sma, NULL, -1);
Fabian Frederick9b24fef2016-08-02 14:03:07 -0700458 ipc_rcu_putref(sma, sem_rcu_free);
Pierre Peiffer6ff37972008-04-29 01:00:46 -0700459}
460
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700461static inline void sem_rmid(struct ipc_namespace *ns, struct sem_array *s)
462{
463 ipc_rmid(&sem_ids(ns), &s->sem_perm);
464}
465
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700466/**
467 * newary - Create a new semaphore set
468 * @ns: namespace
469 * @params: ptr to the structure that contains key, semflg and nsems
470 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700471 * Called with sem_ids.rwsem held (as a writer)
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700472 */
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700473static int newary(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 int id;
476 int retval;
477 struct sem_array *sma;
478 int size;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700479 key_t key = params->key;
480 int nsems = params->u.nsems;
481 int semflg = params->flg;
Manfred Spraulb97e8202009-12-15 16:47:32 -0800482 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (!nsems)
485 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -0700486 if (ns->used_sems + nsems > ns->sc_semmns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -ENOSPC;
488
Manfred Spraul239521f2014-01-27 17:07:04 -0800489 size = sizeof(*sma) + nsems * sizeof(struct sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 sma = ipc_rcu_alloc(size);
Davidlohr Bueso3ab08fe2014-01-27 17:07:06 -0800491 if (!sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -ENOMEM;
Davidlohr Bueso3ab08fe2014-01-27 17:07:06 -0800493
Manfred Spraul239521f2014-01-27 17:07:04 -0800494 memset(sma, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 sma->sem_perm.mode = (semflg & S_IRWXUGO);
497 sma->sem_perm.key = key;
498
499 sma->sem_perm.security = NULL;
500 retval = security_sem_alloc(sma);
501 if (retval) {
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700502 ipc_rcu_putref(sma, ipc_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return retval;
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 sma->sem_base = (struct sem *) &sma[1];
Manfred Spraulb97e8202009-12-15 16:47:32 -0800507
Rik van Riel6062a8d2013-04-30 19:15:44 -0700508 for (i = 0; i < nsems; i++) {
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700509 INIT_LIST_HEAD(&sma->sem_base[i].pending_alter);
510 INIT_LIST_HEAD(&sma->sem_base[i].pending_const);
Rik van Riel6062a8d2013-04-30 19:15:44 -0700511 spin_lock_init(&sma->sem_base[i].lock);
512 }
Manfred Spraulb97e8202009-12-15 16:47:32 -0800513
514 sma->complex_count = 0;
Manfred Spraul9de5ab82017-02-27 14:28:18 -0800515 sma->use_global_lock = USE_GLOBAL_LOCK_HYSTERESIS;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700516 INIT_LIST_HEAD(&sma->pending_alter);
517 INIT_LIST_HEAD(&sma->pending_const);
Manfred Spraul4daa28f2008-07-25 01:48:04 -0700518 INIT_LIST_HEAD(&sma->list_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 sma->sem_nsems = nsems;
520 sma->sem_ctime = get_seconds();
Manfred Spraule8577d12014-12-02 15:59:34 -0800521
522 id = ipc_addid(&sem_ids(ns), &sma->sem_perm, ns->sc_semmni);
523 if (id < 0) {
524 ipc_rcu_putref(sma, sem_rcu_free);
525 return id;
526 }
527 ns->used_sems += nsems;
528
Rik van Riel6062a8d2013-04-30 19:15:44 -0700529 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -0700530 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700532 return sma->sem_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700535
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700536/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700537 * Called with sem_ids.rwsem and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700538 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700539static inline int sem_security(struct kern_ipc_perm *ipcp, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700541 struct sem_array *sma;
542
543 sma = container_of(ipcp, struct sem_array, sem_perm);
544 return security_sem_associate(sma, semflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700545}
546
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700547/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700548 * Called with sem_ids.rwsem and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700549 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700550static inline int sem_more_checks(struct kern_ipc_perm *ipcp,
551 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700552{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700553 struct sem_array *sma;
554
555 sma = container_of(ipcp, struct sem_array, sem_perm);
556 if (params->u.nsems > sma->sem_nsems)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700557 return -EINVAL;
558
559 return 0;
560}
561
Heiko Carstensd5460c92009-01-14 14:14:27 +0100562SYSCALL_DEFINE3(semget, key_t, key, int, nsems, int, semflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700563{
Kirill Korotaeve3893532006-10-02 02:18:22 -0700564 struct ipc_namespace *ns;
Mathias Krauseeb66ec42014-06-06 14:37:36 -0700565 static const struct ipc_ops sem_ops = {
566 .getnew = newary,
567 .associate = sem_security,
568 .more_checks = sem_more_checks,
569 };
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700570 struct ipc_params sem_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Kirill Korotaeve3893532006-10-02 02:18:22 -0700572 ns = current->nsproxy->ipc_ns;
573
574 if (nsems < 0 || nsems > ns->sc_semmsl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return -EINVAL;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700576
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700577 sem_params.key = key;
578 sem_params.flg = semflg;
579 sem_params.u.nsems = nsems;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700580
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700581 return ipcget(ns, &sem_ids(ns), &sem_ops, &sem_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Petr Mladek78f50092014-01-27 17:07:00 -0800584/**
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800585 * perform_atomic_semop[_slow] - Attempt to perform semaphore
586 * operations on a given array.
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700587 * @sma: semaphore array
Manfred Sprauld198cd62014-06-06 14:37:49 -0700588 * @q: struct sem_queue that describes the operation
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700589 *
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800590 * Caller blocking are as follows, based the value
591 * indicated by the semaphore operation (sem_op):
592 *
593 * (1) >0 never blocks.
594 * (2) 0 (wait-for-zero operation): semval is non-zero.
595 * (3) <0 attempting to decrement semval to a value smaller than zero.
596 *
Manfred Spraul758a6ba32013-07-08 16:01:26 -0700597 * Returns 0 if the operation was possible.
598 * Returns 1 if the operation is impossible, the caller must sleep.
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800599 * Returns <0 for error codes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800601static int perform_atomic_semop_slow(struct sem_array *sma, struct sem_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Manfred Sprauld198cd62014-06-06 14:37:49 -0700603 int result, sem_op, nsops, pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 struct sembuf *sop;
Manfred Spraul239521f2014-01-27 17:07:04 -0800605 struct sem *curr;
Manfred Sprauld198cd62014-06-06 14:37:49 -0700606 struct sembuf *sops;
607 struct sem_undo *un;
608
609 sops = q->sops;
610 nsops = q->nsops;
611 un = q->undo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 for (sop = sops; sop < sops + nsops; sop++) {
614 curr = sma->sem_base + sop->sem_num;
615 sem_op = sop->sem_op;
616 result = curr->semval;
Petr Mladek78f50092014-01-27 17:07:00 -0800617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (!sem_op && result)
619 goto would_block;
620
621 result += sem_op;
622 if (result < 0)
623 goto would_block;
624 if (result > SEMVMX)
625 goto out_of_range;
Petr Mladek78f50092014-01-27 17:07:00 -0800626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (sop->sem_flg & SEM_UNDO) {
628 int undo = un->semadj[sop->sem_num] - sem_op;
Petr Mladek78f50092014-01-27 17:07:00 -0800629 /* Exceeding the undo range is an error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
631 goto out_of_range;
Petr Mladek78f50092014-01-27 17:07:00 -0800632 un->semadj[sop->sem_num] = undo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Petr Mladek78f50092014-01-27 17:07:00 -0800634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 curr->semval = result;
636 }
637
638 sop--;
Manfred Sprauld198cd62014-06-06 14:37:49 -0700639 pid = q->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 while (sop >= sops) {
641 sma->sem_base[sop->sem_num].sempid = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 sop--;
643 }
Petr Mladek78f50092014-01-27 17:07:00 -0800644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return 0;
646
647out_of_range:
648 result = -ERANGE;
649 goto undo;
650
651would_block:
Manfred Sprauled247b72014-06-06 14:37:49 -0700652 q->blocking = sop;
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (sop->sem_flg & IPC_NOWAIT)
655 result = -EAGAIN;
656 else
657 result = 1;
658
659undo:
660 sop--;
661 while (sop >= sops) {
Petr Mladek78f50092014-01-27 17:07:00 -0800662 sem_op = sop->sem_op;
663 sma->sem_base[sop->sem_num].semval -= sem_op;
664 if (sop->sem_flg & SEM_UNDO)
665 un->semadj[sop->sem_num] += sem_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 sop--;
667 }
668
669 return result;
670}
671
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -0800672static int perform_atomic_semop(struct sem_array *sma, struct sem_queue *q)
673{
674 int result, sem_op, nsops;
675 struct sembuf *sop;
676 struct sem *curr;
677 struct sembuf *sops;
678 struct sem_undo *un;
679
680 sops = q->sops;
681 nsops = q->nsops;
682 un = q->undo;
683
684 if (unlikely(q->dupsop))
685 return perform_atomic_semop_slow(sma, q);
686
687 /*
688 * We scan the semaphore set twice, first to ensure that the entire
689 * operation can succeed, therefore avoiding any pointless writes
690 * to shared memory and having to undo such changes in order to block
691 * until the operations can go through.
692 */
693 for (sop = sops; sop < sops + nsops; sop++) {
694 curr = sma->sem_base + sop->sem_num;
695 sem_op = sop->sem_op;
696 result = curr->semval;
697
698 if (!sem_op && result)
699 goto would_block; /* wait-for-zero */
700
701 result += sem_op;
702 if (result < 0)
703 goto would_block;
704
705 if (result > SEMVMX)
706 return -ERANGE;
707
708 if (sop->sem_flg & SEM_UNDO) {
709 int undo = un->semadj[sop->sem_num] - sem_op;
710
711 /* Exceeding the undo range is an error. */
712 if (undo < (-SEMAEM - 1) || undo > SEMAEM)
713 return -ERANGE;
714 }
715 }
716
717 for (sop = sops; sop < sops + nsops; sop++) {
718 curr = sma->sem_base + sop->sem_num;
719 sem_op = sop->sem_op;
720 result = curr->semval;
721
722 if (sop->sem_flg & SEM_UNDO) {
723 int undo = un->semadj[sop->sem_num] - sem_op;
724
725 un->semadj[sop->sem_num] = undo;
726 }
727 curr->semval += sem_op;
728 curr->sempid = q->pid;
729 }
730
731 return 0;
732
733would_block:
734 q->blocking = sop;
735 return sop->sem_flg & IPC_NOWAIT ? -EAGAIN : 1;
736}
737
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800738static inline void wake_up_sem_queue_prepare(struct sem_queue *q, int error,
739 struct wake_q_head *wake_q)
Nick Piggind4212092009-12-15 16:47:30 -0800740{
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800741 wake_q_add(wake_q, q->sleeper);
742 /*
743 * Rely on the above implicit barrier, such that we can
744 * ensure that we hold reference to the task before setting
745 * q->status. Otherwise we could race with do_exit if the
746 * task is awoken by an external event before calling
747 * wake_up_process().
748 */
749 WRITE_ONCE(q->status, error);
Nick Piggind4212092009-12-15 16:47:30 -0800750}
751
Manfred Spraulb97e8202009-12-15 16:47:32 -0800752static void unlink_queue(struct sem_array *sma, struct sem_queue *q)
753{
754 list_del(&q->list);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700755 if (q->nsops > 1)
Manfred Spraulb97e8202009-12-15 16:47:32 -0800756 sma->complex_count--;
757}
758
Manfred Spraulfd5db422010-05-26 14:43:40 -0700759/** check_restart(sma, q)
760 * @sma: semaphore array
761 * @q: the operation that just completed
762 *
763 * update_queue is O(N^2) when it restarts scanning the whole queue of
764 * waiting operations. Therefore this function checks if the restart is
765 * really necessary. It is called after a previously waiting operation
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700766 * modified the array.
767 * Note that wait-for-zero operations are handled without restart.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700768 */
Davidlohr Bueso4663d3e2016-12-14 15:06:40 -0800769static inline int check_restart(struct sem_array *sma, struct sem_queue *q)
Manfred Spraulfd5db422010-05-26 14:43:40 -0700770{
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700771 /* pending complex alter operations are too difficult to analyse */
772 if (!list_empty(&sma->pending_alter))
Manfred Spraulfd5db422010-05-26 14:43:40 -0700773 return 1;
774
775 /* we were a sleeping complex operation. Too difficult */
776 if (q->nsops > 1)
777 return 1;
778
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700779 /* It is impossible that someone waits for the new value:
780 * - complex operations always restart.
781 * - wait-for-zero are handled seperately.
782 * - q is a previously sleeping simple operation that
783 * altered the array. It must be a decrement, because
784 * simple increments never sleep.
785 * - If there are older (higher priority) decrements
786 * in the queue, then they have observed the original
787 * semval value and couldn't proceed. The operation
788 * decremented to value - thus they won't proceed either.
789 */
790 return 0;
791}
Manfred Spraulfd5db422010-05-26 14:43:40 -0700792
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700793/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800794 * wake_const_ops - wake up non-alter tasks
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700795 * @sma: semaphore array.
796 * @semnum: semaphore that was modified.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800797 * @wake_q: lockless wake-queue head.
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700798 *
799 * wake_const_ops must be called after a semaphore in a semaphore array
800 * was set to 0. If complex const operations are pending, wake_const_ops must
801 * be called with semnum = -1, as well as with the number of each modified
802 * semaphore.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800803 * The tasks that must be woken up are added to @wake_q. The return code
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700804 * is stored in q->pid.
805 * The function returns 1 if at least one operation was completed successfully.
806 */
807static int wake_const_ops(struct sem_array *sma, int semnum,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800808 struct wake_q_head *wake_q)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700809{
Davidlohr Buesof150f022016-12-14 15:06:43 -0800810 struct sem_queue *q, *tmp;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700811 struct list_head *pending_list;
812 int semop_completed = 0;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700813
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700814 if (semnum == -1)
815 pending_list = &sma->pending_const;
816 else
817 pending_list = &sma->sem_base[semnum].pending_const;
818
Davidlohr Buesof150f022016-12-14 15:06:43 -0800819 list_for_each_entry_safe(q, tmp, pending_list, list) {
820 int error = perform_atomic_semop(sma, q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700821
Davidlohr Buesof150f022016-12-14 15:06:43 -0800822 if (error > 0)
823 continue;
824 /* operation completed, remove from queue & wakeup */
825 unlink_queue(sma, q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700826
Davidlohr Buesof150f022016-12-14 15:06:43 -0800827 wake_up_sem_queue_prepare(q, error, wake_q);
828 if (error == 0)
829 semop_completed = 1;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700830 }
Davidlohr Buesof150f022016-12-14 15:06:43 -0800831
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700832 return semop_completed;
833}
834
835/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800836 * do_smart_wakeup_zero - wakeup all wait for zero tasks
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700837 * @sma: semaphore array
838 * @sops: operations that were performed
839 * @nsops: number of operations
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800840 * @wake_q: lockless wake-queue head
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700841 *
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800842 * Checks all required queue for wait-for-zero operations, based
843 * on the actual changes that were performed on the semaphore array.
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700844 * The function returns 1 if at least one operation was completed successfully.
845 */
846static int do_smart_wakeup_zero(struct sem_array *sma, struct sembuf *sops,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800847 int nsops, struct wake_q_head *wake_q)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700848{
849 int i;
850 int semop_completed = 0;
851 int got_zero = 0;
852
853 /* first: the per-semaphore queues, if known */
854 if (sops) {
855 for (i = 0; i < nsops; i++) {
856 int num = sops[i].sem_num;
857
858 if (sma->sem_base[num].semval == 0) {
859 got_zero = 1;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800860 semop_completed |= wake_const_ops(sma, num, wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700861 }
862 }
863 } else {
864 /*
865 * No sops means modified semaphores not known.
866 * Assume all were changed.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700867 */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700868 for (i = 0; i < sma->sem_nsems; i++) {
869 if (sma->sem_base[i].semval == 0) {
870 got_zero = 1;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800871 semop_completed |= wake_const_ops(sma, i, wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700872 }
873 }
Manfred Spraulfd5db422010-05-26 14:43:40 -0700874 }
875 /*
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700876 * If one of the modified semaphores got 0,
877 * then check the global queue, too.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700878 */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700879 if (got_zero)
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800880 semop_completed |= wake_const_ops(sma, -1, wake_q);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700881
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700882 return semop_completed;
Manfred Spraulfd5db422010-05-26 14:43:40 -0700883}
884
Manfred Spraul636c6be2009-12-15 16:47:33 -0800885
886/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800887 * update_queue - look for tasks that can be completed.
Manfred Spraul636c6be2009-12-15 16:47:33 -0800888 * @sma: semaphore array.
889 * @semnum: semaphore that was modified.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800890 * @wake_q: lockless wake-queue head.
Manfred Spraul636c6be2009-12-15 16:47:33 -0800891 *
892 * update_queue must be called after a semaphore in a semaphore array
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700893 * was modified. If multiple semaphores were modified, update_queue must
894 * be called with semnum = -1, as well as with the number of each modified
895 * semaphore.
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800896 * The tasks that must be woken up are added to @wake_q. The return code
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700897 * is stored in q->pid.
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700898 * The function internally checks if const operations can now succeed.
899 *
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700900 * The function return 1 if at least one semop was completed successfully.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800902static int update_queue(struct sem_array *sma, int semnum, struct wake_q_head *wake_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Davidlohr Buesof150f022016-12-14 15:06:43 -0800904 struct sem_queue *q, *tmp;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800905 struct list_head *pending_list;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700906 int semop_completed = 0;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800907
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700908 if (semnum == -1)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700909 pending_list = &sma->pending_alter;
Rik van Riel9f1bc2c92013-04-30 19:15:39 -0700910 else
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700911 pending_list = &sma->sem_base[semnum].pending_alter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Nick Piggin9cad2002009-12-15 16:47:29 -0800913again:
Davidlohr Buesof150f022016-12-14 15:06:43 -0800914 list_for_each_entry_safe(q, tmp, pending_list, list) {
Manfred Spraulfd5db422010-05-26 14:43:40 -0700915 int error, restart;
Manfred Spraul636c6be2009-12-15 16:47:33 -0800916
Manfred Sprauld987f8b2009-12-15 16:47:34 -0800917 /* If we are scanning the single sop, per-semaphore list of
918 * one semaphore and that semaphore is 0, then it is not
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700919 * necessary to scan further: simple increments
Manfred Sprauld987f8b2009-12-15 16:47:34 -0800920 * that affect only one entry succeed immediately and cannot
921 * be in the per semaphore pending queue, and decrements
922 * cannot be successful if the value is already 0.
923 */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700924 if (semnum != -1 && sma->sem_base[semnum].semval == 0)
Manfred Sprauld987f8b2009-12-15 16:47:34 -0800925 break;
926
Manfred Sprauld198cd62014-06-06 14:37:49 -0700927 error = perform_atomic_semop(sma, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* Does q->sleeper still need to sleep? */
Nick Piggin9cad2002009-12-15 16:47:29 -0800930 if (error > 0)
931 continue;
Manfred Spraula1193f82008-07-25 01:48:06 -0700932
Manfred Spraulb97e8202009-12-15 16:47:32 -0800933 unlink_queue(sma, q);
Manfred Spraula1193f82008-07-25 01:48:06 -0700934
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700935 if (error) {
Manfred Spraulfd5db422010-05-26 14:43:40 -0700936 restart = 0;
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700937 } else {
938 semop_completed = 1;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800939 do_smart_wakeup_zero(sma, q->sops, q->nsops, wake_q);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700940 restart = check_restart(sma, q);
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700941 }
Manfred Spraulfd5db422010-05-26 14:43:40 -0700942
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800943 wake_up_sem_queue_prepare(q, error, wake_q);
Manfred Spraulfd5db422010-05-26 14:43:40 -0700944 if (restart)
Nick Piggin9cad2002009-12-15 16:47:29 -0800945 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700947 return semop_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
949
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700950/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800951 * set_semotime - set sem_otime
Manfred Spraul0e8c6652013-09-30 13:45:25 -0700952 * @sma: semaphore array
953 * @sops: operations that modified the array, may be NULL
954 *
955 * sem_otime is replicated to avoid cache line trashing.
956 * This function sets one instance to the current time.
957 */
958static void set_semotime(struct sem_array *sma, struct sembuf *sops)
959{
960 if (sops == NULL) {
961 sma->sem_base[0].sem_otime = get_seconds();
962 } else {
963 sma->sem_base[sops[0].sem_num].sem_otime =
964 get_seconds();
965 }
966}
967
968/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -0800969 * do_smart_update - optimized update_queue
Manfred Spraulfd5db422010-05-26 14:43:40 -0700970 * @sma: semaphore array
971 * @sops: operations that were performed
972 * @nsops: number of operations
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700973 * @otime: force setting otime
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800974 * @wake_q: lockless wake-queue head
Manfred Spraulfd5db422010-05-26 14:43:40 -0700975 *
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700976 * do_smart_update() does the required calls to update_queue and wakeup_zero,
977 * based on the actual changes that were performed on the semaphore array.
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700978 * Note that the function does not do the actual wake-up: the caller is
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800979 * responsible for calling wake_up_q().
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700980 * It is safe to perform this call after dropping all locks.
Manfred Spraulfd5db422010-05-26 14:43:40 -0700981 */
Manfred Spraul0a2b9d42010-05-26 14:43:41 -0700982static void do_smart_update(struct sem_array *sma, struct sembuf *sops, int nsops,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800983 int otime, struct wake_q_head *wake_q)
Manfred Spraulfd5db422010-05-26 14:43:40 -0700984{
985 int i;
986
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800987 otime |= do_smart_wakeup_zero(sma, sops, nsops, wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -0700988
Manfred Spraulf269f402013-07-08 16:01:24 -0700989 if (!list_empty(&sma->pending_alter)) {
990 /* semaphore array uses the global queue - just process it. */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800991 otime |= update_queue(sma, -1, wake_q);
Manfred Spraulf269f402013-07-08 16:01:24 -0700992 } else {
993 if (!sops) {
994 /*
995 * No sops, thus the modified semaphores are not
996 * known. Check all.
997 */
998 for (i = 0; i < sma->sem_nsems; i++)
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -0800999 otime |= update_queue(sma, i, wake_q);
Manfred Spraulf269f402013-07-08 16:01:24 -07001000 } else {
1001 /*
1002 * Check the semaphores that were increased:
1003 * - No complex ops, thus all sleeping ops are
1004 * decrease.
1005 * - if we decreased the value, then any sleeping
1006 * semaphore ops wont be able to run: If the
1007 * previous value was too small, then the new
1008 * value will be too small, too.
1009 */
1010 for (i = 0; i < nsops; i++) {
1011 if (sops[i].sem_op > 0) {
1012 otime |= update_queue(sma,
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001013 sops[i].sem_num, wake_q);
Manfred Spraulf269f402013-07-08 16:01:24 -07001014 }
Manfred Spraulab465df2013-05-26 11:08:52 +02001015 }
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001016 }
Manfred Spraulfd5db422010-05-26 14:43:40 -07001017 }
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001018 if (otime)
1019 set_semotime(sma, sops);
Manfred Spraulfd5db422010-05-26 14:43:40 -07001020}
1021
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001022/*
Manfred Spraulb220c572014-06-06 14:37:51 -07001023 * check_qop: Test if a queued operation sleeps on the semaphore semnum
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001024 */
1025static int check_qop(struct sem_array *sma, int semnum, struct sem_queue *q,
1026 bool count_zero)
1027{
Manfred Spraulb220c572014-06-06 14:37:51 -07001028 struct sembuf *sop = q->blocking;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001029
Manfred Spraul9b44ee22014-06-06 14:37:52 -07001030 /*
1031 * Linux always (since 0.99.10) reported a task as sleeping on all
1032 * semaphores. This violates SUS, therefore it was changed to the
1033 * standard compliant behavior.
1034 * Give the administrators a chance to notice that an application
1035 * might misbehave because it relies on the Linux behavior.
1036 */
1037 pr_info_once("semctl(GETNCNT/GETZCNT) is since 3.16 Single Unix Specification compliant.\n"
1038 "The task %s (%d) triggered the difference, watch for misbehavior.\n",
1039 current->comm, task_pid_nr(current));
1040
Manfred Spraulb220c572014-06-06 14:37:51 -07001041 if (sop->sem_num != semnum)
1042 return 0;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001043
Manfred Spraulb220c572014-06-06 14:37:51 -07001044 if (count_zero && sop->sem_op == 0)
1045 return 1;
1046 if (!count_zero && sop->sem_op < 0)
1047 return 1;
1048
1049 return 0;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052/* The following counts are associated to each semaphore:
1053 * semncnt number of tasks waiting on semval being nonzero
1054 * semzcnt number of tasks waiting on semval being zero
Manfred Spraulb220c572014-06-06 14:37:51 -07001055 *
1056 * Per definition, a task waits only on the semaphore of the first semop
1057 * that cannot proceed, even if additional operation would block, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 */
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001059static int count_semcnt(struct sem_array *sma, ushort semnum,
1060 bool count_zero)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001062 struct list_head *l;
Manfred Spraul239521f2014-01-27 17:07:04 -08001063 struct sem_queue *q;
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001064 int semcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001066 semcnt = 0;
1067 /* First: check the simple operations. They are easy to evaluate */
1068 if (count_zero)
1069 l = &sma->sem_base[semnum].pending_const;
1070 else
1071 l = &sma->sem_base[semnum].pending_alter;
1072
1073 list_for_each_entry(q, l, list) {
1074 /* all task on a per-semaphore list sleep on exactly
1075 * that semaphore
1076 */
1077 semcnt++;
Rik van Rielde2657f2013-05-09 16:59:59 -04001078 }
1079
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001080 /* Then: check the complex operations. */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001081 list_for_each_entry(q, &sma->pending_alter, list) {
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001082 semcnt += check_qop(sma, semnum, q, count_zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001084 if (count_zero) {
1085 list_for_each_entry(q, &sma->pending_const, list) {
1086 semcnt += check_qop(sma, semnum, q, count_zero);
1087 }
Rik van Rielebc2e5e2013-05-09 16:53:28 -04001088 }
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001089 return semcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001092/* Free a semaphore set. freeary() is called with sem_ids.rwsem locked
1093 * as a writer and the spinlock for this semaphore set hold. sem_ids.rwsem
Nadia Derbey3e148c72007-10-18 23:40:54 -07001094 * remains locked on exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001096static void freeary(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Manfred Spraul380af1b2008-07-25 01:48:06 -07001098 struct sem_undo *un, *tu;
1099 struct sem_queue *q, *tq;
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001100 struct sem_array *sma = container_of(ipcp, struct sem_array, sem_perm);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001101 int i;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001102 DEFINE_WAKE_Q(wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Manfred Spraul380af1b2008-07-25 01:48:06 -07001104 /* Free the existing undo structures for this semaphore set. */
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001105 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001106 list_for_each_entry_safe(un, tu, &sma->list_id, list_id) {
1107 list_del(&un->list_id);
1108 spin_lock(&un->ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 un->semid = -1;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001110 list_del_rcu(&un->list_proc);
1111 spin_unlock(&un->ulp->lock);
Lai Jiangshan693a8b62011-03-18 12:09:35 +08001112 kfree_rcu(un, rcu);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 /* Wake up all pending processes and let them fail with EIDRM. */
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001116 list_for_each_entry_safe(q, tq, &sma->pending_const, list) {
1117 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001118 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001119 }
1120
1121 list_for_each_entry_safe(q, tq, &sma->pending_alter, list) {
Manfred Spraulb97e8202009-12-15 16:47:32 -08001122 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001123 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 }
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001125 for (i = 0; i < sma->sem_nsems; i++) {
1126 struct sem *sem = sma->sem_base + i;
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001127 list_for_each_entry_safe(q, tq, &sem->pending_const, list) {
1128 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001129 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001130 }
1131 list_for_each_entry_safe(q, tq, &sem->pending_alter, list) {
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001132 unlink_queue(sma, q);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001133 wake_up_sem_queue_prepare(q, -EIDRM, &wake_q);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001134 }
1135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001137 /* Remove the semaphore set from the IDR */
1138 sem_rmid(ns, sma);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001139 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001140 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001142 wake_up_q(&wake_q);
Kirill Korotaeve3893532006-10-02 02:18:22 -07001143 ns->used_sems -= sma->sem_nsems;
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -07001144 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
1147static unsigned long copy_semid_to_user(void __user *buf, struct semid64_ds *in, int version)
1148{
Manfred Spraul239521f2014-01-27 17:07:04 -08001149 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 case IPC_64:
1151 return copy_to_user(buf, in, sizeof(*in));
1152 case IPC_OLD:
1153 {
1154 struct semid_ds out;
1155
Dan Rosenberg982f7c22010-09-30 15:15:31 -07001156 memset(&out, 0, sizeof(out));
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 ipc64_perm_to_ipc_perm(&in->sem_perm, &out.sem_perm);
1159
1160 out.sem_otime = in->sem_otime;
1161 out.sem_ctime = in->sem_ctime;
1162 out.sem_nsems = in->sem_nsems;
1163
1164 return copy_to_user(buf, &out, sizeof(out));
1165 }
1166 default:
1167 return -EINVAL;
1168 }
1169}
1170
Manfred Sprauld12e1e52013-07-08 16:01:25 -07001171static time_t get_semotime(struct sem_array *sma)
1172{
1173 int i;
1174 time_t res;
1175
1176 res = sma->sem_base[0].sem_otime;
1177 for (i = 1; i < sma->sem_nsems; i++) {
1178 time_t to = sma->sem_base[i].sem_otime;
1179
1180 if (to > res)
1181 res = to;
1182 }
1183 return res;
1184}
1185
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001186static int semctl_nolock(struct ipc_namespace *ns, int semid,
Al Viroe1fd1f42013-03-05 15:04:55 -05001187 int cmd, int version, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Amerigo Wange5cc9c72009-12-15 16:47:35 -08001189 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct sem_array *sma;
1191
Manfred Spraul239521f2014-01-27 17:07:04 -08001192 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 case IPC_INFO:
1194 case SEM_INFO:
1195 {
1196 struct seminfo seminfo;
1197 int max_id;
1198
1199 err = security_sem_semctl(NULL, cmd);
1200 if (err)
1201 return err;
Paul McQuade46c0a8c2014-06-06 14:37:37 -07001202
Manfred Spraul239521f2014-01-27 17:07:04 -08001203 memset(&seminfo, 0, sizeof(seminfo));
Kirill Korotaeve3893532006-10-02 02:18:22 -07001204 seminfo.semmni = ns->sc_semmni;
1205 seminfo.semmns = ns->sc_semmns;
1206 seminfo.semmsl = ns->sc_semmsl;
1207 seminfo.semopm = ns->sc_semopm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 seminfo.semvmx = SEMVMX;
1209 seminfo.semmnu = SEMMNU;
1210 seminfo.semmap = SEMMAP;
1211 seminfo.semume = SEMUME;
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001212 down_read(&sem_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (cmd == SEM_INFO) {
Kirill Korotaeve3893532006-10-02 02:18:22 -07001214 seminfo.semusz = sem_ids(ns).in_use;
1215 seminfo.semaem = ns->used_sems;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 } else {
1217 seminfo.semusz = SEMUSZ;
1218 seminfo.semaem = SEMAEM;
1219 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001220 max_id = ipc_get_maxid(&sem_ids(ns));
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001221 up_read(&sem_ids(ns).rwsem);
Paul McQuade46c0a8c2014-06-06 14:37:37 -07001222 if (copy_to_user(p, &seminfo, sizeof(struct seminfo)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return -EFAULT;
Manfred Spraul239521f2014-01-27 17:07:04 -08001224 return (max_id < 0) ? 0 : max_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001226 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 case SEM_STAT:
1228 {
1229 struct semid64_ds tbuf;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001230 int id = 0;
1231
1232 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Linus Torvalds941b0302013-05-04 11:04:29 -07001234 rcu_read_lock();
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001235 if (cmd == SEM_STAT) {
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001236 sma = sem_obtain_object(ns, semid);
1237 if (IS_ERR(sma)) {
1238 err = PTR_ERR(sma);
1239 goto out_unlock;
1240 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001241 id = sma->sem_perm.id;
1242 } else {
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001243 sma = sem_obtain_object_check(ns, semid);
1244 if (IS_ERR(sma)) {
1245 err = PTR_ERR(sma);
1246 goto out_unlock;
1247 }
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001251 if (ipcperms(ns, &sma->sem_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 goto out_unlock;
1253
1254 err = security_sem_semctl(sma, cmd);
1255 if (err)
1256 goto out_unlock;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 kernel_to_ipc64_perm(&sma->sem_perm, &tbuf.sem_perm);
Manfred Sprauld12e1e52013-07-08 16:01:25 -07001259 tbuf.sem_otime = get_semotime(sma);
1260 tbuf.sem_ctime = sma->sem_ctime;
1261 tbuf.sem_nsems = sma->sem_nsems;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001262 rcu_read_unlock();
Al Viroe1fd1f42013-03-05 15:04:55 -05001263 if (copy_semid_to_user(p, &tbuf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return -EFAULT;
1265 return id;
1266 }
1267 default:
1268 return -EINVAL;
1269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270out_unlock:
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001271 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return err;
1273}
1274
Al Viroe1fd1f42013-03-05 15:04:55 -05001275static int semctl_setval(struct ipc_namespace *ns, int semid, int semnum,
1276 unsigned long arg)
1277{
1278 struct sem_undo *un;
1279 struct sem_array *sma;
Manfred Spraul239521f2014-01-27 17:07:04 -08001280 struct sem *curr;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001281 int err, val;
1282 DEFINE_WAKE_Q(wake_q);
1283
Al Viroe1fd1f42013-03-05 15:04:55 -05001284#if defined(CONFIG_64BIT) && defined(__BIG_ENDIAN)
1285 /* big-endian 64bit */
1286 val = arg >> 32;
1287#else
1288 /* 32bit or little-endian 64bit */
1289 val = arg;
1290#endif
1291
Rik van Riel6062a8d2013-04-30 19:15:44 -07001292 if (val > SEMVMX || val < 0)
1293 return -ERANGE;
Al Viroe1fd1f42013-03-05 15:04:55 -05001294
Rik van Riel6062a8d2013-04-30 19:15:44 -07001295 rcu_read_lock();
1296 sma = sem_obtain_object_check(ns, semid);
1297 if (IS_ERR(sma)) {
1298 rcu_read_unlock();
1299 return PTR_ERR(sma);
1300 }
1301
1302 if (semnum < 0 || semnum >= sma->sem_nsems) {
1303 rcu_read_unlock();
1304 return -EINVAL;
1305 }
1306
1307
1308 if (ipcperms(ns, &sma->sem_perm, S_IWUGO)) {
1309 rcu_read_unlock();
1310 return -EACCES;
1311 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001312
1313 err = security_sem_semctl(sma, SETVAL);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001314 if (err) {
1315 rcu_read_unlock();
1316 return -EACCES;
1317 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001318
Rik van Riel6062a8d2013-04-30 19:15:44 -07001319 sem_lock(sma, NULL, -1);
Al Viroe1fd1f42013-03-05 15:04:55 -05001320
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001321 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001322 sem_unlock(sma, -1);
1323 rcu_read_unlock();
1324 return -EIDRM;
1325 }
1326
Al Viroe1fd1f42013-03-05 15:04:55 -05001327 curr = &sma->sem_base[semnum];
1328
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001329 ipc_assert_locked_object(&sma->sem_perm);
Al Viroe1fd1f42013-03-05 15:04:55 -05001330 list_for_each_entry(un, &sma->list_id, list_id)
1331 un->semadj[semnum] = 0;
1332
1333 curr->semval = val;
1334 curr->sempid = task_tgid_vnr(current);
1335 sma->sem_ctime = get_seconds();
1336 /* maybe some queued-up processes were waiting for this */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001337 do_smart_update(sma, NULL, 0, 0, &wake_q);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001338 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001339 rcu_read_unlock();
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001340 wake_up_q(&wake_q);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001341 return 0;
Al Viroe1fd1f42013-03-05 15:04:55 -05001342}
1343
Kirill Korotaeve3893532006-10-02 02:18:22 -07001344static int semctl_main(struct ipc_namespace *ns, int semid, int semnum,
Al Viroe1fd1f42013-03-05 15:04:55 -05001345 int cmd, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 struct sem_array *sma;
Manfred Spraul239521f2014-01-27 17:07:04 -08001348 struct sem *curr;
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001349 int err, nsems;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 ushort fast_sem_io[SEMMSL_FAST];
Manfred Spraul239521f2014-01-27 17:07:04 -08001351 ushort *sem_io = fast_sem_io;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001352 DEFINE_WAKE_Q(wake_q);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001353
1354 rcu_read_lock();
1355 sma = sem_obtain_object_check(ns, semid);
1356 if (IS_ERR(sma)) {
1357 rcu_read_unlock();
1358 return PTR_ERR(sma);
1359 }
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 nsems = sma->sem_nsems;
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 err = -EACCES;
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001364 if (ipcperms(ns, &sma->sem_perm, cmd == SETALL ? S_IWUGO : S_IRUGO))
1365 goto out_rcu_wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 err = security_sem_semctl(sma, cmd);
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001368 if (err)
1369 goto out_rcu_wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
1371 err = -EACCES;
1372 switch (cmd) {
1373 case GETALL:
1374 {
Al Viroe1fd1f42013-03-05 15:04:55 -05001375 ushort __user *array = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 int i;
1377
Al Viroce857222013-05-03 00:30:49 +01001378 sem_lock(sma, NULL, -1);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001379 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001380 err = -EIDRM;
1381 goto out_unlock;
1382 }
Manfred Spraul239521f2014-01-27 17:07:04 -08001383 if (nsems > SEMMSL_FAST) {
Al Viroce857222013-05-03 00:30:49 +01001384 if (!ipc_rcu_getref(sma)) {
Al Viroce857222013-05-03 00:30:49 +01001385 err = -EIDRM;
Manfred Spraul6e224f92013-10-16 13:46:45 -07001386 goto out_unlock;
Al Viroce857222013-05-03 00:30:49 +01001387 }
1388 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001389 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 sem_io = ipc_alloc(sizeof(ushort)*nsems);
Manfred Spraul239521f2014-01-27 17:07:04 -08001391 if (sem_io == NULL) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001392 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 return -ENOMEM;
1394 }
1395
Linus Torvalds4091fd942013-05-04 10:13:40 -07001396 rcu_read_lock();
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001397 sem_lock_and_putref(sma);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001398 if (!ipc_valid_object(&sma->sem_perm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 err = -EIDRM;
Manfred Spraul6e224f92013-10-16 13:46:45 -07001400 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
Al Viroce857222013-05-03 00:30:49 +01001402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 for (i = 0; i < sma->sem_nsems; i++)
1404 sem_io[i] = sma->sem_base[i].semval;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001405 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001406 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 err = 0;
Manfred Spraul239521f2014-01-27 17:07:04 -08001408 if (copy_to_user(array, sem_io, nsems*sizeof(ushort)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 err = -EFAULT;
1410 goto out_free;
1411 }
1412 case SETALL:
1413 {
1414 int i;
1415 struct sem_undo *un;
1416
Rik van Riel6062a8d2013-04-30 19:15:44 -07001417 if (!ipc_rcu_getref(sma)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001418 err = -EIDRM;
1419 goto out_rcu_wakeup;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001420 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001421 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Manfred Spraul239521f2014-01-27 17:07:04 -08001423 if (nsems > SEMMSL_FAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 sem_io = ipc_alloc(sizeof(ushort)*nsems);
Manfred Spraul239521f2014-01-27 17:07:04 -08001425 if (sem_io == NULL) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001426 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return -ENOMEM;
1428 }
1429 }
1430
Manfred Spraul239521f2014-01-27 17:07:04 -08001431 if (copy_from_user(sem_io, p, nsems*sizeof(ushort))) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001432 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 err = -EFAULT;
1434 goto out_free;
1435 }
1436
1437 for (i = 0; i < nsems; i++) {
1438 if (sem_io[i] > SEMVMX) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001439 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 err = -ERANGE;
1441 goto out_free;
1442 }
1443 }
Linus Torvalds4091fd942013-05-04 10:13:40 -07001444 rcu_read_lock();
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001445 sem_lock_and_putref(sma);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001446 if (!ipc_valid_object(&sma->sem_perm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 err = -EIDRM;
Manfred Spraul6e224f92013-10-16 13:46:45 -07001448 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
Davidlohr Buesoa5f4db82016-03-22 14:27:48 -07001451 for (i = 0; i < nsems; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 sma->sem_base[i].semval = sem_io[i];
Davidlohr Buesoa5f4db82016-03-22 14:27:48 -07001453 sma->sem_base[i].sempid = task_tgid_vnr(current);
1454 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001455
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001456 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001457 list_for_each_entry(un, &sma->list_id, list_id) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 for (i = 0; i < nsems; i++)
1459 un->semadj[i] = 0;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 sma->sem_ctime = get_seconds();
1462 /* maybe some queued-up processes were waiting for this */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001463 do_smart_update(sma, NULL, 0, 0, &wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 err = 0;
1465 goto out_unlock;
1466 }
Al Viroe1fd1f42013-03-05 15:04:55 -05001467 /* GETVAL, GETPID, GETNCTN, GETZCNT: fall-through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469 err = -EINVAL;
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001470 if (semnum < 0 || semnum >= nsems)
1471 goto out_rcu_wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Rik van Riel6062a8d2013-04-30 19:15:44 -07001473 sem_lock(sma, NULL, -1);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001474 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07001475 err = -EIDRM;
1476 goto out_unlock;
1477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 curr = &sma->sem_base[semnum];
1479
1480 switch (cmd) {
1481 case GETVAL:
1482 err = curr->semval;
1483 goto out_unlock;
1484 case GETPID:
1485 err = curr->sempid;
1486 goto out_unlock;
1487 case GETNCNT:
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001488 err = count_semcnt(sma, semnum, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 goto out_unlock;
1490 case GETZCNT:
Manfred Spraul2f2ed41d2014-06-06 14:37:48 -07001491 err = count_semcnt(sma, semnum, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495out_unlock:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001496 sem_unlock(sma, -1);
Linus Torvaldsc728b9c2013-05-04 11:04:29 -07001497out_rcu_wakeup:
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001498 rcu_read_unlock();
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001499 wake_up_q(&wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500out_free:
Manfred Spraul239521f2014-01-27 17:07:04 -08001501 if (sem_io != fast_sem_io)
Tetsuo Handa1d5cfdb2016-01-22 15:11:02 -08001502 ipc_free(sem_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return err;
1504}
1505
Pierre Peiffer016d7132008-04-29 01:00:50 -07001506static inline unsigned long
1507copy_semid_from_user(struct semid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Manfred Spraul239521f2014-01-27 17:07:04 -08001509 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -07001511 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 case IPC_OLD:
1515 {
1516 struct semid_ds tbuf_old;
1517
Manfred Spraul239521f2014-01-27 17:07:04 -08001518 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return -EFAULT;
1520
Pierre Peiffer016d7132008-04-29 01:00:50 -07001521 out->sem_perm.uid = tbuf_old.sem_perm.uid;
1522 out->sem_perm.gid = tbuf_old.sem_perm.gid;
1523 out->sem_perm.mode = tbuf_old.sem_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 return 0;
1526 }
1527 default:
1528 return -EINVAL;
1529 }
1530}
1531
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001532/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001533 * This function handles some semctl commands which require the rwsem
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001534 * to be held in write mode.
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001535 * NOTE: no locks must be held, the rwsem is taken inside this function.
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001536 */
Pierre Peiffer21a48262008-04-29 01:00:49 -07001537static int semctl_down(struct ipc_namespace *ns, int semid,
Al Viroe1fd1f42013-03-05 15:04:55 -05001538 int cmd, int version, void __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct sem_array *sma;
1541 int err;
Pierre Peiffer016d7132008-04-29 01:00:50 -07001542 struct semid64_ds semid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 struct kern_ipc_perm *ipcp;
1544
Manfred Spraul239521f2014-01-27 17:07:04 -08001545 if (cmd == IPC_SET) {
Al Viroe1fd1f42013-03-05 15:04:55 -05001546 if (copy_semid_from_user(&semid64, p, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001550 down_write(&sem_ids(ns).rwsem);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001551 rcu_read_lock();
1552
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001553 ipcp = ipcctl_pre_down_nolock(ns, &sem_ids(ns), semid, cmd,
1554 &semid64.sem_perm, 0);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001555 if (IS_ERR(ipcp)) {
1556 err = PTR_ERR(ipcp);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001557 goto out_unlock1;
1558 }
Steve Grubb073115d2006-04-02 17:07:33 -04001559
Pierre Peiffera5f75e72008-04-29 01:00:54 -07001560 sma = container_of(ipcp, struct sem_array, sem_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 err = security_sem_semctl(sma, cmd);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001563 if (err)
1564 goto out_unlock1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001566 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 case IPC_RMID:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001568 sem_lock(sma, NULL, -1);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001569 /* freeary unlocks the ipc object and rcu */
Pierre Peiffer01b8b072008-02-08 04:18:57 -08001570 freeary(ns, ipcp);
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001571 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 case IPC_SET:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001573 sem_lock(sma, NULL, -1);
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001574 err = ipc_update_perm(&semid64.sem_perm, ipcp);
1575 if (err)
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001576 goto out_unlock0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 sma->sem_ctime = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 break;
1579 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 err = -EINVAL;
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001581 goto out_unlock1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001584out_unlock0:
Rik van Riel6062a8d2013-04-30 19:15:44 -07001585 sem_unlock(sma, -1);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -07001586out_unlock1:
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001587 rcu_read_unlock();
Pierre Peiffer522bb2a2008-04-29 01:00:49 -07001588out_up:
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001589 up_write(&sem_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return err;
1591}
1592
Al Viroe1fd1f42013-03-05 15:04:55 -05001593SYSCALL_DEFINE4(semctl, int, semid, int, semnum, int, cmd, unsigned long, arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 int version;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001596 struct ipc_namespace *ns;
Al Viroe1fd1f42013-03-05 15:04:55 -05001597 void __user *p = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 if (semid < 0)
1600 return -EINVAL;
1601
1602 version = ipc_parse_version(&cmd);
Kirill Korotaeve3893532006-10-02 02:18:22 -07001603 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Manfred Spraul239521f2014-01-27 17:07:04 -08001605 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 case IPC_INFO:
1607 case SEM_INFO:
Pierre Peiffer4b9fcb02008-02-08 04:18:56 -08001608 case IPC_STAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 case SEM_STAT:
Al Viroe1fd1f42013-03-05 15:04:55 -05001610 return semctl_nolock(ns, semid, cmd, version, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 case GETALL:
1612 case GETVAL:
1613 case GETPID:
1614 case GETNCNT:
1615 case GETZCNT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 case SETALL:
Al Viroe1fd1f42013-03-05 15:04:55 -05001617 return semctl_main(ns, semid, semnum, cmd, p);
1618 case SETVAL:
1619 return semctl_setval(ns, semid, semnum, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 case IPC_RMID:
1621 case IPC_SET:
Al Viroe1fd1f42013-03-05 15:04:55 -05001622 return semctl_down(ns, semid, cmd, version, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 default:
1624 return -EINVAL;
1625 }
1626}
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628/* If the task doesn't already have a undo_list, then allocate one
1629 * here. We guarantee there is only one thread using this undo list,
1630 * and current is THE ONE
1631 *
1632 * If this allocation and assignment succeeds, but later
1633 * portions of this code fail, there is no need to free the sem_undo_list.
1634 * Just let it stay associated with the task, and it'll be freed later
1635 * at exit time.
1636 *
1637 * This can block, so callers must hold no locks.
1638 */
1639static inline int get_undo_list(struct sem_undo_list **undo_listp)
1640{
1641 struct sem_undo_list *undo_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 undo_list = current->sysvsem.undo_list;
1644 if (!undo_list) {
Matt Helsley2453a302006-10-02 02:18:25 -07001645 undo_list = kzalloc(sizeof(*undo_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (undo_list == NULL)
1647 return -ENOMEM;
Ingo Molnar00a5dfd2005-08-05 23:05:27 +02001648 spin_lock_init(&undo_list->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 atomic_set(&undo_list->refcnt, 1);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001650 INIT_LIST_HEAD(&undo_list->list_proc);
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 current->sysvsem.undo_list = undo_list;
1653 }
1654 *undo_listp = undo_list;
1655 return 0;
1656}
1657
Nick Pigginbf17bb72009-12-15 16:47:28 -08001658static struct sem_undo *__lookup_undo(struct sem_undo_list *ulp, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Nick Pigginbf17bb72009-12-15 16:47:28 -08001660 struct sem_undo *un;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Nick Pigginbf17bb72009-12-15 16:47:28 -08001662 list_for_each_entry_rcu(un, &ulp->list_proc, list_proc) {
1663 if (un->semid == semid)
1664 return un;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001666 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Nick Pigginbf17bb72009-12-15 16:47:28 -08001669static struct sem_undo *lookup_undo(struct sem_undo_list *ulp, int semid)
1670{
1671 struct sem_undo *un;
1672
Manfred Spraul239521f2014-01-27 17:07:04 -08001673 assert_spin_locked(&ulp->lock);
Nick Pigginbf17bb72009-12-15 16:47:28 -08001674
1675 un = __lookup_undo(ulp, semid);
1676 if (un) {
1677 list_del_rcu(&un->list_proc);
1678 list_add_rcu(&un->list_proc, &ulp->list_proc);
1679 }
1680 return un;
1681}
1682
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001683/**
Davidlohr Bueso8001c852014-01-27 17:07:05 -08001684 * find_alloc_undo - lookup (and if not present create) undo array
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001685 * @ns: namespace
1686 * @semid: semaphore array id
1687 *
1688 * The function looks up (and if not present creates) the undo structure.
1689 * The size of the undo structure depends on the size of the semaphore
1690 * array, thus the alloc path is not that straightforward.
Manfred Spraul380af1b2008-07-25 01:48:06 -07001691 * Lifetime-rules: sem_undo is rcu-protected, on success, the function
1692 * performs a rcu_read_lock().
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001693 */
1694static struct sem_undo *find_alloc_undo(struct ipc_namespace *ns, int semid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct sem_array *sma;
1697 struct sem_undo_list *ulp;
1698 struct sem_undo *un, *new;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001699 int nsems, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 error = get_undo_list(&ulp);
1702 if (error)
1703 return ERR_PTR(error);
1704
Manfred Spraul380af1b2008-07-25 01:48:06 -07001705 rcu_read_lock();
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001706 spin_lock(&ulp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 un = lookup_undo(ulp, semid);
Pierre Peifferc530c6a2007-10-18 23:40:55 -07001708 spin_unlock(&ulp->lock);
Manfred Spraul239521f2014-01-27 17:07:04 -08001709 if (likely(un != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 goto out;
1711
1712 /* no undo structure around - allocate one. */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001713 /* step 1: figure out the size of the semaphore array */
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001714 sma = sem_obtain_object_check(ns, semid);
1715 if (IS_ERR(sma)) {
1716 rcu_read_unlock();
Julia Lawall4de85cd2010-05-26 14:43:44 -07001717 return ERR_CAST(sma);
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001718 }
Nadia Derbey023a5352007-10-18 23:40:51 -07001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 nsems = sma->sem_nsems;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001721 if (!ipc_rcu_getref(sma)) {
1722 rcu_read_unlock();
1723 un = ERR_PTR(-EIDRM);
1724 goto out;
1725 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001726 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001728 /* step 2: allocate new undo structure */
Burman Yan4668edc2006-12-06 20:38:51 -08001729 new = kzalloc(sizeof(struct sem_undo) + sizeof(short)*nsems, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 if (!new) {
Fabian Frederick9b24fef2016-08-02 14:03:07 -07001731 ipc_rcu_putref(sma, sem_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return ERR_PTR(-ENOMEM);
1733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Manfred Spraul380af1b2008-07-25 01:48:06 -07001735 /* step 3: Acquire the lock on semaphore array */
Linus Torvalds4091fd942013-05-04 10:13:40 -07001736 rcu_read_lock();
Pierre Peiffer6ff37972008-04-29 01:00:46 -07001737 sem_lock_and_putref(sma);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001738 if (!ipc_valid_object(&sma->sem_perm)) {
Rik van Riel6062a8d2013-04-30 19:15:44 -07001739 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07001740 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 kfree(new);
1742 un = ERR_PTR(-EIDRM);
1743 goto out;
1744 }
Manfred Spraul380af1b2008-07-25 01:48:06 -07001745 spin_lock(&ulp->lock);
1746
1747 /*
1748 * step 4: check for races: did someone else allocate the undo struct?
1749 */
1750 un = lookup_undo(ulp, semid);
1751 if (un) {
1752 kfree(new);
1753 goto success;
1754 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001755 /* step 5: initialize & link new undo structure */
1756 new->semadj = (short *) &new[1];
Manfred Spraul380af1b2008-07-25 01:48:06 -07001757 new->ulp = ulp;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001758 new->semid = semid;
1759 assert_spin_locked(&ulp->lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -07001760 list_add_rcu(&new->list_proc, &ulp->list_proc);
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07001761 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001762 list_add(&new->list_id, &sma->list_id);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001763 un = new;
Manfred Spraul380af1b2008-07-25 01:48:06 -07001764
1765success:
1766 spin_unlock(&ulp->lock);
Rik van Riel6062a8d2013-04-30 19:15:44 -07001767 sem_unlock(sma, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768out:
1769 return un;
1770}
1771
Heiko Carstensd5460c92009-01-14 14:14:27 +01001772SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
1773 unsigned, nsops, const struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 int error = -EINVAL;
1776 struct sem_array *sma;
1777 struct sembuf fast_sops[SEMOPM_FAST];
Manfred Spraul239521f2014-01-27 17:07:04 -08001778 struct sembuf *sops = fast_sops, *sop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 struct sem_undo *un;
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001780 int max, locknum;
1781 bool undos = false, alter = false, dupsop = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 struct sem_queue queue;
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001783 unsigned long dup = 0, jiffies_left = 0;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001784 struct ipc_namespace *ns;
1785
1786 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 if (nsops < 1 || semid < 0)
1789 return -EINVAL;
Kirill Korotaeve3893532006-10-02 02:18:22 -07001790 if (nsops > ns->sc_semopm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return -E2BIG;
Manfred Spraul239521f2014-01-27 17:07:04 -08001792 if (nsops > SEMOPM_FAST) {
1793 sops = kmalloc(sizeof(*sops)*nsops, GFP_KERNEL);
1794 if (sops == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return -ENOMEM;
1796 }
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001797
Manfred Spraul239521f2014-01-27 17:07:04 -08001798 if (copy_from_user(sops, tsops, nsops * sizeof(*tsops))) {
1799 error = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 goto out_free;
1801 }
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (timeout) {
1804 struct timespec _timeout;
1805 if (copy_from_user(&_timeout, timeout, sizeof(*timeout))) {
1806 error = -EFAULT;
1807 goto out_free;
1808 }
1809 if (_timeout.tv_sec < 0 || _timeout.tv_nsec < 0 ||
1810 _timeout.tv_nsec >= 1000000000L) {
1811 error = -EINVAL;
1812 goto out_free;
1813 }
1814 jiffies_left = timespec_to_jiffies(&_timeout);
1815 }
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 max = 0;
1818 for (sop = sops; sop < sops + nsops; sop++) {
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001819 unsigned long mask = 1ULL << ((sop->sem_num) % BITS_PER_LONG);
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (sop->sem_num >= max)
1822 max = sop->sem_num;
1823 if (sop->sem_flg & SEM_UNDO)
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001824 undos = true;
1825 if (dup & mask) {
1826 /*
1827 * There was a previous alter access that appears
1828 * to have accessed the same semaphore, thus use
1829 * the dupsop logic. "appears", because the detection
1830 * can only check % BITS_PER_LONG.
1831 */
1832 dupsop = true;
1833 }
1834 if (sop->sem_op != 0) {
1835 alter = true;
1836 dup |= mask;
1837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (undos) {
Rik van Riel6062a8d2013-04-30 19:15:44 -07001841 /* On success, find_alloc_undo takes the rcu_read_lock */
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001842 un = find_alloc_undo(ns, semid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (IS_ERR(un)) {
1844 error = PTR_ERR(un);
1845 goto out_free;
1846 }
Rik van Riel6062a8d2013-04-30 19:15:44 -07001847 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 un = NULL;
Rik van Riel6062a8d2013-04-30 19:15:44 -07001849 rcu_read_lock();
1850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001852 sma = sem_obtain_object_check(ns, semid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001853 if (IS_ERR(sma)) {
Rik van Riel6062a8d2013-04-30 19:15:44 -07001854 rcu_read_unlock();
Nadia Derbey023a5352007-10-18 23:40:51 -07001855 error = PTR_ERR(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 goto out_free;
Nadia Derbey023a5352007-10-18 23:40:51 -07001857 }
1858
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001859 error = -EFBIG;
Davidlohr Bueso248e7352016-12-14 15:06:31 -08001860 if (max >= sma->sem_nsems) {
1861 rcu_read_unlock();
1862 goto out_free;
1863 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001864
1865 error = -EACCES;
Davidlohr Bueso248e7352016-12-14 15:06:31 -08001866 if (ipcperms(ns, &sma->sem_perm, alter ? S_IWUGO : S_IRUGO)) {
1867 rcu_read_unlock();
1868 goto out_free;
1869 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001870
1871 error = security_sem_semop(sma, sops, nsops, alter);
Davidlohr Bueso248e7352016-12-14 15:06:31 -08001872 if (error) {
1873 rcu_read_unlock();
1874 goto out_free;
1875 }
Davidlohr Bueso16df3672013-04-30 19:15:29 -07001876
Manfred Spraul6e224f92013-10-16 13:46:45 -07001877 error = -EIDRM;
1878 locknum = sem_lock(sma, sops, nsops);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001879 /*
1880 * We eventually might perform the following check in a lockless
1881 * fashion, considering ipc_valid_object() locking constraints.
1882 * If nsops == 1 and there is no contention for sem_perm.lock, then
1883 * only a per-semaphore lock is held and it's OK to proceed with the
1884 * check below. More details on the fine grained locking scheme
1885 * entangled here and why it's RMID race safe on comments at sem_lock()
1886 */
1887 if (!ipc_valid_object(&sma->sem_perm))
Manfred Spraul6e224f92013-10-16 13:46:45 -07001888 goto out_unlock_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 /*
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001890 * semid identifiers are not unique - find_alloc_undo may have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 * allocated an undo structure, it was invalidated by an RMID
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001892 * and now a new array with received the same id. Check and fail.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001893 * This case can be detected checking un->semid. The existence of
Manfred Spraul380af1b2008-07-25 01:48:06 -07001894 * "un" itself is guaranteed by rcu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 */
Rik van Riel6062a8d2013-04-30 19:15:44 -07001896 if (un && un->semid == -1)
1897 goto out_unlock_free;
Manfred Spraul4daa28f2008-07-25 01:48:04 -07001898
Manfred Sprauld198cd62014-06-06 14:37:49 -07001899 queue.sops = sops;
1900 queue.nsops = nsops;
1901 queue.undo = un;
1902 queue.pid = task_tgid_vnr(current);
1903 queue.alter = alter;
Davidlohr Bueso4ce33ec2016-12-14 15:06:37 -08001904 queue.dupsop = dupsop;
Manfred Sprauld198cd62014-06-06 14:37:49 -07001905
1906 error = perform_atomic_semop(sma, &queue);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001907 if (error == 0) { /* non-blocking succesfull path */
1908 DEFINE_WAKE_Q(wake_q);
1909
1910 /*
1911 * If the operation was successful, then do
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001912 * the required updates.
1913 */
1914 if (alter)
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001915 do_smart_update(sma, sops, nsops, 1, &wake_q);
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001916 else
1917 set_semotime(sma, sops);
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001918
1919 sem_unlock(sma, locknum);
1920 rcu_read_unlock();
1921 wake_up_q(&wake_q);
1922
1923 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 }
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001925 if (error < 0) /* non-blocking error path */
Manfred Spraul0e8c6652013-09-30 13:45:25 -07001926 goto out_unlock_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08001928 /*
1929 * We need to sleep on this operation, so we put the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 * task into the pending queue and go to sleep.
1931 */
Manfred Spraulb97e8202009-12-15 16:47:32 -08001932 if (nsops == 1) {
1933 struct sem *curr;
1934 curr = &sma->sem_base[sops->sem_num];
1935
Manfred Spraulf269f402013-07-08 16:01:24 -07001936 if (alter) {
1937 if (sma->complex_count) {
1938 list_add_tail(&queue.list,
1939 &sma->pending_alter);
1940 } else {
1941
1942 list_add_tail(&queue.list,
1943 &curr->pending_alter);
1944 }
1945 } else {
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001946 list_add_tail(&queue.list, &curr->pending_const);
Manfred Spraulf269f402013-07-08 16:01:24 -07001947 }
Manfred Spraulb97e8202009-12-15 16:47:32 -08001948 } else {
Manfred Spraulf269f402013-07-08 16:01:24 -07001949 if (!sma->complex_count)
1950 merge_queues(sma);
1951
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001952 if (alter)
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001953 list_add_tail(&queue.list, &sma->pending_alter);
Rik van Riel9f1bc2c92013-04-30 19:15:39 -07001954 else
Manfred Spraul1a82e9e2013-07-08 16:01:23 -07001955 list_add_tail(&queue.list, &sma->pending_const);
1956
Manfred Spraulb97e8202009-12-15 16:47:32 -08001957 sma->complex_count++;
1958 }
1959
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001960 do {
1961 queue.status = -EINTR;
1962 queue.sleeper = current;
Manfred Spraul0b0577f2011-11-02 13:38:52 -07001963
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001964 __set_current_state(TASK_INTERRUPTIBLE);
1965 sem_unlock(sma, locknum);
Linus Torvalds321310c2013-05-04 10:47:57 -07001966 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001968 if (timeout)
1969 jiffies_left = schedule_timeout(jiffies_left);
1970 else
1971 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001973 /*
1974 * fastpath: the semop has completed, either successfully or
1975 * not, from the syscall pov, is quite irrelevant to us at this
1976 * point; we're done.
1977 *
1978 * We _do_ care, nonetheless, about being awoken by a signal or
1979 * spuriously. The queue.status is checked again in the
1980 * slowpath (aka after taking sem_lock), such that we can detect
1981 * scenarios where we were awakened externally, during the
1982 * window between wake_q_add() and wake_up_q().
1983 */
1984 error = READ_ONCE(queue.status);
1985 if (error != -EINTR) {
1986 /*
1987 * User space could assume that semop() is a memory
1988 * barrier: Without the mb(), the cpu could
1989 * speculatively read in userspace stale data that was
1990 * overwritten by the previous owner of the semaphore.
1991 */
1992 smp_mb();
1993 goto out_free;
1994 }
Manfred Spraul0b0577f2011-11-02 13:38:52 -07001995
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001996 rcu_read_lock();
Manfred Spraulc626bc42017-01-10 16:57:48 -08001997 locknum = sem_lock(sma, sops, nsops);
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08001998
Davidlohr Bueso370b2622016-12-14 15:06:49 -08001999 if (!ipc_valid_object(&sma->sem_perm))
2000 goto out_unlock_free;
2001
2002 error = READ_ONCE(queue.status);
Davidlohr Buesob5fa01a2016-12-14 15:06:46 -08002003
2004 /*
2005 * If queue.status != -EINTR we are woken up by another process.
2006 * Leave without unlink_queue(), but with sem_unlock().
2007 */
2008 if (error != -EINTR)
2009 goto out_unlock_free;
2010
2011 /*
2012 * If an interrupt occurred we have to clean up the queue.
2013 */
2014 if (timeout && jiffies_left == 0)
2015 error = -EAGAIN;
2016 } while (error == -EINTR && !signal_pending(current)); /* spurious */
Manfred Spraul0b0577f2011-11-02 13:38:52 -07002017
Manfred Spraulb97e8202009-12-15 16:47:32 -08002018 unlink_queue(sma, &queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020out_unlock_free:
Rik van Riel6062a8d2013-04-30 19:15:44 -07002021 sem_unlock(sma, locknum);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07002022 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023out_free:
Manfred Spraul239521f2014-01-27 17:07:04 -08002024 if (sops != fast_sops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 kfree(sops);
2026 return error;
2027}
2028
Heiko Carstensd5460c92009-01-14 14:14:27 +01002029SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
2030 unsigned, nsops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
2032 return sys_semtimedop(semid, tsops, nsops, NULL);
2033}
2034
2035/* If CLONE_SYSVSEM is set, establish sharing of SEM_UNDO state between
2036 * parent and child tasks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 */
2038
2039int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
2040{
2041 struct sem_undo_list *undo_list;
2042 int error;
2043
2044 if (clone_flags & CLONE_SYSVSEM) {
2045 error = get_undo_list(&undo_list);
2046 if (error)
2047 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 atomic_inc(&undo_list->refcnt);
2049 tsk->sysvsem.undo_list = undo_list;
Paul McQuade46c0a8c2014-06-06 14:37:37 -07002050 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 tsk->sysvsem.undo_list = NULL;
2052
2053 return 0;
2054}
2055
2056/*
2057 * add semadj values to semaphores, free undo structures.
2058 * undo structures are not freed when semaphore arrays are destroyed
2059 * so some of them may be out of date.
2060 * IMPLEMENTATION NOTE: There is some confusion over whether the
2061 * set of adjustments that needs to be done should be done in an atomic
2062 * manner or not. That is, if we are attempting to decrement the semval
2063 * should we queue up and wait until we can do so legally?
2064 * The original implementation attempted to do this (queue and wait).
2065 * The current implementation does not do so. The POSIX standard
2066 * and SVID should be consulted to determine what behavior is mandated.
2067 */
2068void exit_sem(struct task_struct *tsk)
2069{
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002070 struct sem_undo_list *ulp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002072 ulp = tsk->sysvsem.undo_list;
2073 if (!ulp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 return;
Manfred Spraul9edff4a2008-04-29 01:00:57 -07002075 tsk->sysvsem.undo_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002077 if (!atomic_dec_and_test(&ulp->refcnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return;
2079
Manfred Spraul380af1b2008-07-25 01:48:06 -07002080 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct sem_array *sma;
Manfred Spraul380af1b2008-07-25 01:48:06 -07002082 struct sem_undo *un;
Rik van Riel6062a8d2013-04-30 19:15:44 -07002083 int semid, i;
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08002084 DEFINE_WAKE_Q(wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Nikolay Borisov2a1613a2016-10-11 13:55:05 -07002086 cond_resched();
2087
Manfred Spraul380af1b2008-07-25 01:48:06 -07002088 rcu_read_lock();
Jiri Pirko05725f72009-04-14 20:17:16 +02002089 un = list_entry_rcu(ulp->list_proc.next,
2090 struct sem_undo, list_proc);
Herton R. Krzesinski602b8592015-08-14 15:35:02 -07002091 if (&un->list_proc == &ulp->list_proc) {
2092 /*
2093 * We must wait for freeary() before freeing this ulp,
2094 * in case we raced with last sem_undo. There is a small
2095 * possibility where we exit while freeary() didn't
2096 * finish unlocking sem_undo_list.
2097 */
2098 spin_unlock_wait(&ulp->lock);
Rik van Riel6062a8d2013-04-30 19:15:44 -07002099 rcu_read_unlock();
Manfred Spraul380af1b2008-07-25 01:48:06 -07002100 break;
Rik van Riel6062a8d2013-04-30 19:15:44 -07002101 }
Herton R. Krzesinski602b8592015-08-14 15:35:02 -07002102 spin_lock(&ulp->lock);
2103 semid = un->semid;
2104 spin_unlock(&ulp->lock);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002105
Herton R. Krzesinski602b8592015-08-14 15:35:02 -07002106 /* exit_sem raced with IPC_RMID, nothing to do */
2107 if (semid == -1) {
2108 rcu_read_unlock();
2109 continue;
2110 }
2111
2112 sma = sem_obtain_object_check(tsk->nsproxy->ipc_ns, semid);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002113 /* exit_sem raced with IPC_RMID, nothing to do */
Rik van Riel6062a8d2013-04-30 19:15:44 -07002114 if (IS_ERR(sma)) {
2115 rcu_read_unlock();
Manfred Spraul380af1b2008-07-25 01:48:06 -07002116 continue;
Rik van Riel6062a8d2013-04-30 19:15:44 -07002117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Rik van Riel6062a8d2013-04-30 19:15:44 -07002119 sem_lock(sma, NULL, -1);
Manfred Spraul6e224f92013-10-16 13:46:45 -07002120 /* exit_sem raced with IPC_RMID, nothing to do */
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08002121 if (!ipc_valid_object(&sma->sem_perm)) {
Manfred Spraul6e224f92013-10-16 13:46:45 -07002122 sem_unlock(sma, -1);
2123 rcu_read_unlock();
2124 continue;
2125 }
Nick Pigginbf17bb72009-12-15 16:47:28 -08002126 un = __lookup_undo(ulp, semid);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002127 if (un == NULL) {
2128 /* exit_sem raced with IPC_RMID+semget() that created
2129 * exactly the same semid. Nothing to do.
2130 */
Rik van Riel6062a8d2013-04-30 19:15:44 -07002131 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07002132 rcu_read_unlock();
Manfred Spraul380af1b2008-07-25 01:48:06 -07002133 continue;
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Manfred Spraul380af1b2008-07-25 01:48:06 -07002136 /* remove un from the linked lists */
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -07002137 ipc_assert_locked_object(&sma->sem_perm);
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002138 list_del(&un->list_id);
2139
Herton R. Krzesinskia9795582015-08-14 15:35:05 -07002140 /* we are the last process using this ulp, acquiring ulp->lock
2141 * isn't required. Besides that, we are also protected against
2142 * IPC_RMID as we hold sma->sem_perm lock now
2143 */
Manfred Spraul380af1b2008-07-25 01:48:06 -07002144 list_del_rcu(&un->list_proc);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002145
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002146 /* perform adjustments registered in un */
2147 for (i = 0; i < sma->sem_nsems; i++) {
Manfred Spraul239521f2014-01-27 17:07:04 -08002148 struct sem *semaphore = &sma->sem_base[i];
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002149 if (un->semadj[i]) {
2150 semaphore->semval += un->semadj[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 /*
2152 * Range checks of the new semaphore value,
2153 * not defined by sus:
2154 * - Some unices ignore the undo entirely
2155 * (e.g. HP UX 11i 11.22, Tru64 V5.1)
2156 * - some cap the value (e.g. FreeBSD caps
2157 * at 0, but doesn't enforce SEMVMX)
2158 *
2159 * Linux caps the semaphore value, both at 0
2160 * and at SEMVMX.
2161 *
Manfred Spraul239521f2014-01-27 17:07:04 -08002162 * Manfred <manfred@colorfullife.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 */
Ingo Molnar5f921ae2006-03-26 01:37:17 -08002164 if (semaphore->semval < 0)
2165 semaphore->semval = 0;
2166 if (semaphore->semval > SEMVMX)
2167 semaphore->semval = SEMVMX;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002168 semaphore->sempid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 /* maybe some queued-up processes were waiting for this */
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08002172 do_smart_update(sma, NULL, 0, 1, &wake_q);
Rik van Riel6062a8d2013-04-30 19:15:44 -07002173 sem_unlock(sma, -1);
Linus Torvalds6d49dab2013-05-03 15:04:40 -07002174 rcu_read_unlock();
Davidlohr Bueso9ae949f2016-12-14 15:06:34 -08002175 wake_up_q(&wake_q);
Manfred Spraul380af1b2008-07-25 01:48:06 -07002176
Lai Jiangshan693a8b62011-03-18 12:09:35 +08002177 kfree_rcu(un, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
Manfred Spraul4daa28f2008-07-25 01:48:04 -07002179 kfree(ulp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180}
2181
2182#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07002183static int sysvipc_sem_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08002185 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07002186 struct sem_array *sma = it;
Manfred Sprauld12e1e52013-07-08 16:01:25 -07002187 time_t sem_otime;
2188
Manfred Sprauld8c63372013-09-30 13:45:07 -07002189 /*
2190 * The proc interface isn't aware of sem_lock(), it calls
2191 * ipc_lock_object() directly (in sysvipc_find_ipc).
Manfred Spraul5864a2f2016-10-11 13:54:50 -07002192 * In order to stay compatible with sem_lock(), we must
2193 * enter / leave complex_mode.
Manfred Sprauld8c63372013-09-30 13:45:07 -07002194 */
Manfred Spraul5864a2f2016-10-11 13:54:50 -07002195 complexmode_enter(sma);
Manfred Sprauld8c63372013-09-30 13:45:07 -07002196
Manfred Sprauld12e1e52013-07-08 16:01:25 -07002197 sem_otime = get_semotime(sma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Joe Perches7f032d62015-04-15 16:17:54 -07002199 seq_printf(s,
2200 "%10d %10d %4o %10u %5u %5u %5u %5u %10lu %10lu\n",
2201 sma->sem_perm.key,
2202 sma->sem_perm.id,
2203 sma->sem_perm.mode,
2204 sma->sem_nsems,
2205 from_kuid_munged(user_ns, sma->sem_perm.uid),
2206 from_kgid_munged(user_ns, sma->sem_perm.gid),
2207 from_kuid_munged(user_ns, sma->sem_perm.cuid),
2208 from_kgid_munged(user_ns, sma->sem_perm.cgid),
2209 sem_otime,
2210 sma->sem_ctime);
2211
Manfred Spraul5864a2f2016-10-11 13:54:50 -07002212 complexmode_tryleave(sma);
2213
Joe Perches7f032d62015-04-15 16:17:54 -07002214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216#endif