ipc_namespace.h 5.1 KB
Newer Older
1 2 3 4
#ifndef __IPC_NAMESPACE_H__
#define __IPC_NAMESPACE_H__

#include <linux/err.h>
5 6
#include <linux/idr.h>
#include <linux/rwsem.h>
7
#include <linux/notifier.h>
8
#include <linux/nsproxy.h>
9 10 11 12 13

/*
 * ipc namespace events
 */
#define IPCNS_MEMCHANGED   0x00000001   /* Notify lowmem size changed */
14 15
#define IPCNS_CREATED  0x00000002   /* Notify new ipc namespace created */
#define IPCNS_REMOVED  0x00000003   /* Notify ipc namespace removed */
16 17 18

#define IPCNS_CALLBACK_PRI 0

19
struct user_namespace;
20 21 22 23

struct ipc_ids {
	int in_use;
	unsigned short seq;
D
Davidlohr Bueso 已提交
24
	struct rw_semaphore rwsem;
25
	struct idr ipcs_idr;
26
	int next_id;
27
};
28 29

struct ipc_namespace {
30
	atomic_t	count;
31
	struct ipc_ids	ids[3];
32 33 34 35

	int		sem_ctls[4];
	int		used_sems;

36 37 38
	unsigned int	msg_ctlmax;
	unsigned int	msg_ctlmnb;
	unsigned int	msg_ctlmni;
39 40
	atomic_t	msg_bytes;
	atomic_t	msg_hdrs;
41
	int		auto_msgmni;
42 43 44

	size_t		shm_ctlmax;
	size_t		shm_ctlall;
45
	unsigned long	shm_tot;
46
	int		shm_ctlmni;
47 48 49 50 51
	/*
	 * Defines whether IPC_RMID is forced for _all_ shm segments regardless
	 * of shmctl()
	 */
	int		shm_rmid_forced;
52 53

	struct notifier_block ipcns_nb;
54 55 56 57 58 59 60 61 62 63 64

	/* The kern_mount of the mqueuefs sb.  We take a ref on it */
	struct vfsmount	*mq_mnt;

	/* # queues in this ns, protected by mq_lock */
	unsigned int    mq_queues_count;

	/* next fields are set through sysctl */
	unsigned int    mq_queues_max;   /* initialized to DFLT_QUEUESMAX */
	unsigned int    mq_msg_max;      /* initialized to DFLT_MSGMAX */
	unsigned int    mq_msgsize_max;  /* initialized to DFLT_MSGSIZEMAX */
65 66
	unsigned int    mq_msg_default;
	unsigned int    mq_msgsize_default;
67

68 69
	/* user_ns which owns the ipc ns */
	struct user_namespace *user_ns;
70 71

	unsigned int	proc_inum;
72 73 74
};

extern struct ipc_namespace init_ipc_ns;
75
extern atomic_t nr_ipc_ns;
76

77
extern spinlock_t mq_lock;
78

79
#ifdef CONFIG_SYSVIPC
80
extern int register_ipcns_notifier(struct ipc_namespace *);
81
extern int cond_register_ipcns_notifier(struct ipc_namespace *);
82
extern void unregister_ipcns_notifier(struct ipc_namespace *);
83
extern int ipcns_notify(unsigned long);
84
extern void shm_destroy_orphaned(struct ipc_namespace *ns);
85
#else /* CONFIG_SYSVIPC */
86 87 88 89 90 91
static inline int register_ipcns_notifier(struct ipc_namespace *ns)
{ return 0; }
static inline int cond_register_ipcns_notifier(struct ipc_namespace *ns)
{ return 0; }
static inline void unregister_ipcns_notifier(struct ipc_namespace *ns) { }
static inline int ipcns_notify(unsigned long l) { return 0; }
92
static inline void shm_destroy_orphaned(struct ipc_namespace *ns) {}
93
#endif /* CONFIG_SYSVIPC */
94

95
#ifdef CONFIG_POSIX_MQUEUE
96
extern int mq_init_ns(struct ipc_namespace *ns);
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
/*
 * POSIX Message Queue default values:
 *
 * MIN_*: Lowest value an admin can set the maximum unprivileged limit to
 * DFLT_*MAX: Default values for the maximum unprivileged limits
 * DFLT_{MSG,MSGSIZE}: Default values used when the user doesn't supply
 *   an attribute to the open call and the queue must be created
 * HARD_*: Highest value the maximums can be set to.  These are enforced
 *   on CAP_SYS_RESOURCE apps as well making them inviolate (so make them
 *   suitably high)
 *
 * POSIX Requirements:
 *   Per app minimum openable message queues - 8.  This does not map well
 *     to the fact that we limit the number of queues on a per namespace
 *     basis instead of a per app basis.  So, make the default high enough
 *     that no given app should have a hard time opening 8 queues.
 *   Minimum maximum for HARD_MSGMAX - 32767.  I bumped this to 65536.
 *   Minimum maximum for HARD_MSGSIZEMAX - POSIX is silent on this.  However,
 *     we have run into a situation where running applications in the wild
 *     require this to be at least 5MB, and preferably 10MB, so I set the
 *     value to 16MB in hopes that this user is the worst of the bunch and
 *     the new maximum will handle anyone else.  I may have to revisit this
 *     in the future.
 */
#define DFLT_QUEUESMAX		      256
#define MIN_MSGMAX			1
123 124
#define DFLT_MSG		       10U
#define DFLT_MSGMAX		       10
125 126 127
#define HARD_MSGMAX		    65536
#define MIN_MSGSIZEMAX		      128
#define DFLT_MSGSIZE		     8192U
128
#define DFLT_MSGSIZEMAX		     8192
129
#define HARD_MSGSIZEMAX	    (16*1024*1024)
130
#else
131
static inline int mq_init_ns(struct ipc_namespace *ns) { return 0; }
132 133 134
#endif

#if defined(CONFIG_IPC_NS)
135
extern struct ipc_namespace *copy_ipcs(unsigned long flags,
136 137
	struct user_namespace *user_ns, struct ipc_namespace *ns);

138 139 140
static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
{
	if (ns)
141
		atomic_inc(&ns->count);
142 143 144
	return ns;
}

145
extern void put_ipc_ns(struct ipc_namespace *ns);
146 147
#else
static inline struct ipc_namespace *copy_ipcs(unsigned long flags,
148
	struct user_namespace *user_ns, struct ipc_namespace *ns)
149 150 151 152
{
	if (flags & CLONE_NEWIPC)
		return ERR_PTR(-EINVAL);

153
	return ns;
154 155 156 157 158 159 160 161 162 163 164
}

static inline struct ipc_namespace *get_ipc_ns(struct ipc_namespace *ns)
{
	return ns;
}

static inline void put_ipc_ns(struct ipc_namespace *ns)
{
}
#endif
165 166 167 168 169 170 171 172 173 174 175 176 177 178

#ifdef CONFIG_POSIX_MQUEUE_SYSCTL

struct ctl_table_header;
extern struct ctl_table_header *mq_register_sysctl_table(void);

#else /* CONFIG_POSIX_MQUEUE_SYSCTL */

static inline struct ctl_table_header *mq_register_sysctl_table(void)
{
	return NULL;
}

#endif /* CONFIG_POSIX_MQUEUE_SYSCTL */
179
#endif