blob: d20cc25c5bdfb0cc7143584150f394f1f4b49901 [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>
Ingo Molnar5f921ae2006-03-26 01:37:17 -080038#include <linux/mutex.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>
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/uaccess.h>
43
44#include "util.h"
45
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080046struct shm_file_data {
47 int id;
48 struct ipc_namespace *ns;
49 struct file *file;
50 const struct vm_operations_struct *vm_ops;
51};
52
53#define shm_file_data(file) (*((struct shm_file_data **)&(file)->private_data))
54
Arjan van de Ven9a321442007-02-12 00:55:35 -080055static const struct file_operations shm_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static struct vm_operations_struct shm_vm_ops;
57
Kirill Korotaev4e982312006-10-02 02:18:22 -070058static struct ipc_ids init_shm_ids;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Kirill Korotaev4e982312006-10-02 02:18:22 -070060#define shm_ids(ns) (*((ns)->ids[IPC_SHM_IDS]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Kirill Korotaev4e982312006-10-02 02:18:22 -070062#define shm_lock(ns, id) \
63 ((struct shmid_kernel*)ipc_lock(&shm_ids(ns),id))
64#define shm_unlock(shp) \
65 ipc_unlock(&(shp)->shm_perm)
66#define shm_get(ns, id) \
67 ((struct shmid_kernel*)ipc_get(&shm_ids(ns),id))
68#define shm_buildid(ns, id, seq) \
69 ipc_buildid(&shm_ids(ns), id, seq)
70
Nadia Derbey7748dbf2007-10-18 23:40:49 -070071static int newseg(struct ipc_namespace *, struct ipc_params *);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -080072static void shm_open(struct vm_area_struct *vma);
73static void shm_close(struct vm_area_struct *vma);
Kirill Korotaev4e982312006-10-02 02:18:22 -070074static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -070076static int sysvipc_shm_proc_show(struct seq_file *s, void *it);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#endif
78
Cedric Le Goater7d69a1f2007-07-15 23:40:58 -070079static void __shm_init_ns(struct ipc_namespace *ns, struct ipc_ids *ids)
Kirill Korotaev4e982312006-10-02 02:18:22 -070080{
81 ns->ids[IPC_SHM_IDS] = ids;
82 ns->shm_ctlmax = SHMMAX;
83 ns->shm_ctlall = SHMALL;
84 ns->shm_ctlmni = SHMMNI;
85 ns->shm_tot = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -070086 ipc_init_ids(ids);
Kirill Korotaev4e982312006-10-02 02:18:22 -070087}
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Kirill Korotaev4e982312006-10-02 02:18:22 -070089static void do_shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *shp)
90{
91 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
Kirill Korotaev4e982312006-10-02 02:18:22 -0700100int shm_init_ns(struct ipc_namespace *ns)
101{
102 struct ipc_ids *ids;
103
104 ids = kmalloc(sizeof(struct ipc_ids), GFP_KERNEL);
105 if (ids == NULL)
106 return -ENOMEM;
107
108 __shm_init_ns(ns, ids);
109 return 0;
110}
111
112void shm_exit_ns(struct ipc_namespace *ns)
113{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700114 struct shmid_kernel *shp;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700115 int next_id;
116 int total, in_use;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700117
118 mutex_lock(&shm_ids(ns).mutex);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700119
120 in_use = shm_ids(ns).in_use;
121
122 for (total = 0, next_id = 0; total < in_use; next_id++) {
123 shp = idr_find(&shm_ids(ns).ipcs_idr, next_id);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700124 if (shp == NULL)
125 continue;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700126 ipc_lock_by_ptr(&shp->shm_perm);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700127 do_shm_rmid(ns, shp);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700128 total++;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700129 }
130 mutex_unlock(&shm_ids(ns).mutex);
131
132 kfree(ns->ids[IPC_SHM_IDS]);
133 ns->ids[IPC_SHM_IDS] = NULL;
134}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136void __init shm_init (void)
137{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700138 __shm_init_ns(&init_ipc_ns, &init_shm_ids);
Mike Waychison19b49462005-09-06 15:17:10 -0700139 ipc_init_proc_interface("sysvipc/shm",
140 " key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime\n",
Kirill Korotaev4e982312006-10-02 02:18:22 -0700141 IPC_SHM_IDS, sysvipc_shm_proc_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Kirill Korotaev4e982312006-10-02 02:18:22 -0700144static inline int shm_checkid(struct ipc_namespace *ns,
145 struct shmid_kernel *s, int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700147 if (ipc_checkid(&shm_ids(ns), &s->shm_perm, id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return -EIDRM;
149 return 0;
150}
151
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700152static inline void shm_rmid(struct ipc_namespace *ns, struct shmid_kernel *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700154 ipc_rmid(&shm_ids(ns), &s->shm_perm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Kirill Korotaev4e982312006-10-02 02:18:22 -0700157static inline int shm_addid(struct ipc_namespace *ns, struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700159 return ipc_addid(&shm_ids(ns), &shp->shm_perm, ns->shm_ctlmni);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162
163
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800164/* This is called by fork, once for every shm attach. */
165static void shm_open(struct vm_area_struct *vma)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700166{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800167 struct file *file = vma->vm_file;
168 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 struct shmid_kernel *shp;
170
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800171 shp = shm_lock(sfd->ns, sfd->id);
Eric Sesterhenn9ba025f2006-04-02 13:42:42 +0200172 BUG_ON(!shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 shp->shm_atim = get_seconds();
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700174 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 shp->shm_nattch++;
176 shm_unlock(shp);
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
180 * shm_destroy - free the struct shmid_kernel
181 *
182 * @shp: struct to free
183 *
Ingo Molnar5f921ae2006-03-26 01:37:17 -0800184 * It has to be called with shp and shm_ids.mutex locked,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * but returns with shp unlocked and freed.
186 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700187static void shm_destroy(struct ipc_namespace *ns, struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700189 ns->shm_tot -= (shp->shm_segsz + PAGE_SIZE - 1) >> PAGE_SHIFT;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700190 shm_rmid(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 shm_unlock(shp);
192 if (!is_file_hugepages(shp->shm_file))
193 shmem_lock(shp->shm_file, 0, shp->mlock_user);
194 else
Josef Sipek6d630792006-12-08 02:37:11 -0800195 user_shm_unlock(shp->shm_file->f_path.dentry->d_inode->i_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 shp->mlock_user);
197 fput (shp->shm_file);
198 security_shm_free(shp);
199 ipc_rcu_putref(shp);
200}
201
202/*
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800203 * remove the attach descriptor vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * free memory for segment if it is marked destroyed.
205 * The descriptor has already been removed from the current->mm->mmap list
206 * and will later be kfree()d.
207 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800208static void shm_close(struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800210 struct file * file = vma->vm_file;
211 struct shm_file_data *sfd = shm_file_data(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct shmid_kernel *shp;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800213 struct ipc_namespace *ns = sfd->ns;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700214
215 mutex_lock(&shm_ids(ns).mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /* remove from the list of attaches of the shm segment */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800217 shp = shm_lock(ns, sfd->id);
Eric Sesterhenn9ba025f2006-04-02 13:42:42 +0200218 BUG_ON(!shp);
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700219 shp->shm_lprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 shp->shm_dtim = get_seconds();
221 shp->shm_nattch--;
222 if(shp->shm_nattch == 0 &&
Andrew Mortonb33291c2006-01-08 01:02:21 -0800223 shp->shm_perm.mode & SHM_DEST)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700224 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 else
226 shm_unlock(shp);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700227 mutex_unlock(&shm_ids(ns).mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Nick Piggind0217ac2007-07-19 01:47:03 -0700230static int shm_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800231{
232 struct file *file = vma->vm_file;
233 struct shm_file_data *sfd = shm_file_data(file);
234
Nick Piggind0217ac2007-07-19 01:47:03 -0700235 return sfd->vm_ops->fault(vma, vmf);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800236}
237
238#ifdef CONFIG_NUMA
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700239static int shm_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
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 int err = 0;
244 if (sfd->vm_ops->set_policy)
245 err = sfd->vm_ops->set_policy(vma, new);
246 return err;
247}
248
Adrian Bunkd823e3e2007-10-16 23:26:42 -0700249static struct mempolicy *shm_get_policy(struct vm_area_struct *vma,
250 unsigned long addr)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800251{
252 struct file *file = vma->vm_file;
253 struct shm_file_data *sfd = shm_file_data(file);
254 struct mempolicy *pol = NULL;
255
256 if (sfd->vm_ops->get_policy)
257 pol = sfd->vm_ops->get_policy(vma, addr);
Adam Litke22741922007-06-16 10:16:15 -0700258 else if (vma->vm_policy)
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800259 pol = vma->vm_policy;
Adam Litke22741922007-06-16 10:16:15 -0700260 else
261 pol = current->mempolicy;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800262 return pol;
263}
264#endif
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266static int shm_mmap(struct file * file, struct vm_area_struct * vma)
267{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800268 struct shm_file_data *sfd = shm_file_data(file);
David Howellsb0e15192006-01-06 00:11:42 -0800269 int ret;
270
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800271 ret = sfd->file->f_op->mmap(sfd->file, vma);
272 if (ret != 0)
273 return ret;
274 sfd->vm_ops = vma->vm_ops;
David Howells2e92a3b2007-07-31 00:37:24 -0700275#ifdef CONFIG_MMU
Nick Piggin54cb8822007-07-19 01:46:59 -0700276 BUG_ON(!sfd->vm_ops->fault);
David Howells2e92a3b2007-07-31 00:37:24 -0700277#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800278 vma->vm_ops = &shm_vm_ops;
279 shm_open(vma);
David Howellsb0e15192006-01-06 00:11:42 -0800280
281 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Kirill Korotaev4e982312006-10-02 02:18:22 -0700284static int shm_release(struct inode *ino, struct file *file)
285{
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800286 struct shm_file_data *sfd = shm_file_data(file);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700287
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800288 put_ipc_ns(sfd->ns);
289 shm_file_data(file) = NULL;
290 kfree(sfd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700291 return 0;
292}
293
Adam Litke516dffd2007-03-01 15:46:08 -0800294static int shm_fsync(struct file *file, struct dentry *dentry, int datasync)
295{
296 int (*fsync) (struct file *, struct dentry *, int datasync);
297 struct shm_file_data *sfd = shm_file_data(file);
298 int ret = -EINVAL;
299
300 fsync = sfd->file->f_op->fsync;
301 if (fsync)
302 ret = fsync(sfd->file, sfd->file->f_path.dentry, datasync);
303 return ret;
304}
305
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800306static unsigned long shm_get_unmapped_area(struct file *file,
307 unsigned long addr, unsigned long len, unsigned long pgoff,
308 unsigned long flags)
309{
310 struct shm_file_data *sfd = shm_file_data(file);
Adam Litke516dffd2007-03-01 15:46:08 -0800311 return get_unmapped_area(sfd->file, addr, len, pgoff, flags);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800312}
Adam Litke516dffd2007-03-01 15:46:08 -0800313
314int is_file_shm_hugepages(struct file *file)
315{
316 int ret = 0;
317
318 if (file->f_op == &shm_file_operations) {
319 struct shm_file_data *sfd;
320 sfd = shm_file_data(file);
321 ret = is_file_hugepages(sfd->file);
322 }
323 return ret;
324}
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800325
Arjan van de Ven9a321442007-02-12 00:55:35 -0800326static const struct file_operations shm_file_operations = {
Kirill Korotaev4e982312006-10-02 02:18:22 -0700327 .mmap = shm_mmap,
Adam Litke516dffd2007-03-01 15:46:08 -0800328 .fsync = shm_fsync,
Kirill Korotaev4e982312006-10-02 02:18:22 -0700329 .release = shm_release,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800330 .get_unmapped_area = shm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331};
332
333static struct vm_operations_struct shm_vm_ops = {
334 .open = shm_open, /* callback for a new vm-area open */
335 .close = shm_close, /* callback for when the vm-area is released */
Nick Piggin54cb8822007-07-19 01:46:59 -0700336 .fault = shm_fault,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800337#if defined(CONFIG_NUMA)
338 .set_policy = shm_set_policy,
339 .get_policy = shm_get_policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#endif
341};
342
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700343static int newseg(struct ipc_namespace *ns, struct ipc_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700345 key_t key = params->key;
346 int shmflg = params->flg;
347 size_t size = params->u.size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int error;
349 struct shmid_kernel *shp;
350 int numpages = (size + PAGE_SIZE -1) >> PAGE_SHIFT;
351 struct file * file;
352 char name[13];
353 int id;
354
Kirill Korotaev4e982312006-10-02 02:18:22 -0700355 if (size < SHMMIN || size > ns->shm_ctlmax)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return -EINVAL;
357
Guy Streeterf66d45e2007-01-23 12:20:04 -0600358 if (ns->shm_tot + numpages > ns->shm_ctlall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -ENOSPC;
360
361 shp = ipc_rcu_alloc(sizeof(*shp));
362 if (!shp)
363 return -ENOMEM;
364
365 shp->shm_perm.key = key;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800366 shp->shm_perm.mode = (shmflg & S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 shp->mlock_user = NULL;
368
369 shp->shm_perm.security = NULL;
370 error = security_shm_alloc(shp);
371 if (error) {
372 ipc_rcu_putref(shp);
373 return error;
374 }
375
Eric W. Biederman9d665862007-06-16 10:16:16 -0700376 sprintf (name, "SYSV%08x", key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (shmflg & SHM_HUGETLB) {
Eric W. Biederman9d665862007-06-16 10:16:16 -0700378 /* hugetlb_file_setup takes care of mlock user accounting */
379 file = hugetlb_file_setup(name, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 shp->mlock_user = current->user;
381 } else {
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800382 int acctflag = VM_ACCOUNT;
383 /*
384 * Do not allow no accounting for OVERCOMMIT_NEVER, even
385 * if it's asked for.
386 */
387 if ((shmflg & SHM_NORESERVE) &&
388 sysctl_overcommit_memory != OVERCOMMIT_NEVER)
389 acctflag = 0;
Badari Pulavartybf8f9722005-11-07 00:59:27 -0800390 file = shmem_file_setup(name, size, acctflag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392 error = PTR_ERR(file);
393 if (IS_ERR(file))
394 goto no_file;
395
396 error = -ENOSPC;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700397 id = shm_addid(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if(id == -1)
399 goto no_id;
400
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700401 shp->shm_cprid = task_tgid_vnr(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 shp->shm_lprid = 0;
403 shp->shm_atim = shp->shm_dtim = 0;
404 shp->shm_ctim = get_seconds();
405 shp->shm_segsz = size;
406 shp->shm_nattch = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700407 shp->shm_perm.id = shm_buildid(ns, id, shp->shm_perm.seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 shp->shm_file = file;
Badari Pulavarty30475cc2007-06-16 10:15:59 -0700409 /*
410 * shmid gets reported as "inode#" in /proc/pid/maps.
411 * proc-ps tools use this. Changing this will break them.
412 */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700413 file->f_dentry->d_inode->i_ino = shp->shm_perm.id;
Krishnakumar R551110a2005-10-29 18:16:45 -0700414
Kirill Korotaev4e982312006-10-02 02:18:22 -0700415 ns->shm_tot += numpages;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700416 error = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 shm_unlock(shp);
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700418 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420no_id:
421 fput(file);
422no_file:
423 security_shm_free(shp);
424 ipc_rcu_putref(shp);
425 return error;
426}
427
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700428static inline int shm_security(void *shp, int shmflg)
429{
430 return security_shm_associate((struct shmid_kernel *) shp, shmflg);
431}
432
433static inline int shm_more_checks(void *shp, struct ipc_params *params)
434{
435 if (((struct shmid_kernel *)shp)->shm_segsz < params->u.size)
436 return -EINVAL;
437
438 return 0;
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441asmlinkage long sys_shmget (key_t key, size_t size, int shmflg)
442{
Kirill Korotaev4e982312006-10-02 02:18:22 -0700443 struct ipc_namespace *ns;
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700444 struct ipc_ops shm_ops;
445 struct ipc_params shm_params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Kirill Korotaev4e982312006-10-02 02:18:22 -0700447 ns = current->nsproxy->ipc_ns;
448
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700449 shm_ops.getnew = newseg;
450 shm_ops.associate = shm_security;
451 shm_ops.more_checks = shm_more_checks;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700452
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700453 shm_params.key = key;
454 shm_params.flg = shmflg;
455 shm_params.u.size = size;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700456
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700457 return ipcget(ns, &shm_ids(ns), &shm_ops, &shm_params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460static inline unsigned long copy_shmid_to_user(void __user *buf, struct shmid64_ds *in, int version)
461{
462 switch(version) {
463 case IPC_64:
464 return copy_to_user(buf, in, sizeof(*in));
465 case IPC_OLD:
466 {
467 struct shmid_ds out;
468
469 ipc64_perm_to_ipc_perm(&in->shm_perm, &out.shm_perm);
470 out.shm_segsz = in->shm_segsz;
471 out.shm_atime = in->shm_atime;
472 out.shm_dtime = in->shm_dtime;
473 out.shm_ctime = in->shm_ctime;
474 out.shm_cpid = in->shm_cpid;
475 out.shm_lpid = in->shm_lpid;
476 out.shm_nattch = in->shm_nattch;
477
478 return copy_to_user(buf, &out, sizeof(out));
479 }
480 default:
481 return -EINVAL;
482 }
483}
484
485struct shm_setbuf {
486 uid_t uid;
487 gid_t gid;
488 mode_t mode;
489};
490
491static inline unsigned long copy_shmid_from_user(struct shm_setbuf *out, void __user *buf, int version)
492{
493 switch(version) {
494 case IPC_64:
495 {
496 struct shmid64_ds tbuf;
497
498 if (copy_from_user(&tbuf, buf, sizeof(tbuf)))
499 return -EFAULT;
500
501 out->uid = tbuf.shm_perm.uid;
502 out->gid = tbuf.shm_perm.gid;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800503 out->mode = tbuf.shm_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 return 0;
506 }
507 case IPC_OLD:
508 {
509 struct shmid_ds tbuf_old;
510
511 if (copy_from_user(&tbuf_old, buf, sizeof(tbuf_old)))
512 return -EFAULT;
513
514 out->uid = tbuf_old.shm_perm.uid;
515 out->gid = tbuf_old.shm_perm.gid;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800516 out->mode = tbuf_old.shm_perm.mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 return 0;
519 }
520 default:
521 return -EINVAL;
522 }
523}
524
525static inline unsigned long copy_shminfo_to_user(void __user *buf, struct shminfo64 *in, int version)
526{
527 switch(version) {
528 case IPC_64:
529 return copy_to_user(buf, in, sizeof(*in));
530 case IPC_OLD:
531 {
532 struct shminfo out;
533
534 if(in->shmmax > INT_MAX)
535 out.shmmax = INT_MAX;
536 else
537 out.shmmax = (int)in->shmmax;
538
539 out.shmmin = in->shmmin;
540 out.shmmni = in->shmmni;
541 out.shmseg = in->shmseg;
542 out.shmall = in->shmall;
543
544 return copy_to_user(buf, &out, sizeof(out));
545 }
546 default:
547 return -EINVAL;
548 }
549}
550
Kirill Korotaev4e982312006-10-02 02:18:22 -0700551static void shm_get_stat(struct ipc_namespace *ns, unsigned long *rss,
552 unsigned long *swp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700554 int next_id;
555 int total, in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 *rss = 0;
558 *swp = 0;
559
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700560 in_use = shm_ids(ns).in_use;
561
562 for (total = 0, next_id = 0; total < in_use; next_id++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct shmid_kernel *shp;
564 struct inode *inode;
565
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700566 shp = shm_get(ns, next_id);
567 if (shp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 continue;
569
Josef Sipek6d630792006-12-08 02:37:11 -0800570 inode = shp->shm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (is_file_hugepages(shp->shm_file)) {
573 struct address_space *mapping = inode->i_mapping;
574 *rss += (HPAGE_SIZE/PAGE_SIZE)*mapping->nrpages;
575 } else {
576 struct shmem_inode_info *info = SHMEM_I(inode);
577 spin_lock(&info->lock);
578 *rss += inode->i_mapping->nrpages;
579 *swp += info->swapped;
580 spin_unlock(&info->lock);
581 }
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700582
583 total++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
585}
586
587asmlinkage long sys_shmctl (int shmid, int cmd, struct shmid_ds __user *buf)
588{
589 struct shm_setbuf setbuf;
590 struct shmid_kernel *shp;
591 int err, version;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700592 struct ipc_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (cmd < 0 || shmid < 0) {
595 err = -EINVAL;
596 goto out;
597 }
598
599 version = ipc_parse_version(&cmd);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700600 ns = current->nsproxy->ipc_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 switch (cmd) { /* replace with proc interface ? */
603 case IPC_INFO:
604 {
605 struct shminfo64 shminfo;
606
607 err = security_shm_shmctl(NULL, cmd);
608 if (err)
609 return err;
610
611 memset(&shminfo,0,sizeof(shminfo));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700612 shminfo.shmmni = shminfo.shmseg = ns->shm_ctlmni;
613 shminfo.shmmax = ns->shm_ctlmax;
614 shminfo.shmall = ns->shm_ctlall;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 shminfo.shmmin = SHMMIN;
617 if(copy_shminfo_to_user (buf, &shminfo, version))
618 return -EFAULT;
619 /* reading a integer is always atomic */
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700620 err = ipc_get_maxid(&shm_ids(ns));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if(err<0)
622 err = 0;
623 goto out;
624 }
625 case SHM_INFO:
626 {
627 struct shm_info shm_info;
628
629 err = security_shm_shmctl(NULL, cmd);
630 if (err)
631 return err;
632
633 memset(&shm_info,0,sizeof(shm_info));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700634 mutex_lock(&shm_ids(ns).mutex);
635 shm_info.used_ids = shm_ids(ns).in_use;
636 shm_get_stat (ns, &shm_info.shm_rss, &shm_info.shm_swp);
637 shm_info.shm_tot = ns->shm_tot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 shm_info.swap_attempts = 0;
639 shm_info.swap_successes = 0;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700640 err = ipc_get_maxid(&shm_ids(ns));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700641 mutex_unlock(&shm_ids(ns).mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if(copy_to_user (buf, &shm_info, sizeof(shm_info))) {
643 err = -EFAULT;
644 goto out;
645 }
646
647 err = err < 0 ? 0 : err;
648 goto out;
649 }
650 case SHM_STAT:
651 case IPC_STAT:
652 {
653 struct shmid64_ds tbuf;
654 int result;
655 memset(&tbuf, 0, sizeof(tbuf));
Kirill Korotaev4e982312006-10-02 02:18:22 -0700656 shp = shm_lock(ns, shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if(shp==NULL) {
658 err = -EINVAL;
659 goto out;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700660 } else if (cmd == SHM_STAT) {
661 result = shp->shm_perm.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 } else {
Kirill Korotaev4e982312006-10-02 02:18:22 -0700663 err = shm_checkid(ns, shp,shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if(err)
665 goto out_unlock;
666 result = 0;
667 }
668 err=-EACCES;
669 if (ipcperms (&shp->shm_perm, S_IRUGO))
670 goto out_unlock;
671 err = security_shm_shmctl(shp, cmd);
672 if (err)
673 goto out_unlock;
674 kernel_to_ipc64_perm(&shp->shm_perm, &tbuf.shm_perm);
675 tbuf.shm_segsz = shp->shm_segsz;
676 tbuf.shm_atime = shp->shm_atim;
677 tbuf.shm_dtime = shp->shm_dtim;
678 tbuf.shm_ctime = shp->shm_ctim;
679 tbuf.shm_cpid = shp->shm_cprid;
680 tbuf.shm_lpid = shp->shm_lprid;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800681 tbuf.shm_nattch = shp->shm_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 shm_unlock(shp);
683 if(copy_shmid_to_user (buf, &tbuf, version))
684 err = -EFAULT;
685 else
686 err = result;
687 goto out;
688 }
689 case SHM_LOCK:
690 case SHM_UNLOCK:
691 {
Kirill Korotaev4e982312006-10-02 02:18:22 -0700692 shp = shm_lock(ns, shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if(shp==NULL) {
694 err = -EINVAL;
695 goto out;
696 }
Kirill Korotaev4e982312006-10-02 02:18:22 -0700697 err = shm_checkid(ns, shp,shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if(err)
699 goto out_unlock;
700
Steve Grubb073115d2006-04-02 17:07:33 -0400701 err = audit_ipc_obj(&(shp->shm_perm));
702 if (err)
703 goto out_unlock;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (!capable(CAP_IPC_LOCK)) {
706 err = -EPERM;
707 if (current->euid != shp->shm_perm.uid &&
708 current->euid != shp->shm_perm.cuid)
709 goto out_unlock;
710 if (cmd == SHM_LOCK &&
711 !current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur)
712 goto out_unlock;
713 }
714
715 err = security_shm_shmctl(shp, cmd);
716 if (err)
717 goto out_unlock;
718
719 if(cmd==SHM_LOCK) {
720 struct user_struct * user = current->user;
721 if (!is_file_hugepages(shp->shm_file)) {
722 err = shmem_lock(shp->shm_file, 1, user);
Pavel Emelianov7be77e22007-07-31 00:38:48 -0700723 if (!err && !(shp->shm_perm.mode & SHM_LOCKED)){
Andrew Mortonb33291c2006-01-08 01:02:21 -0800724 shp->shm_perm.mode |= SHM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 shp->mlock_user = user;
726 }
727 }
728 } else if (!is_file_hugepages(shp->shm_file)) {
729 shmem_lock(shp->shm_file, 0, shp->mlock_user);
Andrew Mortonb33291c2006-01-08 01:02:21 -0800730 shp->shm_perm.mode &= ~SHM_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 shp->mlock_user = NULL;
732 }
733 shm_unlock(shp);
734 goto out;
735 }
736 case IPC_RMID:
737 {
738 /*
739 * We cannot simply remove the file. The SVID states
740 * that the block remains until the last person
741 * detaches from it, then is deleted. A shmat() on
742 * an RMID segment is legal in older Linux and if
743 * we change it apps break...
744 *
745 * Instead we set a destroyed flag, and then blow
746 * the name away when the usage hits zero.
747 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700748 mutex_lock(&shm_ids(ns).mutex);
749 shp = shm_lock(ns, shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 err = -EINVAL;
751 if (shp == NULL)
752 goto out_up;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700753 err = shm_checkid(ns, shp, shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if(err)
755 goto out_unlock_up;
756
Steve Grubb073115d2006-04-02 17:07:33 -0400757 err = audit_ipc_obj(&(shp->shm_perm));
758 if (err)
759 goto out_unlock_up;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (current->euid != shp->shm_perm.uid &&
762 current->euid != shp->shm_perm.cuid &&
763 !capable(CAP_SYS_ADMIN)) {
764 err=-EPERM;
765 goto out_unlock_up;
766 }
767
768 err = security_shm_shmctl(shp, cmd);
769 if (err)
770 goto out_unlock_up;
771
Kirill Korotaev4e982312006-10-02 02:18:22 -0700772 do_shm_rmid(ns, shp);
773 mutex_unlock(&shm_ids(ns).mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto out;
775 }
776
777 case IPC_SET:
778 {
779 if (copy_shmid_from_user (&setbuf, buf, version)) {
780 err = -EFAULT;
781 goto out;
782 }
Kirill Korotaev4e982312006-10-02 02:18:22 -0700783 mutex_lock(&shm_ids(ns).mutex);
784 shp = shm_lock(ns, shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 err=-EINVAL;
786 if(shp==NULL)
787 goto out_up;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700788 err = shm_checkid(ns, shp,shmid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if(err)
790 goto out_unlock_up;
Steve Grubb073115d2006-04-02 17:07:33 -0400791 err = audit_ipc_obj(&(shp->shm_perm));
792 if (err)
793 goto out_unlock_up;
Linda Knippersac032212006-05-16 22:03:48 -0400794 err = audit_ipc_set_perm(0, setbuf.uid, setbuf.gid, setbuf.mode);
Steve Grubb073115d2006-04-02 17:07:33 -0400795 if (err)
796 goto out_unlock_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 err=-EPERM;
798 if (current->euid != shp->shm_perm.uid &&
799 current->euid != shp->shm_perm.cuid &&
800 !capable(CAP_SYS_ADMIN)) {
801 goto out_unlock_up;
802 }
803
804 err = security_shm_shmctl(shp, cmd);
805 if (err)
806 goto out_unlock_up;
807
808 shp->shm_perm.uid = setbuf.uid;
809 shp->shm_perm.gid = setbuf.gid;
Andrew Mortonb33291c2006-01-08 01:02:21 -0800810 shp->shm_perm.mode = (shp->shm_perm.mode & ~S_IRWXUGO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 | (setbuf.mode & S_IRWXUGO);
812 shp->shm_ctim = get_seconds();
813 break;
814 }
815
816 default:
817 err = -EINVAL;
818 goto out;
819 }
820
821 err = 0;
822out_unlock_up:
823 shm_unlock(shp);
824out_up:
Kirill Korotaev4e982312006-10-02 02:18:22 -0700825 mutex_unlock(&shm_ids(ns).mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto out;
827out_unlock:
828 shm_unlock(shp);
829out:
830 return err;
831}
832
833/*
834 * Fix shmaddr, allocate descriptor, map shm, add attach descriptor to lists.
835 *
836 * NOTE! Despite the name, this is NOT a direct system call entrypoint. The
837 * "raddr" thing points to kernel space, and there has to be a wrapper around
838 * this.
839 */
840long do_shmat(int shmid, char __user *shmaddr, int shmflg, ulong *raddr)
841{
842 struct shmid_kernel *shp;
843 unsigned long addr;
844 unsigned long size;
845 struct file * file;
846 int err;
847 unsigned long flags;
848 unsigned long prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 int acc_mode;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800850 unsigned long user_addr;
Kirill Korotaev4e982312006-10-02 02:18:22 -0700851 struct ipc_namespace *ns;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800852 struct shm_file_data *sfd;
853 struct path path;
854 mode_t f_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800856 err = -EINVAL;
857 if (shmid < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800859 else if ((addr = (ulong)shmaddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (addr & (SHMLBA-1)) {
861 if (shmflg & SHM_RND)
862 addr &= ~(SHMLBA-1); /* round down */
863 else
864#ifndef __ARCH_FORCE_SHMLBA
865 if (addr & ~PAGE_MASK)
866#endif
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800867 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 flags = MAP_SHARED | MAP_FIXED;
870 } else {
871 if ((shmflg & SHM_REMAP))
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800872 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 flags = MAP_SHARED;
875 }
876
877 if (shmflg & SHM_RDONLY) {
878 prot = PROT_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 acc_mode = S_IRUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800880 f_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 } else {
882 prot = PROT_READ | PROT_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 acc_mode = S_IRUGO | S_IWUGO;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800884 f_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
886 if (shmflg & SHM_EXEC) {
887 prot |= PROT_EXEC;
888 acc_mode |= S_IXUGO;
889 }
890
891 /*
892 * We cannot rely on the fs check since SYSV IPC does have an
893 * additional creator id...
894 */
Kirill Korotaev4e982312006-10-02 02:18:22 -0700895 ns = current->nsproxy->ipc_ns;
896 shp = shm_lock(ns, shmid);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800897 if(shp == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 goto out;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800899
Kirill Korotaev4e982312006-10-02 02:18:22 -0700900 err = shm_checkid(ns, shp,shmid);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800901 if (err)
902 goto out_unlock;
903
904 err = -EACCES;
905 if (ipcperms(&shp->shm_perm, acc_mode))
906 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 err = security_shm_shmat(shp, shmaddr, shmflg);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800909 if (err)
910 goto out_unlock;
911
912 path.dentry = dget(shp->shm_file->f_path.dentry);
Dave Hansence8d2cd2007-10-16 23:31:13 -0700913 path.mnt = shp->shm_file->f_path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 shp->shm_nattch++;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800915 size = i_size_read(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 shm_unlock(shp);
917
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800918 err = -ENOMEM;
919 sfd = kzalloc(sizeof(*sfd), GFP_KERNEL);
920 if (!sfd)
Dave Hansence8d2cd2007-10-16 23:31:13 -0700921 goto out_put_dentry;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800922
923 err = -ENOMEM;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700924
925 file = alloc_file(path.mnt, path.dentry, f_mode, &shm_file_operations);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800926 if (!file)
927 goto out_free;
928
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800929 file->private_data = sfd;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800930 file->f_mapping = shp->shm_file->f_mapping;
Nadia Derbey7ca7e562007-10-18 23:40:48 -0700931 sfd->id = shp->shm_perm.id;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800932 sfd->ns = get_ipc_ns(ns);
933 sfd->file = shp->shm_file;
934 sfd->vm_ops = NULL;
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 down_write(&current->mm->mmap_sem);
937 if (addr && !(shmflg & SHM_REMAP)) {
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800938 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (find_vma_intersection(current->mm, addr, addr + size))
940 goto invalid;
941 /*
942 * If shm segment goes below stack, make sure there is some
943 * space left for the stack to grow (at least 4 pages).
944 */
945 if (addr < current->mm->start_stack &&
946 addr > current->mm->start_stack - size - PAGE_SIZE * 5)
947 goto invalid;
948 }
949
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800950 user_addr = do_mmap (file, addr, size, prot, flags, 0);
951 *raddr = user_addr;
952 err = 0;
953 if (IS_ERR_VALUE(user_addr))
954 err = (long)user_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955invalid:
956 up_write(&current->mm->mmap_sem);
957
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800958 fput(file);
959
960out_nattch:
Kirill Korotaev4e982312006-10-02 02:18:22 -0700961 mutex_lock(&shm_ids(ns).mutex);
962 shp = shm_lock(ns, shmid);
Eric Sesterhenn9ba025f2006-04-02 13:42:42 +0200963 BUG_ON(!shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 shp->shm_nattch--;
965 if(shp->shm_nattch == 0 &&
Andrew Mortonb33291c2006-01-08 01:02:21 -0800966 shp->shm_perm.mode & SHM_DEST)
Kirill Korotaev4e982312006-10-02 02:18:22 -0700967 shm_destroy(ns, shp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 else
969 shm_unlock(shp);
Kirill Korotaev4e982312006-10-02 02:18:22 -0700970 mutex_unlock(&shm_ids(ns).mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972out:
973 return err;
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800974
975out_unlock:
976 shm_unlock(shp);
977 goto out;
978
979out_free:
980 kfree(sfd);
Dave Hansence8d2cd2007-10-16 23:31:13 -0700981out_put_dentry:
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800982 dput(path.dentry);
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -0800983 goto out_nattch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
Stephen Rothwell7d87e14c2005-05-01 08:59:12 -0700986asmlinkage long sys_shmat(int shmid, char __user *shmaddr, int shmflg)
987{
988 unsigned long ret;
989 long err;
990
991 err = do_shmat(shmid, shmaddr, shmflg, &ret);
992 if (err)
993 return err;
994 force_successful_syscall_return();
995 return (long)ret;
996}
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998/*
999 * detach and kill segment if marked destroyed.
1000 * The work is done in shm_close.
1001 */
1002asmlinkage long sys_shmdt(char __user *shmaddr)
1003{
1004 struct mm_struct *mm = current->mm;
1005 struct vm_area_struct *vma, *next;
1006 unsigned long addr = (unsigned long)shmaddr;
1007 loff_t size = 0;
1008 int retval = -EINVAL;
1009
Hugh Dickinsdf1e2fb2006-03-24 03:18:06 -08001010 if (addr & ~PAGE_MASK)
1011 return retval;
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 down_write(&mm->mmap_sem);
1014
1015 /*
1016 * This function tries to be smart and unmap shm segments that
1017 * were modified by partial mlock or munmap calls:
1018 * - It first determines the size of the shm segment that should be
1019 * unmapped: It searches for a vma that is backed by shm and that
1020 * started at address shmaddr. It records it's size and then unmaps
1021 * it.
1022 * - Then it unmaps all shm vmas that started at shmaddr and that
1023 * are within the initially determined size.
1024 * Errors from do_munmap are ignored: the function only fails if
1025 * it's called with invalid parameters or if it's called to unmap
1026 * a part of a vma. Both calls in this function are for full vmas,
1027 * the parameters are directly copied from the vma itself and always
1028 * valid - therefore do_munmap cannot fail. (famous last words?)
1029 */
1030 /*
1031 * If it had been mremap()'d, the starting address would not
1032 * match the usual checks anyway. So assume all vma's are
1033 * above the starting address given.
1034 */
1035 vma = find_vma(mm, addr);
1036
1037 while (vma) {
1038 next = vma->vm_next;
1039
1040 /*
1041 * Check if the starting address would match, i.e. it's
1042 * a fragment created by mprotect() and/or munmap(), or it
1043 * otherwise it starts at this address with no hassles.
1044 */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001045 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff) {
1047
1048
Josef Sipek6d630792006-12-08 02:37:11 -08001049 size = vma->vm_file->f_path.dentry->d_inode->i_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1051 /*
1052 * We discovered the size of the shm segment, so
1053 * break out of here and fall through to the next
1054 * loop that uses the size information to stop
1055 * searching for matching vma's.
1056 */
1057 retval = 0;
1058 vma = next;
1059 break;
1060 }
1061 vma = next;
1062 }
1063
1064 /*
1065 * We need look no further than the maximum address a fragment
1066 * could possibly have landed at. Also cast things to loff_t to
1067 * prevent overflows and make comparisions vs. equal-width types.
1068 */
KAMEZAWA Hiroyuki8e367092006-02-10 01:51:12 -08001069 size = PAGE_ALIGN(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 while (vma && (loff_t)(vma->vm_end - addr) <= size) {
1071 next = vma->vm_next;
1072
1073 /* finding a matching vma now does not alter retval */
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001074 if ((vma->vm_ops == &shm_vm_ops) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 (vma->vm_start - addr)/PAGE_SIZE == vma->vm_pgoff)
1076
1077 do_munmap(mm, vma->vm_start, vma->vm_end - vma->vm_start);
1078 vma = next;
1079 }
1080
1081 up_write(&mm->mmap_sem);
1082 return retval;
1083}
1084
1085#ifdef CONFIG_PROC_FS
Mike Waychison19b49462005-09-06 15:17:10 -07001086static int sysvipc_shm_proc_show(struct seq_file *s, void *it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Mike Waychison19b49462005-09-06 15:17:10 -07001088 struct shmid_kernel *shp = it;
1089 char *format;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091#define SMALL_STRING "%10d %10d %4o %10u %5u %5u %5d %5u %5u %5u %5u %10lu %10lu %10lu\n"
1092#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 -07001093
Mike Waychison19b49462005-09-06 15:17:10 -07001094 if (sizeof(size_t) <= sizeof(int))
1095 format = SMALL_STRING;
1096 else
1097 format = BIG_STRING;
1098 return seq_printf(s, format,
1099 shp->shm_perm.key,
Nadia Derbey7ca7e562007-10-18 23:40:48 -07001100 shp->shm_perm.id,
Andrew Mortonb33291c2006-01-08 01:02:21 -08001101 shp->shm_perm.mode,
Mike Waychison19b49462005-09-06 15:17:10 -07001102 shp->shm_segsz,
1103 shp->shm_cprid,
1104 shp->shm_lprid,
Eric W. Biedermanbc56bba2007-02-20 13:57:53 -08001105 shp->shm_nattch,
Mike Waychison19b49462005-09-06 15:17:10 -07001106 shp->shm_perm.uid,
1107 shp->shm_perm.gid,
1108 shp->shm_perm.cuid,
1109 shp->shm_perm.cgid,
1110 shp->shm_atim,
1111 shp->shm_dtim,
1112 shp->shm_ctim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114#endif