pidns: Add a limit on the number of pid namespaces
[cascardo/linux.git] / include / linux / user_namespace.h
1 #ifndef _LINUX_USER_NAMESPACE_H
2 #define _LINUX_USER_NAMESPACE_H
3
4 #include <linux/kref.h>
5 #include <linux/nsproxy.h>
6 #include <linux/ns_common.h>
7 #include <linux/sched.h>
8 #include <linux/err.h>
9
10 #define UID_GID_MAP_MAX_EXTENTS 5
11
12 struct 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
21 #define USERNS_SETGROUPS_ALLOWED 1UL
22
23 #define USERNS_INIT_FLAGS USERNS_SETGROUPS_ALLOWED
24
25 struct ucounts;
26
27 enum ucount_type {
28         UCOUNT_USER_NAMESPACES,
29         UCOUNT_PID_NAMESPACES,
30         UCOUNT_COUNTS,
31 };
32
33 struct user_namespace {
34         struct uid_gid_map      uid_map;
35         struct uid_gid_map      gid_map;
36         struct uid_gid_map      projid_map;
37         atomic_t                count;
38         struct user_namespace   *parent;
39         int                     level;
40         kuid_t                  owner;
41         kgid_t                  group;
42         struct ns_common        ns;
43         unsigned long           flags;
44
45         /* Register of per-UID persistent keyrings for this namespace */
46 #ifdef CONFIG_PERSISTENT_KEYRINGS
47         struct key              *persistent_keyring_register;
48         struct rw_semaphore     persistent_keyring_register_sem;
49 #endif
50         struct work_struct      work;
51 #ifdef CONFIG_SYSCTL
52         struct ctl_table_set    set;
53         struct ctl_table_header *sysctls;
54 #endif
55         struct ucounts          *ucounts;
56         int ucount_max[UCOUNT_COUNTS];
57 };
58
59 struct ucounts {
60         struct hlist_node node;
61         struct user_namespace *ns;
62         kuid_t uid;
63         atomic_t count;
64         atomic_t ucount[UCOUNT_COUNTS];
65 };
66
67 extern struct user_namespace init_user_ns;
68
69 bool setup_userns_sysctls(struct user_namespace *ns);
70 void retire_userns_sysctls(struct user_namespace *ns);
71 struct ucounts *inc_ucount(struct user_namespace *ns, kuid_t uid, enum ucount_type type);
72 void dec_ucount(struct ucounts *ucounts, enum ucount_type type);
73
74 #ifdef CONFIG_USER_NS
75
76 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
77 {
78         if (ns)
79                 atomic_inc(&ns->count);
80         return ns;
81 }
82
83 extern int create_user_ns(struct cred *new);
84 extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
85 extern void __put_user_ns(struct user_namespace *ns);
86
87 static inline void put_user_ns(struct user_namespace *ns)
88 {
89         if (ns && atomic_dec_and_test(&ns->count))
90                 __put_user_ns(ns);
91 }
92
93 struct seq_operations;
94 extern const struct seq_operations proc_uid_seq_operations;
95 extern const struct seq_operations proc_gid_seq_operations;
96 extern const struct seq_operations proc_projid_seq_operations;
97 extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
98 extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
99 extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
100 extern ssize_t proc_setgroups_write(struct file *, const char __user *, size_t, loff_t *);
101 extern int proc_setgroups_show(struct seq_file *m, void *v);
102 extern bool userns_may_setgroups(const struct user_namespace *ns);
103 extern bool current_in_userns(const struct user_namespace *target_ns);
104 #else
105
106 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
107 {
108         return &init_user_ns;
109 }
110
111 static inline int create_user_ns(struct cred *new)
112 {
113         return -EINVAL;
114 }
115
116 static inline int unshare_userns(unsigned long unshare_flags,
117                                  struct cred **new_cred)
118 {
119         if (unshare_flags & CLONE_NEWUSER)
120                 return -EINVAL;
121         return 0;
122 }
123
124 static inline void put_user_ns(struct user_namespace *ns)
125 {
126 }
127
128 static inline bool userns_may_setgroups(const struct user_namespace *ns)
129 {
130         return true;
131 }
132
133 static inline bool current_in_userns(const struct user_namespace *target_ns)
134 {
135         return true;
136 }
137 #endif
138
139 #endif /* _LINUX_USER_H */