blob: fc6b7294f764e6144e4178bc8c802e0cf0225b82 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/ipc/util.h
3 * Copyright (C) 1999 Christoph Rohland
4 *
Christian Kujau624dffc2006-01-15 02:43:54 +01005 * ipc helper functions (c) 1999 Manfred Spraul <manfred@colorfullife.com>
Kirill Korotaev73ea4132006-10-02 02:18:20 -07006 * namespaces support. 2006 OpenVZ, SWsoft Inc.
7 * Pavel Emelianov <xemul@openvz.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#ifndef _IPC_UTIL_H
11#define _IPC_UTIL_H
12
Nadia Derbey7ca7e562007-10-18 23:40:48 -070013#include <linux/idr.h>
Nadia Derbey023a5352007-10-18 23:40:51 -070014#include <linux/err.h>
Nadia Derbey7ca7e562007-10-18 23:40:48 -070015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define USHRT_MAX 0xffff
17#define SEQ_MULTIPLIER (IPCMNI)
18
19void sem_init (void);
20void msg_init (void);
21void shm_init (void);
22
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080023struct ipc_namespace;
24
Kirill Korotaev73ea4132006-10-02 02:18:20 -070025int sem_init_ns(struct ipc_namespace *ns);
26int msg_init_ns(struct ipc_namespace *ns);
27int shm_init_ns(struct ipc_namespace *ns);
28
29void sem_exit_ns(struct ipc_namespace *ns);
30void msg_exit_ns(struct ipc_namespace *ns);
31void shm_exit_ns(struct ipc_namespace *ns);
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct ipc_ids {
34 int in_use;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned short seq;
36 unsigned short seq_max;
Nadia Derbey3e148c72007-10-18 23:40:54 -070037 struct rw_semaphore rw_mutex;
Nadia Derbey7ca7e562007-10-18 23:40:48 -070038 struct idr ipcs_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Nadia Derbey7748dbf2007-10-18 23:40:49 -070041/*
42 * Structure that holds the parameters needed by the ipc operations
43 * (see after)
44 */
45struct ipc_params {
46 key_t key;
47 int flg;
48 union {
49 size_t size; /* for shared memories */
50 int nsems; /* for semaphores */
51 } u; /* holds the getnew() specific param */
52};
53
54/*
55 * Structure that holds some ipc operations. This structure is used to unify
56 * the calls to sys_msgget(), sys_semget(), sys_shmget()
57 * . routine to call to create a new ipc object. Can be one of newque,
58 * newary, newseg
Nadia Derbeyf4566f02007-10-18 23:40:53 -070059 * . routine to call to check permissions for a new ipc object.
Nadia Derbey7748dbf2007-10-18 23:40:49 -070060 * Can be one of security_msg_associate, security_sem_associate,
61 * security_shm_associate
62 * . routine to call for an extra check if needed
63 */
64struct ipc_ops {
65 int (*getnew) (struct ipc_namespace *, struct ipc_params *);
Nadia Derbey03f02c72007-10-18 23:40:51 -070066 int (*associate) (struct kern_ipc_perm *, int);
67 int (*more_checks) (struct kern_ipc_perm *, struct ipc_params *);
Nadia Derbey7748dbf2007-10-18 23:40:49 -070068};
69
Mike Waychisonae781772005-09-06 15:17:09 -070070struct seq_file;
Cedric Le Goater7d69a1f2007-07-15 23:40:58 -070071
Nadia Derbey7ca7e562007-10-18 23:40:48 -070072void ipc_init_ids(struct ipc_ids *);
Mike Waychisonae781772005-09-06 15:17:09 -070073#ifdef CONFIG_PROC_FS
74void __init ipc_init_proc_interface(const char *path, const char *header,
Kirill Korotaev73ea4132006-10-02 02:18:20 -070075 int ids, int (*show)(struct seq_file *, void *));
Mike Waychisonae781772005-09-06 15:17:09 -070076#else
77#define ipc_init_proc_interface(path, header, ids, show) do {} while (0)
78#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Kirill Korotaev73ea4132006-10-02 02:18:20 -070080#define IPC_SEM_IDS 0
81#define IPC_MSG_IDS 1
82#define IPC_SHM_IDS 2
83
Nadia Derbeyce621f52007-10-18 23:40:52 -070084#define ipcid_to_idx(id) ((id) % SEQ_MULTIPLIER)
85
Nadia Derbey3e148c72007-10-18 23:40:54 -070086/* must be called with ids->rw_mutex acquired for writing */
Nadia Derbey7ca7e562007-10-18 23:40:48 -070087int ipc_addid(struct ipc_ids *, struct kern_ipc_perm *, int);
Nadia Derbey3e148c72007-10-18 23:40:54 -070088
89/* must be called with ids->rw_mutex acquired for reading */
Nadia Derbey7ca7e562007-10-18 23:40:48 -070090int ipc_get_maxid(struct ipc_ids *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/* must be called with both locks acquired. */
Nadia Derbey7ca7e562007-10-18 23:40:48 -070093void ipc_rmid(struct ipc_ids *, struct kern_ipc_perm *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Nadia Derbeyf4566f02007-10-18 23:40:53 -070095/* must be called with ipcp locked */
96int ipcperms(struct kern_ipc_perm *ipcp, short flg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* for rare, potentially huge allocations.
99 * both function can sleep
100 */
101void* ipc_alloc(int size);
102void ipc_free(void* ptr, int size);
103
104/*
105 * For allocation that need to be freed by RCU.
106 * Objects are reference counted, they start with reference count 1.
107 * getref increases the refcount, the putref call that reduces the recount
108 * to 0 schedules the rcu destruction. Caller must guarantee locking.
109 */
110void* ipc_rcu_alloc(int size);
111void ipc_rcu_getref(void *ptr);
112void ipc_rcu_putref(void *ptr);
113
Nadia Derbey3e148c72007-10-18 23:40:54 -0700114/*
115 * ipc_lock_down: called with rw_mutex held
116 * ipc_lock: called without that lock held
117 */
118struct kern_ipc_perm *ipc_lock_down(struct ipc_ids *, int);
Nadia Derbey023a5352007-10-18 23:40:51 -0700119struct kern_ipc_perm *ipc_lock(struct ipc_ids *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121void kernel_to_ipc64_perm(struct kern_ipc_perm *in, struct ipc64_perm *out);
122void ipc64_perm_to_ipc_perm(struct ipc64_perm *in, struct ipc_perm *out);
123
Chris Zankel813e6782005-07-12 13:58:25 -0700124#if defined(__ia64__) || defined(__x86_64__) || defined(__hppa__) || defined(__XTENSA__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* On IA-64, we always use the "64-bit version" of the IPC structures. */
126# define ipc_parse_version(cmd) IPC_64
127#else
128int ipc_parse_version (int *cmd);
129#endif
130
131extern void free_msg(struct msg_msg *msg);
132extern struct msg_msg *load_msg(const void __user *src, int len);
133extern int store_msg(void __user *dest, struct msg_msg *msg, int len);
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700134extern int ipcget_new(struct ipc_namespace *, struct ipc_ids *,
135 struct ipc_ops *, struct ipc_params *);
136extern int ipcget_public(struct ipc_namespace *, struct ipc_ids *,
137 struct ipc_ops *, struct ipc_params *);
138
Nadia Derbey1b531f22007-10-18 23:40:55 -0700139static inline int ipc_buildid(int id, int seq)
Nadia Derbey28028312007-10-18 23:40:52 -0700140{
141 return SEQ_MULTIPLIER * seq + id;
142}
143
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700144/*
145 * Must be called with ipcp locked
146 */
Nadia Derbey1b531f22007-10-18 23:40:55 -0700147static inline int ipc_checkid(struct kern_ipc_perm *ipcp, int uid)
Nadia Derbey023a5352007-10-18 23:40:51 -0700148{
149 if (uid / SEQ_MULTIPLIER != ipcp->seq)
150 return 1;
151 return 0;
152}
153
154static inline void ipc_lock_by_ptr(struct kern_ipc_perm *perm)
155{
156 rcu_read_lock();
157 spin_lock(&perm->lock);
158}
159
160static inline void ipc_unlock(struct kern_ipc_perm *perm)
161{
162 spin_unlock(&perm->lock);
163 rcu_read_unlock();
164}
165
Nadia Derbey3e148c72007-10-18 23:40:54 -0700166static inline struct kern_ipc_perm *ipc_lock_check_down(struct ipc_ids *ids,
167 int id)
168{
169 struct kern_ipc_perm *out;
170
171 out = ipc_lock_down(ids, id);
172 if (IS_ERR(out))
173 return out;
174
Nadia Derbey1b531f22007-10-18 23:40:55 -0700175 if (ipc_checkid(out, id)) {
Nadia Derbey3e148c72007-10-18 23:40:54 -0700176 ipc_unlock(out);
177 return ERR_PTR(-EIDRM);
178 }
179
180 return out;
181}
182
Nadia Derbey023a5352007-10-18 23:40:51 -0700183static inline struct kern_ipc_perm *ipc_lock_check(struct ipc_ids *ids,
184 int id)
185{
186 struct kern_ipc_perm *out;
187
188 out = ipc_lock(ids, id);
189 if (IS_ERR(out))
190 return out;
191
Nadia Derbey1b531f22007-10-18 23:40:55 -0700192 if (ipc_checkid(out, id)) {
Nadia Derbey023a5352007-10-18 23:40:51 -0700193 ipc_unlock(out);
194 return ERR_PTR(-EIDRM);
195 }
196
197 return out;
198}
199
Nadia Derbeyf4566f02007-10-18 23:40:53 -0700200/**
201 * ipcget - Common sys_*get() code
202 * @ns : namsepace
203 * @ids : IPC identifier set
204 * @ops : operations to be called on ipc object creation, permission checks
205 * and further checks
206 * @params : the parameters needed by the previous operations.
207 *
208 * Common routine called by sys_msgget(), sys_semget() and sys_shmget().
209 */
Nadia Derbey7748dbf2007-10-18 23:40:49 -0700210static inline int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids,
211 struct ipc_ops *ops, struct ipc_params *params)
212{
213 if (params->key == IPC_PRIVATE)
214 return ipcget_new(ns, ids, ops, params);
215 else
216 return ipcget_public(ns, ids, ops, params);
217}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219#endif