blob: d3c32dcec62399055100ea3e8c3f54ee07329030 [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
Serge E. Hallynb5154982011-03-23 16:43:23 -070018struct user_namespace;
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080019
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080020struct ipc_ids {
21 int in_use;
22 unsigned short seq;
23 unsigned short seq_max;
24 struct rw_semaphore rw_mutex;
25 struct idr ipcs_idr;
26};
27
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080028struct ipc_namespace {
Serge E. Hallyn7eafd7c2009-04-06 19:01:10 -070029 atomic_t count;
Pierre Peiffered2ddbf2008-02-08 04:18:57 -080030 struct ipc_ids ids[3];
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080031
32 int sem_ctls[4];
33 int used_sems;
34
35 int msg_ctlmax;
36 int msg_ctlmnb;
37 int msg_ctlmni;
38 atomic_t msg_bytes;
39 atomic_t msg_hdrs;
Nadia Derbey9eefe522008-07-25 01:48:08 -070040 int auto_msgmni;
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080041
42 size_t shm_ctlmax;
43 size_t shm_ctlall;
44 int shm_ctlmni;
45 int shm_tot;
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070046
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070047 struct notifier_block ipcns_nb;
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070048
49 /* The kern_mount of the mqueuefs sb. We take a ref on it */
50 struct vfsmount *mq_mnt;
51
52 /* # queues in this ns, protected by mq_lock */
53 unsigned int mq_queues_count;
54
55 /* next fields are set through sysctl */
56 unsigned int mq_queues_max; /* initialized to DFLT_QUEUESMAX */
57 unsigned int mq_msg_max; /* initialized to DFLT_MSGMAX */
58 unsigned int mq_msgsize_max; /* initialized to DFLT_MSGSIZEMAX */
59
Serge E. Hallynb5154982011-03-23 16:43:23 -070060 /* user_ns which owns the ipc ns */
61 struct user_namespace *user_ns;
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080062};
63
64extern struct ipc_namespace init_ipc_ns;
Nadia Derbey4d89dc62008-04-29 01:00:40 -070065extern atomic_t nr_ipc_ns;
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080066
Serge E. Hallyn7eafd7c2009-04-06 19:01:10 -070067extern spinlock_t mq_lock;
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070068
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070069#ifdef CONFIG_SYSVIPC
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070070extern int register_ipcns_notifier(struct ipc_namespace *);
Nadia Derbey6546bc42008-04-29 01:00:45 -070071extern int cond_register_ipcns_notifier(struct ipc_namespace *);
Nadia Derbey9eefe522008-07-25 01:48:08 -070072extern void unregister_ipcns_notifier(struct ipc_namespace *);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070073extern int ipcns_notify(unsigned long);
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070074#else /* CONFIG_SYSVIPC */
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070075static inline int register_ipcns_notifier(struct ipc_namespace *ns)
76{ return 0; }
77static inline int cond_register_ipcns_notifier(struct ipc_namespace *ns)
78{ return 0; }
79static inline void unregister_ipcns_notifier(struct ipc_namespace *ns) { }
80static inline int ipcns_notify(unsigned long l) { return 0; }
Nadia Derbeyb6b337a2008-04-29 01:00:42 -070081#endif /* CONFIG_SYSVIPC */
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080082
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070083#ifdef CONFIG_POSIX_MQUEUE
Serge E. Hallyn7eafd7c2009-04-06 19:01:10 -070084extern int mq_init_ns(struct ipc_namespace *ns);
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070085/* default values */
86#define DFLT_QUEUESMAX 256 /* max number of message queues */
87#define DFLT_MSGMAX 10 /* max number of messages in each queue */
Amerigo Wang9cf18e12009-12-15 16:47:36 -080088#define HARD_MSGMAX (32768*sizeof(void *)/4)
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070089#define DFLT_MSGSIZEMAX 8192 /* max message size */
90#else
Serge E. Hallyn7eafd7c2009-04-06 19:01:10 -070091static inline int mq_init_ns(struct ipc_namespace *ns) { return 0; }
Serge E. Hallyn614b84c2009-04-06 19:01:08 -070092#endif
93
94#if defined(CONFIG_IPC_NS)
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080095extern struct ipc_namespace *copy_ipcs(unsigned long flags,
Pierre Peiffer01b8b072008-02-08 04:18:57 -080096 struct ipc_namespace *ns);
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080097static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
98{
99 if (ns)
Serge E. Hallyn7eafd7c2009-04-06 19:01:10 -0700100 atomic_inc(&ns->count);
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800101 return ns;
102}
103
Serge E. Hallyn7eafd7c2009-04-06 19:01:10 -0700104extern void put_ipc_ns(struct ipc_namespace *ns);
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800105#else
106static inline struct ipc_namespace *copy_ipcs(unsigned long flags,
107 struct ipc_namespace *ns)
108{
109 if (flags & CLONE_NEWIPC)
110 return ERR_PTR(-EINVAL);
111
112 return ns;
113}
114
115static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
116{
117 return ns;
118}
119
120static inline void put_ipc_ns(struct ipc_namespace *ns)
121{
122}
123#endif
Serge E. Hallynbdc8e5f2009-04-06 19:01:11 -0700124
125#ifdef CONFIG_POSIX_MQUEUE_SYSCTL
126
127struct ctl_table_header;
128extern struct ctl_table_header *mq_register_sysctl_table(void);
129
130#else /* CONFIG_POSIX_MQUEUE_SYSCTL */
131
132static inline struct ctl_table_header *mq_register_sysctl_table(void)
133{
134 return NULL;
135}
136
137#endif /* CONFIG_POSIX_MQUEUE_SYSCTL */
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -0800138#endif