blob: 74e0f2af999826ae27e98a85c75ea38710510573 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/ipc/shm.c
3 * Copyright (C) 1992, 1993 Krishna Balasubramanian
4 * Many improvements/fixes by Bruno Haible.
5 * Replaced `struct shm_desc' by `struct vm_area_struct', July 1994.
6 * Fixed the shm swap deallocation (shm_unuse()), August 1998 Andrea Arcangeli.
7 *
8 * /proc/sysvipc/shm support (c) 1999 Dragos Acostachioaie <dragos@iname.com>
9 * BIGMEM support, Andrea Arcangeli <andrea@suse.de>
10 * SMP thread shm, Jean-Luc Boyard <jean-luc.boyard@siemens.fr>
11 * HIGHMEM support, Ingo Molnar <mingo@redhat.com>
12 * Make shmmax, shmall, shmmni sysctl'able, Christoph Rohland <cr@sap.com>
13 * Shared /dev/zero support, Kanoj Sarcar <kanoj@sgi.com>
14 * Move the mm functionality over to mm/shmem.c, Christoph Rohland <cr@sap.com>
15 *
Steve Grubb073115d2006-04-02 17:07:33 -040016 * support for audit of ipc object properties and permission changes
17 * Dustin Kirkland <dustin.kirkland@us.ibm.com>
Kirill Korotaev4e982312006-10-02 02:18:22 -070018 *
19 * namespaces support
20 * OpenVZ, SWsoft Inc.
21 * Pavel Emelianov <xemul@openvz.org>
Davidlohr Buesoc2c737a2013-09-11 14:26:23 -070022 *
23 * Better ipc lock (kern_ipc_perm.lock) handling
24 * Davidlohr Bueso <davidlohr.bueso@hp.com>, June 2013.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/slab.h>
28#include <linux/mm.h>
29#include <linux/hugetlb.h>
30#include <linux/shm.h>
31#include <linux/init.h>
32#include <linux/file.h>
33#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/shmem_fs.h>
35#include <linux/security.h>
36#include <linux/syscalls.h>
37#include <linux/audit.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080038#include <linux/capability.h>
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -070039#include <linux/ptrace.h>
Mike Waychison19b49462005-09-06 15:17:10 -070040#include <linux/seq_file.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070041#include <linux/rwsem.h>
Kirill Korotaev4e982312006-10-02 02:18:22 -070042#include <linux/nsproxy.h>
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080043#include <linux/mount.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080044#include <linux/ipc_namespace.h>
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -070045
Paul McQuade7153e402014-06-06 14:37:37 -070046#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include "util.h"
49
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080050struct shm_file_data {
51 int id;
52 struct ipc_namespace *ns;
53 struct file *file;
54 const struct vm_operations_struct *vm_ops;
55};
56
57#define shm_file_data(file) (*((struct shm_file_data **)&(file)->private_data))
58
Arjan van de Ven9a321442007-02-12 00:55:35 -080059static const struct file_operations shm_file_operations;
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040060static const struct vm_operations_struct shm_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080062#define shm_ids(ns) ((ns)->ids[IPC_SHM_IDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Kirill Korotaev4e982312006-10-02 02:18:22 -070064#define shm_unlock(shp) \
65 ipc_unlock(&(shp)->shm_perm)
Kirill Korotaev4e982312006-10-02 02:18:22 -070066
Nadia Derbey7748dbf2007-10-18 23:40:49 -070067static int newseg(struct ipc_namespace *, struct ipc_params *);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080068static void shm_open(struct vm_area_struct *vma);
69static void shm_close(struct vm_area_struct *vma);
Manfred Spraul239521f2014-01-27 17:07:04 -080070static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -070072static int sysvipc_shm_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#endif
74
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080075void shm_init_ns(struct ipc_namespace *ns)
Kirill Korotaev4e982312006-10-02 02:18:22 -070076{
Kirill Korotaev4e982312006-10-02 02:18:22 -070077 ns->shm_ctlmax = SHMMAX;
78 ns->shm_ctlall = SHMALL;
79 ns->shm_ctlmni = SHMMNI;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -070080 ns->shm_rmid_forced = 0;
Kirill Korotaev4e982312006-10-02 02:18:22 -070081 ns->shm_tot = 0;
WANG Conge8148f72009-01-06 14:42:49 -080082 ipc_init_ids(&shm_ids(ns));
Kirill Korotaev4e982312006-10-02 02:18:22 -070083}
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Nadia Derbeyf4566f02007-10-18 23:40:53 -070085/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -070086 * Called with shm_ids.rwsem (writer) and the shp structure locked.
87 * Only shm_ids.rwsem remains locked on exit.
Nadia Derbeyf4566f02007-10-18 23:40:53 -070088 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -080089static void do_shm_rmid(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Kirill Korotaev4e982312006-10-02 02:18:22 -070090{
Pierre Peiffer01b8b072008-02-08 04:18:57 -080091 struct shmid_kernel *shp;
92 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -080093 WARN_ON(ns != shp->ns);
Pierre Peiffer01b8b072008-02-08 04:18:57 -080094
Manfred Spraul239521f2014-01-27 17:07:04 -080095 if (shp->shm_nattch) {
Kirill Korotaev4e982312006-10-02 02:18:22 -070096 shp->shm_perm.mode |= SHM_DEST;
97 /* Do not find it any more */
98 shp->shm_perm.key = IPC_PRIVATE;
99 shm_unlock(shp);
100 } else
101 shm_destroy(ns, shp);
102}
103
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800104#ifdef CONFIG_IPC_NS
Kirill Korotaev4e982312006-10-02 02:18:22 -0700105void shm_exit_ns(struct ipc_namespace *ns)
106{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800107 free_ipcs(ns, &shm_ids(ns), do_shm_rmid);
Serge E. Hallyn7d6feeb2009-12-15 16:47:27 -0800108 idr_destroy(&ns->ids[IPC_SHM_IDS].ipcs_idr);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700109}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds140d0b22011-08-04 19:35:59 -1000112static int __init ipc_ns_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800114 shm_init_ns(&init_ipc_ns);
Linus Torvalds140d0b22011-08-04 19:35:59 -1000115 return 0;
116}
117
118pure_initcall(ipc_ns_init);
119
Manfred Spraul239521f2014-01-27 17:07:04 -0800120void __init shm_init(void)
Linus Torvalds140d0b22011-08-04 19:35:59 -1000121{
Mike Waychison19b49462005-09-06 15:17:10 -0700122 ipc_init_proc_interface("sysvipc/shm",
Helge Dellerb7952182010-10-27 15:34:16 -0700123#if BITS_PER_LONG <= 32
124 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime rss swap\n",
125#else
126 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime rss swap\n",
127#endif
Kirill Korotaev4e982312006-10-02 02:18:22 -0700128 IPC_SHM_IDS, sysvipc_shm_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Davidlohr Bueso8b8d52a2013-09-11 14:26:15 -0700131static inline struct shmid_kernel *shm_obtain_object(struct ipc_namespace *ns, int id)
132{
Davidlohr Bueso55b7ae52015-06-30 14:58:42 -0700133 struct kern_ipc_perm *ipcp = ipc_obtain_object_idr(&shm_ids(ns), id);
Davidlohr Bueso8b8d52a2013-09-11 14:26:15 -0700134
135 if (IS_ERR(ipcp))
136 return ERR_CAST(ipcp);
137
138 return container_of(ipcp, struct shmid_kernel, shm_perm);
139}
140
141static inline struct shmid_kernel *shm_obtain_object_check(struct ipc_namespace *ns, int id)
142{
143 struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&shm_ids(ns), id);
144
145 if (IS_ERR(ipcp))
146 return ERR_CAST(ipcp);
147
148 return container_of(ipcp, struct shmid_kernel, shm_perm);
149}
150
Nadia Derbey3e148c72007-10-18 23:40:54 -0700151/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700152 * shm_lock_(check_) routines are called in the paths where the rwsem
Nadia Derbey00c2bf82008-07-25 01:48:03 -0700153 * is not necessarily held.
Nadia Derbey3e148c72007-10-18 23:40:54 -0700154 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700155static inline struct shmid_kernel *shm_lock(struct ipc_namespace *ns, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700157 struct kern_ipc_perm *ipcp = ipc_lock(&shm_ids(ns), id);
158
Davidlohr Buesoc5c89752015-06-30 14:58:36 -0700159 /*
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800160 * Callers of shm_lock() must validate the status of the returned ipc
161 * object pointer (as returned by ipc_lock()), and error out as
162 * appropriate.
Davidlohr Buesoc5c89752015-06-30 14:58:36 -0700163 */
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800164 if (IS_ERR(ipcp))
165 return (void *)ipcp;
Nadia Derbey03f02c72007-10-18 23:40:51 -0700166 return container_of(ipcp, struct shmid_kernel, shm_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700167}
168
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400169static inline void shm_lock_by_ptr(struct shmid_kernel *ipcp)
170{
171 rcu_read_lock();
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -0700172 ipc_lock_object(&ipcp->shm_perm);
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400173}
174
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700175static void shm_rcu_free(struct rcu_head *head)
176{
177 struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu);
178 struct shmid_kernel *shp = ipc_rcu_to_struct(p);
179
180 security_shm_free(shp);
181 ipc_rcu_free(head);
182}
183
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800184/*
185 * It has to be called with shp locked.
186 * It must be called before ipc_rmid()
187 */
188static inline void shm_clist_rm(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800190 struct task_struct *creator;
191
192 /* ensure that shm_creator does not disappear */
193 rcu_read_lock();
194
195 /*
196 * A concurrent exit_shm may do a list_del_init() as well.
197 * Just do nothing if exit_shm already did the work
198 */
199 if (!list_empty(&shp->shm_clist)) {
200 /*
201 * shp->shm_creator is guaranteed to be valid *only*
202 * if shp->shm_clist is not empty.
203 */
204 creator = shp->shm_creator;
205
206 task_lock(creator);
207 /*
208 * list_del_init() is a nop if the entry was already removed
209 * from the list.
210 */
211 list_del_init(&shp->shm_clist);
212 task_unlock(creator);
213 }
214 rcu_read_unlock();
215}
216
217static inline void shm_rmid(struct shmid_kernel *s)
218{
219 shm_clist_rm(s);
220 ipc_rmid(&shm_ids(s->ns), &s->shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800224static int __shm_open(struct vm_area_struct *vma)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700225{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800226 struct file *file = vma->vm_file;
227 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 struct shmid_kernel *shp;
229
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800230 shp = shm_lock(sfd->ns, sfd->id);
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800231
232 if (IS_ERR(shp))
233 return PTR_ERR(shp);
234
Eric Biggers570ef102018-04-13 15:35:30 -0700235 if (shp->shm_file != sfd->file) {
236 /* ID was reused */
237 shm_unlock(shp);
238 return -EINVAL;
239 }
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 shp->shm_atim = get_seconds();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700242 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 shp->shm_nattch++;
244 shm_unlock(shp);
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800245 return 0;
246}
247
248/* This is called by fork, once for every shm attach. */
249static void shm_open(struct vm_area_struct *vma)
250{
251 int err = __shm_open(vma);
252 /*
253 * We raced in the idr lookup or with shm_destroy().
254 * Either way, the ID is busted.
255 */
256 WARN_ON_ONCE(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/*
260 * shm_destroy - free the struct shmid_kernel
261 *
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700262 * @ns: namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 * @shp: struct to free
264 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700265 * It has to be called with shp and shm_ids.rwsem (writer) locked,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * but returns with shp unlocked and freed.
267 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700268static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Greg Thelena399b292013-11-21 14:32:00 -0800270 struct file *shm_file;
271
272 shm_file = shp->shm_file;
273 shp->shm_file = NULL;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700274 ns->shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800275 shm_rmid(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 shm_unlock(shp);
Greg Thelena399b292013-11-21 14:32:00 -0800277 if (!is_file_hugepages(shm_file))
278 shmem_lock(shm_file, 0, shp->mlock_user);
Hugh Dickins353d5c32009-08-24 16:30:28 +0100279 else if (shp->mlock_user)
Dave Hansen07a46ed2014-12-12 16:58:22 -0800280 user_shm_unlock(i_size_read(file_inode(shm_file)),
281 shp->mlock_user);
Greg Thelena399b292013-11-21 14:32:00 -0800282 fput(shm_file);
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700283 ipc_rcu_putref(shp, shm_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/*
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700287 * shm_may_destroy - identifies whether shm segment should be destroyed now
288 *
289 * Returns true if and only if there are no active users of the segment and
290 * one of the following is true:
291 *
292 * 1) shmctl(id, IPC_RMID, NULL) was called for this shp
293 *
294 * 2) sysctl kernel.shm_rmid_forced is set to 1.
295 */
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800296static bool shm_may_destroy(struct shmid_kernel *shp)
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700297{
298 return (shp->shm_nattch == 0) &&
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800299 (shp->ns->shm_rmid_forced ||
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700300 (shp->shm_perm.mode & SHM_DEST));
301}
302
303/*
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800304 * remove the attach descriptor vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * free memory for segment if it is marked destroyed.
306 * The descriptor has already been removed from the current->mm->mmap list
307 * and will later be kfree()d.
308 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800309static void shm_close(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Manfred Spraul239521f2014-01-27 17:07:04 -0800311 struct file *file = vma->vm_file;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800312 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct shmid_kernel *shp;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800314 struct ipc_namespace *ns = sfd->ns;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700315
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700316 down_write(&shm_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* remove from the list of attaches of the shm segment */
Nadia Derbey00c2bf82008-07-25 01:48:03 -0700318 shp = shm_lock(ns, sfd->id);
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800319
320 /*
321 * We raced in the idr lookup or with shm_destroy().
322 * Either way, the ID is busted.
323 */
324 if (WARN_ON_ONCE(IS_ERR(shp)))
325 goto done; /* no-op */
326
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700327 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 shp->shm_dtim = get_seconds();
329 shp->shm_nattch--;
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800330 if (shm_may_destroy(shp))
Kirill Korotaev4e982312006-10-02 02:18:22 -0700331 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 else
333 shm_unlock(shp);
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800334done:
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700335 up_write(&shm_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700338/* Called with ns->shm_ids(ns).rwsem locked */
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700339static int shm_try_destroy_orphaned(int id, void *p, void *data)
340{
341 struct ipc_namespace *ns = data;
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400342 struct kern_ipc_perm *ipcp = p;
343 struct shmid_kernel *shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700344
345 /*
346 * We want to destroy segments without users and with already
347 * exit'ed originating process.
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400348 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700349 * As shp->* are changed under rwsem, it's safe to skip shp locking.
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700350 */
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800351 if (!list_empty(&shp->shm_clist))
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700352 return 0;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700353
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800354 if (shm_may_destroy(shp)) {
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400355 shm_lock_by_ptr(shp);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700356 shm_destroy(ns, shp);
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400357 }
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700358 return 0;
359}
360
361void shm_destroy_orphaned(struct ipc_namespace *ns)
362{
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700363 down_write(&shm_ids(ns).rwsem);
Vasiliy Kulikov33a30ed2011-08-03 22:26:55 +0400364 if (shm_ids(ns).in_use)
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400365 idr_for_each(&shm_ids(ns).ipcs_idr, &shm_try_destroy_orphaned, ns);
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700366 up_write(&shm_ids(ns).rwsem);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700367}
368
Jack Miller83293c02014-08-08 14:23:21 -0700369/* Locking assumes this will only be called with task == current */
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700370void exit_shm(struct task_struct *task)
371{
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800372 for (;;) {
373 struct shmid_kernel *shp;
374 struct ipc_namespace *ns;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700375
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800376 task_lock(task);
Vasiliy Kulikov298507d2011-08-03 22:28:26 +0400377
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800378 if (list_empty(&task->sysvshm.shm_clist)) {
379 task_unlock(task);
380 break;
Jack Miller83293c02014-08-08 14:23:21 -0700381 }
Jack Miller83293c02014-08-08 14:23:21 -0700382
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800383 shp = list_first_entry(&task->sysvshm.shm_clist, struct shmid_kernel,
384 shm_clist);
385
386 /*
387 * 1) Get pointer to the ipc namespace. It is worth to say
388 * that this pointer is guaranteed to be valid because
389 * shp lifetime is always shorter than namespace lifetime
390 * in which shp lives.
391 * We taken task_lock it means that shp won't be freed.
392 */
393 ns = shp->ns;
394
395 /*
396 * 2) If kernel.shm_rmid_forced is not set then only keep track of
397 * which shmids are orphaned, so that a later set of the sysctl
398 * can clean them up.
399 */
400 if (!ns->shm_rmid_forced)
401 goto unlink_continue;
402
403 /*
404 * 3) get a reference to the namespace.
405 * The refcount could be already 0. If it is 0, then
406 * the shm objects will be free by free_ipc_work().
407 */
408 ns = get_ipc_ns_not_zero(ns);
409 if (!ns) {
410unlink_continue:
411 list_del_init(&shp->shm_clist);
412 task_unlock(task);
413 continue;
414 }
415
416 /*
417 * 4) get a reference to shp.
418 * This cannot fail: shm_clist_rm() is called before
419 * ipc_rmid(), thus the refcount cannot be 0.
420 */
421 WARN_ON(!ipc_rcu_getref(&shp->shm_perm));
422
423 /*
424 * 5) unlink the shm segment from the list of segments
425 * created by current.
426 * This must be done last. After unlinking,
427 * only the refcounts obtained above prevent IPC_RMID
428 * from destroying the segment or the namespace.
429 */
430 list_del_init(&shp->shm_clist);
431
432 task_unlock(task);
433
434 /*
435 * 6) we have all references
436 * Thus lock & if needed destroy shp.
437 */
438 down_write(&shm_ids(ns).rwsem);
439 shm_lock_by_ptr(shp);
440 /*
441 * rcu_read_lock was implicitly taken in shm_lock_by_ptr, it's
442 * safe to call ipc_rcu_putref here
443 */
444 ipc_rcu_putref(&shp->shm_perm, shm_rcu_free);
445
446 if (ipc_valid_object(&shp->shm_perm)) {
447 if (shm_may_destroy(shp))
448 shm_destroy(ns, shp);
449 else
450 shm_unlock(shp);
451 } else {
452 /*
453 * Someone else deleted the shp from namespace
454 * idr/kht while we have waited.
455 * Just unlock and continue.
456 */
457 shm_unlock(shp);
458 }
459
460 up_write(&shm_ids(ns).rwsem);
461 put_ipc_ns(ns); /* paired with get_ipc_ns_not_zero */
462 }
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700463}
464
Nick Piggind0217ac2007-07-19 01:47:03 -0700465static int shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800466{
467 struct file *file = vma->vm_file;
468 struct shm_file_data *sfd = shm_file_data(file);
469
Nick Piggind0217ac2007-07-19 01:47:03 -0700470 return sfd->vm_ops->fault(vma, vmf);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800471}
472
Mike Kravetz86c8c892018-03-28 16:01:01 -0700473static int shm_split(struct vm_area_struct *vma, unsigned long addr)
474{
475 struct file *file = vma->vm_file;
476 struct shm_file_data *sfd = shm_file_data(file);
477
478 if (sfd->vm_ops && sfd->vm_ops->split)
479 return sfd->vm_ops->split(vma, addr);
480
481 return 0;
482}
483
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800484#ifdef CONFIG_NUMA
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700485static int shm_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800486{
487 struct file *file = vma->vm_file;
488 struct shm_file_data *sfd = shm_file_data(file);
489 int err = 0;
490 if (sfd->vm_ops->set_policy)
491 err = sfd->vm_ops->set_policy(vma, new);
492 return err;
493}
494
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700495static struct mempolicy *shm_get_policy(struct vm_area_struct *vma,
496 unsigned long addr)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800497{
498 struct file *file = vma->vm_file;
499 struct shm_file_data *sfd = shm_file_data(file);
500 struct mempolicy *pol = NULL;
501
502 if (sfd->vm_ops->get_policy)
503 pol = sfd->vm_ops->get_policy(vma, addr);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700504 else if (vma->vm_policy)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800505 pol = vma->vm_policy;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700506
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800507 return pol;
508}
509#endif
510
Manfred Spraul239521f2014-01-27 17:07:04 -0800511static int shm_mmap(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800513 struct shm_file_data *sfd = shm_file_data(file);
David Howellsb0e15192006-01-06 00:11:42 -0800514 int ret;
515
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800516 /*
Eric Biggers570ef102018-04-13 15:35:30 -0700517 * In case of remap_file_pages() emulation, the file can represent an
518 * IPC ID that was removed, and possibly even reused by another shm
519 * segment already. Propagate this case as an error to caller.
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800520 */
521 ret =__shm_open(vma);
522 if (ret)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800523 return ret;
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800524
525 ret = sfd->file->f_op->mmap(sfd->file, vma);
526 if (ret) {
527 shm_close(vma);
528 return ret;
529 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800530 sfd->vm_ops = vma->vm_ops;
David Howells2e92a3b2007-07-31 00:37:24 -0700531#ifdef CONFIG_MMU
Davidlohr Buesod0edd852015-09-09 15:39:20 -0700532 WARN_ON(!sfd->vm_ops->fault);
David Howells2e92a3b2007-07-31 00:37:24 -0700533#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800534 vma->vm_ops = &shm_vm_ops;
Kirill A. Shutemov1ac0b6d2016-02-17 13:11:35 -0800535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Kirill Korotaev4e982312006-10-02 02:18:22 -0700538static int shm_release(struct inode *ino, struct file *file)
539{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800540 struct shm_file_data *sfd = shm_file_data(file);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700541
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800542 put_ipc_ns(sfd->ns);
Eric Biggers570ef102018-04-13 15:35:30 -0700543 fput(sfd->file);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800544 shm_file_data(file) = NULL;
545 kfree(sfd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700546 return 0;
547}
548
Josef Bacik02c24a82011-07-16 20:44:56 -0400549static int shm_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Adam Litke516dffd2007-03-01 15:46:08 -0800550{
Adam Litke516dffd2007-03-01 15:46:08 -0800551 struct shm_file_data *sfd = shm_file_data(file);
Adam Litke516dffd2007-03-01 15:46:08 -0800552
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200553 if (!sfd->file->f_op->fsync)
554 return -EINVAL;
Josef Bacik02c24a82011-07-16 20:44:56 -0400555 return sfd->file->f_op->fsync(sfd->file, start, end, datasync);
Adam Litke516dffd2007-03-01 15:46:08 -0800556}
557
Will Deacon7d8a4562012-06-07 14:21:13 -0700558static long shm_fallocate(struct file *file, int mode, loff_t offset,
559 loff_t len)
560{
561 struct shm_file_data *sfd = shm_file_data(file);
562
563 if (!sfd->file->f_op->fallocate)
564 return -EOPNOTSUPP;
565 return sfd->file->f_op->fallocate(file, mode, offset, len);
566}
567
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800568static unsigned long shm_get_unmapped_area(struct file *file,
569 unsigned long addr, unsigned long len, unsigned long pgoff,
570 unsigned long flags)
571{
572 struct shm_file_data *sfd = shm_file_data(file);
Al Viroc4caa772009-11-30 08:38:43 -0500573 return sfd->file->f_op->get_unmapped_area(sfd->file, addr, len,
574 pgoff, flags);
Adam Litke516dffd2007-03-01 15:46:08 -0800575}
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800576
Arjan van de Ven9a321442007-02-12 00:55:35 -0800577static const struct file_operations shm_file_operations = {
Kirill Korotaev4e982312006-10-02 02:18:22 -0700578 .mmap = shm_mmap,
Adam Litke516dffd2007-03-01 15:46:08 -0800579 .fsync = shm_fsync,
Kirill Korotaev4e982312006-10-02 02:18:22 -0700580 .release = shm_release,
David Howellsed5e5892010-01-15 17:01:32 -0800581 .get_unmapped_area = shm_get_unmapped_area,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200582 .llseek = noop_llseek,
Will Deacon7d8a4562012-06-07 14:21:13 -0700583 .fallocate = shm_fallocate,
Al Viroc4caa772009-11-30 08:38:43 -0500584};
585
Hugh Dickinsc01d5b32016-07-26 15:26:15 -0700586/*
587 * shm_file_operations_huge is now identical to shm_file_operations,
588 * but we keep it distinct for the sake of is_file_shm_hugepages().
589 */
Al Viroc4caa772009-11-30 08:38:43 -0500590static const struct file_operations shm_file_operations_huge = {
591 .mmap = shm_mmap,
592 .fsync = shm_fsync,
593 .release = shm_release,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800594 .get_unmapped_area = shm_get_unmapped_area,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200595 .llseek = noop_llseek,
Will Deacon7d8a4562012-06-07 14:21:13 -0700596 .fallocate = shm_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597};
598
Yaowei Bai2954e4402016-01-20 15:01:11 -0800599bool is_file_shm_hugepages(struct file *file)
Al Viroc4caa772009-11-30 08:38:43 -0500600{
601 return file->f_op == &shm_file_operations_huge;
602}
603
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400604static const struct vm_operations_struct shm_vm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 .open = shm_open, /* callback for a new vm-area open */
606 .close = shm_close, /* callback for when the vm-area is released */
Nick Piggin54cb8822007-07-19 01:46:59 -0700607 .fault = shm_fault,
Mike Kravetz86c8c892018-03-28 16:01:01 -0700608 .split = shm_split,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800609#if defined(CONFIG_NUMA)
610 .set_policy = shm_set_policy,
611 .get_policy = shm_get_policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612#endif
613};
614
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700615/**
616 * newseg - Create a new shared memory segment
617 * @ns: namespace
618 * @params: ptr to the structure that contains key, size and shmflg
619 *
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700620 * Called with shm_ids.rwsem held as a writer.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700621 */
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700622static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700624 key_t key = params->key;
625 int shmflg = params->flg;
626 size_t size = params->u.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 int error;
628 struct shmid_kernel *shp;
Robin Holtd69f3ba2013-04-30 19:15:54 -0700629 size_t numpages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Manfred Spraul239521f2014-01-27 17:07:04 -0800630 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 char name[13];
632 int id;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900633 vm_flags_t acctflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Kirill Korotaev4e982312006-10-02 02:18:22 -0700635 if (size < SHMMIN || size > ns->shm_ctlmax)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return -EINVAL;
637
Manfred Spraul13763272014-06-06 14:37:41 -0700638 if (numpages << PAGE_SHIFT < size)
639 return -ENOSPC;
640
Manfred Spraul09c6eb12014-06-06 14:37:40 -0700641 if (ns->shm_tot + numpages < ns->shm_tot ||
642 ns->shm_tot + numpages > ns->shm_ctlall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return -ENOSPC;
644
645 shp = ipc_rcu_alloc(sizeof(*shp));
646 if (!shp)
647 return -ENOMEM;
648
649 shp->shm_perm.key = key;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800650 shp->shm_perm.mode = (shmflg & S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 shp->mlock_user = NULL;
652
653 shp->shm_perm.security = NULL;
654 error = security_shm_alloc(shp);
655 if (error) {
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700656 ipc_rcu_putref(shp, ipc_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return error;
658 }
659
Manfred Spraul239521f2014-01-27 17:07:04 -0800660 sprintf(name, "SYSV%08x", key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (shmflg & SHM_HUGETLB) {
Andrew Mortonc103a4d2013-07-08 16:01:08 -0700662 struct hstate *hs;
Li Zefan091d0d52013-05-09 15:08:15 +0800663 size_t hugesize;
664
Andrew Mortonc103a4d2013-07-08 16:01:08 -0700665 hs = hstate_sizelog((shmflg >> SHM_HUGE_SHIFT) & SHM_HUGE_MASK);
Li Zefan091d0d52013-05-09 15:08:15 +0800666 if (!hs) {
667 error = -EINVAL;
668 goto no_file;
669 }
670 hugesize = ALIGN(size, huge_page_size(hs));
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -0700671
Mel Gorman5a6fe122009-02-10 14:02:27 +0000672 /* hugetlb_file_setup applies strict accounting */
673 if (shmflg & SHM_NORESERVE)
674 acctflag = VM_NORESERVE;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -0700675 file = hugetlb_file_setup(name, hugesize, acctflag,
Andi Kleen42d73952012-12-11 16:01:34 -0800676 &shp->mlock_user, HUGETLB_SHMFS_INODE,
677 (shmflg >> SHM_HUGE_SHIFT) & SHM_HUGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 } else {
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800679 /*
680 * Do not allow no accounting for OVERCOMMIT_NEVER, even
Manfred Spraul239521f2014-01-27 17:07:04 -0800681 * if it's asked for.
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800682 */
683 if ((shmflg & SHM_NORESERVE) &&
684 sysctl_overcommit_memory != OVERCOMMIT_NEVER)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -0800685 acctflag = VM_NORESERVE;
Stephen Smalleye1832f22015-08-06 15:46:55 -0700686 file = shmem_kernel_file_setup(name, size, acctflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688 error = PTR_ERR(file);
689 if (IS_ERR(file))
690 goto no_file;
691
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700692 shp->shm_cprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 shp->shm_lprid = 0;
694 shp->shm_atim = shp->shm_dtim = 0;
695 shp->shm_ctim = get_seconds();
696 shp->shm_segsz = size;
697 shp->shm_nattch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 shp->shm_file = file;
Vasiliy Kulikov5774ed02011-07-29 03:55:31 +0400699 shp->shm_creator = current;
Linus Torvaldsb9a53222015-09-30 12:48:40 -0400700
701 id = ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni);
702 if (id < 0) {
703 error = id;
704 goto no_id;
705 }
706
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800707 shp->ns = ns;
708
709 task_lock(current);
Jack Millerab602f72014-08-08 14:23:19 -0700710 list_add(&shp->shm_clist, &current->sysvshm.shm_clist);
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -0800711 task_unlock(current);
Davidlohr Buesodbfcd912013-07-08 16:01:09 -0700712
Badari Pulavarty30475cc2007-06-16 10:15:59 -0700713 /*
714 * shmid gets reported as "inode#" in /proc/pid/maps.
715 * proc-ps tools use this. Changing this will break them.
716 */
Al Viro496ad9a2013-01-23 17:07:38 -0500717 file_inode(file)->i_ino = shp->shm_perm.id;
Krishnakumar R551110a2005-10-29 18:16:45 -0700718
Kirill Korotaev4e982312006-10-02 02:18:22 -0700719 ns->shm_tot += numpages;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700720 error = shp->shm_perm.id;
Davidlohr Buesodbfcd912013-07-08 16:01:09 -0700721
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -0700722 ipc_unlock_object(&shp->shm_perm);
Davidlohr Buesodbfcd912013-07-08 16:01:09 -0700723 rcu_read_unlock();
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700724 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726no_id:
Hugh Dickins2195d282009-09-12 12:21:27 +0100727 if (is_file_hugepages(file) && shp->mlock_user)
Hugh Dickins353d5c32009-08-24 16:30:28 +0100728 user_shm_unlock(size, shp->mlock_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 fput(file);
730no_file:
Davidlohr Bueso53dad6d2013-09-23 17:04:45 -0700731 ipc_rcu_putref(shp, shm_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return error;
733}
734
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700735/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700736 * Called with shm_ids.rwsem and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700737 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700738static inline int shm_security(struct kern_ipc_perm *ipcp, int shmflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700739{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700740 struct shmid_kernel *shp;
741
742 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
743 return security_shm_associate(shp, shmflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700744}
745
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700746/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700747 * Called with shm_ids.rwsem and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700748 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700749static inline int shm_more_checks(struct kern_ipc_perm *ipcp,
750 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700751{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700752 struct shmid_kernel *shp;
753
754 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
755 if (shp->shm_segsz < params->u.size)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700756 return -EINVAL;
757
758 return 0;
759}
760
Heiko Carstensd5460c92009-01-14 14:14:27 +0100761SYSCALL_DEFINE3(shmget, key_t, key, size_t, size, int, shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700763 struct ipc_namespace *ns;
Mathias Krauseeb66ec42014-06-06 14:37:36 -0700764 static const struct ipc_ops shm_ops = {
765 .getnew = newseg,
766 .associate = shm_security,
767 .more_checks = shm_more_checks,
768 };
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700769 struct ipc_params shm_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Kirill Korotaev4e982312006-10-02 02:18:22 -0700771 ns = current->nsproxy->ipc_ns;
772
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700773 shm_params.key = key;
774 shm_params.flg = shmflg;
775 shm_params.u.size = size;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700776
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700777 return ipcget(ns, &shm_ids(ns), &shm_ops, &shm_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version)
781{
Manfred Spraul239521f2014-01-27 17:07:04 -0800782 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 case IPC_64:
784 return copy_to_user(buf, in, sizeof(*in));
785 case IPC_OLD:
786 {
787 struct shmid_ds out;
788
Vasiliy Kulikov3af54c92010-10-30 18:22:49 +0400789 memset(&out, 0, sizeof(out));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
791 out.shm_segsz = in->shm_segsz;
792 out.shm_atime = in->shm_atime;
793 out.shm_dtime = in->shm_dtime;
794 out.shm_ctime = in->shm_ctime;
795 out.shm_cpid = in->shm_cpid;
796 out.shm_lpid = in->shm_lpid;
797 out.shm_nattch = in->shm_nattch;
798
799 return copy_to_user(buf, &out, sizeof(out));
800 }
801 default:
802 return -EINVAL;
803 }
804}
805
Pierre Peiffer016d7132008-04-29 01:00:50 -0700806static inline unsigned long
807copy_shmid_from_user(struct shmid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Manfred Spraul239521f2014-01-27 17:07:04 -0800809 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700811 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 case IPC_OLD:
815 {
816 struct shmid_ds tbuf_old;
817
818 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
819 return -EFAULT;
820
Pierre Peiffer016d7132008-04-29 01:00:50 -0700821 out->shm_perm.uid = tbuf_old.shm_perm.uid;
822 out->shm_perm.gid = tbuf_old.shm_perm.gid;
823 out->shm_perm.mode = tbuf_old.shm_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 return 0;
826 }
827 default:
828 return -EINVAL;
829 }
830}
831
832static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version)
833{
Manfred Spraul239521f2014-01-27 17:07:04 -0800834 switch (version) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 case IPC_64:
836 return copy_to_user(buf, in, sizeof(*in));
837 case IPC_OLD:
838 {
839 struct shminfo out;
840
Manfred Spraul239521f2014-01-27 17:07:04 -0800841 if (in->shmmax > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 out.shmmax = INT_MAX;
843 else
844 out.shmmax = (int)in->shmmax;
845
846 out.shmmin = in->shmmin;
847 out.shmmni = in->shmmni;
848 out.shmseg = in->shmseg;
Paul McQuade46c0a8c2014-06-06 14:37:37 -0700849 out.shmall = in->shmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 return copy_to_user(buf, &out, sizeof(out));
852 }
853 default:
854 return -EINVAL;
855 }
856}
857
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700858/*
Helge Dellerb7952182010-10-27 15:34:16 -0700859 * Calculate and add used RSS and swap pages of a shm.
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700860 * Called with shm_ids.rwsem held as a reader
Helge Dellerb7952182010-10-27 15:34:16 -0700861 */
862static void shm_add_rss_swap(struct shmid_kernel *shp,
863 unsigned long *rss_add, unsigned long *swp_add)
864{
865 struct inode *inode;
866
Al Viro496ad9a2013-01-23 17:07:38 -0500867 inode = file_inode(shp->shm_file);
Helge Dellerb7952182010-10-27 15:34:16 -0700868
869 if (is_file_hugepages(shp->shm_file)) {
870 struct address_space *mapping = inode->i_mapping;
871 struct hstate *h = hstate_file(shp->shm_file);
872 *rss_add += pages_per_huge_page(h) * mapping->nrpages;
873 } else {
874#ifdef CONFIG_SHMEM
875 struct shmem_inode_info *info = SHMEM_I(inode);
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700876 spin_lock_irq(&info->lock);
Helge Dellerb7952182010-10-27 15:34:16 -0700877 *rss_add += inode->i_mapping->nrpages;
878 *swp_add += info->swapped;
Kirill A. Shutemov4595ef82016-07-26 15:26:29 -0700879 spin_unlock_irq(&info->lock);
Helge Dellerb7952182010-10-27 15:34:16 -0700880#else
881 *rss_add += inode->i_mapping->nrpages;
882#endif
883 }
884}
885
886/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700887 * Called with shm_ids.rwsem held as a reader
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700888 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700889static void shm_get_stat(struct ipc_namespace *ns, unsigned long *rss,
890 unsigned long *swp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700892 int next_id;
893 int total, in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 *rss = 0;
896 *swp = 0;
897
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700898 in_use = shm_ids(ns).in_use;
899
900 for (total = 0, next_id = 0; total < in_use; next_id++) {
Tony Battersbye562aeb2009-04-02 16:58:26 -0700901 struct kern_ipc_perm *ipc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Tony Battersbye562aeb2009-04-02 16:58:26 -0700904 ipc = idr_find(&shm_ids(ns).ipcs_idr, next_id);
905 if (ipc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 continue;
Tony Battersbye562aeb2009-04-02 16:58:26 -0700907 shp = container_of(ipc, struct shmid_kernel, shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Helge Dellerb7952182010-10-27 15:34:16 -0700909 shm_add_rss_swap(shp, rss, swp);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700910
911 total++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913}
914
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700915/*
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700916 * This function handles some shmctl commands which require the rwsem
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700917 * to be held in write mode.
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700918 * NOTE: no locks must be held, the rwsem is taken inside this function.
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700919 */
920static int shmctl_down(struct ipc_namespace *ns, int shmid, int cmd,
921 struct shmid_ds __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700923 struct kern_ipc_perm *ipcp;
Pierre Peiffer016d7132008-04-29 01:00:50 -0700924 struct shmid64_ds shmid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 struct shmid_kernel *shp;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700926 int err;
927
928 if (cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700929 if (copy_shmid_from_user(&shmid64, buf, version))
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700930 return -EFAULT;
931 }
932
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700933 down_write(&shm_ids(ns).rwsem);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700934 rcu_read_lock();
935
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700936 ipcp = ipcctl_pre_down_nolock(ns, &shm_ids(ns), shmid, cmd,
937 &shmid64.shm_perm, 0);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700938 if (IS_ERR(ipcp)) {
939 err = PTR_ERR(ipcp);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700940 goto out_unlock1;
941 }
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700942
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700943 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700944
945 err = security_shm_shmctl(shp, cmd);
946 if (err)
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700947 goto out_unlock1;
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700948
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700949 switch (cmd) {
950 case IPC_RMID:
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700951 ipc_lock_object(&shp->shm_perm);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700952 /* do_shm_rmid unlocks the ipc object and rcu */
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700953 do_shm_rmid(ns, ipcp);
954 goto out_up;
955 case IPC_SET:
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700956 ipc_lock_object(&shp->shm_perm);
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800957 err = ipc_update_perm(&shmid64.shm_perm, ipcp);
958 if (err)
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700959 goto out_unlock0;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700960 shp->shm_ctim = get_seconds();
961 break;
962 default:
963 err = -EINVAL;
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700964 goto out_unlock1;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700965 }
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700966
967out_unlock0:
968 ipc_unlock_object(&shp->shm_perm);
969out_unlock1:
970 rcu_read_unlock();
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700971out_up:
Davidlohr Buesod9a605e2013-09-11 14:26:24 -0700972 up_write(&shm_ids(ns).rwsem);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700973 return err;
974}
975
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700976static int shmctl_nolock(struct ipc_namespace *ns, int shmid,
977 int cmd, int version, void __user *buf)
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700978{
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700979 int err;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700980 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700982 /* preliminary security checks for *_INFO */
983 if (cmd == IPC_INFO || cmd == SHM_INFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 err = security_shm_shmctl(NULL, cmd);
985 if (err)
986 return err;
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700987 }
988
989 switch (cmd) {
990 case IPC_INFO:
991 {
992 struct shminfo64 shminfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
WANG Conge8148f72009-01-06 14:42:49 -0800994 memset(&shminfo, 0, sizeof(shminfo));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700995 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
996 shminfo.shmmax = ns->shm_ctlmax;
997 shminfo.shmall = ns->shm_ctlall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 shminfo.shmmin = SHMMIN;
Manfred Spraul239521f2014-01-27 17:07:04 -08001000 if (copy_shminfo_to_user(buf, &shminfo, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -EFAULT;
Nadia Derbeyf4566f02007-10-18 23:40:53 -07001002
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001003 down_read(&shm_ids(ns).rwsem);
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001004 err = ipc_get_maxid(&shm_ids(ns));
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001005 up_read(&shm_ids(ns).rwsem);
Nadia Derbeyf4566f02007-10-18 23:40:53 -07001006
Manfred Spraul239521f2014-01-27 17:07:04 -08001007 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 err = 0;
1009 goto out;
1010 }
1011 case SHM_INFO:
1012 {
1013 struct shm_info shm_info;
1014
WANG Conge8148f72009-01-06 14:42:49 -08001015 memset(&shm_info, 0, sizeof(shm_info));
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001016 down_read(&shm_ids(ns).rwsem);
Kirill Korotaev4e982312006-10-02 02:18:22 -07001017 shm_info.used_ids = shm_ids(ns).in_use;
Manfred Spraul239521f2014-01-27 17:07:04 -08001018 shm_get_stat(ns, &shm_info.shm_rss, &shm_info.shm_swp);
Kirill Korotaev4e982312006-10-02 02:18:22 -07001019 shm_info.shm_tot = ns->shm_tot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 shm_info.swap_attempts = 0;
1021 shm_info.swap_successes = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001022 err = ipc_get_maxid(&shm_ids(ns));
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001023 up_read(&shm_ids(ns).rwsem);
WANG Conge8148f72009-01-06 14:42:49 -08001024 if (copy_to_user(buf, &shm_info, sizeof(shm_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 err = -EFAULT;
1026 goto out;
1027 }
1028
1029 err = err < 0 ? 0 : err;
1030 goto out;
1031 }
1032 case SHM_STAT:
1033 case IPC_STAT:
1034 {
1035 struct shmid64_ds tbuf;
1036 int result;
Nadia Derbey023a5352007-10-18 23:40:51 -07001037
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001038 rcu_read_lock();
Nadia Derbey023a5352007-10-18 23:40:51 -07001039 if (cmd == SHM_STAT) {
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001040 shp = shm_obtain_object(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001041 if (IS_ERR(shp)) {
1042 err = PTR_ERR(shp);
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001043 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -07001044 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001045 result = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 } else {
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001047 shp = shm_obtain_object_check(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001048 if (IS_ERR(shp)) {
1049 err = PTR_ERR(shp);
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001050 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -07001051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 result = 0;
1053 }
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001054
WANG Conge8148f72009-01-06 14:42:49 -08001055 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001056 if (ipcperms(ns, &shp->shm_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 goto out_unlock;
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 err = security_shm_shmctl(shp, cmd);
1060 if (err)
1061 goto out_unlock;
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001062
Nadia Derbey023a5352007-10-18 23:40:51 -07001063 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
1065 tbuf.shm_segsz = shp->shm_segsz;
1066 tbuf.shm_atime = shp->shm_atim;
1067 tbuf.shm_dtime = shp->shm_dtim;
1068 tbuf.shm_ctime = shp->shm_ctim;
1069 tbuf.shm_cpid = shp->shm_cprid;
1070 tbuf.shm_lpid = shp->shm_lprid;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001071 tbuf.shm_nattch = shp->shm_nattch;
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001072 rcu_read_unlock();
1073
1074 if (copy_shmid_to_user(buf, &tbuf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 err = -EFAULT;
1076 else
1077 err = result;
1078 goto out;
1079 }
Davidlohr Bueso68eccc12013-09-11 14:26:18 -07001080 default:
1081 return -EINVAL;
1082 }
1083
1084out_unlock:
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -07001085 rcu_read_unlock();
Davidlohr Bueso68eccc12013-09-11 14:26:18 -07001086out:
1087 return err;
1088}
1089
1090SYSCALL_DEFINE3(shmctl, int, shmid, int, cmd, struct shmid_ds __user *, buf)
1091{
1092 struct shmid_kernel *shp;
1093 int err, version;
1094 struct ipc_namespace *ns;
1095
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001096 if (cmd < 0 || shmid < 0)
1097 return -EINVAL;
Davidlohr Bueso68eccc12013-09-11 14:26:18 -07001098
1099 version = ipc_parse_version(&cmd);
1100 ns = current->nsproxy->ipc_ns;
1101
1102 switch (cmd) {
1103 case IPC_INFO:
1104 case SHM_INFO:
1105 case SHM_STAT:
1106 case IPC_STAT:
1107 return shmctl_nolock(ns, shmid, cmd, version, buf);
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001108 case IPC_RMID:
1109 case IPC_SET:
1110 return shmctl_down(ns, shmid, cmd, buf, version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 case SHM_LOCK:
1112 case SHM_UNLOCK:
1113 {
Hugh Dickins850465792012-01-20 14:34:19 -08001114 struct file *shm_file;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07001115
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001116 rcu_read_lock();
1117 shp = shm_obtain_object_check(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001118 if (IS_ERR(shp)) {
1119 err = PTR_ERR(shp);
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001120 goto out_unlock1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Al Viroa33e6752008-12-10 03:40:06 -05001123 audit_ipc_obj(&(shp->shm_perm));
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001124 err = security_shm_shmctl(shp, cmd);
1125 if (err)
1126 goto out_unlock1;
Steve Grubb073115d2006-04-02 17:07:33 -04001127
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001128 ipc_lock_object(&shp->shm_perm);
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001129
1130 /* check if shm_destroy() is tearing down shp */
1131 if (!ipc_valid_object(&shp->shm_perm)) {
1132 err = -EIDRM;
1133 goto out_unlock0;
1134 }
1135
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001136 if (!ns_capable(ns->user_ns, CAP_IPC_LOCK)) {
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001137 kuid_t euid = current_euid();
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001138 if (!uid_eq(euid, shp->shm_perm.uid) &&
Jesper Nilsson3a726602013-11-21 14:32:08 -08001139 !uid_eq(euid, shp->shm_perm.cuid)) {
1140 err = -EPERM;
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001141 goto out_unlock0;
Jesper Nilsson3a726602013-11-21 14:32:08 -08001142 }
1143 if (cmd == SHM_LOCK && !rlimit(RLIMIT_MEMLOCK)) {
1144 err = -EPERM;
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001145 goto out_unlock0;
Jesper Nilsson3a726602013-11-21 14:32:08 -08001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
Hugh Dickins850465792012-01-20 14:34:19 -08001149 shm_file = shp->shm_file;
1150 if (is_file_hugepages(shm_file))
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001151 goto out_unlock0;
Hugh Dickins850465792012-01-20 14:34:19 -08001152
1153 if (cmd == SHM_LOCK) {
David Howells86a264a2008-11-14 10:39:18 +11001154 struct user_struct *user = current_user();
Hugh Dickins850465792012-01-20 14:34:19 -08001155 err = shmem_lock(shm_file, 1, user);
1156 if (!err && !(shp->shm_perm.mode & SHM_LOCKED)) {
1157 shp->shm_perm.mode |= SHM_LOCKED;
1158 shp->mlock_user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001160 goto out_unlock0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
Hugh Dickins850465792012-01-20 14:34:19 -08001162
1163 /* SHM_UNLOCK */
1164 if (!(shp->shm_perm.mode & SHM_LOCKED))
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001165 goto out_unlock0;
Hugh Dickins850465792012-01-20 14:34:19 -08001166 shmem_lock(shm_file, 0, shp->mlock_user);
1167 shp->shm_perm.mode &= ~SHM_LOCKED;
1168 shp->mlock_user = NULL;
1169 get_file(shm_file);
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001170 ipc_unlock_object(&shp->shm_perm);
1171 rcu_read_unlock();
Hugh Dickins24513262012-01-20 14:34:21 -08001172 shmem_unlock_mapping(shm_file->f_mapping);
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001173
Hugh Dickins850465792012-01-20 14:34:19 -08001174 fput(shm_file);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -07001175 return err;
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 default:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -07001178 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180
Davidlohr Bueso2caacaa2013-09-11 14:26:21 -07001181out_unlock0:
1182 ipc_unlock_object(&shp->shm_perm);
1183out_unlock1:
1184 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return err;
1186}
1187
1188/*
1189 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
1190 *
1191 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
1192 * "raddr" thing points to kernel space, and there has to be a wrapper around
1193 * this.
1194 */
Davidlohr Bueso270e84a2017-02-27 14:28:24 -08001195long do_shmat(int shmid, char __user *shmaddr, int shmflg,
1196 ulong *raddr, unsigned long shmlba)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
1198 struct shmid_kernel *shp;
1199 unsigned long addr;
1200 unsigned long size;
Manfred Spraul239521f2014-01-27 17:07:04 -08001201 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 int err;
1203 unsigned long flags;
1204 unsigned long prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 int acc_mode;
Kirill Korotaev4e982312006-10-02 02:18:22 -07001206 struct ipc_namespace *ns;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001207 struct shm_file_data *sfd;
1208 struct path path;
Al Viroaeb5d722008-09-02 15:28:45 -04001209 fmode_t f_mode;
Michel Lespinasse41badc12013-02-22 16:32:47 -08001210 unsigned long populate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001212 err = -EINVAL;
1213 if (shmid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001215 else if ((addr = (ulong)shmaddr)) {
Will Deacon079a96a2012-07-30 14:42:38 -07001216 if (addr & (shmlba - 1)) {
Davidlohr Bueso9c798bc2018-05-25 14:47:30 -07001217 if (shmflg & SHM_RND) {
Davidlohr Bueso2ef44a32018-05-25 14:47:27 -07001218 addr &= ~(shmlba - 1); /* round down */
Davidlohr Bueso9c798bc2018-05-25 14:47:30 -07001219
1220 /*
1221 * Ensure that the round-down is non-nil
1222 * when remapping. This can happen for
1223 * cases when addr < shmlba.
1224 */
1225 if (!addr && (shmflg & SHM_REMAP))
1226 goto out;
1227 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228#ifndef __ARCH_FORCE_SHMLBA
1229 if (addr & ~PAGE_MASK)
1230#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 flags = MAP_SHARED | MAP_FIXED;
1234 } else {
1235 if ((shmflg & SHM_REMAP))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001236 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 flags = MAP_SHARED;
1239 }
1240
1241 if (shmflg & SHM_RDONLY) {
1242 prot = PROT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 acc_mode = S_IRUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001244 f_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 } else {
1246 prot = PROT_READ | PROT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 acc_mode = S_IRUGO | S_IWUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001248 f_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 }
1250 if (shmflg & SHM_EXEC) {
1251 prot |= PROT_EXEC;
1252 acc_mode |= S_IXUGO;
1253 }
1254
1255 /*
1256 * We cannot rely on the fs check since SYSV IPC does have an
1257 * additional creator id...
1258 */
Kirill Korotaev4e982312006-10-02 02:18:22 -07001259 ns = current->nsproxy->ipc_ns;
Davidlohr Buesoc2c737a2013-09-11 14:26:23 -07001260 rcu_read_lock();
1261 shp = shm_obtain_object_check(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001262 if (IS_ERR(shp)) {
1263 err = PTR_ERR(shp);
Davidlohr Buesoc2c737a2013-09-11 14:26:23 -07001264 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -07001265 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001266
1267 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001268 if (ipcperms(ns, &shp->shm_perm, acc_mode))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001269 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 err = security_shm_shmat(shp, shmaddr, shmflg);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001272 if (err)
1273 goto out_unlock;
1274
Davidlohr Buesoc2c737a2013-09-11 14:26:23 -07001275 ipc_lock_object(&shp->shm_perm);
Greg Thelena399b292013-11-21 14:32:00 -08001276
1277 /* check if shm_destroy() is tearing down shp */
Rafael Aquini0f3d2b02014-01-27 17:07:01 -08001278 if (!ipc_valid_object(&shp->shm_perm)) {
Greg Thelena399b292013-11-21 14:32:00 -08001279 ipc_unlock_object(&shp->shm_perm);
1280 err = -EIDRM;
1281 goto out_unlock;
1282 }
1283
Al Viro2c48b9c2009-08-09 00:52:35 +04001284 path = shp->shm_file->f_path;
1285 path_get(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 shp->shm_nattch++;
David Howells75c3cfa2015-03-17 22:26:12 +00001287 size = i_size_read(d_inode(path.dentry));
Davidlohr Buesoc2c737a2013-09-11 14:26:23 -07001288 ipc_unlock_object(&shp->shm_perm);
1289 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001291 err = -ENOMEM;
1292 sfd = kzalloc(sizeof(*sfd), GFP_KERNEL);
Davidlohr Buesof42569b2013-09-11 14:26:22 -07001293 if (!sfd) {
1294 path_put(&path);
1295 goto out_nattch;
1296 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001297
Al Viro2c48b9c2009-08-09 00:52:35 +04001298 file = alloc_file(&path, f_mode,
1299 is_file_hugepages(shp->shm_file) ?
Al Viroc4caa772009-11-30 08:38:43 -05001300 &shm_file_operations_huge :
1301 &shm_file_operations);
Anatol Pomozov39b65252012-09-12 20:11:55 -07001302 err = PTR_ERR(file);
Davidlohr Buesof42569b2013-09-11 14:26:22 -07001303 if (IS_ERR(file)) {
1304 kfree(sfd);
1305 path_put(&path);
1306 goto out_nattch;
1307 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001308
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001309 file->private_data = sfd;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001310 file->f_mapping = shp->shm_file->f_mapping;
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001311 sfd->id = shp->shm_perm.id;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001312 sfd->ns = get_ipc_ns(ns);
Eric Biggers570ef102018-04-13 15:35:30 -07001313 /*
1314 * We need to take a reference to the real shm file to prevent the
1315 * pointer from becoming stale in cases where the lifetime of the outer
1316 * file extends beyond that of the shm segment. It's not usually
1317 * possible, but it can happen during remap_file_pages() emulation as
1318 * that unmaps the memory, then does ->mmap() via file reference only.
1319 * We'll deny the ->mmap() if the shm segment was since removed, but to
1320 * detect shm ID reuse we need to compare the file pointers.
1321 */
1322 sfd->file = get_file(shp->shm_file);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001323 sfd->vm_ops = NULL;
1324
Al Viro8b3ec682012-05-30 17:11:23 -04001325 err = security_mmap_file(file, prot, flags);
1326 if (err)
1327 goto out_fput;
1328
Michal Hocko91f4f942016-05-23 16:25:51 -07001329 if (down_write_killable(&current->mm->mmap_sem)) {
1330 err = -EINTR;
1331 goto out_fput;
1332 }
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (addr && !(shmflg & SHM_REMAP)) {
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001335 err = -EINVAL;
Manfred Spraul247a8ce2014-06-06 14:37:38 -07001336 if (addr + size < addr)
1337 goto invalid;
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 if (find_vma_intersection(current->mm, addr, addr + size))
1340 goto invalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Davidlohr Buesof42569b2013-09-11 14:26:22 -07001342
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001343 addr = do_mmap_pgoff(file, addr, size, prot, flags, 0, &populate);
1344 *raddr = addr;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001345 err = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001346 if (IS_ERR_VALUE(addr))
1347 err = (long)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348invalid:
1349 up_write(&current->mm->mmap_sem);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001350 if (populate)
Michel Lespinasse41badc12013-02-22 16:32:47 -08001351 mm_populate(addr, populate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Al Viro8b3ec682012-05-30 17:11:23 -04001353out_fput:
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001354 fput(file);
1355
1356out_nattch:
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001357 down_write(&shm_ids(ns).rwsem);
Nadia Derbey00c2bf82008-07-25 01:48:03 -07001358 shp = shm_lock(ns, shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 shp->shm_nattch--;
Alexander Mikhalitsyncc927c12021-11-19 16:43:21 -08001360
1361 if (shm_may_destroy(shp))
Kirill Korotaev4e982312006-10-02 02:18:22 -07001362 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 else
1364 shm_unlock(shp);
Davidlohr Buesod9a605e2013-09-11 14:26:24 -07001365 up_write(&shm_ids(ns).rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return err;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001367
1368out_unlock:
Davidlohr Buesoc2c737a2013-09-11 14:26:23 -07001369 rcu_read_unlock();
Davidlohr Buesof42569b2013-09-11 14:26:22 -07001370out:
1371 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
Heiko Carstensd5460c92009-01-14 14:14:27 +01001374SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg)
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001375{
1376 unsigned long ret;
1377 long err;
1378
Will Deacon079a96a2012-07-30 14:42:38 -07001379 err = do_shmat(shmid, shmaddr, shmflg, &ret, SHMLBA);
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001380 if (err)
1381 return err;
1382 force_successful_syscall_return();
1383 return (long)ret;
1384}
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386/*
1387 * detach and kill segment if marked destroyed.
1388 * The work is done in shm_close.
1389 */
Heiko Carstensd5460c92009-01-14 14:14:27 +01001390SYSCALL_DEFINE1(shmdt, char __user *, shmaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 struct mm_struct *mm = current->mm;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001393 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 unsigned long addr = (unsigned long)shmaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 int retval = -EINVAL;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001396#ifdef CONFIG_MMU
1397 loff_t size = 0;
Dave Hansend3c97902014-12-12 16:58:19 -08001398 struct file *file;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001399 struct vm_area_struct *next;
1400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Hugh Dickinsdf1e2fb2006-03-24 03:18:06 -08001402 if (addr & ~PAGE_MASK)
1403 return retval;
1404
Michal Hocko91f4f942016-05-23 16:25:51 -07001405 if (down_write_killable(&mm->mmap_sem))
1406 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /*
1409 * This function tries to be smart and unmap shm segments that
1410 * were modified by partial mlock or munmap calls:
1411 * - It first determines the size of the shm segment that should be
1412 * unmapped: It searches for a vma that is backed by shm and that
1413 * started at address shmaddr. It records it's size and then unmaps
1414 * it.
1415 * - Then it unmaps all shm vmas that started at shmaddr and that
Dave Hansend3c97902014-12-12 16:58:19 -08001416 * are within the initially determined size and that are from the
1417 * same shm segment from which we determined the size.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 * Errors from do_munmap are ignored: the function only fails if
1419 * it's called with invalid parameters or if it's called to unmap
1420 * a part of a vma. Both calls in this function are for full vmas,
1421 * the parameters are directly copied from the vma itself and always
1422 * valid - therefore do_munmap cannot fail. (famous last words?)
1423 */
1424 /*
1425 * If it had been mremap()'d, the starting address would not
1426 * match the usual checks anyway. So assume all vma's are
1427 * above the starting address given.
1428 */
1429 vma = find_vma(mm, addr);
1430
David Howells8feae132009-01-08 12:04:47 +00001431#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 while (vma) {
1433 next = vma->vm_next;
1434
1435 /*
1436 * Check if the starting address would match, i.e. it's
1437 * a fragment created by mprotect() and/or munmap(), or it
1438 * otherwise it starts at this address with no hassles.
1439 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001440 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
1442
Dave Hansend3c97902014-12-12 16:58:19 -08001443 /*
1444 * Record the file of the shm segment being
1445 * unmapped. With mremap(), someone could place
1446 * page from another segment but with equal offsets
1447 * in the range we are unmapping.
1448 */
1449 file = vma->vm_file;
Dave Hansen07a46ed2014-12-12 16:58:22 -08001450 size = i_size_read(file_inode(vma->vm_file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1452 /*
1453 * We discovered the size of the shm segment, so
1454 * break out of here and fall through to the next
1455 * loop that uses the size information to stop
1456 * searching for matching vma's.
1457 */
1458 retval = 0;
1459 vma = next;
1460 break;
1461 }
1462 vma = next;
1463 }
1464
1465 /*
1466 * We need look no further than the maximum address a fragment
1467 * could possibly have landed at. Also cast things to loff_t to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001468 * prevent overflows and make comparisons vs. equal-width types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 */
KAMEZAWA Hiroyuki8e367092006-02-10 01:51:12 -08001470 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
1472 next = vma->vm_next;
1473
1474 /* finding a matching vma now does not alter retval */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001475 if ((vma->vm_ops == &shm_vm_ops) &&
Dave Hansend3c97902014-12-12 16:58:19 -08001476 ((vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) &&
1477 (vma->vm_file == file))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1479 vma = next;
1480 }
1481
David Howells8feae132009-01-08 12:04:47 +00001482#else /* CONFIG_MMU */
1483 /* under NOMMU conditions, the exact address to be destroyed must be
1484 * given */
Davidlohr Bueso530fcd162013-09-11 14:26:28 -07001485 if (vma && vma->vm_start == addr && vma->vm_ops == &shm_vm_ops) {
David Howells8feae132009-01-08 12:04:47 +00001486 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1487 retval = 0;
1488 }
1489
1490#endif
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 up_write(&mm->mmap_sem);
1493 return retval;
1494}
1495
1496#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001497static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001499 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07001500 struct shmid_kernel *shp = it;
Helge Dellerb7952182010-10-27 15:34:16 -07001501 unsigned long rss = 0, swp = 0;
1502
1503 shm_add_rss_swap(shp, &rss, &swp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Paul Menage6c826812008-06-12 15:21:49 -07001505#if BITS_PER_LONG <= 32
1506#define SIZE_SPEC "%10lu"
1507#else
1508#define SIZE_SPEC "%21lu"
1509#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Joe Perches7f032d62015-04-15 16:17:54 -07001511 seq_printf(s,
1512 "%10d %10d %4o " SIZE_SPEC " %5u %5u "
1513 "%5lu %5u %5u %5u %5u %10lu %10lu %10lu "
1514 SIZE_SPEC " " SIZE_SPEC "\n",
1515 shp->shm_perm.key,
1516 shp->shm_perm.id,
1517 shp->shm_perm.mode,
1518 shp->shm_segsz,
1519 shp->shm_cprid,
1520 shp->shm_lprid,
1521 shp->shm_nattch,
1522 from_kuid_munged(user_ns, shp->shm_perm.uid),
1523 from_kgid_munged(user_ns, shp->shm_perm.gid),
1524 from_kuid_munged(user_ns, shp->shm_perm.cuid),
1525 from_kgid_munged(user_ns, shp->shm_perm.cgid),
1526 shp->shm_atim,
1527 shp->shm_dtim,
1528 shp->shm_ctim,
1529 rss * PAGE_SIZE,
1530 swp * PAGE_SIZE);
1531
1532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534#endif