blob: 216ae727a9360b695ac4b2bcf736429aa4d7f276 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/slab.h>
25#include <linux/mm.h>
26#include <linux/hugetlb.h>
27#include <linux/shm.h>
28#include <linux/init.h>
29#include <linux/file.h>
30#include <linux/mman.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/shmem_fs.h>
32#include <linux/security.h>
33#include <linux/syscalls.h>
34#include <linux/audit.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080035#include <linux/capability.h>
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -070036#include <linux/ptrace.h>
Mike Waychison19b49462005-09-06 15:17:10 -070037#include <linux/seq_file.h>
Nadia Derbey3e148c72007-10-18 23:40:54 -070038#include <linux/rwsem.h>
Kirill Korotaev4e982312006-10-02 02:18:22 -070039#include <linux/nsproxy.h>
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080040#include <linux/mount.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080041#include <linux/ipc_namespace.h>
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -070042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
44
45#include "util.h"
46
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080047struct shm_file_data {
48 int id;
49 struct ipc_namespace *ns;
50 struct file *file;
51 const struct vm_operations_struct *vm_ops;
52};
53
54#define shm_file_data(file) (*((struct shm_file_data **)&(file)->private_data))
55
Arjan van de Ven9a321442007-02-12 00:55:35 -080056static const struct file_operations shm_file_operations;
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +040057static const struct vm_operations_struct shm_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080059#define shm_ids(ns) ((ns)->ids[IPC_SHM_IDS])
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Kirill Korotaev4e982312006-10-02 02:18:22 -070061#define shm_unlock(shp) \
62 ipc_unlock(&(shp)->shm_perm)
Kirill Korotaev4e982312006-10-02 02:18:22 -070063
Nadia Derbey7748dbf2007-10-18 23:40:49 -070064static int newseg(struct ipc_namespace *, struct ipc_params *);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080065static void shm_open(struct vm_area_struct *vma);
66static void shm_close(struct vm_area_struct *vma);
Kirill Korotaev4e982312006-10-02 02:18:22 -070067static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -070069static int sysvipc_shm_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#endif
71
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080072void shm_init_ns(struct ipc_namespace *ns)
Kirill Korotaev4e982312006-10-02 02:18:22 -070073{
Kirill Korotaev4e982312006-10-02 02:18:22 -070074 ns->shm_ctlmax = SHMMAX;
75 ns->shm_ctlall = SHMALL;
76 ns->shm_ctlmni = SHMMNI;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -070077 ns->shm_rmid_forced = 0;
Kirill Korotaev4e982312006-10-02 02:18:22 -070078 ns->shm_tot = 0;
WANG Conge8148f72009-01-06 14:42:49 -080079 ipc_init_ids(&shm_ids(ns));
Kirill Korotaev4e982312006-10-02 02:18:22 -070080}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Nadia Derbeyf4566f02007-10-18 23:40:53 -070082/*
Nadia Derbey3e148c72007-10-18 23:40:54 -070083 * Called with shm_ids.rw_mutex (writer) and the shp structure locked.
84 * Only shm_ids.rw_mutex remains locked on exit.
Nadia Derbeyf4566f02007-10-18 23:40:53 -070085 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -080086static void do_shm_rmid(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Kirill Korotaev4e982312006-10-02 02:18:22 -070087{
Pierre Peiffer01b8b072008-02-08 04:18:57 -080088 struct shmid_kernel *shp;
89 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
90
Kirill Korotaev4e982312006-10-02 02:18:22 -070091 if (shp->shm_nattch){
92 shp->shm_perm.mode |= SHM_DEST;
93 /* Do not find it any more */
94 shp->shm_perm.key = IPC_PRIVATE;
95 shm_unlock(shp);
96 } else
97 shm_destroy(ns, shp);
98}
99
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800100#ifdef CONFIG_IPC_NS
Kirill Korotaev4e982312006-10-02 02:18:22 -0700101void shm_exit_ns(struct ipc_namespace *ns)
102{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800103 free_ipcs(ns, &shm_ids(ns), do_shm_rmid);
Serge E. Hallyn7d6feeb2009-12-15 16:47:27 -0800104 idr_destroy(&ns->ids[IPC_SHM_IDS].ipcs_idr);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700105}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Linus Torvalds140d0b22011-08-04 19:35:59 -1000108static int __init ipc_ns_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800110 shm_init_ns(&init_ipc_ns);
Linus Torvalds140d0b22011-08-04 19:35:59 -1000111 return 0;
112}
113
114pure_initcall(ipc_ns_init);
115
116void __init shm_init (void)
117{
Mike Waychison19b49462005-09-06 15:17:10 -0700118 ipc_init_proc_interface("sysvipc/shm",
Helge Dellerb7952182010-10-27 15:34:16 -0700119#if BITS_PER_LONG <= 32
120 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime rss swap\n",
121#else
122 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime rss swap\n",
123#endif
Kirill Korotaev4e982312006-10-02 02:18:22 -0700124 IPC_SHM_IDS, sysvipc_shm_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Davidlohr Bueso8b8d52a2013-09-11 14:26:15 -0700127static inline struct shmid_kernel *shm_obtain_object(struct ipc_namespace *ns, int id)
128{
129 struct kern_ipc_perm *ipcp = ipc_obtain_object(&shm_ids(ns), id);
130
131 if (IS_ERR(ipcp))
132 return ERR_CAST(ipcp);
133
134 return container_of(ipcp, struct shmid_kernel, shm_perm);
135}
136
137static inline struct shmid_kernel *shm_obtain_object_check(struct ipc_namespace *ns, int id)
138{
139 struct kern_ipc_perm *ipcp = ipc_obtain_object_check(&shm_ids(ns), id);
140
141 if (IS_ERR(ipcp))
142 return ERR_CAST(ipcp);
143
144 return container_of(ipcp, struct shmid_kernel, shm_perm);
145}
146
Nadia Derbey3e148c72007-10-18 23:40:54 -0700147/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700148 * shm_lock_(check_) routines are called in the paths where the rw_mutex
Nadia Derbey00c2bf82008-07-25 01:48:03 -0700149 * is not necessarily held.
Nadia Derbey3e148c72007-10-18 23:40:54 -0700150 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700151static inline struct shmid_kernel *shm_lock(struct ipc_namespace *ns, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700153 struct kern_ipc_perm *ipcp = ipc_lock(&shm_ids(ns), id);
154
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800155 if (IS_ERR(ipcp))
156 return (struct shmid_kernel *)ipcp;
157
Nadia Derbey03f02c72007-10-18 23:40:51 -0700158 return container_of(ipcp, struct shmid_kernel, shm_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700159}
160
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400161static inline void shm_lock_by_ptr(struct shmid_kernel *ipcp)
162{
163 rcu_read_lock();
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -0700164 ipc_lock_object(&ipcp->shm_perm);
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400165}
166
Nadia Derbey023a5352007-10-18 23:40:51 -0700167static inline struct shmid_kernel *shm_lock_check(struct ipc_namespace *ns,
168 int id)
169{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700170 struct kern_ipc_perm *ipcp = ipc_lock_check(&shm_ids(ns), id);
171
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800172 if (IS_ERR(ipcp))
173 return (struct shmid_kernel *)ipcp;
174
Nadia Derbey03f02c72007-10-18 23:40:51 -0700175 return container_of(ipcp, struct shmid_kernel, shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700178static inline void shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700180 ipc_rmid(&shm_ids(ns), &s->shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800184/* This is called by fork, once for every shm attach. */
185static void shm_open(struct vm_area_struct *vma)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700186{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800187 struct file *file = vma->vm_file;
188 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 struct shmid_kernel *shp;
190
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800191 shp = shm_lock(sfd->ns, sfd->id);
Nadia Derbey023a5352007-10-18 23:40:51 -0700192 BUG_ON(IS_ERR(shp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 shp->shm_atim = get_seconds();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700194 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 shp->shm_nattch++;
196 shm_unlock(shp);
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
200 * shm_destroy - free the struct shmid_kernel
201 *
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700202 * @ns: namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * @shp: struct to free
204 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700205 * It has to be called with shp and shm_ids.rw_mutex (writer) locked,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * but returns with shp unlocked and freed.
207 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700208static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700210 ns->shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700211 shm_rmid(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 shm_unlock(shp);
213 if (!is_file_hugepages(shp->shm_file))
214 shmem_lock(shp->shm_file, 0, shp->mlock_user);
Hugh Dickins353d5c32009-08-24 16:30:28 +0100215 else if (shp->mlock_user)
Al Viro496ad9a2013-01-23 17:07:38 -0500216 user_shm_unlock(file_inode(shp->shm_file)->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 shp->mlock_user);
218 fput (shp->shm_file);
219 security_shm_free(shp);
220 ipc_rcu_putref(shp);
221}
222
223/*
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700224 * shm_may_destroy - identifies whether shm segment should be destroyed now
225 *
226 * Returns true if and only if there are no active users of the segment and
227 * one of the following is true:
228 *
229 * 1) shmctl(id, IPC_RMID, NULL) was called for this shp
230 *
231 * 2) sysctl kernel.shm_rmid_forced is set to 1.
232 */
233static bool shm_may_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp)
234{
235 return (shp->shm_nattch == 0) &&
236 (ns->shm_rmid_forced ||
237 (shp->shm_perm.mode & SHM_DEST));
238}
239
240/*
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800241 * remove the attach descriptor vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * free memory for segment if it is marked destroyed.
243 * The descriptor has already been removed from the current->mm->mmap list
244 * and will later be kfree()d.
245 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800246static void shm_close(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800248 struct file * file = vma->vm_file;
249 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 struct shmid_kernel *shp;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800251 struct ipc_namespace *ns = sfd->ns;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700252
Nadia Derbey3e148c72007-10-18 23:40:54 -0700253 down_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* remove from the list of attaches of the shm segment */
Nadia Derbey00c2bf82008-07-25 01:48:03 -0700255 shp = shm_lock(ns, sfd->id);
Nadia Derbey023a5352007-10-18 23:40:51 -0700256 BUG_ON(IS_ERR(shp));
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700257 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 shp->shm_dtim = get_seconds();
259 shp->shm_nattch--;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700260 if (shm_may_destroy(ns, shp))
Kirill Korotaev4e982312006-10-02 02:18:22 -0700261 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 else
263 shm_unlock(shp);
Nadia Derbey3e148c72007-10-18 23:40:54 -0700264 up_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400267/* Called with ns->shm_ids(ns).rw_mutex locked */
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700268static int shm_try_destroy_current(int id, void *p, void *data)
269{
270 struct ipc_namespace *ns = data;
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400271 struct kern_ipc_perm *ipcp = p;
272 struct shmid_kernel *shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700273
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400274 if (shp->shm_creator != current)
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700275 return 0;
276
Vasiliy Kulikov5774ed02011-07-29 03:55:31 +0400277 /*
278 * Mark it as orphaned to destroy the segment when
279 * kernel.shm_rmid_forced is changed.
280 * It is noop if the following shm_may_destroy() returns true.
281 */
282 shp->shm_creator = NULL;
283
284 /*
285 * Don't even try to destroy it. If shm_rmid_forced=0 and IPC_RMID
286 * is not set, it shouldn't be deleted here.
287 */
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400288 if (!ns->shm_rmid_forced)
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700289 return 0;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700290
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400291 if (shm_may_destroy(ns, shp)) {
292 shm_lock_by_ptr(shp);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700293 shm_destroy(ns, shp);
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400294 }
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700295 return 0;
296}
297
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400298/* Called with ns->shm_ids(ns).rw_mutex locked */
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700299static int shm_try_destroy_orphaned(int id, void *p, void *data)
300{
301 struct ipc_namespace *ns = data;
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400302 struct kern_ipc_perm *ipcp = p;
303 struct shmid_kernel *shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700304
305 /*
306 * We want to destroy segments without users and with already
307 * exit'ed originating process.
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400308 *
309 * As shp->* are changed under rw_mutex, it's safe to skip shp locking.
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700310 */
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400311 if (shp->shm_creator != NULL)
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700312 return 0;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700313
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400314 if (shm_may_destroy(ns, shp)) {
315 shm_lock_by_ptr(shp);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700316 shm_destroy(ns, shp);
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400317 }
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700318 return 0;
319}
320
321void shm_destroy_orphaned(struct ipc_namespace *ns)
322{
323 down_write(&shm_ids(ns).rw_mutex);
Vasiliy Kulikov33a30ed2011-08-03 22:26:55 +0400324 if (shm_ids(ns).in_use)
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400325 idr_for_each(&shm_ids(ns).ipcs_idr, &shm_try_destroy_orphaned, ns);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700326 up_write(&shm_ids(ns).rw_mutex);
327}
328
329
330void exit_shm(struct task_struct *task)
331{
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400332 struct ipc_namespace *ns = task->nsproxy->ipc_ns;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700333
Vasiliy Kulikov298507d2011-08-03 22:28:26 +0400334 if (shm_ids(ns).in_use == 0)
335 return;
336
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700337 /* Destroy all already created segments, but not mapped yet */
338 down_write(&shm_ids(ns).rw_mutex);
Vasiliy Kulikov33a30ed2011-08-03 22:26:55 +0400339 if (shm_ids(ns).in_use)
Vasiliy Kulikov4c677e22011-07-29 03:56:40 +0400340 idr_for_each(&shm_ids(ns).ipcs_idr, &shm_try_destroy_current, ns);
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -0700341 up_write(&shm_ids(ns).rw_mutex);
342}
343
Nick Piggind0217ac2007-07-19 01:47:03 -0700344static int shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800345{
346 struct file *file = vma->vm_file;
347 struct shm_file_data *sfd = shm_file_data(file);
348
Nick Piggind0217ac2007-07-19 01:47:03 -0700349 return sfd->vm_ops->fault(vma, vmf);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800350}
351
352#ifdef CONFIG_NUMA
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700353static int shm_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800354{
355 struct file *file = vma->vm_file;
356 struct shm_file_data *sfd = shm_file_data(file);
357 int err = 0;
358 if (sfd->vm_ops->set_policy)
359 err = sfd->vm_ops->set_policy(vma, new);
360 return err;
361}
362
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700363static struct mempolicy *shm_get_policy(struct vm_area_struct *vma,
364 unsigned long addr)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800365{
366 struct file *file = vma->vm_file;
367 struct shm_file_data *sfd = shm_file_data(file);
368 struct mempolicy *pol = NULL;
369
370 if (sfd->vm_ops->get_policy)
371 pol = sfd->vm_ops->get_policy(vma, addr);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700372 else if (vma->vm_policy)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800373 pol = vma->vm_policy;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700374
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800375 return pol;
376}
377#endif
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379static int shm_mmap(struct file * file, struct vm_area_struct * vma)
380{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800381 struct shm_file_data *sfd = shm_file_data(file);
David Howellsb0e15192006-01-06 00:11:42 -0800382 int ret;
383
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800384 ret = sfd->file->f_op->mmap(sfd->file, vma);
385 if (ret != 0)
386 return ret;
387 sfd->vm_ops = vma->vm_ops;
David Howells2e92a3b2007-07-31 00:37:24 -0700388#ifdef CONFIG_MMU
Nick Piggin54cb8822007-07-19 01:46:59 -0700389 BUG_ON(!sfd->vm_ops->fault);
David Howells2e92a3b2007-07-31 00:37:24 -0700390#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800391 vma->vm_ops = &shm_vm_ops;
392 shm_open(vma);
David Howellsb0e15192006-01-06 00:11:42 -0800393
394 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Kirill Korotaev4e982312006-10-02 02:18:22 -0700397static int shm_release(struct inode *ino, struct file *file)
398{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800399 struct shm_file_data *sfd = shm_file_data(file);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700400
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800401 put_ipc_ns(sfd->ns);
402 shm_file_data(file) = NULL;
403 kfree(sfd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700404 return 0;
405}
406
Josef Bacik02c24a82011-07-16 20:44:56 -0400407static int shm_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Adam Litke516dffd2007-03-01 15:46:08 -0800408{
Adam Litke516dffd2007-03-01 15:46:08 -0800409 struct shm_file_data *sfd = shm_file_data(file);
Adam Litke516dffd2007-03-01 15:46:08 -0800410
Christoph Hellwig7ea80852010-05-26 17:53:25 +0200411 if (!sfd->file->f_op->fsync)
412 return -EINVAL;
Josef Bacik02c24a82011-07-16 20:44:56 -0400413 return sfd->file->f_op->fsync(sfd->file, start, end, datasync);
Adam Litke516dffd2007-03-01 15:46:08 -0800414}
415
Will Deacon7d8a4562012-06-07 14:21:13 -0700416static long shm_fallocate(struct file *file, int mode, loff_t offset,
417 loff_t len)
418{
419 struct shm_file_data *sfd = shm_file_data(file);
420
421 if (!sfd->file->f_op->fallocate)
422 return -EOPNOTSUPP;
423 return sfd->file->f_op->fallocate(file, mode, offset, len);
424}
425
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800426static unsigned long shm_get_unmapped_area(struct file *file,
427 unsigned long addr, unsigned long len, unsigned long pgoff,
428 unsigned long flags)
429{
430 struct shm_file_data *sfd = shm_file_data(file);
Al Viroc4caa772009-11-30 08:38:43 -0500431 return sfd->file->f_op->get_unmapped_area(sfd->file, addr, len,
432 pgoff, flags);
Adam Litke516dffd2007-03-01 15:46:08 -0800433}
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800434
Arjan van de Ven9a321442007-02-12 00:55:35 -0800435static const struct file_operations shm_file_operations = {
Kirill Korotaev4e982312006-10-02 02:18:22 -0700436 .mmap = shm_mmap,
Adam Litke516dffd2007-03-01 15:46:08 -0800437 .fsync = shm_fsync,
Kirill Korotaev4e982312006-10-02 02:18:22 -0700438 .release = shm_release,
David Howellsed5e5892010-01-15 17:01:32 -0800439#ifndef CONFIG_MMU
440 .get_unmapped_area = shm_get_unmapped_area,
441#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +0200442 .llseek = noop_llseek,
Will Deacon7d8a4562012-06-07 14:21:13 -0700443 .fallocate = shm_fallocate,
Al Viroc4caa772009-11-30 08:38:43 -0500444};
445
446static const struct file_operations shm_file_operations_huge = {
447 .mmap = shm_mmap,
448 .fsync = shm_fsync,
449 .release = shm_release,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800450 .get_unmapped_area = shm_get_unmapped_area,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200451 .llseek = noop_llseek,
Will Deacon7d8a4562012-06-07 14:21:13 -0700452 .fallocate = shm_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453};
454
Al Viroc4caa772009-11-30 08:38:43 -0500455int is_file_shm_hugepages(struct file *file)
456{
457 return file->f_op == &shm_file_operations_huge;
458}
459
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400460static const struct vm_operations_struct shm_vm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 .open = shm_open, /* callback for a new vm-area open */
462 .close = shm_close, /* callback for when the vm-area is released */
Nick Piggin54cb8822007-07-19 01:46:59 -0700463 .fault = shm_fault,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800464#if defined(CONFIG_NUMA)
465 .set_policy = shm_set_policy,
466 .get_policy = shm_get_policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467#endif
468};
469
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700470/**
471 * newseg - Create a new shared memory segment
472 * @ns: namespace
473 * @params: ptr to the structure that contains key, size and shmflg
474 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700475 * Called with shm_ids.rw_mutex held as a writer.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700476 */
477
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700478static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700480 key_t key = params->key;
481 int shmflg = params->flg;
482 size_t size = params->u.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 int error;
484 struct shmid_kernel *shp;
Robin Holtd69f3ba2013-04-30 19:15:54 -0700485 size_t numpages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 struct file * file;
487 char name[13];
488 int id;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900489 vm_flags_t acctflag = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Kirill Korotaev4e982312006-10-02 02:18:22 -0700491 if (size < SHMMIN || size > ns->shm_ctlmax)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -EINVAL;
493
Guy Streeterf66d45e2007-01-23 12:20:04 -0600494 if (ns->shm_tot + numpages > ns->shm_ctlall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return -ENOSPC;
496
497 shp = ipc_rcu_alloc(sizeof(*shp));
498 if (!shp)
499 return -ENOMEM;
500
501 shp->shm_perm.key = key;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800502 shp->shm_perm.mode = (shmflg & S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 shp->mlock_user = NULL;
504
505 shp->shm_perm.security = NULL;
506 error = security_shm_alloc(shp);
507 if (error) {
508 ipc_rcu_putref(shp);
509 return error;
510 }
511
Eric W. Biederman9d665862007-06-16 10:16:16 -0700512 sprintf (name, "SYSV%08x", key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (shmflg & SHM_HUGETLB) {
Andrew Mortonc103a4d2013-07-08 16:01:08 -0700514 struct hstate *hs;
Li Zefan091d0d52013-05-09 15:08:15 +0800515 size_t hugesize;
516
Andrew Mortonc103a4d2013-07-08 16:01:08 -0700517 hs = hstate_sizelog((shmflg >> SHM_HUGE_SHIFT) & SHM_HUGE_MASK);
Li Zefan091d0d52013-05-09 15:08:15 +0800518 if (!hs) {
519 error = -EINVAL;
520 goto no_file;
521 }
522 hugesize = ALIGN(size, huge_page_size(hs));
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -0700523
Mel Gorman5a6fe122009-02-10 14:02:27 +0000524 /* hugetlb_file_setup applies strict accounting */
525 if (shmflg & SHM_NORESERVE)
526 acctflag = VM_NORESERVE;
Naoya Horiguchiaf73e4d2013-05-07 16:18:13 -0700527 file = hugetlb_file_setup(name, hugesize, acctflag,
Andi Kleen42d73952012-12-11 16:01:34 -0800528 &shp->mlock_user, HUGETLB_SHMFS_INODE,
529 (shmflg >> SHM_HUGE_SHIFT) & SHM_HUGE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 } else {
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800531 /*
532 * Do not allow no accounting for OVERCOMMIT_NEVER, even
533 * if it's asked for.
534 */
535 if ((shmflg & SHM_NORESERVE) &&
536 sysctl_overcommit_memory != OVERCOMMIT_NEVER)
Linus Torvaldsfc8744a2009-01-31 15:08:56 -0800537 acctflag = VM_NORESERVE;
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800538 file = shmem_file_setup(name, size, acctflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 error = PTR_ERR(file);
541 if (IS_ERR(file))
542 goto no_file;
543
Pierre Peiffer48dea402008-04-29 01:00:35 -0700544 id = ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700545 if (id < 0) {
546 error = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 goto no_id;
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700550 shp->shm_cprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 shp->shm_lprid = 0;
552 shp->shm_atim = shp->shm_dtim = 0;
553 shp->shm_ctim = get_seconds();
554 shp->shm_segsz = size;
555 shp->shm_nattch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 shp->shm_file = file;
Vasiliy Kulikov5774ed02011-07-29 03:55:31 +0400557 shp->shm_creator = current;
Davidlohr Buesodbfcd912013-07-08 16:01:09 -0700558
Badari Pulavarty30475cc2007-06-16 10:15:59 -0700559 /*
560 * shmid gets reported as "inode#" in /proc/pid/maps.
561 * proc-ps tools use this. Changing this will break them.
562 */
Al Viro496ad9a2013-01-23 17:07:38 -0500563 file_inode(file)->i_ino = shp->shm_perm.id;
Krishnakumar R551110a2005-10-29 18:16:45 -0700564
Kirill Korotaev4e982312006-10-02 02:18:22 -0700565 ns->shm_tot += numpages;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700566 error = shp->shm_perm.id;
Davidlohr Buesodbfcd912013-07-08 16:01:09 -0700567
Davidlohr Buesocf9d5d72013-07-08 16:01:11 -0700568 ipc_unlock_object(&shp->shm_perm);
Davidlohr Buesodbfcd912013-07-08 16:01:09 -0700569 rcu_read_unlock();
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700570 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572no_id:
Hugh Dickins2195d282009-09-12 12:21:27 +0100573 if (is_file_hugepages(file) && shp->mlock_user)
Hugh Dickins353d5c32009-08-24 16:30:28 +0100574 user_shm_unlock(size, shp->mlock_user);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 fput(file);
576no_file:
577 security_shm_free(shp);
578 ipc_rcu_putref(shp);
579 return error;
580}
581
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700582/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700583 * Called with shm_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700584 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700585static inline int shm_security(struct kern_ipc_perm *ipcp, int shmflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700586{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700587 struct shmid_kernel *shp;
588
589 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
590 return security_shm_associate(shp, shmflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700591}
592
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700593/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700594 * Called with shm_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700595 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700596static inline int shm_more_checks(struct kern_ipc_perm *ipcp,
597 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700598{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700599 struct shmid_kernel *shp;
600
601 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
602 if (shp->shm_segsz < params->u.size)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700603 return -EINVAL;
604
605 return 0;
606}
607
Heiko Carstensd5460c92009-01-14 14:14:27 +0100608SYSCALL_DEFINE3(shmget, key_t, key, size_t, size, int, shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700610 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700611 struct ipc_ops shm_ops;
612 struct ipc_params shm_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Kirill Korotaev4e982312006-10-02 02:18:22 -0700614 ns = current->nsproxy->ipc_ns;
615
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700616 shm_ops.getnew = newseg;
617 shm_ops.associate = shm_security;
618 shm_ops.more_checks = shm_more_checks;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700619
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700620 shm_params.key = key;
621 shm_params.flg = shmflg;
622 shm_params.u.size = size;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700623
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700624 return ipcget(ns, &shm_ids(ns), &shm_ops, &shm_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version)
628{
629 switch(version) {
630 case IPC_64:
631 return copy_to_user(buf, in, sizeof(*in));
632 case IPC_OLD:
633 {
634 struct shmid_ds out;
635
Vasiliy Kulikov3af54c92010-10-30 18:22:49 +0400636 memset(&out, 0, sizeof(out));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
638 out.shm_segsz = in->shm_segsz;
639 out.shm_atime = in->shm_atime;
640 out.shm_dtime = in->shm_dtime;
641 out.shm_ctime = in->shm_ctime;
642 out.shm_cpid = in->shm_cpid;
643 out.shm_lpid = in->shm_lpid;
644 out.shm_nattch = in->shm_nattch;
645
646 return copy_to_user(buf, &out, sizeof(out));
647 }
648 default:
649 return -EINVAL;
650 }
651}
652
Pierre Peiffer016d7132008-04-29 01:00:50 -0700653static inline unsigned long
654copy_shmid_from_user(struct shmid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 switch(version) {
657 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700658 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 case IPC_OLD:
662 {
663 struct shmid_ds tbuf_old;
664
665 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
666 return -EFAULT;
667
Pierre Peiffer016d7132008-04-29 01:00:50 -0700668 out->shm_perm.uid = tbuf_old.shm_perm.uid;
669 out->shm_perm.gid = tbuf_old.shm_perm.gid;
670 out->shm_perm.mode = tbuf_old.shm_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 return 0;
673 }
674 default:
675 return -EINVAL;
676 }
677}
678
679static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version)
680{
681 switch(version) {
682 case IPC_64:
683 return copy_to_user(buf, in, sizeof(*in));
684 case IPC_OLD:
685 {
686 struct shminfo out;
687
688 if(in->shmmax > INT_MAX)
689 out.shmmax = INT_MAX;
690 else
691 out.shmmax = (int)in->shmmax;
692
693 out.shmmin = in->shmmin;
694 out.shmmni = in->shmmni;
695 out.shmseg = in->shmseg;
696 out.shmall = in->shmall;
697
698 return copy_to_user(buf, &out, sizeof(out));
699 }
700 default:
701 return -EINVAL;
702 }
703}
704
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700705/*
Helge Dellerb7952182010-10-27 15:34:16 -0700706 * Calculate and add used RSS and swap pages of a shm.
707 * Called with shm_ids.rw_mutex held as a reader
708 */
709static void shm_add_rss_swap(struct shmid_kernel *shp,
710 unsigned long *rss_add, unsigned long *swp_add)
711{
712 struct inode *inode;
713
Al Viro496ad9a2013-01-23 17:07:38 -0500714 inode = file_inode(shp->shm_file);
Helge Dellerb7952182010-10-27 15:34:16 -0700715
716 if (is_file_hugepages(shp->shm_file)) {
717 struct address_space *mapping = inode->i_mapping;
718 struct hstate *h = hstate_file(shp->shm_file);
719 *rss_add += pages_per_huge_page(h) * mapping->nrpages;
720 } else {
721#ifdef CONFIG_SHMEM
722 struct shmem_inode_info *info = SHMEM_I(inode);
723 spin_lock(&info->lock);
724 *rss_add += inode->i_mapping->nrpages;
725 *swp_add += info->swapped;
726 spin_unlock(&info->lock);
727#else
728 *rss_add += inode->i_mapping->nrpages;
729#endif
730 }
731}
732
733/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700734 * Called with shm_ids.rw_mutex held as a reader
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700735 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700736static void shm_get_stat(struct ipc_namespace *ns, unsigned long *rss,
737 unsigned long *swp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700739 int next_id;
740 int total, in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 *rss = 0;
743 *swp = 0;
744
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700745 in_use = shm_ids(ns).in_use;
746
747 for (total = 0, next_id = 0; total < in_use; next_id++) {
Tony Battersbye562aeb2009-04-02 16:58:26 -0700748 struct kern_ipc_perm *ipc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Tony Battersbye562aeb2009-04-02 16:58:26 -0700751 ipc = idr_find(&shm_ids(ns).ipcs_idr, next_id);
752 if (ipc == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 continue;
Tony Battersbye562aeb2009-04-02 16:58:26 -0700754 shp = container_of(ipc, struct shmid_kernel, shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Helge Dellerb7952182010-10-27 15:34:16 -0700756 shm_add_rss_swap(shp, rss, swp);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700757
758 total++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760}
761
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700762/*
763 * This function handles some shmctl commands which require the rw_mutex
764 * to be held in write mode.
765 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
766 */
767static int shmctl_down(struct ipc_namespace *ns, int shmid, int cmd,
768 struct shmid_ds __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700770 struct kern_ipc_perm *ipcp;
Pierre Peiffer016d7132008-04-29 01:00:50 -0700771 struct shmid64_ds shmid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 struct shmid_kernel *shp;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700773 int err;
774
775 if (cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700776 if (copy_shmid_from_user(&shmid64, buf, version))
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700777 return -EFAULT;
778 }
779
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700780 down_write(&shm_ids(ns).rw_mutex);
781 rcu_read_lock();
782
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700783 ipcp = ipcctl_pre_down(ns, &shm_ids(ns), shmid, cmd,
784 &shmid64.shm_perm, 0);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700785 if (IS_ERR(ipcp)) {
786 err = PTR_ERR(ipcp);
787 /* the ipc lock is not held upon failure */
788 goto out_unlock1;
789 }
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700790
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700791 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700792
793 err = security_shm_shmctl(shp, cmd);
794 if (err)
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700795 goto out_unlock0;
796
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700797 switch (cmd) {
798 case IPC_RMID:
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700799 /* do_shm_rmid unlocks the ipc object and rcu */
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700800 do_shm_rmid(ns, ipcp);
801 goto out_up;
802 case IPC_SET:
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800803 err = ipc_update_perm(&shmid64.shm_perm, ipcp);
804 if (err)
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700805 goto out_unlock0;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700806 shp->shm_ctim = get_seconds();
807 break;
808 default:
809 err = -EINVAL;
810 }
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700811
812out_unlock0:
813 ipc_unlock_object(&shp->shm_perm);
814out_unlock1:
815 rcu_read_unlock();
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700816out_up:
817 up_write(&shm_ids(ns).rw_mutex);
818 return err;
819}
820
Heiko Carstensd5460c92009-01-14 14:14:27 +0100821SYSCALL_DEFINE3(shmctl, int, shmid, int, cmd, struct shmid_ds __user *, buf)
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700822{
823 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 int err, version;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700825 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (cmd < 0 || shmid < 0) {
828 err = -EINVAL;
829 goto out;
830 }
831
832 version = ipc_parse_version(&cmd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700833 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 switch (cmd) { /* replace with proc interface ? */
836 case IPC_INFO:
837 {
838 struct shminfo64 shminfo;
839
840 err = security_shm_shmctl(NULL, cmd);
841 if (err)
842 return err;
843
WANG Conge8148f72009-01-06 14:42:49 -0800844 memset(&shminfo, 0, sizeof(shminfo));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700845 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
846 shminfo.shmmax = ns->shm_ctlmax;
847 shminfo.shmall = ns->shm_ctlall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 shminfo.shmmin = SHMMIN;
850 if(copy_shminfo_to_user (buf, &shminfo, version))
851 return -EFAULT;
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700852
Nadia Derbey3e148c72007-10-18 23:40:54 -0700853 down_read(&shm_ids(ns).rw_mutex);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700854 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700855 up_read(&shm_ids(ns).rw_mutex);
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if(err<0)
858 err = 0;
859 goto out;
860 }
861 case SHM_INFO:
862 {
863 struct shm_info shm_info;
864
865 err = security_shm_shmctl(NULL, cmd);
866 if (err)
867 return err;
868
WANG Conge8148f72009-01-06 14:42:49 -0800869 memset(&shm_info, 0, sizeof(shm_info));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700870 down_read(&shm_ids(ns).rw_mutex);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700871 shm_info.used_ids = shm_ids(ns).in_use;
872 shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp);
873 shm_info.shm_tot = ns->shm_tot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 shm_info.swap_attempts = 0;
875 shm_info.swap_successes = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700876 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700877 up_read(&shm_ids(ns).rw_mutex);
WANG Conge8148f72009-01-06 14:42:49 -0800878 if (copy_to_user(buf, &shm_info, sizeof(shm_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 err = -EFAULT;
880 goto out;
881 }
882
883 err = err < 0 ? 0 : err;
884 goto out;
885 }
886 case SHM_STAT:
887 case IPC_STAT:
888 {
889 struct shmid64_ds tbuf;
890 int result;
Nadia Derbey023a5352007-10-18 23:40:51 -0700891
Nadia Derbey023a5352007-10-18 23:40:51 -0700892 if (cmd == SHM_STAT) {
893 shp = shm_lock(ns, shmid);
894 if (IS_ERR(shp)) {
895 err = PTR_ERR(shp);
896 goto out;
897 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700898 result = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 } else {
Nadia Derbey023a5352007-10-18 23:40:51 -0700900 shp = shm_lock_check(ns, shmid);
901 if (IS_ERR(shp)) {
902 err = PTR_ERR(shp);
903 goto out;
904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 result = 0;
906 }
WANG Conge8148f72009-01-06 14:42:49 -0800907 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700908 if (ipcperms(ns, &shp->shm_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 goto out_unlock;
910 err = security_shm_shmctl(shp, cmd);
911 if (err)
912 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -0700913 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
915 tbuf.shm_segsz = shp->shm_segsz;
916 tbuf.shm_atime = shp->shm_atim;
917 tbuf.shm_dtime = shp->shm_dtim;
918 tbuf.shm_ctime = shp->shm_ctim;
919 tbuf.shm_cpid = shp->shm_cprid;
920 tbuf.shm_lpid = shp->shm_lprid;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800921 tbuf.shm_nattch = shp->shm_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 shm_unlock(shp);
923 if(copy_shmid_to_user (buf, &tbuf, version))
924 err = -EFAULT;
925 else
926 err = result;
927 goto out;
928 }
929 case SHM_LOCK:
930 case SHM_UNLOCK:
931 {
Hugh Dickins850465792012-01-20 14:34:19 -0800932 struct file *shm_file;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -0700933
Nadia Derbey023a5352007-10-18 23:40:51 -0700934 shp = shm_lock_check(ns, shmid);
935 if (IS_ERR(shp)) {
936 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 goto out;
938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Al Viroa33e6752008-12-10 03:40:06 -0500940 audit_ipc_obj(&(shp->shm_perm));
Steve Grubb073115d2006-04-02 17:07:33 -0400941
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700942 if (!ns_capable(ns->user_ns, CAP_IPC_LOCK)) {
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800943 kuid_t euid = current_euid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 err = -EPERM;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800945 if (!uid_eq(euid, shp->shm_perm.uid) &&
946 !uid_eq(euid, shp->shm_perm.cuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 goto out_unlock;
Jiri Slabyf1eb1332010-03-10 15:23:05 -0800948 if (cmd == SHM_LOCK && !rlimit(RLIMIT_MEMLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 goto out_unlock;
950 }
951
952 err = security_shm_shmctl(shp, cmd);
953 if (err)
954 goto out_unlock;
Hugh Dickins850465792012-01-20 14:34:19 -0800955
956 shm_file = shp->shm_file;
957 if (is_file_hugepages(shm_file))
958 goto out_unlock;
959
960 if (cmd == SHM_LOCK) {
David Howells86a264a2008-11-14 10:39:18 +1100961 struct user_struct *user = current_user();
Hugh Dickins850465792012-01-20 14:34:19 -0800962 err = shmem_lock(shm_file, 1, user);
963 if (!err && !(shp->shm_perm.mode & SHM_LOCKED)) {
964 shp->shm_perm.mode |= SHM_LOCKED;
965 shp->mlock_user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Hugh Dickins850465792012-01-20 14:34:19 -0800967 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
Hugh Dickins850465792012-01-20 14:34:19 -0800969
970 /* SHM_UNLOCK */
971 if (!(shp->shm_perm.mode & SHM_LOCKED))
972 goto out_unlock;
973 shmem_lock(shm_file, 0, shp->mlock_user);
974 shp->shm_perm.mode &= ~SHM_LOCKED;
975 shp->mlock_user = NULL;
976 get_file(shm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 shm_unlock(shp);
Hugh Dickins24513262012-01-20 14:34:21 -0800978 shmem_unlock_mapping(shm_file->f_mapping);
Hugh Dickins850465792012-01-20 14:34:19 -0800979 fput(shm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 goto out;
981 }
982 case IPC_RMID:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 case IPC_SET:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700984 err = shmctl_down(ns, shmid, cmd, buf, version);
985 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 default:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700987 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990out_unlock:
991 shm_unlock(shp);
992out:
993 return err;
994}
995
996/*
997 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
998 *
999 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
1000 * "raddr" thing points to kernel space, and there has to be a wrapper around
1001 * this.
1002 */
Will Deacon079a96a2012-07-30 14:42:38 -07001003long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr,
1004 unsigned long shmlba)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 struct shmid_kernel *shp;
1007 unsigned long addr;
1008 unsigned long size;
1009 struct file * file;
1010 int err;
1011 unsigned long flags;
1012 unsigned long prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 int acc_mode;
Kirill Korotaev4e982312006-10-02 02:18:22 -07001014 struct ipc_namespace *ns;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001015 struct shm_file_data *sfd;
1016 struct path path;
Al Viroaeb5d722008-09-02 15:28:45 -04001017 fmode_t f_mode;
Michel Lespinasse41badc12013-02-22 16:32:47 -08001018 unsigned long populate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001020 err = -EINVAL;
1021 if (shmid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001023 else if ((addr = (ulong)shmaddr)) {
Will Deacon079a96a2012-07-30 14:42:38 -07001024 if (addr & (shmlba - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (shmflg & SHM_RND)
Will Deacon079a96a2012-07-30 14:42:38 -07001026 addr &= ~(shmlba - 1); /* round down */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 else
1028#ifndef __ARCH_FORCE_SHMLBA
1029 if (addr & ~PAGE_MASK)
1030#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001031 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033 flags = MAP_SHARED | MAP_FIXED;
1034 } else {
1035 if ((shmflg & SHM_REMAP))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001036 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 flags = MAP_SHARED;
1039 }
1040
1041 if (shmflg & SHM_RDONLY) {
1042 prot = PROT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 acc_mode = S_IRUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001044 f_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 } else {
1046 prot = PROT_READ | PROT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 acc_mode = S_IRUGO | S_IWUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001048 f_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050 if (shmflg & SHM_EXEC) {
1051 prot |= PROT_EXEC;
1052 acc_mode |= S_IXUGO;
1053 }
1054
1055 /*
1056 * We cannot rely on the fs check since SYSV IPC does have an
1057 * additional creator id...
1058 */
Kirill Korotaev4e982312006-10-02 02:18:22 -07001059 ns = current->nsproxy->ipc_ns;
Nadia Derbey023a5352007-10-18 23:40:51 -07001060 shp = shm_lock_check(ns, shmid);
1061 if (IS_ERR(shp)) {
1062 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 goto out;
Nadia Derbey023a5352007-10-18 23:40:51 -07001064 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001065
1066 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001067 if (ipcperms(ns, &shp->shm_perm, acc_mode))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001068 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 err = security_shm_shmat(shp, shmaddr, shmflg);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001071 if (err)
1072 goto out_unlock;
1073
Al Viro2c48b9c2009-08-09 00:52:35 +04001074 path = shp->shm_file->f_path;
1075 path_get(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 shp->shm_nattch++;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001077 size = i_size_read(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 shm_unlock(shp);
1079
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001080 err = -ENOMEM;
1081 sfd = kzalloc(sizeof(*sfd), GFP_KERNEL);
1082 if (!sfd)
Dave Hansence8d2cd2007-10-16 23:31:13 -07001083 goto out_put_dentry;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001084
Al Viro2c48b9c2009-08-09 00:52:35 +04001085 file = alloc_file(&path, f_mode,
1086 is_file_hugepages(shp->shm_file) ?
Al Viroc4caa772009-11-30 08:38:43 -05001087 &shm_file_operations_huge :
1088 &shm_file_operations);
Anatol Pomozov39b65252012-09-12 20:11:55 -07001089 err = PTR_ERR(file);
1090 if (IS_ERR(file))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001091 goto out_free;
1092
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001093 file->private_data = sfd;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001094 file->f_mapping = shp->shm_file->f_mapping;
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001095 sfd->id = shp->shm_perm.id;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001096 sfd->ns = get_ipc_ns(ns);
1097 sfd->file = shp->shm_file;
1098 sfd->vm_ops = NULL;
1099
Al Viro8b3ec682012-05-30 17:11:23 -04001100 err = security_mmap_file(file, prot, flags);
1101 if (err)
1102 goto out_fput;
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 down_write(&current->mm->mmap_sem);
1105 if (addr && !(shmflg & SHM_REMAP)) {
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001106 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (find_vma_intersection(current->mm, addr, addr + size))
1108 goto invalid;
1109 /*
1110 * If shm segment goes below stack, make sure there is some
1111 * space left for the stack to grow (at least 4 pages).
1112 */
1113 if (addr < current->mm->start_stack &&
1114 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
1115 goto invalid;
1116 }
1117
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001118 addr = do_mmap_pgoff(file, addr, size, prot, flags, 0, &populate);
1119 *raddr = addr;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001120 err = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001121 if (IS_ERR_VALUE(addr))
1122 err = (long)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123invalid:
1124 up_write(&current->mm->mmap_sem);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001125 if (populate)
Michel Lespinasse41badc12013-02-22 16:32:47 -08001126 mm_populate(addr, populate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Al Viro8b3ec682012-05-30 17:11:23 -04001128out_fput:
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001129 fput(file);
1130
1131out_nattch:
Nadia Derbey3e148c72007-10-18 23:40:54 -07001132 down_write(&shm_ids(ns).rw_mutex);
Nadia Derbey00c2bf82008-07-25 01:48:03 -07001133 shp = shm_lock(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001134 BUG_ON(IS_ERR(shp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 shp->shm_nattch--;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -07001136 if (shm_may_destroy(ns, shp))
Kirill Korotaev4e982312006-10-02 02:18:22 -07001137 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 else
1139 shm_unlock(shp);
Nadia Derbey3e148c72007-10-18 23:40:54 -07001140 up_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142out:
1143 return err;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001144
1145out_unlock:
1146 shm_unlock(shp);
1147 goto out;
1148
1149out_free:
1150 kfree(sfd);
Dave Hansence8d2cd2007-10-16 23:31:13 -07001151out_put_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04001152 path_put(&path);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001153 goto out_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
Heiko Carstensd5460c92009-01-14 14:14:27 +01001156SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg)
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001157{
1158 unsigned long ret;
1159 long err;
1160
Will Deacon079a96a2012-07-30 14:42:38 -07001161 err = do_shmat(shmid, shmaddr, shmflg, &ret, SHMLBA);
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001162 if (err)
1163 return err;
1164 force_successful_syscall_return();
1165 return (long)ret;
1166}
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168/*
1169 * detach and kill segment if marked destroyed.
1170 * The work is done in shm_close.
1171 */
Heiko Carstensd5460c92009-01-14 14:14:27 +01001172SYSCALL_DEFINE1(shmdt, char __user *, shmaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 struct mm_struct *mm = current->mm;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001175 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 unsigned long addr = (unsigned long)shmaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 int retval = -EINVAL;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001178#ifdef CONFIG_MMU
1179 loff_t size = 0;
1180 struct vm_area_struct *next;
1181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Hugh Dickinsdf1e2fb2006-03-24 03:18:06 -08001183 if (addr & ~PAGE_MASK)
1184 return retval;
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 down_write(&mm->mmap_sem);
1187
1188 /*
1189 * This function tries to be smart and unmap shm segments that
1190 * were modified by partial mlock or munmap calls:
1191 * - It first determines the size of the shm segment that should be
1192 * unmapped: It searches for a vma that is backed by shm and that
1193 * started at address shmaddr. It records it's size and then unmaps
1194 * it.
1195 * - Then it unmaps all shm vmas that started at shmaddr and that
1196 * are within the initially determined size.
1197 * Errors from do_munmap are ignored: the function only fails if
1198 * it's called with invalid parameters or if it's called to unmap
1199 * a part of a vma. Both calls in this function are for full vmas,
1200 * the parameters are directly copied from the vma itself and always
1201 * valid - therefore do_munmap cannot fail. (famous last words?)
1202 */
1203 /*
1204 * If it had been mremap()'d, the starting address would not
1205 * match the usual checks anyway. So assume all vma's are
1206 * above the starting address given.
1207 */
1208 vma = find_vma(mm, addr);
1209
David Howells8feae132009-01-08 12:04:47 +00001210#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 while (vma) {
1212 next = vma->vm_next;
1213
1214 /*
1215 * Check if the starting address would match, i.e. it's
1216 * a fragment created by mprotect() and/or munmap(), or it
1217 * otherwise it starts at this address with no hassles.
1218 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001219 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
1221
1222
Al Viro496ad9a2013-01-23 17:07:38 -05001223 size = file_inode(vma->vm_file)->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1225 /*
1226 * We discovered the size of the shm segment, so
1227 * break out of here and fall through to the next
1228 * loop that uses the size information to stop
1229 * searching for matching vma's.
1230 */
1231 retval = 0;
1232 vma = next;
1233 break;
1234 }
1235 vma = next;
1236 }
1237
1238 /*
1239 * We need look no further than the maximum address a fragment
1240 * could possibly have landed at. Also cast things to loff_t to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001241 * prevent overflows and make comparisons vs. equal-width types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 */
KAMEZAWA Hiroyuki8e367092006-02-10 01:51:12 -08001243 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
1245 next = vma->vm_next;
1246
1247 /* finding a matching vma now does not alter retval */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001248 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
1250
1251 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1252 vma = next;
1253 }
1254
David Howells8feae132009-01-08 12:04:47 +00001255#else /* CONFIG_MMU */
1256 /* under NOMMU conditions, the exact address to be destroyed must be
1257 * given */
1258 retval = -EINVAL;
1259 if (vma->vm_start == addr && vma->vm_ops == &shm_vm_ops) {
1260 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1261 retval = 0;
1262 }
1263
1264#endif
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 up_write(&mm->mmap_sem);
1267 return retval;
1268}
1269
1270#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001271static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001273 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07001274 struct shmid_kernel *shp = it;
Helge Dellerb7952182010-10-27 15:34:16 -07001275 unsigned long rss = 0, swp = 0;
1276
1277 shm_add_rss_swap(shp, &rss, &swp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Paul Menage6c826812008-06-12 15:21:49 -07001279#if BITS_PER_LONG <= 32
1280#define SIZE_SPEC "%10lu"
1281#else
1282#define SIZE_SPEC "%21lu"
1283#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Paul Menage6c826812008-06-12 15:21:49 -07001285 return seq_printf(s,
1286 "%10d %10d %4o " SIZE_SPEC " %5u %5u "
Helge Dellerb7952182010-10-27 15:34:16 -07001287 "%5lu %5u %5u %5u %5u %10lu %10lu %10lu "
1288 SIZE_SPEC " " SIZE_SPEC "\n",
Mike Waychison19b49462005-09-06 15:17:10 -07001289 shp->shm_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001290 shp->shm_perm.id,
Andrew Mortonb33291c2006-01-08 01:02:21 -08001291 shp->shm_perm.mode,
Mike Waychison19b49462005-09-06 15:17:10 -07001292 shp->shm_segsz,
1293 shp->shm_cprid,
1294 shp->shm_lprid,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001295 shp->shm_nattch,
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001296 from_kuid_munged(user_ns, shp->shm_perm.uid),
1297 from_kgid_munged(user_ns, shp->shm_perm.gid),
1298 from_kuid_munged(user_ns, shp->shm_perm.cuid),
1299 from_kgid_munged(user_ns, shp->shm_perm.cgid),
Mike Waychison19b49462005-09-06 15:17:10 -07001300 shp->shm_atim,
1301 shp->shm_dtim,
Helge Dellerb7952182010-10-27 15:34:16 -07001302 shp->shm_ctim,
1303 rss * PAGE_SIZE,
1304 swp * PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305}
1306#endif