blob: 5e296b04bd6b7ec20808aaabc8daed8785430181 [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct vm_operations_struct shm_vm_ops;
58
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;
77 ns->shm_tot = 0;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080078 ipc_init_ids(&ns->ids[IPC_SHM_IDS]);
Kirill Korotaev4e982312006-10-02 02:18:22 -070079}
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Nadia Derbeyf4566f02007-10-18 23:40:53 -070081/*
Nadia Derbey3e148c72007-10-18 23:40:54 -070082 * Called with shm_ids.rw_mutex (writer) and the shp structure locked.
83 * Only shm_ids.rw_mutex remains locked on exit.
Nadia Derbeyf4566f02007-10-18 23:40:53 -070084 */
Pierre Peiffer01b8b072008-02-08 04:18:57 -080085static void do_shm_rmid(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
Kirill Korotaev4e982312006-10-02 02:18:22 -070086{
Pierre Peiffer01b8b072008-02-08 04:18:57 -080087 struct shmid_kernel *shp;
88 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
89
Kirill Korotaev4e982312006-10-02 02:18:22 -070090 if (shp->shm_nattch){
91 shp->shm_perm.mode |= SHM_DEST;
92 /* Do not find it any more */
93 shp->shm_perm.key = IPC_PRIVATE;
94 shm_unlock(shp);
95 } else
96 shm_destroy(ns, shp);
97}
98
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080099#ifdef CONFIG_IPC_NS
Kirill Korotaev4e982312006-10-02 02:18:22 -0700100void shm_exit_ns(struct ipc_namespace *ns)
101{
Pierre Peiffer01b8b072008-02-08 04:18:57 -0800102 free_ipcs(ns, &shm_ids(ns), do_shm_rmid);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700103}
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106void __init shm_init (void)
107{
Pierre Peiffered2ddbf2008-02-08 04:18:57 -0800108 shm_init_ns(&init_ipc_ns);
Mike Waychison19b49462005-09-06 15:17:10 -0700109 ipc_init_proc_interface("sysvipc/shm",
110 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n",
Kirill Korotaev4e982312006-10-02 02:18:22 -0700111 IPC_SHM_IDS, sysvipc_shm_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Nadia Derbey3e148c72007-10-18 23:40:54 -0700114/*
115 * shm_lock_(check_)down routines are called in the paths where the rw_mutex
116 * is held to protect access to the idr tree.
117 */
118static inline struct shmid_kernel *shm_lock_down(struct ipc_namespace *ns,
119 int id)
120{
121 struct kern_ipc_perm *ipcp = ipc_lock_down(&shm_ids(ns), id);
122
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800123 if (IS_ERR(ipcp))
124 return (struct shmid_kernel *)ipcp;
125
Nadia Derbey3e148c72007-10-18 23:40:54 -0700126 return container_of(ipcp, struct shmid_kernel, shm_perm);
127}
128
129static inline struct shmid_kernel *shm_lock_check_down(
130 struct ipc_namespace *ns,
131 int id)
132{
133 struct kern_ipc_perm *ipcp = ipc_lock_check_down(&shm_ids(ns), id);
134
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800135 if (IS_ERR(ipcp))
136 return (struct shmid_kernel *)ipcp;
137
Nadia Derbey3e148c72007-10-18 23:40:54 -0700138 return container_of(ipcp, struct shmid_kernel, shm_perm);
139}
140
141/*
142 * shm_lock_(check_) routines are called in the paths where the rw_mutex
143 * is not held.
144 */
Nadia Derbey023a5352007-10-18 23:40:51 -0700145static inline struct shmid_kernel *shm_lock(struct ipc_namespace *ns, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700147 struct kern_ipc_perm *ipcp = ipc_lock(&shm_ids(ns), id);
148
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800149 if (IS_ERR(ipcp))
150 return (struct shmid_kernel *)ipcp;
151
Nadia Derbey03f02c72007-10-18 23:40:51 -0700152 return container_of(ipcp, struct shmid_kernel, shm_perm);
Nadia Derbey023a5352007-10-18 23:40:51 -0700153}
154
155static inline struct shmid_kernel *shm_lock_check(struct ipc_namespace *ns,
156 int id)
157{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700158 struct kern_ipc_perm *ipcp = ipc_lock_check(&shm_ids(ns), id);
159
Pierre Peifferb1ed88b2008-02-06 01:36:23 -0800160 if (IS_ERR(ipcp))
161 return (struct shmid_kernel *)ipcp;
162
Nadia Derbey03f02c72007-10-18 23:40:51 -0700163 return container_of(ipcp, struct shmid_kernel, shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700166static inline void shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700168 ipc_rmid(&shm_ids(ns), &s->shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800172/* This is called by fork, once for every shm attach. */
173static void shm_open(struct vm_area_struct *vma)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700174{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800175 struct file *file = vma->vm_file;
176 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct shmid_kernel *shp;
178
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800179 shp = shm_lock(sfd->ns, sfd->id);
Nadia Derbey023a5352007-10-18 23:40:51 -0700180 BUG_ON(IS_ERR(shp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 shp->shm_atim = get_seconds();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700182 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 shp->shm_nattch++;
184 shm_unlock(shp);
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*
188 * shm_destroy - free the struct shmid_kernel
189 *
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700190 * @ns: namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * @shp: struct to free
192 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700193 * It has to be called with shp and shm_ids.rw_mutex (writer) locked,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * but returns with shp unlocked and freed.
195 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700196static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700198 ns->shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700199 shm_rmid(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 shm_unlock(shp);
201 if (!is_file_hugepages(shp->shm_file))
202 shmem_lock(shp->shm_file, 0, shp->mlock_user);
203 else
Josef Sipek6d630792006-12-08 02:37:11 -0800204 user_shm_unlock(shp->shm_file->f_path.dentry->d_inode->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 shp->mlock_user);
206 fput (shp->shm_file);
207 security_shm_free(shp);
208 ipc_rcu_putref(shp);
209}
210
211/*
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800212 * remove the attach descriptor vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * free memory for segment if it is marked destroyed.
214 * The descriptor has already been removed from the current->mm->mmap list
215 * and will later be kfree()d.
216 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800217static void shm_close(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800219 struct file * file = vma->vm_file;
220 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 struct shmid_kernel *shp;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800222 struct ipc_namespace *ns = sfd->ns;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700223
Nadia Derbey3e148c72007-10-18 23:40:54 -0700224 down_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* remove from the list of attaches of the shm segment */
Nadia Derbey3e148c72007-10-18 23:40:54 -0700226 shp = shm_lock_down(ns, sfd->id);
Nadia Derbey023a5352007-10-18 23:40:51 -0700227 BUG_ON(IS_ERR(shp));
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700228 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 shp->shm_dtim = get_seconds();
230 shp->shm_nattch--;
231 if(shp->shm_nattch == 0 &&
Andrew Mortonb33291c2006-01-08 01:02:21 -0800232 shp->shm_perm.mode & SHM_DEST)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700233 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 else
235 shm_unlock(shp);
Nadia Derbey3e148c72007-10-18 23:40:54 -0700236 up_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Nick Piggind0217ac2007-07-19 01:47:03 -0700239static int shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800240{
241 struct file *file = vma->vm_file;
242 struct shm_file_data *sfd = shm_file_data(file);
243
Nick Piggind0217ac2007-07-19 01:47:03 -0700244 return sfd->vm_ops->fault(vma, vmf);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800245}
246
247#ifdef CONFIG_NUMA
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700248static int shm_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800249{
250 struct file *file = vma->vm_file;
251 struct shm_file_data *sfd = shm_file_data(file);
252 int err = 0;
253 if (sfd->vm_ops->set_policy)
254 err = sfd->vm_ops->set_policy(vma, new);
255 return err;
256}
257
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700258static struct mempolicy *shm_get_policy(struct vm_area_struct *vma,
259 unsigned long addr)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800260{
261 struct file *file = vma->vm_file;
262 struct shm_file_data *sfd = shm_file_data(file);
263 struct mempolicy *pol = NULL;
264
265 if (sfd->vm_ops->get_policy)
266 pol = sfd->vm_ops->get_policy(vma, addr);
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700267 else if (vma->vm_policy)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800268 pol = vma->vm_policy;
Lee Schermerhorn52cd3b02008-04-28 02:13:16 -0700269
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800270 return pol;
271}
272#endif
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static int shm_mmap(struct file * file, struct vm_area_struct * vma)
275{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800276 struct shm_file_data *sfd = shm_file_data(file);
David Howellsb0e15192006-01-06 00:11:42 -0800277 int ret;
278
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800279 ret = sfd->file->f_op->mmap(sfd->file, vma);
280 if (ret != 0)
281 return ret;
282 sfd->vm_ops = vma->vm_ops;
David Howells2e92a3b2007-07-31 00:37:24 -0700283#ifdef CONFIG_MMU
Nick Piggin54cb8822007-07-19 01:46:59 -0700284 BUG_ON(!sfd->vm_ops->fault);
David Howells2e92a3b2007-07-31 00:37:24 -0700285#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800286 vma->vm_ops = &shm_vm_ops;
287 shm_open(vma);
David Howellsb0e15192006-01-06 00:11:42 -0800288
289 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Kirill Korotaev4e982312006-10-02 02:18:22 -0700292static int shm_release(struct inode *ino, struct file *file)
293{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800294 struct shm_file_data *sfd = shm_file_data(file);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700295
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800296 put_ipc_ns(sfd->ns);
297 shm_file_data(file) = NULL;
298 kfree(sfd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700299 return 0;
300}
301
Adam Litke516dffd2007-03-01 15:46:08 -0800302static int shm_fsync(struct file *file, struct dentry *dentry, int datasync)
303{
304 int (*fsync) (struct file *, struct dentry *, int datasync);
305 struct shm_file_data *sfd = shm_file_data(file);
306 int ret = -EINVAL;
307
308 fsync = sfd->file->f_op->fsync;
309 if (fsync)
310 ret = fsync(sfd->file, sfd->file->f_path.dentry, datasync);
311 return ret;
312}
313
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800314static unsigned long shm_get_unmapped_area(struct file *file,
315 unsigned long addr, unsigned long len, unsigned long pgoff,
316 unsigned long flags)
317{
318 struct shm_file_data *sfd = shm_file_data(file);
Adam Litke516dffd2007-03-01 15:46:08 -0800319 return get_unmapped_area(sfd->file, addr, len, pgoff, flags);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800320}
Adam Litke516dffd2007-03-01 15:46:08 -0800321
322int is_file_shm_hugepages(struct file *file)
323{
324 int ret = 0;
325
326 if (file->f_op == &shm_file_operations) {
327 struct shm_file_data *sfd;
328 sfd = shm_file_data(file);
329 ret = is_file_hugepages(sfd->file);
330 }
331 return ret;
332}
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800333
Arjan van de Ven9a321442007-02-12 00:55:35 -0800334static const struct file_operations shm_file_operations = {
Kirill Korotaev4e982312006-10-02 02:18:22 -0700335 .mmap = shm_mmap,
Adam Litke516dffd2007-03-01 15:46:08 -0800336 .fsync = shm_fsync,
Kirill Korotaev4e982312006-10-02 02:18:22 -0700337 .release = shm_release,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800338 .get_unmapped_area = shm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339};
340
341static struct vm_operations_struct shm_vm_ops = {
342 .open = shm_open, /* callback for a new vm-area open */
343 .close = shm_close, /* callback for when the vm-area is released */
Nick Piggin54cb8822007-07-19 01:46:59 -0700344 .fault = shm_fault,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800345#if defined(CONFIG_NUMA)
346 .set_policy = shm_set_policy,
347 .get_policy = shm_get_policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348#endif
349};
350
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700351/**
352 * newseg - Create a new shared memory segment
353 * @ns: namespace
354 * @params: ptr to the structure that contains key, size and shmflg
355 *
Nadia Derbey3e148c72007-10-18 23:40:54 -0700356 * Called with shm_ids.rw_mutex held as a writer.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700357 */
358
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700359static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700361 key_t key = params->key;
362 int shmflg = params->flg;
363 size_t size = params->u.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int error;
365 struct shmid_kernel *shp;
366 int numpages = (size + PAGE_SIZE -1) >> PAGE_SHIFT;
367 struct file * file;
368 char name[13];
369 int id;
370
Kirill Korotaev4e982312006-10-02 02:18:22 -0700371 if (size < SHMMIN || size > ns->shm_ctlmax)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -EINVAL;
373
Guy Streeterf66d45e2007-01-23 12:20:04 -0600374 if (ns->shm_tot + numpages > ns->shm_ctlall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return -ENOSPC;
376
377 shp = ipc_rcu_alloc(sizeof(*shp));
378 if (!shp)
379 return -ENOMEM;
380
381 shp->shm_perm.key = key;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800382 shp->shm_perm.mode = (shmflg & S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 shp->mlock_user = NULL;
384
385 shp->shm_perm.security = NULL;
386 error = security_shm_alloc(shp);
387 if (error) {
388 ipc_rcu_putref(shp);
389 return error;
390 }
391
Eric W. Biederman9d665862007-06-16 10:16:16 -0700392 sprintf (name, "SYSV%08x", key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (shmflg & SHM_HUGETLB) {
Eric W. Biederman9d665862007-06-16 10:16:16 -0700394 /* hugetlb_file_setup takes care of mlock user accounting */
395 file = hugetlb_file_setup(name, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 shp->mlock_user = current->user;
397 } else {
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800398 int acctflag = VM_ACCOUNT;
399 /*
400 * Do not allow no accounting for OVERCOMMIT_NEVER, even
401 * if it's asked for.
402 */
403 if ((shmflg & SHM_NORESERVE) &&
404 sysctl_overcommit_memory != OVERCOMMIT_NEVER)
405 acctflag = 0;
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800406 file = shmem_file_setup(name, size, acctflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408 error = PTR_ERR(file);
409 if (IS_ERR(file))
410 goto no_file;
411
Pierre Peiffer48dea402008-04-29 01:00:35 -0700412 id = ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni);
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700413 if (id < 0) {
414 error = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 goto no_id;
Pierre Peiffer283bb7f2007-10-18 23:40:57 -0700416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700418 shp->shm_cprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 shp->shm_lprid = 0;
420 shp->shm_atim = shp->shm_dtim = 0;
421 shp->shm_ctim = get_seconds();
422 shp->shm_segsz = size;
423 shp->shm_nattch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 shp->shm_file = file;
Badari Pulavarty30475cc2007-06-16 10:15:59 -0700425 /*
426 * shmid gets reported as "inode#" in /proc/pid/maps.
427 * proc-ps tools use this. Changing this will break them.
428 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700429 file->f_dentry->d_inode->i_ino = shp->shm_perm.id;
Krishnakumar R551110a2005-10-29 18:16:45 -0700430
Kirill Korotaev4e982312006-10-02 02:18:22 -0700431 ns->shm_tot += numpages;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700432 error = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 shm_unlock(shp);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700434 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436no_id:
437 fput(file);
438no_file:
439 security_shm_free(shp);
440 ipc_rcu_putref(shp);
441 return error;
442}
443
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700444/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700445 * Called with shm_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700446 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700447static inline int shm_security(struct kern_ipc_perm *ipcp, int shmflg)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700448{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700449 struct shmid_kernel *shp;
450
451 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
452 return security_shm_associate(shp, shmflg);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700453}
454
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700455/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700456 * Called with shm_ids.rw_mutex and ipcp locked.
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700457 */
Nadia Derbey03f02c72007-10-18 23:40:51 -0700458static inline int shm_more_checks(struct kern_ipc_perm *ipcp,
459 struct ipc_params *params)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700460{
Nadia Derbey03f02c72007-10-18 23:40:51 -0700461 struct shmid_kernel *shp;
462
463 shp = container_of(ipcp, struct shmid_kernel, shm_perm);
464 if (shp->shm_segsz < params->u.size)
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700465 return -EINVAL;
466
467 return 0;
468}
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470asmlinkage long sys_shmget (key_t key, size_t size, int shmflg)
471{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700472 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700473 struct ipc_ops shm_ops;
474 struct ipc_params shm_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Kirill Korotaev4e982312006-10-02 02:18:22 -0700476 ns = current->nsproxy->ipc_ns;
477
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700478 shm_ops.getnew = newseg;
479 shm_ops.associate = shm_security;
480 shm_ops.more_checks = shm_more_checks;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700481
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700482 shm_params.key = key;
483 shm_params.flg = shmflg;
484 shm_params.u.size = size;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700485
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700486 return ipcget(ns, &shm_ids(ns), &shm_ops, &shm_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version)
490{
491 switch(version) {
492 case IPC_64:
493 return copy_to_user(buf, in, sizeof(*in));
494 case IPC_OLD:
495 {
496 struct shmid_ds out;
497
498 ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
499 out.shm_segsz = in->shm_segsz;
500 out.shm_atime = in->shm_atime;
501 out.shm_dtime = in->shm_dtime;
502 out.shm_ctime = in->shm_ctime;
503 out.shm_cpid = in->shm_cpid;
504 out.shm_lpid = in->shm_lpid;
505 out.shm_nattch = in->shm_nattch;
506
507 return copy_to_user(buf, &out, sizeof(out));
508 }
509 default:
510 return -EINVAL;
511 }
512}
513
Pierre Peiffer016d7132008-04-29 01:00:50 -0700514static inline unsigned long
515copy_shmid_from_user(struct shmid64_ds *out, void __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 switch(version) {
518 case IPC_64:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700519 if (copy_from_user(out, buf, sizeof(*out)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 case IPC_OLD:
523 {
524 struct shmid_ds tbuf_old;
525
526 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
527 return -EFAULT;
528
Pierre Peiffer016d7132008-04-29 01:00:50 -0700529 out->shm_perm.uid = tbuf_old.shm_perm.uid;
530 out->shm_perm.gid = tbuf_old.shm_perm.gid;
531 out->shm_perm.mode = tbuf_old.shm_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 return 0;
534 }
535 default:
536 return -EINVAL;
537 }
538}
539
540static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version)
541{
542 switch(version) {
543 case IPC_64:
544 return copy_to_user(buf, in, sizeof(*in));
545 case IPC_OLD:
546 {
547 struct shminfo out;
548
549 if(in->shmmax > INT_MAX)
550 out.shmmax = INT_MAX;
551 else
552 out.shmmax = (int)in->shmmax;
553
554 out.shmmin = in->shmmin;
555 out.shmmni = in->shmmni;
556 out.shmseg = in->shmseg;
557 out.shmall = in->shmall;
558
559 return copy_to_user(buf, &out, sizeof(out));
560 }
561 default:
562 return -EINVAL;
563 }
564}
565
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700566/*
Nadia Derbey3e148c72007-10-18 23:40:54 -0700567 * Called with shm_ids.rw_mutex held as a reader
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700568 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700569static void shm_get_stat(struct ipc_namespace *ns, unsigned long *rss,
570 unsigned long *swp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700572 int next_id;
573 int total, in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 *rss = 0;
576 *swp = 0;
577
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700578 in_use = shm_ids(ns).in_use;
579
580 for (total = 0, next_id = 0; total < in_use; next_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 struct shmid_kernel *shp;
582 struct inode *inode;
583
Nadia Derbey637c3662007-10-18 23:40:50 -0700584 shp = idr_find(&shm_ids(ns).ipcs_idr, next_id);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700585 if (shp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 continue;
587
Josef Sipek6d630792006-12-08 02:37:11 -0800588 inode = shp->shm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 if (is_file_hugepages(shp->shm_file)) {
591 struct address_space *mapping = inode->i_mapping;
592 *rss += (HPAGE_SIZE/PAGE_SIZE)*mapping->nrpages;
593 } else {
594 struct shmem_inode_info *info = SHMEM_I(inode);
595 spin_lock(&info->lock);
596 *rss += inode->i_mapping->nrpages;
597 *swp += info->swapped;
598 spin_unlock(&info->lock);
599 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700600
601 total++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603}
604
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700605/*
606 * This function handles some shmctl commands which require the rw_mutex
607 * to be held in write mode.
608 * NOTE: no locks must be held, the rw_mutex is taken inside this function.
609 */
610static int shmctl_down(struct ipc_namespace *ns, int shmid, int cmd,
611 struct shmid_ds __user *buf, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700613 struct kern_ipc_perm *ipcp;
Pierre Peiffer016d7132008-04-29 01:00:50 -0700614 struct shmid64_ds shmid64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct shmid_kernel *shp;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700616 int err;
617
618 if (cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700619 if (copy_shmid_from_user(&shmid64, buf, version))
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700620 return -EFAULT;
621 }
622
623 down_write(&shm_ids(ns).rw_mutex);
624 shp = shm_lock_check_down(ns, shmid);
625 if (IS_ERR(shp)) {
626 err = PTR_ERR(shp);
627 goto out_up;
628 }
629
630 ipcp = &shp->shm_perm;
631
632 err = audit_ipc_obj(ipcp);
633 if (err)
634 goto out_unlock;
635
636 if (cmd == IPC_SET) {
Pierre Peiffer016d7132008-04-29 01:00:50 -0700637 err = audit_ipc_set_perm(0, shmid64.shm_perm.uid,
638 shmid64.shm_perm.gid,
639 shmid64.shm_perm.mode);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700640 if (err)
641 goto out_unlock;
642 }
643
644 if (current->euid != ipcp->uid &&
645 current->euid != ipcp->cuid &&
646 !capable(CAP_SYS_ADMIN)) {
647 err = -EPERM;
648 goto out_unlock;
649 }
650
651 err = security_shm_shmctl(shp, cmd);
652 if (err)
653 goto out_unlock;
654 switch (cmd) {
655 case IPC_RMID:
656 do_shm_rmid(ns, ipcp);
657 goto out_up;
658 case IPC_SET:
Pierre Peiffer016d7132008-04-29 01:00:50 -0700659 ipcp->uid = shmid64.shm_perm.uid;
660 ipcp->gid = shmid64.shm_perm.gid;
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700661 ipcp->mode = (ipcp->mode & ~S_IRWXUGO)
Pierre Peiffer016d7132008-04-29 01:00:50 -0700662 | (shmid64.shm_perm.mode & S_IRWXUGO);
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700663 shp->shm_ctim = get_seconds();
664 break;
665 default:
666 err = -EINVAL;
667 }
668out_unlock:
669 shm_unlock(shp);
670out_up:
671 up_write(&shm_ids(ns).rw_mutex);
672 return err;
673}
674
675asmlinkage long sys_shmctl(int shmid, int cmd, struct shmid_ds __user *buf)
676{
677 struct shmid_kernel *shp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 int err, version;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700679 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 if (cmd < 0 || shmid < 0) {
682 err = -EINVAL;
683 goto out;
684 }
685
686 version = ipc_parse_version(&cmd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700687 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 switch (cmd) { /* replace with proc interface ? */
690 case IPC_INFO:
691 {
692 struct shminfo64 shminfo;
693
694 err = security_shm_shmctl(NULL, cmd);
695 if (err)
696 return err;
697
698 memset(&shminfo,0,sizeof(shminfo));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700699 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
700 shminfo.shmmax = ns->shm_ctlmax;
701 shminfo.shmall = ns->shm_ctlall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 shminfo.shmmin = SHMMIN;
704 if(copy_shminfo_to_user (buf, &shminfo, version))
705 return -EFAULT;
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700706
Nadia Derbey3e148c72007-10-18 23:40:54 -0700707 down_read(&shm_ids(ns).rw_mutex);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700708 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700709 up_read(&shm_ids(ns).rw_mutex);
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if(err<0)
712 err = 0;
713 goto out;
714 }
715 case SHM_INFO:
716 {
717 struct shm_info shm_info;
718
719 err = security_shm_shmctl(NULL, cmd);
720 if (err)
721 return err;
722
723 memset(&shm_info,0,sizeof(shm_info));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700724 down_read(&shm_ids(ns).rw_mutex);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700725 shm_info.used_ids = shm_ids(ns).in_use;
726 shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp);
727 shm_info.shm_tot = ns->shm_tot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 shm_info.swap_attempts = 0;
729 shm_info.swap_successes = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700730 err = ipc_get_maxid(&shm_ids(ns));
Nadia Derbey3e148c72007-10-18 23:40:54 -0700731 up_read(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if(copy_to_user (buf, &shm_info, sizeof(shm_info))) {
733 err = -EFAULT;
734 goto out;
735 }
736
737 err = err < 0 ? 0 : err;
738 goto out;
739 }
740 case SHM_STAT:
741 case IPC_STAT:
742 {
743 struct shmid64_ds tbuf;
744 int result;
Nadia Derbey023a5352007-10-18 23:40:51 -0700745
746 if (!buf) {
747 err = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 goto out;
Nadia Derbey023a5352007-10-18 23:40:51 -0700749 }
750
751 if (cmd == SHM_STAT) {
752 shp = shm_lock(ns, shmid);
753 if (IS_ERR(shp)) {
754 err = PTR_ERR(shp);
755 goto out;
756 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700757 result = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 } else {
Nadia Derbey023a5352007-10-18 23:40:51 -0700759 shp = shm_lock_check(ns, shmid);
760 if (IS_ERR(shp)) {
761 err = PTR_ERR(shp);
762 goto out;
763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 result = 0;
765 }
766 err=-EACCES;
767 if (ipcperms (&shp->shm_perm, S_IRUGO))
768 goto out_unlock;
769 err = security_shm_shmctl(shp, cmd);
770 if (err)
771 goto out_unlock;
Nadia Derbey023a5352007-10-18 23:40:51 -0700772 memset(&tbuf, 0, sizeof(tbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
774 tbuf.shm_segsz = shp->shm_segsz;
775 tbuf.shm_atime = shp->shm_atim;
776 tbuf.shm_dtime = shp->shm_dtim;
777 tbuf.shm_ctime = shp->shm_ctim;
778 tbuf.shm_cpid = shp->shm_cprid;
779 tbuf.shm_lpid = shp->shm_lprid;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800780 tbuf.shm_nattch = shp->shm_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 shm_unlock(shp);
782 if(copy_shmid_to_user (buf, &tbuf, version))
783 err = -EFAULT;
784 else
785 err = result;
786 goto out;
787 }
788 case SHM_LOCK:
789 case SHM_UNLOCK:
790 {
Nadia Derbey023a5352007-10-18 23:40:51 -0700791 shp = shm_lock_check(ns, shmid);
792 if (IS_ERR(shp)) {
793 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 goto out;
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Steve Grubb073115d2006-04-02 17:07:33 -0400797 err = audit_ipc_obj(&(shp->shm_perm));
798 if (err)
799 goto out_unlock;
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (!capable(CAP_IPC_LOCK)) {
802 err = -EPERM;
803 if (current->euid != shp->shm_perm.uid &&
804 current->euid != shp->shm_perm.cuid)
805 goto out_unlock;
806 if (cmd == SHM_LOCK &&
807 !current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur)
808 goto out_unlock;
809 }
810
811 err = security_shm_shmctl(shp, cmd);
812 if (err)
813 goto out_unlock;
814
815 if(cmd==SHM_LOCK) {
816 struct user_struct * user = current->user;
817 if (!is_file_hugepages(shp->shm_file)) {
818 err = shmem_lock(shp->shm_file, 1, user);
Pavel Emelianov7be77e22007-07-31 00:38:48 -0700819 if (!err && !(shp->shm_perm.mode & SHM_LOCKED)){
Andrew Mortonb33291c2006-01-08 01:02:21 -0800820 shp->shm_perm.mode |= SHM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 shp->mlock_user = user;
822 }
823 }
824 } else if (!is_file_hugepages(shp->shm_file)) {
825 shmem_lock(shp->shm_file, 0, shp->mlock_user);
Andrew Mortonb33291c2006-01-08 01:02:21 -0800826 shp->shm_perm.mode &= ~SHM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 shp->mlock_user = NULL;
828 }
829 shm_unlock(shp);
830 goto out;
831 }
832 case IPC_RMID:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 case IPC_SET:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700834 err = shmctl_down(ns, shmid, cmd, buf, version);
835 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 default:
Pierre Peiffer8d4cc8b2008-04-29 01:00:47 -0700837 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840out_unlock:
841 shm_unlock(shp);
842out:
843 return err;
844}
845
846/*
847 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
848 *
849 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
850 * "raddr" thing points to kernel space, and there has to be a wrapper around
851 * this.
852 */
853long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr)
854{
855 struct shmid_kernel *shp;
856 unsigned long addr;
857 unsigned long size;
858 struct file * file;
859 int err;
860 unsigned long flags;
861 unsigned long prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 int acc_mode;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800863 unsigned long user_addr;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700864 struct ipc_namespace *ns;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800865 struct shm_file_data *sfd;
866 struct path path;
867 mode_t f_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800869 err = -EINVAL;
870 if (shmid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800872 else if ((addr = (ulong)shmaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (addr & (SHMLBA-1)) {
874 if (shmflg & SHM_RND)
875 addr &= ~(SHMLBA-1); /* round down */
876 else
877#ifndef __ARCH_FORCE_SHMLBA
878 if (addr & ~PAGE_MASK)
879#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800880 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 flags = MAP_SHARED | MAP_FIXED;
883 } else {
884 if ((shmflg & SHM_REMAP))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 flags = MAP_SHARED;
888 }
889
890 if (shmflg & SHM_RDONLY) {
891 prot = PROT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 acc_mode = S_IRUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800893 f_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 } else {
895 prot = PROT_READ | PROT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 acc_mode = S_IRUGO | S_IWUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800897 f_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899 if (shmflg & SHM_EXEC) {
900 prot |= PROT_EXEC;
901 acc_mode |= S_IXUGO;
902 }
903
904 /*
905 * We cannot rely on the fs check since SYSV IPC does have an
906 * additional creator id...
907 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700908 ns = current->nsproxy->ipc_ns;
Nadia Derbey023a5352007-10-18 23:40:51 -0700909 shp = shm_lock_check(ns, shmid);
910 if (IS_ERR(shp)) {
911 err = PTR_ERR(shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 goto out;
Nadia Derbey023a5352007-10-18 23:40:51 -0700913 }
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800914
915 err = -EACCES;
916 if (ipcperms(&shp->shm_perm, acc_mode))
917 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 err = security_shm_shmat(shp, shmaddr, shmflg);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800920 if (err)
921 goto out_unlock;
922
923 path.dentry = dget(shp->shm_file->f_path.dentry);
Dave Hansence8d2cd2007-10-16 23:31:13 -0700924 path.mnt = shp->shm_file->f_path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 shp->shm_nattch++;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800926 size = i_size_read(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 shm_unlock(shp);
928
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800929 err = -ENOMEM;
930 sfd = kzalloc(sizeof(*sfd), GFP_KERNEL);
931 if (!sfd)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700932 goto out_put_dentry;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800933
934 err = -ENOMEM;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700935
936 file = alloc_file(path.mnt, path.dentry, f_mode, &shm_file_operations);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800937 if (!file)
938 goto out_free;
939
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800940 file->private_data = sfd;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800941 file->f_mapping = shp->shm_file->f_mapping;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700942 sfd->id = shp->shm_perm.id;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800943 sfd->ns = get_ipc_ns(ns);
944 sfd->file = shp->shm_file;
945 sfd->vm_ops = NULL;
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 down_write(&current->mm->mmap_sem);
948 if (addr && !(shmflg & SHM_REMAP)) {
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800949 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (find_vma_intersection(current->mm, addr, addr + size))
951 goto invalid;
952 /*
953 * If shm segment goes below stack, make sure there is some
954 * space left for the stack to grow (at least 4 pages).
955 */
956 if (addr < current->mm->start_stack &&
957 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
958 goto invalid;
959 }
960
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800961 user_addr = do_mmap (file, addr, size, prot, flags, 0);
962 *raddr = user_addr;
963 err = 0;
964 if (IS_ERR_VALUE(user_addr))
965 err = (long)user_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966invalid:
967 up_write(&current->mm->mmap_sem);
968
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800969 fput(file);
970
971out_nattch:
Nadia Derbey3e148c72007-10-18 23:40:54 -0700972 down_write(&shm_ids(ns).rw_mutex);
973 shp = shm_lock_down(ns, shmid);
Nadia Derbey023a5352007-10-18 23:40:51 -0700974 BUG_ON(IS_ERR(shp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 shp->shm_nattch--;
976 if(shp->shm_nattch == 0 &&
Andrew Mortonb33291c2006-01-08 01:02:21 -0800977 shp->shm_perm.mode & SHM_DEST)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700978 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 else
980 shm_unlock(shp);
Nadia Derbey3e148c72007-10-18 23:40:54 -0700981 up_write(&shm_ids(ns).rw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983out:
984 return err;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800985
986out_unlock:
987 shm_unlock(shp);
988 goto out;
989
990out_free:
991 kfree(sfd);
Dave Hansence8d2cd2007-10-16 23:31:13 -0700992out_put_dentry:
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800993 dput(path.dentry);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800994 goto out_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -0700997asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg)
998{
999 unsigned long ret;
1000 long err;
1001
1002 err = do_shmat(shmid, shmaddr, shmflg, &ret);
1003 if (err)
1004 return err;
1005 force_successful_syscall_return();
1006 return (long)ret;
1007}
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009/*
1010 * detach and kill segment if marked destroyed.
1011 * The work is done in shm_close.
1012 */
1013asmlinkage long sys_shmdt(char __user *shmaddr)
1014{
1015 struct mm_struct *mm = current->mm;
1016 struct vm_area_struct *vma, *next;
1017 unsigned long addr = (unsigned long)shmaddr;
1018 loff_t size = 0;
1019 int retval = -EINVAL;
1020
Hugh Dickinsdf1e2fb2006-03-24 03:18:06 -08001021 if (addr & ~PAGE_MASK)
1022 return retval;
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 down_write(&mm->mmap_sem);
1025
1026 /*
1027 * This function tries to be smart and unmap shm segments that
1028 * were modified by partial mlock or munmap calls:
1029 * - It first determines the size of the shm segment that should be
1030 * unmapped: It searches for a vma that is backed by shm and that
1031 * started at address shmaddr. It records it's size and then unmaps
1032 * it.
1033 * - Then it unmaps all shm vmas that started at shmaddr and that
1034 * are within the initially determined size.
1035 * Errors from do_munmap are ignored: the function only fails if
1036 * it's called with invalid parameters or if it's called to unmap
1037 * a part of a vma. Both calls in this function are for full vmas,
1038 * the parameters are directly copied from the vma itself and always
1039 * valid - therefore do_munmap cannot fail. (famous last words?)
1040 */
1041 /*
1042 * If it had been mremap()'d, the starting address would not
1043 * match the usual checks anyway. So assume all vma's are
1044 * above the starting address given.
1045 */
1046 vma = find_vma(mm, addr);
1047
1048 while (vma) {
1049 next = vma->vm_next;
1050
1051 /*
1052 * Check if the starting address would match, i.e. it's
1053 * a fragment created by mprotect() and/or munmap(), or it
1054 * otherwise it starts at this address with no hassles.
1055 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001056 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
1058
1059
Josef Sipek6d630792006-12-08 02:37:11 -08001060 size = vma->vm_file->f_path.dentry->d_inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1062 /*
1063 * We discovered the size of the shm segment, so
1064 * break out of here and fall through to the next
1065 * loop that uses the size information to stop
1066 * searching for matching vma's.
1067 */
1068 retval = 0;
1069 vma = next;
1070 break;
1071 }
1072 vma = next;
1073 }
1074
1075 /*
1076 * We need look no further than the maximum address a fragment
1077 * could possibly have landed at. Also cast things to loff_t to
1078 * prevent overflows and make comparisions vs. equal-width types.
1079 */
KAMEZAWA Hiroyuki8e367092006-02-10 01:51:12 -08001080 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
1082 next = vma->vm_next;
1083
1084 /* finding a matching vma now does not alter retval */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001085 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
1087
1088 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1089 vma = next;
1090 }
1091
1092 up_write(&mm->mmap_sem);
1093 return retval;
1094}
1095
1096#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001097static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Mike Waychison19b49462005-09-06 15:17:10 -07001099 struct shmid_kernel *shp = it;
1100 char *format;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102#define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
1103#define BIG_STRING "%10d %10d %4o %21u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Mike Waychison19b49462005-09-06 15:17:10 -07001105 if (sizeof(size_t) <= sizeof(int))
1106 format = SMALL_STRING;
1107 else
1108 format = BIG_STRING;
1109 return seq_printf(s, format,
1110 shp->shm_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001111 shp->shm_perm.id,
Andrew Mortonb33291c2006-01-08 01:02:21 -08001112 shp->shm_perm.mode,
Mike Waychison19b49462005-09-06 15:17:10 -07001113 shp->shm_segsz,
1114 shp->shm_cprid,
1115 shp->shm_lprid,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001116 shp->shm_nattch,
Mike Waychison19b49462005-09-06 15:17:10 -07001117 shp->shm_perm.uid,
1118 shp->shm_perm.gid,
1119 shp->shm_perm.cuid,
1120 shp->shm_perm.cgid,
1121 shp->shm_atim,
1122 shp->shm_dtim,
1123 shp->shm_ctim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125#endif