2007-07-16 06:40:59 +00:00
|
|
|
#ifndef _LINUX_USER_NAMESPACE_H
|
|
|
|
#define _LINUX_USER_NAMESPACE_H
|
|
|
|
|
|
|
|
#include <linux/kref.h>
|
|
|
|
#include <linux/nsproxy.h>
|
2014-11-01 02:56:04 +00:00
|
|
|
#include <linux/ns_common.h>
|
2007-07-16 06:40:59 +00:00
|
|
|
#include <linux/sched.h>
|
2007-07-16 06:41:01 +00:00
|
|
|
#include <linux/err.h>
|
2007-07-16 06:40:59 +00:00
|
|
|
|
2011-11-17 08:11:58 +00:00
|
|
|
#define UID_GID_MAP_MAX_EXTENTS 5
|
|
|
|
|
|
|
|
struct uid_gid_map { /* 64 bytes -- 1 cache line */
|
|
|
|
u32 nr_extents;
|
|
|
|
struct uid_gid_extent {
|
|
|
|
u32 first;
|
|
|
|
u32 lower_first;
|
|
|
|
u32 count;
|
|
|
|
} extent[UID_GID_MAP_MAX_EXTENTS];
|
|
|
|
};
|
|
|
|
|
2014-12-02 18:27:26 +00:00
|
|
|
#define USERNS_SETGROUPS_ALLOWED 1UL
|
|
|
|
|
|
|
|
#define USERNS_INIT_FLAGS USERNS_SETGROUPS_ALLOWED
|
|
|
|
|
2016-08-08 18:54:50 +00:00
|
|
|
struct ucounts;
|
2016-08-08 19:41:52 +00:00
|
|
|
|
|
|
|
enum ucount_type {
|
|
|
|
UCOUNT_USER_NAMESPACES,
|
2016-08-08 19:08:36 +00:00
|
|
|
UCOUNT_PID_NAMESPACES,
|
2016-08-08 19:11:25 +00:00
|
|
|
UCOUNT_UTS_NAMESPACES,
|
2016-08-08 19:20:23 +00:00
|
|
|
UCOUNT_IPC_NAMESPACES,
|
2016-08-08 19:33:23 +00:00
|
|
|
UCOUNT_NET_NAMESPACES,
|
2016-08-08 19:37:37 +00:00
|
|
|
UCOUNT_MNT_NAMESPACES,
|
2016-08-08 19:25:30 +00:00
|
|
|
UCOUNT_CGROUP_NAMESPACES,
|
2016-08-08 19:41:52 +00:00
|
|
|
UCOUNT_COUNTS,
|
|
|
|
};
|
|
|
|
|
2007-07-16 06:40:59 +00:00
|
|
|
struct user_namespace {
|
2011-11-17 08:11:58 +00:00
|
|
|
struct uid_gid_map uid_map;
|
|
|
|
struct uid_gid_map gid_map;
|
2012-08-30 08:24:05 +00:00
|
|
|
struct uid_gid_map projid_map;
|
2012-12-29 02:58:39 +00:00
|
|
|
atomic_t count;
|
2011-11-17 05:59:43 +00:00
|
|
|
struct user_namespace *parent;
|
2013-08-08 16:55:32 +00:00
|
|
|
int level;
|
2011-11-17 09:32:59 +00:00
|
|
|
kuid_t owner;
|
|
|
|
kgid_t group;
|
2014-11-01 02:56:04 +00:00
|
|
|
struct ns_common ns;
|
2014-12-02 18:27:26 +00:00
|
|
|
unsigned long flags;
|
2013-09-24 09:35:19 +00:00
|
|
|
|
|
|
|
/* Register of per-UID persistent keyrings for this namespace */
|
|
|
|
#ifdef CONFIG_PERSISTENT_KEYRINGS
|
|
|
|
struct key *persistent_keyring_register;
|
|
|
|
struct rw_semaphore persistent_keyring_register_sem;
|
|
|
|
#endif
|
2016-07-30 18:53:37 +00:00
|
|
|
struct work_struct work;
|
2016-07-30 18:58:49 +00:00
|
|
|
#ifdef CONFIG_SYSCTL
|
|
|
|
struct ctl_table_set set;
|
|
|
|
struct ctl_table_header *sysctls;
|
|
|
|
#endif
|
2016-08-08 18:54:50 +00:00
|
|
|
struct ucounts *ucounts;
|
2016-08-08 19:41:52 +00:00
|
|
|
int ucount_max[UCOUNT_COUNTS];
|
2016-08-08 18:54:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ucounts {
|
|
|
|
struct hlist_node node;
|
|
|
|
struct user_namespace *ns;
|
|
|
|
kuid_t uid;
|
|
|
|
atomic_t count;
|
2016-08-08 19:41:52 +00:00
|
|
|
atomic_t ucount[UCOUNT_COUNTS];
|
2007-07-16 06:40:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct user_namespace init_user_ns;
|
2016-08-08 18:54:50 +00:00
|
|
|
|
|
|
|
bool setup_userns_sysctls(struct user_namespace *ns);
|
|
|
|
void retire_userns_sysctls(struct user_namespace *ns);
|
2016-08-08 19:41:52 +00:00
|
|
|
struct ucounts *inc_ucount(struct user_namespace *ns, kuid_t uid, enum ucount_type type);
|
|
|
|
void dec_ucount(struct ucounts *ucounts, enum ucount_type type);
|
2007-07-16 06:40:59 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_USER_NS
|
|
|
|
|
|
|
|
static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
|
|
|
|
{
|
|
|
|
if (ns)
|
2012-12-29 02:58:39 +00:00
|
|
|
atomic_inc(&ns->count);
|
2007-07-16 06:40:59 +00:00
|
|
|
return ns;
|
|
|
|
}
|
|
|
|
|
2008-10-15 21:38:45 +00:00
|
|
|
extern int create_user_ns(struct cred *new);
|
2012-07-26 12:15:35 +00:00
|
|
|
extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
|
2016-07-30 18:53:37 +00:00
|
|
|
extern void __put_user_ns(struct user_namespace *ns);
|
2007-07-16 06:40:59 +00:00
|
|
|
|
|
|
|
static inline void put_user_ns(struct user_namespace *ns)
|
|
|
|
{
|
2012-12-29 02:58:39 +00:00
|
|
|
if (ns && atomic_dec_and_test(&ns->count))
|
2016-07-30 18:53:37 +00:00
|
|
|
__put_user_ns(ns);
|
2007-07-16 06:40:59 +00:00
|
|
|
}
|
|
|
|
|
2011-11-17 08:11:58 +00:00
|
|
|
struct seq_operations;
|
2014-08-08 21:21:22 +00:00
|
|
|
extern const struct seq_operations proc_uid_seq_operations;
|
|
|
|
extern const struct seq_operations proc_gid_seq_operations;
|
|
|
|
extern const struct seq_operations proc_projid_seq_operations;
|
2011-11-17 08:11:58 +00:00
|
|
|
extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
|
|
|
|
extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
|
2012-08-30 08:24:05 +00:00
|
|
|
extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
|
2014-12-02 18:27:26 +00:00
|
|
|
extern ssize_t proc_setgroups_write(struct file *, const char __user *, size_t, loff_t *);
|
|
|
|
extern int proc_setgroups_show(struct seq_file *m, void *v);
|
2014-12-06 00:01:11 +00:00
|
|
|
extern bool userns_may_setgroups(const struct user_namespace *ns);
|
2015-09-23 20:16:04 +00:00
|
|
|
extern bool current_in_userns(const struct user_namespace *target_ns);
|
2016-09-06 07:47:13 +00:00
|
|
|
|
|
|
|
struct ns_common *ns_get_owner(struct ns_common *ns);
|
2007-07-16 06:40:59 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
|
|
|
|
{
|
|
|
|
return &init_user_ns;
|
|
|
|
}
|
|
|
|
|
2008-10-15 21:38:45 +00:00
|
|
|
static inline int create_user_ns(struct cred *new)
|
2007-07-16 06:40:59 +00:00
|
|
|
{
|
2008-10-15 21:38:45 +00:00
|
|
|
return -EINVAL;
|
2007-07-16 06:40:59 +00:00
|
|
|
}
|
|
|
|
|
2012-07-26 12:15:35 +00:00
|
|
|
static inline int unshare_userns(unsigned long unshare_flags,
|
|
|
|
struct cred **new_cred)
|
|
|
|
{
|
|
|
|
if (unshare_flags & CLONE_NEWUSER)
|
|
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-16 06:40:59 +00:00
|
|
|
static inline void put_user_ns(struct user_namespace *ns)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-12-06 00:01:11 +00:00
|
|
|
static inline bool userns_may_setgroups(const struct user_namespace *ns)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2015-09-23 20:16:04 +00:00
|
|
|
|
|
|
|
static inline bool current_in_userns(const struct user_namespace *target_ns)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2016-09-06 07:47:13 +00:00
|
|
|
|
|
|
|
static inline struct ns_common *ns_get_owner(struct ns_common *ns)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-EPERM);
|
|
|
|
}
|
2011-11-17 08:11:58 +00:00
|
|
|
#endif
|
|
|
|
|
2007-07-16 06:40:59 +00:00
|
|
|
#endif /* _LINUX_USER_H */
|