IPC/semaphores: consolidate SEM_STAT and IPC_STAT commands
[linux-2.6-block.git] / ipc / util.h
CommitLineData
1da177e4
LT
1/*
2 * linux/ipc/util.h
3 * Copyright (C) 1999 Christoph Rohland
4 *
624dffcb 5 * ipc helper functions (c) 1999 Manfred Spraul <manfred@colorfullife.com>
73ea4130
KK
6 * namespaces support. 2006 OpenVZ, SWsoft Inc.
7 * Pavel Emelianov <xemul@openvz.org>
1da177e4
LT
8 */
9
10#ifndef _IPC_UTIL_H
11#define _IPC_UTIL_H
12
7ca7e564 13#include <linux/idr.h>
023a5355 14#include <linux/err.h>
7ca7e564 15
1da177e4
LT
16#define USHRT_MAX 0xffff
17#define SEQ_MULTIPLIER (IPCMNI)
18
19void sem_init (void);
20void msg_init (void);
21void shm_init (void);
22
ae5e1b22
PE
23struct ipc_namespace;
24
73ea4130
KK
25int 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
1da177e4
LT
33struct ipc_ids {
34 int in_use;
1da177e4
LT
35 unsigned short seq;
36 unsigned short seq_max;
3e148c79 37 struct rw_semaphore rw_mutex;
7ca7e564 38 struct idr ipcs_idr;
1da177e4
LT
39};
40
7748dbfa
ND
41/*
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
f4566f04 59 * . routine to call to check permissions for a new ipc object.
7748dbfa
ND
60 * 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 *);
03f02c76
ND
66 int (*associate) (struct kern_ipc_perm *, int);
67 int (*more_checks) (struct kern_ipc_perm *, struct ipc_params *);
7748dbfa
ND
68};
69
ae781774 70struct seq_file;
7d69a1f4 71
7ca7e564 72void ipc_init_ids(struct ipc_ids *);
ae781774
MW
73#ifdef CONFIG_PROC_FS
74void __init ipc_init_proc_interface(const char *path, const char *header,
73ea4130 75 int ids, int (*show)(struct seq_file *, void *));
ae781774
MW
76#else
77#define ipc_init_proc_interface(path, header, ids, show) do {} while (0)
78#endif
1da177e4 79
73ea4130
KK
80#define IPC_SEM_IDS 0
81#define IPC_MSG_IDS 1
82#define IPC_SHM_IDS 2
83
ce621f5b
ND
84#define ipcid_to_idx(id) ((id) % SEQ_MULTIPLIER)
85
3e148c79 86/* must be called with ids->rw_mutex acquired for writing */
7ca7e564 87int ipc_addid(struct ipc_ids *, struct kern_ipc_perm *, int);
3e148c79
ND
88
89/* must be called with ids->rw_mutex acquired for reading */
7ca7e564 90int ipc_get_maxid(struct ipc_ids *);
1da177e4
LT
91
92/* must be called with both locks acquired. */
7ca7e564 93void ipc_rmid(struct ipc_ids *, struct kern_ipc_perm *);
1da177e4 94
f4566f04
ND
95/* must be called with ipcp locked */
96int ipcperms(struct kern_ipc_perm *ipcp, short flg);
1da177e4
LT
97
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
3e148c79
ND
114/*
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);
023a5355 119struct kern_ipc_perm *ipc_lock(struct ipc_ids *, int);
1da177e4
LT
120
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
813e6783 124#if defined(__ia64__) || defined(__x86_64__) || defined(__hppa__) || defined(__XTENSA__)
1da177e4
LT
125 /* 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);
7748dbfa 134
1b531f21 135static inline int ipc_buildid(int id, int seq)
28028313
ND
136{
137 return SEQ_MULTIPLIER * seq + id;
138}
139
f4566f04
ND
140/*
141 * Must be called with ipcp locked
142 */
1b531f21 143static inline int ipc_checkid(struct kern_ipc_perm *ipcp, int uid)
023a5355
ND
144{
145 if (uid / SEQ_MULTIPLIER != ipcp->seq)
146 return 1;
147 return 0;
148}
149
150static inline void ipc_lock_by_ptr(struct kern_ipc_perm *perm)
151{
152 rcu_read_lock();
153 spin_lock(&perm->lock);
154}
155
156static inline void ipc_unlock(struct kern_ipc_perm *perm)
157{
158 spin_unlock(&perm->lock);
159 rcu_read_unlock();
160}
161
b2d75cdd
PE
162struct kern_ipc_perm *ipc_lock_check_down(struct ipc_ids *ids, int id);
163struct kern_ipc_perm *ipc_lock_check(struct ipc_ids *ids, int id);
164int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids,
165 struct ipc_ops *ops, struct ipc_params *params);
1da177e4
LT
166
167#endif