blob: 22cffd78dbb1ccd66683fdfb788330ba8a09b81f [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
Heiko Carstensd5460c92009-01-14 14:14:27 +0100823SYSCALL_DEFINE3(shmctl, int, shmid, int, cmd, struct shmid_ds __user *, buf)
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700824{
825 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int err, version;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700827 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 if (cmd < 0 || shmid < 0) {
830 err = -EINVAL;
831 goto out;
832 }
833
834 version = ipc_parse_version(&cmd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700835 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 switch (cmd) { /* replace with proc interface ? */
838 case IPC_INFO:
839 {
840 struct shminfo64 shminfo;
841
842 err = security_shm_shmctl(NULL, cmd);
843 if (err)
844 return err;
845
WANG Conge8148f72009-01-06 14:42:49 -0800846 memset(&shminfo, 0, sizeof(shminfo));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700847 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
848 shminfo.shmmax = ns->shm_ctlmax;
849 shminfo.shmall = ns->shm_ctlall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 shminfo.shmmin = SHMMIN;
852 if(copy_shminfo_to_user (buf, &shminfo, version))
853 return -EFAULT;
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700854
Nadia Derbey3e148c72007-10-18 23:40:54 -0700855 down_read(&shm_ids(ns).rw_mutex);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700856 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700857 up_read(&shm_ids(ns).rw_mutex);
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if(err<0)
860 err = 0;
861 goto out;
862 }
863 case SHM_INFO:
864 {
865 struct shm_info shm_info;
866
867 err = security_shm_shmctl(NULL, cmd);
868 if (err)
869 return err;
870
WANG Conge8148f72009-01-06 14:42:49 -0800871 memset(&shm_info, 0, sizeof(shm_info));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700872 down_read(&shm_ids(ns).rw_mutex);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700873 shm_info.used_ids = shm_ids(ns).in_use;
874 shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp);
875 shm_info.shm_tot = ns->shm_tot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 shm_info.swap_attempts = 0;
877 shm_info.swap_successes = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700878 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700879 up_read(&shm_ids(ns).rw_mutex);
WANG Conge8148f72009-01-06 14:42:49 -0800880 if (copy_to_user(buf, &shm_info, sizeof(shm_info))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 err = -EFAULT;
882 goto out;
883 }
884
885 err = err < 0 ? 0 : err;
886 goto out;
887 }
888 case SHM_STAT:
889 case IPC_STAT:
890 {
891 struct shmid64_ds tbuf;
892 int result;
Nadia Derbey023a5352007-10-18 23:40:51 -0700893
Nadia Derbey023a5352007-10-18 23:40:51 -0700894 if (cmd == SHM_STAT) {
895 shp = shm_lock(ns, shmid);
896 if (IS_ERR(shp)) {
897 err = PTR_ERR(shp);
898 goto out;
899 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700900 result = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 } else {
Nadia Derbey023a5352007-10-18 23:40:51 -0700902 shp = shm_lock_check(ns, shmid);
903 if (IS_ERR(shp)) {
904 err = PTR_ERR(shp);
905 goto out;
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 result = 0;
908 }
WANG Conge8148f72009-01-06 14:42:49 -0800909 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700910 if (ipcperms(ns, &shp->shm_perm, S_IRUGO))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 goto out_unlock;
912 err = security_shm_shmctl(shp, cmd);
913 if (err)
914 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -0700915 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
917 tbuf.shm_segsz = shp->shm_segsz;
918 tbuf.shm_atime = shp->shm_atim;
919 tbuf.shm_dtime = shp->shm_dtim;
920 tbuf.shm_ctime = shp->shm_ctim;
921 tbuf.shm_cpid = shp->shm_cprid;
922 tbuf.shm_lpid = shp->shm_lprid;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800923 tbuf.shm_nattch = shp->shm_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 shm_unlock(shp);
925 if(copy_shmid_to_user (buf, &tbuf, version))
926 err = -EFAULT;
927 else
928 err = result;
929 goto out;
930 }
931 case SHM_LOCK:
932 case SHM_UNLOCK:
933 {
Hugh Dickins850465792012-01-20 14:34:19 -0800934 struct file *shm_file;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -0700935
Nadia Derbey023a5352007-10-18 23:40:51 -0700936 shp = shm_lock_check(ns, shmid);
937 if (IS_ERR(shp)) {
938 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 goto out;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Al Viroa33e6752008-12-10 03:40:06 -0500942 audit_ipc_obj(&(shp->shm_perm));
Steve Grubb073115d2006-04-02 17:07:33 -0400943
Serge E. Hallynb0e77592011-03-23 16:43:24 -0700944 if (!ns_capable(ns->user_ns, CAP_IPC_LOCK)) {
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800945 kuid_t euid = current_euid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 err = -EPERM;
Eric W. Biederman1efdb692012-02-07 16:54:11 -0800947 if (!uid_eq(euid, shp->shm_perm.uid) &&
948 !uid_eq(euid, shp->shm_perm.cuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 goto out_unlock;
Jiri Slabyf1eb1332010-03-10 15:23:05 -0800950 if (cmd == SHM_LOCK && !rlimit(RLIMIT_MEMLOCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 goto out_unlock;
952 }
953
954 err = security_shm_shmctl(shp, cmd);
955 if (err)
956 goto out_unlock;
Hugh Dickins850465792012-01-20 14:34:19 -0800957
958 shm_file = shp->shm_file;
959 if (is_file_hugepages(shm_file))
960 goto out_unlock;
961
962 if (cmd == SHM_LOCK) {
David Howells86a264a2008-11-14 10:39:18 +1100963 struct user_struct *user = current_user();
Hugh Dickins850465792012-01-20 14:34:19 -0800964 err = shmem_lock(shm_file, 1, user);
965 if (!err && !(shp->shm_perm.mode & SHM_LOCKED)) {
966 shp->shm_perm.mode |= SHM_LOCKED;
967 shp->mlock_user = user;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 }
Hugh Dickins850465792012-01-20 14:34:19 -0800969 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 }
Hugh Dickins850465792012-01-20 14:34:19 -0800971
972 /* SHM_UNLOCK */
973 if (!(shp->shm_perm.mode & SHM_LOCKED))
974 goto out_unlock;
975 shmem_lock(shm_file, 0, shp->mlock_user);
976 shp->shm_perm.mode &= ~SHM_LOCKED;
977 shp->mlock_user = NULL;
978 get_file(shm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 shm_unlock(shp);
Hugh Dickins24513262012-01-20 14:34:21 -0800980 shmem_unlock_mapping(shm_file->f_mapping);
Hugh Dickins850465792012-01-20 14:34:19 -0800981 fput(shm_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 goto out;
983 }
984 case IPC_RMID:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 case IPC_SET:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700986 err = shmctl_down(ns, shmid, cmd, buf, version);
987 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 default:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700989 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992out_unlock:
993 shm_unlock(shp);
994out:
995 return err;
996}
997
998/*
999 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
1000 *
1001 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
1002 * "raddr" thing points to kernel space, and there has to be a wrapper around
1003 * this.
1004 */
Will Deacon079a96a2012-07-30 14:42:38 -07001005long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr,
1006 unsigned long shmlba)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 struct shmid_kernel *shp;
1009 unsigned long addr;
1010 unsigned long size;
1011 struct file * file;
1012 int err;
1013 unsigned long flags;
1014 unsigned long prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int acc_mode;
Kirill Korotaev4e982312006-10-02 02:18:22 -07001016 struct ipc_namespace *ns;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001017 struct shm_file_data *sfd;
1018 struct path path;
Al Viroaeb5d722008-09-02 15:28:45 -04001019 fmode_t f_mode;
Michel Lespinasse41badc12013-02-22 16:32:47 -08001020 unsigned long populate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001022 err = -EINVAL;
1023 if (shmid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001025 else if ((addr = (ulong)shmaddr)) {
Will Deacon079a96a2012-07-30 14:42:38 -07001026 if (addr & (shmlba - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (shmflg & SHM_RND)
Will Deacon079a96a2012-07-30 14:42:38 -07001028 addr &= ~(shmlba - 1); /* round down */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 else
1030#ifndef __ARCH_FORCE_SHMLBA
1031 if (addr & ~PAGE_MASK)
1032#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001033 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 flags = MAP_SHARED | MAP_FIXED;
1036 } else {
1037 if ((shmflg & SHM_REMAP))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001038 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 flags = MAP_SHARED;
1041 }
1042
1043 if (shmflg & SHM_RDONLY) {
1044 prot = PROT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 acc_mode = S_IRUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001046 f_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 } else {
1048 prot = PROT_READ | PROT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 acc_mode = S_IRUGO | S_IWUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001050 f_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
1052 if (shmflg & SHM_EXEC) {
1053 prot |= PROT_EXEC;
1054 acc_mode |= S_IXUGO;
1055 }
1056
1057 /*
1058 * We cannot rely on the fs check since SYSV IPC does have an
1059 * additional creator id...
1060 */
Kirill Korotaev4e982312006-10-02 02:18:22 -07001061 ns = current->nsproxy->ipc_ns;
Nadia Derbey023a5352007-10-18 23:40:51 -07001062 shp = shm_lock_check(ns, shmid);
1063 if (IS_ERR(shp)) {
1064 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 goto out;
Nadia Derbey023a5352007-10-18 23:40:51 -07001066 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001067
1068 err = -EACCES;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07001069 if (ipcperms(ns, &shp->shm_perm, acc_mode))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001070 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 err = security_shm_shmat(shp, shmaddr, shmflg);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001073 if (err)
1074 goto out_unlock;
1075
Al Viro2c48b9c2009-08-09 00:52:35 +04001076 path = shp->shm_file->f_path;
1077 path_get(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 shp->shm_nattch++;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001079 size = i_size_read(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 shm_unlock(shp);
1081
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001082 err = -ENOMEM;
1083 sfd = kzalloc(sizeof(*sfd), GFP_KERNEL);
1084 if (!sfd)
Dave Hansence8d2cd2007-10-16 23:31:13 -07001085 goto out_put_dentry;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001086
Al Viro2c48b9c2009-08-09 00:52:35 +04001087 file = alloc_file(&path, f_mode,
1088 is_file_hugepages(shp->shm_file) ?
Al Viroc4caa772009-11-30 08:38:43 -05001089 &shm_file_operations_huge :
1090 &shm_file_operations);
Anatol Pomozov39b65252012-09-12 20:11:55 -07001091 err = PTR_ERR(file);
1092 if (IS_ERR(file))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001093 goto out_free;
1094
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001095 file->private_data = sfd;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001096 file->f_mapping = shp->shm_file->f_mapping;
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001097 sfd->id = shp->shm_perm.id;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001098 sfd->ns = get_ipc_ns(ns);
1099 sfd->file = shp->shm_file;
1100 sfd->vm_ops = NULL;
1101
Al Viro8b3ec682012-05-30 17:11:23 -04001102 err = security_mmap_file(file, prot, flags);
1103 if (err)
1104 goto out_fput;
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 down_write(&current->mm->mmap_sem);
1107 if (addr && !(shmflg & SHM_REMAP)) {
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001108 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (find_vma_intersection(current->mm, addr, addr + size))
1110 goto invalid;
1111 /*
1112 * If shm segment goes below stack, make sure there is some
1113 * space left for the stack to grow (at least 4 pages).
1114 */
1115 if (addr < current->mm->start_stack &&
1116 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
1117 goto invalid;
1118 }
1119
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001120 addr = do_mmap_pgoff(file, addr, size, prot, flags, 0, &populate);
1121 *raddr = addr;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001122 err = 0;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001123 if (IS_ERR_VALUE(addr))
1124 err = (long)addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125invalid:
1126 up_write(&current->mm->mmap_sem);
Michel Lespinassebebeb3d2013-02-22 16:32:37 -08001127 if (populate)
Michel Lespinasse41badc12013-02-22 16:32:47 -08001128 mm_populate(addr, populate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Al Viro8b3ec682012-05-30 17:11:23 -04001130out_fput:
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001131 fput(file);
1132
1133out_nattch:
Nadia Derbey3e148c72007-10-18 23:40:54 -07001134 down_write(&shm_ids(ns).rw_mutex);
Nadia Derbey00c2bf82008-07-25 01:48:03 -07001135 shp = shm_lock(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -07001136 BUG_ON(IS_ERR(shp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 shp->shm_nattch--;
Vasiliy Kulikovb34a6b12011-07-26 16:08:48 -07001138 if (shm_may_destroy(ns, shp))
Kirill Korotaev4e982312006-10-02 02:18:22 -07001139 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 else
1141 shm_unlock(shp);
Nadia Derbey3e148c72007-10-18 23:40:54 -07001142 up_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144out:
1145 return err;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001146
1147out_unlock:
1148 shm_unlock(shp);
1149 goto out;
1150
1151out_free:
1152 kfree(sfd);
Dave Hansence8d2cd2007-10-16 23:31:13 -07001153out_put_dentry:
Al Viro2c48b9c2009-08-09 00:52:35 +04001154 path_put(&path);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001155 goto out_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Heiko Carstensd5460c92009-01-14 14:14:27 +01001158SYSCALL_DEFINE3(shmat, int, shmid, char __user *, shmaddr, int, shmflg)
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001159{
1160 unsigned long ret;
1161 long err;
1162
Will Deacon079a96a2012-07-30 14:42:38 -07001163 err = do_shmat(shmid, shmaddr, shmflg, &ret, SHMLBA);
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -07001164 if (err)
1165 return err;
1166 force_successful_syscall_return();
1167 return (long)ret;
1168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170/*
1171 * detach and kill segment if marked destroyed.
1172 * The work is done in shm_close.
1173 */
Heiko Carstensd5460c92009-01-14 14:14:27 +01001174SYSCALL_DEFINE1(shmdt, char __user *, shmaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 struct mm_struct *mm = current->mm;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001177 struct vm_area_struct *vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 unsigned long addr = (unsigned long)shmaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 int retval = -EINVAL;
Mike Frysinger586c7e62009-06-09 16:26:23 -07001180#ifdef CONFIG_MMU
1181 loff_t size = 0;
1182 struct vm_area_struct *next;
1183#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Hugh Dickinsdf1e2fb2006-03-24 03:18:06 -08001185 if (addr & ~PAGE_MASK)
1186 return retval;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 down_write(&mm->mmap_sem);
1189
1190 /*
1191 * This function tries to be smart and unmap shm segments that
1192 * were modified by partial mlock or munmap calls:
1193 * - It first determines the size of the shm segment that should be
1194 * unmapped: It searches for a vma that is backed by shm and that
1195 * started at address shmaddr. It records it's size and then unmaps
1196 * it.
1197 * - Then it unmaps all shm vmas that started at shmaddr and that
1198 * are within the initially determined size.
1199 * Errors from do_munmap are ignored: the function only fails if
1200 * it's called with invalid parameters or if it's called to unmap
1201 * a part of a vma. Both calls in this function are for full vmas,
1202 * the parameters are directly copied from the vma itself and always
1203 * valid - therefore do_munmap cannot fail. (famous last words?)
1204 */
1205 /*
1206 * If it had been mremap()'d, the starting address would not
1207 * match the usual checks anyway. So assume all vma's are
1208 * above the starting address given.
1209 */
1210 vma = find_vma(mm, addr);
1211
David Howells8feae132009-01-08 12:04:47 +00001212#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 while (vma) {
1214 next = vma->vm_next;
1215
1216 /*
1217 * Check if the starting address would match, i.e. it's
1218 * a fragment created by mprotect() and/or munmap(), or it
1219 * otherwise it starts at this address with no hassles.
1220 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001221 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
1223
1224
Al Viro496ad9a2013-01-23 17:07:38 -05001225 size = file_inode(vma->vm_file)->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1227 /*
1228 * We discovered the size of the shm segment, so
1229 * break out of here and fall through to the next
1230 * loop that uses the size information to stop
1231 * searching for matching vma's.
1232 */
1233 retval = 0;
1234 vma = next;
1235 break;
1236 }
1237 vma = next;
1238 }
1239
1240 /*
1241 * We need look no further than the maximum address a fragment
1242 * could possibly have landed at. Also cast things to loff_t to
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001243 * prevent overflows and make comparisons vs. equal-width types.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 */
KAMEZAWA Hiroyuki8e367092006-02-10 01:51:12 -08001245 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
1247 next = vma->vm_next;
1248
1249 /* finding a matching vma now does not alter retval */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001250 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
1252
1253 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1254 vma = next;
1255 }
1256
David Howells8feae132009-01-08 12:04:47 +00001257#else /* CONFIG_MMU */
1258 /* under NOMMU conditions, the exact address to be destroyed must be
1259 * given */
1260 retval = -EINVAL;
1261 if (vma->vm_start == addr && vma->vm_ops == &shm_vm_ops) {
1262 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1263 retval = 0;
1264 }
1265
1266#endif
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 up_write(&mm->mmap_sem);
1269 return retval;
1270}
1271
1272#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001273static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001275 struct user_namespace *user_ns = seq_user_ns(s);
Mike Waychison19b49462005-09-06 15:17:10 -07001276 struct shmid_kernel *shp = it;
Helge Dellerb7952182010-10-27 15:34:16 -07001277 unsigned long rss = 0, swp = 0;
1278
1279 shm_add_rss_swap(shp, &rss, &swp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Paul Menage6c826812008-06-12 15:21:49 -07001281#if BITS_PER_LONG <= 32
1282#define SIZE_SPEC "%10lu"
1283#else
1284#define SIZE_SPEC "%21lu"
1285#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Paul Menage6c826812008-06-12 15:21:49 -07001287 return seq_printf(s,
1288 "%10d %10d %4o " SIZE_SPEC " %5u %5u "
Helge Dellerb7952182010-10-27 15:34:16 -07001289 "%5lu %5u %5u %5u %5u %10lu %10lu %10lu "
1290 SIZE_SPEC " " SIZE_SPEC "\n",
Mike Waychison19b49462005-09-06 15:17:10 -07001291 shp->shm_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001292 shp->shm_perm.id,
Andrew Mortonb33291c2006-01-08 01:02:21 -08001293 shp->shm_perm.mode,
Mike Waychison19b49462005-09-06 15:17:10 -07001294 shp->shm_segsz,
1295 shp->shm_cprid,
1296 shp->shm_lprid,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001297 shp->shm_nattch,
Eric W. Biederman1efdb692012-02-07 16:54:11 -08001298 from_kuid_munged(user_ns, shp->shm_perm.uid),
1299 from_kgid_munged(user_ns, shp->shm_perm.gid),
1300 from_kuid_munged(user_ns, shp->shm_perm.cuid),
1301 from_kgid_munged(user_ns, shp->shm_perm.cgid),
Mike Waychison19b49462005-09-06 15:17:10 -07001302 shp->shm_atim,
1303 shp->shm_dtim,
Helge Dellerb7952182010-10-27 15:34:16 -07001304 shp->shm_ctim,
1305 rss * PAGE_SIZE,
1306 swp * PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308#endif