blob: ea6c18a8b0d442d13dabcdeca9961fb8540ca451 [file] [log] [blame]
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -08001#ifndef __IPC_NAMESPACE_H__
2#define __IPC_NAMESPACE_H__
3
4#include <linux/err.h>
Pierre Peiffered2ddbf2008-02-08 04:18:57 -08005#include <linux/idr.h>
6#include <linux/rwsem.h>
Nadia Derbeyb6b337a2008-04-29 01:00:42 -07007#include <linux/notifier.h>
Nadia Derbeyb6b337a2008-04-29 01:00:42 -07008
9/*
10 * ipc namespace events
11 */
12#define IPCNS_MEMCHANGED 0x00000001 /* Notify lowmem size changed */
Nadia Derbeye2c284d2008-04-29 01:00:44 -070013#define IPCNS_CREATED 0x00000002 /* Notify new ipc namespace created */
14#define IPCNS_REMOVED 0x00000003 /* Notify ipc namespace removed */
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070015
16#define IPCNS_CALLBACK_PRI 0
17
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080018
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080019struct ipc_ids {
20 int in_use;
21 unsigned short seq;
22 unsigned short seq_max;
23 struct rw_semaphore rw_mutex;
24 struct idr ipcs_idr;
25};
26
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080027struct ipc_namespace {
28 struct kref kref;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080029 struct ipc_ids ids[3];
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080030
31 int sem_ctls[4];
32 int used_sems;
33
34 int msg_ctlmax;
35 int msg_ctlmnb;
36 int msg_ctlmni;
37 atomic_t msg_bytes;
38 atomic_t msg_hdrs;
39
40 size_t shm_ctlmax;
41 size_t shm_ctlall;
42 int shm_ctlmni;
43 int shm_tot;
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070044
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070045 struct notifier_block ipcns_nb;
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080046};
47
48extern struct ipc_namespace init_ipc_ns;
Nadia Derbey4d89dc62008-04-29 01:00:40 -070049extern atomic_t nr_ipc_ns;
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080050
51#ifdef CONFIG_SYSVIPC
52#define INIT_IPC_NS(ns) .ns = &init_ipc_ns,
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070053
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070054extern int register_ipcns_notifier(struct ipc_namespace *);
Nadia Derbey6546bc42008-04-29 01:00:45 -070055extern int cond_register_ipcns_notifier(struct ipc_namespace *);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070056extern int unregister_ipcns_notifier(struct ipc_namespace *);
57extern int ipcns_notify(unsigned long);
58
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070059#else /* CONFIG_SYSVIPC */
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080060#define INIT_IPC_NS(ns)
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070061#endif /* CONFIG_SYSVIPC */
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080062
63#if defined(CONFIG_SYSVIPC) && defined(CONFIG_IPC_NS)
64extern void free_ipc_ns(struct kref *kref);
65extern struct ipc_namespace *copy_ipcs(unsigned long flags,
Pierre Peiffer01b8b072008-02-08 04:18:57 -080066 struct ipc_namespace *ns);
67extern void free_ipcs(struct ipc_namespace *ns, struct ipc_ids *ids,
68 void (*free)(struct ipc_namespace *,
69 struct kern_ipc_perm *));
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080070
71static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
72{
73 if (ns)
74 kref_get(&ns->kref);
75 return ns;
76}
77
78static inline void put_ipc_ns(struct ipc_namespace *ns)
79{
80 kref_put(&ns->kref, free_ipc_ns);
81}
82#else
83static inline struct ipc_namespace *copy_ipcs(unsigned long flags,
84 struct ipc_namespace *ns)
85{
86 if (flags & CLONE_NEWIPC)
87 return ERR_PTR(-EINVAL);
88
89 return ns;
90}
91
92static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
93{
94 return ns;
95}
96
97static inline void put_ipc_ns(struct ipc_namespace *ns)
98{
99}
100#endif
101#endif