blob: a493639550d93111c477b66dd9315b6cc5a66b60 [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
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700783 ipcp = ipcctl_pre_down_nolock(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);
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700787 goto out_unlock1;
788 }
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700789
Pierre Peiffera5f75e72008-04-29 01:00:54 -0700790 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700791
792 err = security_shm_shmctl(shp, cmd);
793 if (err)
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700794 goto out_unlock1;
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700795
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700796 switch (cmd) {
797 case IPC_RMID:
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700798 ipc_lock_object(&shp->shm_perm);
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:
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700803 ipc_lock_object(&shp->shm_perm);
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800804 err = ipc_update_perm(&shmid64.shm_perm, ipcp);
805 if (err)
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700806 goto out_unlock0;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700807 shp->shm_ctim = get_seconds();
808 break;
809 default:
810 err = -EINVAL;
Davidlohr Bueso79ccf0f2013-09-11 14:26:16 -0700811 goto out_unlock1;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700812 }
Davidlohr Bueso7b4cc5d2013-07-08 16:01:12 -0700813
814out_unlock0:
815 ipc_unlock_object(&shp->shm_perm);
816out_unlock1:
817 rcu_read_unlock();
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700818out_up:
819 up_write(&shm_ids(ns).rw_mutex);
820 return err;
821}
822
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700823static int shmctl_nolock(struct ipc_namespace *ns, int shmid,
824 int cmd, int version, void __user *buf)
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700825{
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700826 int err;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700827 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700829 /* preliminary security checks for *_INFO */
830 if (cmd == IPC_INFO || cmd == SHM_INFO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 err = security_shm_shmctl(NULL, cmd);
832 if (err)
833 return err;
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700834 }
835
836 switch (cmd) {
837 case IPC_INFO:
838 {
839 struct shminfo64 shminfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
WANG Conge8148f72009-01-06 14:42:49 -0800841 memset(&shminfo, 0, sizeof(shminfo));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700842 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
843 shminfo.shmmax = ns->shm_ctlmax;
844 shminfo.shmall = ns->shm_ctlall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 shminfo.shmmin = SHMMIN;
847 if(copy_shminfo_to_user (buf, &shminfo, version))
848 return -EFAULT;
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700849
Nadia Derbey3e148c72007-10-18 23:40:54 -0700850 down_read(&shm_ids(ns).rw_mutex);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700851 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700852 up_read(&shm_ids(ns).rw_mutex);
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if(err<0)
855 err = 0;
856 goto out;
857 }
858 case SHM_INFO:
859 {
860 struct shm_info shm_info;
861
WANG Conge8148f72009-01-06 14:42:49 -0800862 memset(&shm_info, 0, sizeof(shm_info));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700863 down_read(&shm_ids(ns).rw_mutex);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700864 shm_info.used_ids = shm_ids(ns).in_use;
865 shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp);
866 shm_info.shm_tot = ns->shm_tot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 shm_info.swap_attempts = 0;
868 shm_info.swap_successes = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700869 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700870 up_read(&shm_ids(ns).rw_mutex);
WANG Conge8148f72009-01-06 14:42:49 -0800871 if (copy_to_user(buf, &shm_info, sizeof(shm_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 err = -EFAULT;
873 goto out;
874 }
875
876 err = err < 0 ? 0 : err;
877 goto out;
878 }
879 case SHM_STAT:
880 case IPC_STAT:
881 {
882 struct shmid64_ds tbuf;
883 int result;
Nadia Derbey023a5352007-10-18 23:40:51 -0700884
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700885 rcu_read_lock();
Nadia Derbey023a5352007-10-18 23:40:51 -0700886 if (cmd == SHM_STAT) {
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700887 shp = shm_obtain_object(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -0700888 if (IS_ERR(shp)) {
889 err = PTR_ERR(shp);
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700890 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -0700891 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700892 result = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 } else {
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700894 shp = shm_obtain_object_check(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -0700895 if (IS_ERR(shp)) {
896 err = PTR_ERR(shp);
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700897 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -0700898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 result = 0;
900 }
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700901
WANG Conge8148f72009-01-06 14:42:49 -0800902 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700903 if (ipcperms(ns, &shp->shm_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 goto out_unlock;
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 err = security_shm_shmctl(shp, cmd);
907 if (err)
908 goto out_unlock;
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700909
Nadia Derbey023a5352007-10-18 23:40:51 -0700910 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
912 tbuf.shm_segsz = shp->shm_segsz;
913 tbuf.shm_atime = shp->shm_atim;
914 tbuf.shm_dtime = shp->shm_dtim;
915 tbuf.shm_ctime = shp->shm_ctim;
916 tbuf.shm_cpid = shp->shm_cprid;
917 tbuf.shm_lpid = shp->shm_lprid;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800918 tbuf.shm_nattch = shp->shm_nattch;
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700919 rcu_read_unlock();
920
921 if (copy_shmid_to_user(buf, &tbuf, version))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 err = -EFAULT;
923 else
924 err = result;
925 goto out;
926 }
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700927 default:
928 return -EINVAL;
929 }
930
931out_unlock:
Davidlohr Buesoc97cb9c2013-09-11 14:26:20 -0700932 rcu_read_unlock();
Davidlohr Bueso68eccc12013-09-11 14:26:18 -0700933out:
934 return err;
935}
936
937SYSCALL_DEFINE3(shmctl, int, shmid, int, cmd, struct shmid_ds __user *, buf)
938{
939 struct shmid_kernel *shp;
940 int err, version;
941 struct ipc_namespace *ns;
942
943 if (cmd < 0 || shmid < 0) {
944 err = -EINVAL;
945 goto out;
946 }
947
948 version = ipc_parse_version(&cmd);
949 ns = current->nsproxy->ipc_ns;
950
951 switch (cmd) {
952 case IPC_INFO:
953 case SHM_INFO:
954 case SHM_STAT:
955 case IPC_STAT:
956 return shmctl_nolock(ns, shmid, cmd, version, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 case SHM_LOCK:
958 case SHM_UNLOCK:
959 {
Hugh Dickins850465792012-01-20 14:34:19 -0800960 struct file *shm_file;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -0700961
Nadia Derbey023a5352007-10-18 23:40:51 -0700962 shp = shm_lock_check(ns, shmid);
963 if (IS_ERR(shp)) {
964 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 goto out;
966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Al Viroa33e6752008-12-10 03:40:06 -0500968 audit_ipc_obj(&(shp->shm_perm));
Steve Grubb073115d2006-04-02 17:07:33 -0400969
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700970 if (!ns_capable(ns->user_ns, CAP_IPC_LOCK)) {
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800971 kuid_t euid = current_euid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 err = -EPERM;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800973 if (!uid_eq(euid, shp->shm_perm.uid) &&
974 !uid_eq(euid, shp->shm_perm.cuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 goto out_unlock;
Jiri Slabyf1eb1332010-03-10 15:23:05 -0800976 if (cmd == SHM_LOCK && !rlimit(RLIMIT_MEMLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 goto out_unlock;
978 }
979
980 err = security_shm_shmctl(shp, cmd);
981 if (err)
982 goto out_unlock;
Hugh Dickins850465792012-01-20 14:34:19 -0800983
984 shm_file = shp->shm_file;
985 if (is_file_hugepages(shm_file))
986 goto out_unlock;
987
988 if (cmd == SHM_LOCK) {
David Howells86a264a2008-11-14 10:39:18 +1100989 struct user_struct *user = current_user();
Hugh Dickins850465792012-01-20 14:34:19 -0800990 err = shmem_lock(shm_file, 1, user);
991 if (!err && !(shp->shm_perm.mode & SHM_LOCKED)) {
992 shp->shm_perm.mode |= SHM_LOCKED;
993 shp->mlock_user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Hugh Dickins850465792012-01-20 14:34:19 -0800995 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
Hugh Dickins850465792012-01-20 14:34:19 -0800997
998 /* SHM_UNLOCK */
999 if (!(shp->shm_perm.mode & SHM_LOCKED))
1000 goto out_unlock;
1001 shmem_lock(shm_file, 0, shp->mlock_user);
1002 shp->shm_perm.mode &= ~SHM_LOCKED;
1003 shp->mlock_user = NULL;
1004 get_file(shm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 shm_unlock(shp);
Hugh Dickins24513262012-01-20 14:34:21 -08001006 shmem_unlock_mapping(shm_file->f_mapping);
Hugh Dickins850465792012-01-20 14:34:19 -08001007 fput(shm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 goto out;
1009 }
1010 case IPC_RMID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 case IPC_SET:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -07001012 err = shmctl_down(ns, shmid, cmd, buf, version);
1013 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 default:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -07001015 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018out_unlock:
1019 shm_unlock(shp);
1020out:
1021 return err;
1022}
1023
1024/*
1025 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
1026 *
1027 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
1028 * "raddr" thing points to kernel space, and there has to be a wrapper around
1029 * this.
1030 */
Will Deacon079a96a2012-07-30 14:42:38 -07001031long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr,
1032 unsigned long shmlba)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 struct shmid_kernel *shp;
1035 unsigned long addr;
1036 unsigned long size;
1037 struct file * file;
1038 int err;
1039 unsigned long flags;
1040 unsigned long prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 int acc_mode;
Kirill Korotaev4e982312006-10-02 02:18:22 -07001042 struct ipc_namespace *ns;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001043 struct shm_file_data *sfd;
1044 struct path path;
Al Viroaeb5d722008-09-02 15:28:45 -04001045 fmode_t f_mode;
Michel Lespinasse41badc12013-02-22 16:32:47 -08001046 unsigned long populate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001048 err = -EINVAL;
1049 if (shmid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001051 else if ((addr = (ulong)shmaddr)) {
Will Deacon079a96a2012-07-30 14:42:38 -07001052 if (addr & (shmlba - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (shmflg & SHM_RND)
Will Deacon079a96a2012-07-30 14:42:38 -07001054 addr &= ~(shmlba - 1); /* round down */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 else
1056#ifndef __ARCH_FORCE_SHMLBA
1057 if (addr & ~PAGE_MASK)
1058#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001059 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
1061 flags = MAP_SHARED | MAP_FIXED;
1062 } else {
1063 if ((shmflg & SHM_REMAP))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001064 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 flags = MAP_SHARED;
1067 }
1068
1069 if (shmflg & SHM_RDONLY) {
1070 prot = PROT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 acc_mode = S_IRUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001072 f_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 } else {
1074 prot = PROT_READ | PROT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 acc_mode = S_IRUGO | S_IWUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001076 f_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078 if (shmflg & SHM_EXEC) {
1079 prot |= PROT_EXEC;
1080 acc_mode |= S_IXUGO;
1081 }
1082
1083 /*
1084 * We cannot rely on the fs check since SYSV IPC does have an
1085 * additional creator id...
1086 */
Kirill Korotaev4e982312006-10-02 02:18:22 -07001087 ns = current->nsproxy->ipc_ns;
Nadia Derbey023a5352007-10-18 23:40:51 -07001088 shp = shm_lock_check(ns, shmid);
1089 if (IS_ERR(shp)) {
1090 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 goto out;
Nadia Derbey023a5352007-10-18 23:40:51 -07001092 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001093
1094 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001095 if (ipcperms(ns, &shp->shm_perm, acc_mode))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001096 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 err = security_shm_shmat(shp, shmaddr, shmflg);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001099 if (err)
1100 goto out_unlock;
1101
Al Viro2c48b9c2009-08-09 00:52:35 +04001102 path = shp->shm_file->f_path;
1103 path_get(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 shp->shm_nattch++;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001105 size = i_size_read(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 shm_unlock(shp);
1107
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001108 err = -ENOMEM;
1109 sfd = kzalloc(sizeof(*sfd), GFP_KERNEL);
1110 if (!sfd)
Dave Hansence8d2cd2007-10-16 23:31:13 -07001111 goto out_put_dentry;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001112
Al Viro2c48b9c2009-08-09 00:52:35 +04001113 file = alloc_file(&path, f_mode,
1114 is_file_hugepages(shp->shm_file) ?
Al Viroc4caa772009-11-30 08:38:43 -05001115 &shm_file_operations_huge :
1116 &shm_file_operations);
Anatol Pomozov39b65252012-09-12 20:11:55 -07001117 err = PTR_ERR(file);
1118 if (IS_ERR(file))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001119 goto out_free;
1120
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001121 file->private_data = sfd;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001122 file->f_mapping = shp->shm_file->f_mapping;
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001123 sfd->id = shp->shm_perm.id;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001124 sfd->ns = get_ipc_ns(ns);
1125 sfd->file = shp->shm_file;
1126 sfd->vm_ops = NULL;
1127
Al Viro8b3ec682012-05-30 17:11:23 -04001128 err = security_mmap_file(file, prot, flags);
1129 if (err)
1130 goto out_fput;
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 down_write(&current->mm->mmap_sem);
1133 if (addr && !(shmflg & SHM_REMAP)) {
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001134 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (find_vma_intersection(current->mm, addr, addr + size))
1136 goto invalid;
1137 /*
1138 * If shm segment goes below stack, make sure there is some
1139 * space left for the stack to grow (at least 4 pages).
1140 */
1141 if (addr < current->mm->start_stack &&
1142 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
1143 goto invalid;
1144 }
1145
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001146 addr = do_mmap_pgoff(file, addr, size, prot, flags, 0, &populate);
1147 *raddr = addr;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001148 err = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001149 if (IS_ERR_VALUE(addr))
1150 err = (long)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151invalid:
1152 up_write(&current->mm->mmap_sem);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001153 if (populate)
Michel Lespinasse41badc12013-02-22 16:32:47 -08001154 mm_populate(addr, populate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Al Viro8b3ec682012-05-30 17:11:23 -04001156out_fput:
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001157 fput(file);
1158
1159out_nattch:
Nadia Derbey3e148c72007-10-18 23:40:54 -07001160 down_write(&shm_ids(ns).rw_mutex);
Nadia Derbey00c2bf82008-07-25 01:48:03 -07001161 shp = shm_lock(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001162 BUG_ON(IS_ERR(shp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 shp->shm_nattch--;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -07001164 if (shm_may_destroy(ns, shp))
Kirill Korotaev4e982312006-10-02 02:18:22 -07001165 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 else
1167 shm_unlock(shp);
Nadia Derbey3e148c72007-10-18 23:40:54 -07001168 up_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170out:
1171 return err;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001172
1173out_unlock:
1174 shm_unlock(shp);
1175 goto out;
1176
1177out_free:
1178 kfree(sfd);
Dave Hansence8d2cd2007-10-16 23:31:13 -07001179out_put_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04001180 path_put(&path);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001181 goto out_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
Heiko Carstensd5460c92009-01-14 14:14:27 +01001184SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg)
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001185{
1186 unsigned long ret;
1187 long err;
1188
Will Deacon079a96a2012-07-30 14:42:38 -07001189 err = do_shmat(shmid, shmaddr, shmflg, &ret, SHMLBA);
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001190 if (err)
1191 return err;
1192 force_successful_syscall_return();
1193 return (long)ret;
1194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/*
1197 * detach and kill segment if marked destroyed.
1198 * The work is done in shm_close.
1199 */
Heiko Carstensd5460c92009-01-14 14:14:27 +01001200SYSCALL_DEFINE1(shmdt, char __user *, shmaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
1202 struct mm_struct *mm = current->mm;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001203 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 unsigned long addr = (unsigned long)shmaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 int retval = -EINVAL;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001206#ifdef CONFIG_MMU
1207 loff_t size = 0;
1208 struct vm_area_struct *next;
1209#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Hugh Dickinsdf1e2fb2006-03-24 03:18:06 -08001211 if (addr & ~PAGE_MASK)
1212 return retval;
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 down_write(&mm->mmap_sem);
1215
1216 /*
1217 * This function tries to be smart and unmap shm segments that
1218 * were modified by partial mlock or munmap calls:
1219 * - It first determines the size of the shm segment that should be
1220 * unmapped: It searches for a vma that is backed by shm and that
1221 * started at address shmaddr. It records it's size and then unmaps
1222 * it.
1223 * - Then it unmaps all shm vmas that started at shmaddr and that
1224 * are within the initially determined size.
1225 * Errors from do_munmap are ignored: the function only fails if
1226 * it's called with invalid parameters or if it's called to unmap
1227 * a part of a vma. Both calls in this function are for full vmas,
1228 * the parameters are directly copied from the vma itself and always
1229 * valid - therefore do_munmap cannot fail. (famous last words?)
1230 */
1231 /*
1232 * If it had been mremap()'d, the starting address would not
1233 * match the usual checks anyway. So assume all vma's are
1234 * above the starting address given.
1235 */
1236 vma = find_vma(mm, addr);
1237
David Howells8feae132009-01-08 12:04:47 +00001238#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 while (vma) {
1240 next = vma->vm_next;
1241
1242 /*
1243 * Check if the starting address would match, i.e. it's
1244 * a fragment created by mprotect() and/or munmap(), or it
1245 * otherwise it starts at this address with no hassles.
1246 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001247 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
1249
1250
Al Viro496ad9a2013-01-23 17:07:38 -05001251 size = file_inode(vma->vm_file)->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1253 /*
1254 * We discovered the size of the shm segment, so
1255 * break out of here and fall through to the next
1256 * loop that uses the size information to stop
1257 * searching for matching vma's.
1258 */
1259 retval = 0;
1260 vma = next;
1261 break;
1262 }
1263 vma = next;
1264 }
1265
1266 /*
1267 * We need look no further than the maximum address a fragment
1268 * could possibly have landed at. Also cast things to loff_t to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001269 * prevent overflows and make comparisons vs. equal-width types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 */
KAMEZAWA Hiroyuki8e367092006-02-10 01:51:12 -08001271 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
1273 next = vma->vm_next;
1274
1275 /* finding a matching vma now does not alter retval */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001276 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
1278
1279 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1280 vma = next;
1281 }
1282
David Howells8feae132009-01-08 12:04:47 +00001283#else /* CONFIG_MMU */
1284 /* under NOMMU conditions, the exact address to be destroyed must be
1285 * given */
1286 retval = -EINVAL;
1287 if (vma->vm_start == addr && vma->vm_ops == &shm_vm_ops) {
1288 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1289 retval = 0;
1290 }
1291
1292#endif
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 up_write(&mm->mmap_sem);
1295 return retval;
1296}
1297
1298#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001299static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001301 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07001302 struct shmid_kernel *shp = it;
Helge Dellerb7952182010-10-27 15:34:16 -07001303 unsigned long rss = 0, swp = 0;
1304
1305 shm_add_rss_swap(shp, &rss, &swp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Paul Menage6c826812008-06-12 15:21:49 -07001307#if BITS_PER_LONG <= 32
1308#define SIZE_SPEC "%10lu"
1309#else
1310#define SIZE_SPEC "%21lu"
1311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Paul Menage6c826812008-06-12 15:21:49 -07001313 return seq_printf(s,
1314 "%10d %10d %4o " SIZE_SPEC " %5u %5u "
Helge Dellerb7952182010-10-27 15:34:16 -07001315 "%5lu %5u %5u %5u %5u %10lu %10lu %10lu "
1316 SIZE_SPEC " " SIZE_SPEC "\n",
Mike Waychison19b49462005-09-06 15:17:10 -07001317 shp->shm_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001318 shp->shm_perm.id,
Andrew Mortonb33291c2006-01-08 01:02:21 -08001319 shp->shm_perm.mode,
Mike Waychison19b49462005-09-06 15:17:10 -07001320 shp->shm_segsz,
1321 shp->shm_cprid,
1322 shp->shm_lprid,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001323 shp->shm_nattch,
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001324 from_kuid_munged(user_ns, shp->shm_perm.uid),
1325 from_kgid_munged(user_ns, shp->shm_perm.gid),
1326 from_kuid_munged(user_ns, shp->shm_perm.cuid),
1327 from_kgid_munged(user_ns, shp->shm_perm.cgid),
Mike Waychison19b49462005-09-06 15:17:10 -07001328 shp->shm_atim,
1329 shp->shm_dtim,
Helge Dellerb7952182010-10-27 15:34:16 -07001330 shp->shm_ctim,
1331 rss * PAGE_SIZE,
1332 swp * PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334#endif