1 #ifndef _LINUX_USER_NAMESPACE_H
2 #define _LINUX_USER_NAMESPACE_H
4 #include <linux/kref.h>
5 #include <linux/nsproxy.h>
6 #include <linux/sched.h>
9 #define UID_GID_MAP_MAX_EXTENTS 5
11 struct uid_gid_map { /* 64 bytes -- 1 cache line */
13 struct uid_gid_extent {
17 } extent[UID_GID_MAP_MAX_EXTENTS];
20 struct user_namespace {
21 struct uid_gid_map uid_map;
22 struct uid_gid_map gid_map;
23 struct uid_gid_map projid_map;
25 struct user_namespace *parent;
30 extern struct user_namespace init_user_ns;
34 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
41 extern int create_user_ns(struct cred *new);
42 extern void free_user_ns(struct kref *kref);
44 static inline void put_user_ns(struct user_namespace *ns)
47 kref_put(&ns->kref, free_user_ns);
50 struct seq_operations;
51 extern struct seq_operations proc_uid_seq_operations;
52 extern struct seq_operations proc_gid_seq_operations;
53 extern struct seq_operations proc_projid_seq_operations;
54 extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
55 extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
56 extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
59 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
64 static inline int create_user_ns(struct cred *new)
69 static inline void put_user_ns(struct user_namespace *ns)
75 #endif /* _LINUX_USER_H */