blob: e5697eaf6bf977a2e3f9d0611a3e392ec63c415d [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
Cedric Le Goateracce2922007-07-15 23:40:59 -070025struct user_namespace {
Eric W. Biederman22d917d2011-11-17 00:11:58 -080026 struct uid_gid_map uid_map;
27 struct uid_gid_map gid_map;
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070028 struct uid_gid_map projid_map;
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080029 atomic_t count;
Eric W. Biedermanaeb3ae92011-11-16 21:59:43 -080030 struct user_namespace *parent;
Oleg Nesterov8742f222013-08-08 18:55:32 +020031 int level;
Eric W. Biederman783291e2011-11-17 01:32:59 -080032 kuid_t owner;
33 kgid_t group;
Al Viro435d5f42014-10-31 22:56:04 -040034 struct ns_common ns;
Eric W. Biederman9cc46512014-12-02 12:27:26 -060035 unsigned long flags;
David Howellsf36f8c72013-09-24 10:35:19 +010036
37 /* Register of per-UID persistent keyrings for this namespace */
38#ifdef CONFIG_PERSISTENT_KEYRINGS
39 struct key *persistent_keyring_register;
40 struct rw_semaphore persistent_keyring_register_sem;
41#endif
Eric W. Biedermanb0321322016-07-30 13:53:37 -050042 struct work_struct work;
Eric W. Biedermandbec2842016-07-30 13:58:49 -050043#ifdef CONFIG_SYSCTL
44 struct ctl_table_set set;
45 struct ctl_table_header *sysctls;
46#endif
Cedric Le Goateracce2922007-07-15 23:40:59 -070047};
48
49extern struct user_namespace init_user_ns;
50
51#ifdef CONFIG_USER_NS
52
53static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
54{
55 if (ns)
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080056 atomic_inc(&ns->count);
Cedric Le Goateracce2922007-07-15 23:40:59 -070057 return ns;
58}
59
Serge Hallyn18b6e042008-10-15 16:38:45 -050060extern int create_user_ns(struct cred *new);
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -070061extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
Eric W. Biedermanb0321322016-07-30 13:53:37 -050062extern void __put_user_ns(struct user_namespace *ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070063
64static inline void put_user_ns(struct user_namespace *ns)
65{
Eric W. Biedermanc61a2812012-12-28 18:58:39 -080066 if (ns && atomic_dec_and_test(&ns->count))
Eric W. Biedermanb0321322016-07-30 13:53:37 -050067 __put_user_ns(ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070068}
69
Eric W. Biederman22d917d2011-11-17 00:11:58 -080070struct seq_operations;
Fabian Frederickccf94f12014-08-08 14:21:22 -070071extern const struct seq_operations proc_uid_seq_operations;
72extern const struct seq_operations proc_gid_seq_operations;
73extern const struct seq_operations proc_projid_seq_operations;
Eric W. Biederman22d917d2011-11-17 00:11:58 -080074extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
75extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
Eric W. Biedermanf76d2072012-08-30 01:24:05 -070076extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
Eric W. Biederman9cc46512014-12-02 12:27:26 -060077extern ssize_t proc_setgroups_write(struct file *, const char __user *, size_t, loff_t *);
78extern int proc_setgroups_show(struct seq_file *m, void *v);
Eric W. Biederman273d2c62014-12-05 18:01:11 -060079extern bool userns_may_setgroups(const struct user_namespace *ns);
Seth Forsheed07b8462015-09-23 15:16:04 -050080extern bool current_in_userns(const struct user_namespace *target_ns);
Cedric Le Goateracce2922007-07-15 23:40:59 -070081#else
82
83static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
84{
85 return &init_user_ns;
86}
87
Serge Hallyn18b6e042008-10-15 16:38:45 -050088static inline int create_user_ns(struct cred *new)
Cedric Le Goateracce2922007-07-15 23:40:59 -070089{
Serge Hallyn18b6e042008-10-15 16:38:45 -050090 return -EINVAL;
Cedric Le Goateracce2922007-07-15 23:40:59 -070091}
92
Eric W. Biedermanb2e0d9872012-07-26 05:15:35 -070093static inline int unshare_userns(unsigned long unshare_flags,
94 struct cred **new_cred)
95{
96 if (unshare_flags & CLONE_NEWUSER)
97 return -EINVAL;
98 return 0;
99}
100
Cedric Le Goateracce2922007-07-15 23:40:59 -0700101static inline void put_user_ns(struct user_namespace *ns)
102{
103}
104
Eric W. Biederman273d2c62014-12-05 18:01:11 -0600105static inline bool userns_may_setgroups(const struct user_namespace *ns)
106{
107 return true;
108}
Seth Forsheed07b8462015-09-23 15:16:04 -0500109
110static inline bool current_in_userns(const struct user_namespace *target_ns)
111{
112 return true;
113}
Eric W. Biederman22d917d2011-11-17 00:11:58 -0800114#endif
115
Cedric Le Goateracce2922007-07-15 23:40:59 -0700116#endif /* _LINUX_USER_H */