blob: c6bc980b06a9f59b295b44e3d81f66bc24b840f6 [file] [log] [blame]
Cedric Le Goateracce2922007-07-15 23:40:59 -07001#ifndef _LINUX_USER_NAMESPACE_H
2#define _LINUX_USER_NAMESPACE_H
3
4#include <linux/kref.h>
5#include <linux/nsproxy.h>
Al Viro435d5f42014-10-31 22:56:04 -04006#include <linux/ns_common.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -07007#include <linux/sched.h>
Serge E. Hallyn77ec7392007-07-15 23:41:01 -07008#include <linux/err.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -07009
Eric W. Biederman22d917d2011-11-17 00:11:58 -080010#define UID_GID_MAP_MAX_EXTENTS 5
11
12struct uid_gid_map { /* 64 bytes -- 1 cache line */
13 u32 nr_extents;
14 struct uid_gid_extent {
15 u32 first;
16 u32 lower_first;
17 u32 count;
18 } extent[UID_GID_MAP_MAX_EXTENTS];
19};
20
Eric W. Biederman9cc46512014-12-02 12:27:26 -060021#define USERNS_SETGROUPS_ALLOWED 1UL
22
23#define USERNS_INIT_FLAGS USERNS_SETGROUPS_ALLOWED
24
Eric W. Biedermanf6b2db12016-08-08 13:54:50 -050025struct ucounts;
Eric W. Biederman25f9c082016-08-08 14:41:52 -050026
27enum ucount_type {
28 UCOUNT_USER_NAMESPACES,
Eric W. Biedermanf333c702016-08-08 14:08:36 -050029 UCOUNT_PID_NAMESPACES,
Eric W. Biedermanf7af3d12016-08-08 14:11:25 -050030 UCOUNT_UTS_NAMESPACES,
Eric W. Biedermanaba35662016-08-08 14:20:23 -050031 UCOUNT_IPC_NAMESPACES,
Eric W. Biederman70328662016-08-08 14:33:23 -050032 UCOUNT_NET_NAMESPACES,
Eric W. Biedermand08311d2016-08-08 14:25:30 -050033 UCOUNT_CGROUP_NAMESPACES,
Eric W. Biederman25f9c082016-08-08 14:41:52 -050034 UCOUNT_COUNTS,
35};
36
Cedric Le Goateracce2922007-07-15 23:40:59 -070037struct user_namespace {
Eric W. Biederman22d917d2011-11-17 00:11:58 -080038 struct uid_gid_map uid_map;
39 struct uid_gid_map gid_map;
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070040 struct uid_gid_map projid_map;
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080041 atomic_t count;
Eric W. Biedermanaeb3ae92011-11-16 21:59:43 -080042 struct user_namespace *parent;
Oleg Nesterov8742f222013-08-08 18:55:32 +020043 int level;
Eric W. Biederman783291e2011-11-17 01:32:59 -080044 kuid_t owner;
45 kgid_t group;
Al Viro435d5f42014-10-31 22:56:04 -040046 struct ns_common ns;
Eric W. Biederman9cc46512014-12-02 12:27:26 -060047 unsigned long flags;
David Howellsf36f8c72013-09-24 10:35:19 +010048
49 /* Register of per-UID persistent keyrings for this namespace */
50#ifdef CONFIG_PERSISTENT_KEYRINGS
51 struct key *persistent_keyring_register;
52 struct rw_semaphore persistent_keyring_register_sem;
53#endif
Eric W. Biedermanb0321322016-07-30 13:53:37 -050054 struct work_struct work;
Eric W. Biedermandbec2842016-07-30 13:58:49 -050055#ifdef CONFIG_SYSCTL
56 struct ctl_table_set set;
57 struct ctl_table_header *sysctls;
58#endif
Eric W. Biedermanf6b2db12016-08-08 13:54:50 -050059 struct ucounts *ucounts;
Eric W. Biederman25f9c082016-08-08 14:41:52 -050060 int ucount_max[UCOUNT_COUNTS];
Eric W. Biedermanf6b2db12016-08-08 13:54:50 -050061};
62
63struct ucounts {
64 struct hlist_node node;
65 struct user_namespace *ns;
66 kuid_t uid;
67 atomic_t count;
Eric W. Biederman25f9c082016-08-08 14:41:52 -050068 atomic_t ucount[UCOUNT_COUNTS];
Cedric Le Goateracce2922007-07-15 23:40:59 -070069};
70
71extern struct user_namespace init_user_ns;
Eric W. Biedermanf6b2db12016-08-08 13:54:50 -050072
73bool setup_userns_sysctls(struct user_namespace *ns);
74void retire_userns_sysctls(struct user_namespace *ns);
Eric W. Biederman25f9c082016-08-08 14:41:52 -050075struct ucounts *inc_ucount(struct user_namespace *ns, kuid_t uid, enum ucount_type type);
76void dec_ucount(struct ucounts *ucounts, enum ucount_type type);
Cedric Le Goateracce2922007-07-15 23:40:59 -070077
78#ifdef CONFIG_USER_NS
79
80static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
81{
82 if (ns)
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080083 atomic_inc(&ns->count);
Cedric Le Goateracce2922007-07-15 23:40:59 -070084 return ns;
85}
86
Serge Hallyn18b6e042008-10-15 16:38:45 -050087extern int create_user_ns(struct cred *new);
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -070088extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
Eric W. Biedermanb0321322016-07-30 13:53:37 -050089extern void __put_user_ns(struct user_namespace *ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070090
91static inline void put_user_ns(struct user_namespace *ns)
92{
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080093 if (ns && atomic_dec_and_test(&ns->count))
Eric W. Biedermanb0321322016-07-30 13:53:37 -050094 __put_user_ns(ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070095}
96
Eric W. Biederman22d917d2011-11-17 00:11:58 -080097struct seq_operations;
Fabian Frederickccf94f12014-08-08 14:21:22 -070098extern const struct seq_operations proc_uid_seq_operations;
99extern const struct seq_operations proc_gid_seq_operations;
100extern const struct seq_operations proc_projid_seq_operations;
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800101extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
102extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
Eric W. Biedermanf76d2072012-08-30 01:24:05 -0700103extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
Eric W. Biederman9cc46512014-12-02 12:27:26 -0600104extern ssize_t proc_setgroups_write(struct file *, const char __user *, size_t, loff_t *);
105extern int proc_setgroups_show(struct seq_file *m, void *v);
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600106extern bool userns_may_setgroups(const struct user_namespace *ns);
Seth Forsheed07b8462015-09-23 15:16:04 -0500107extern bool current_in_userns(const struct user_namespace *target_ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -0700108#else
109
110static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
111{
112 return &init_user_ns;
113}
114
Serge Hallyn18b6e042008-10-15 16:38:45 -0500115static inline int create_user_ns(struct cred *new)
Cedric Le Goateracce2922007-07-15 23:40:59 -0700116{
Serge Hallyn18b6e042008-10-15 16:38:45 -0500117 return -EINVAL;
Cedric Le Goateracce2922007-07-15 23:40:59 -0700118}
119
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -0700120static inline int unshare_userns(unsigned long unshare_flags,
121 struct cred **new_cred)
122{
123 if (unshare_flags & CLONE_NEWUSER)
124 return -EINVAL;
125 return 0;
126}
127
Cedric Le Goateracce2922007-07-15 23:40:59 -0700128static inline void put_user_ns(struct user_namespace *ns)
129{
130}
131
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600132static inline bool userns_may_setgroups(const struct user_namespace *ns)
133{
134 return true;
135}
Seth Forsheed07b8462015-09-23 15:16:04 -0500136
137static inline bool current_in_userns(const struct user_namespace *target_ns)
138{
139 return true;
140}
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800141#endif
142
Cedric Le Goateracce2922007-07-15 23:40:59 -0700143#endif /* _LINUX_USER_H */