| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 1 | #ifndef __IPC_NAMESPACE_H__ | 
 | 2 | #define __IPC_NAMESPACE_H__ | 
 | 3 |  | 
 | 4 | #include <linux/err.h> | 
| Pierre Peiffer | ed2ddbf | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 5 | #include <linux/idr.h> | 
 | 6 | #include <linux/rwsem.h> | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 7 | #include <linux/notifier.h> | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 8 |  | 
 | 9 | /* | 
 | 10 |  * ipc namespace events | 
 | 11 |  */ | 
 | 12 | #define IPCNS_MEMCHANGED   0x00000001   /* Notify lowmem size changed */ | 
| Nadia Derbey | e2c284d | 2008-04-29 01:00:44 -0700 | [diff] [blame] | 13 | #define IPCNS_CREATED  0x00000002   /* Notify new ipc namespace created */ | 
 | 14 | #define IPCNS_REMOVED  0x00000003   /* Notify ipc namespace removed */ | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 15 |  | 
 | 16 | #define IPCNS_CALLBACK_PRI 0 | 
 | 17 |  | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 18 |  | 
| Pierre Peiffer | ed2ddbf | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 19 | struct 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 Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 27 | struct ipc_namespace { | 
 | 28 | 	struct kref	kref; | 
| Pierre Peiffer | ed2ddbf | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 29 | 	struct ipc_ids	ids[3]; | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 30 |  | 
 | 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; | 
| Nadia Derbey | 9eefe52 | 2008-07-25 01:48:08 -0700 | [diff] [blame] | 39 | 	int		auto_msgmni; | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 40 |  | 
 | 41 | 	size_t		shm_ctlmax; | 
 | 42 | 	size_t		shm_ctlall; | 
 | 43 | 	int		shm_ctlmni; | 
 | 44 | 	int		shm_tot; | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 45 |  | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 46 | 	struct notifier_block ipcns_nb; | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 47 | }; | 
 | 48 |  | 
 | 49 | extern struct ipc_namespace init_ipc_ns; | 
| Nadia Derbey | 4d89dc6 | 2008-04-29 01:00:40 -0700 | [diff] [blame] | 50 | extern atomic_t nr_ipc_ns; | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 51 |  | 
 | 52 | #ifdef CONFIG_SYSVIPC | 
 | 53 | #define INIT_IPC_NS(ns)		.ns		= &init_ipc_ns, | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 54 |  | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 55 | extern int register_ipcns_notifier(struct ipc_namespace *); | 
| Nadia Derbey | 6546bc4 | 2008-04-29 01:00:45 -0700 | [diff] [blame] | 56 | extern int cond_register_ipcns_notifier(struct ipc_namespace *); | 
| Nadia Derbey | 9eefe52 | 2008-07-25 01:48:08 -0700 | [diff] [blame] | 57 | extern void unregister_ipcns_notifier(struct ipc_namespace *); | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 58 | extern int ipcns_notify(unsigned long); | 
 | 59 |  | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 60 | #else /* CONFIG_SYSVIPC */ | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 61 | #define INIT_IPC_NS(ns) | 
| Nadia Derbey | b6b337a | 2008-04-29 01:00:42 -0700 | [diff] [blame] | 62 | #endif /* CONFIG_SYSVIPC */ | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 63 |  | 
 | 64 | #if defined(CONFIG_SYSVIPC) && defined(CONFIG_IPC_NS) | 
 | 65 | extern void free_ipc_ns(struct kref *kref); | 
 | 66 | extern struct ipc_namespace *copy_ipcs(unsigned long flags, | 
| Pierre Peiffer | 01b8b07 | 2008-02-08 04:18:57 -0800 | [diff] [blame] | 67 | 				       struct ipc_namespace *ns); | 
 | 68 | extern void free_ipcs(struct ipc_namespace *ns, struct ipc_ids *ids, | 
 | 69 | 		      void (*free)(struct ipc_namespace *, | 
 | 70 | 				   struct kern_ipc_perm *)); | 
| Pavel Emelyanov | ae5e1b2 | 2008-02-08 04:18:22 -0800 | [diff] [blame] | 71 |  | 
 | 72 | static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns) | 
 | 73 | { | 
 | 74 | 	if (ns) | 
 | 75 | 		kref_get(&ns->kref); | 
 | 76 | 	return ns; | 
 | 77 | } | 
 | 78 |  | 
 | 79 | static inline void put_ipc_ns(struct ipc_namespace *ns) | 
 | 80 | { | 
 | 81 | 	kref_put(&ns->kref, free_ipc_ns); | 
 | 82 | } | 
 | 83 | #else | 
 | 84 | static inline struct ipc_namespace *copy_ipcs(unsigned long flags, | 
 | 85 | 		struct ipc_namespace *ns) | 
 | 86 | { | 
 | 87 | 	if (flags & CLONE_NEWIPC) | 
 | 88 | 		return ERR_PTR(-EINVAL); | 
 | 89 |  | 
 | 90 | 	return ns; | 
 | 91 | } | 
 | 92 |  | 
 | 93 | static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns) | 
 | 94 | { | 
 | 95 | 	return ns; | 
 | 96 | } | 
 | 97 |  | 
 | 98 | static inline void put_ipc_ns(struct ipc_namespace *ns) | 
 | 99 | { | 
 | 100 | } | 
 | 101 | #endif | 
 | 102 | #endif |