batman-adv: rename bridge loop avoidance claim types
[linux-2.6/btrfs-unstable.git] / include / linux / user_namespace.h
blob4e72922e5a751c150386e4eb9f8e961ac1051d67
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>
7 #include <linux/err.h>
9 #define UID_GID_MAP_MAX_EXTENTS 5
11 struct uid_gid_map { /* 64 bytes -- 1 cache line */
12 u32 nr_extents;
13 struct uid_gid_extent {
14 u32 first;
15 u32 lower_first;
16 u32 count;
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 kref kref;
24 struct user_namespace *parent;
25 kuid_t owner;
26 kgid_t group;
29 extern struct user_namespace init_user_ns;
31 #ifdef CONFIG_USER_NS
33 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
35 if (ns)
36 kref_get(&ns->kref);
37 return ns;
40 extern int create_user_ns(struct cred *new);
41 extern void free_user_ns(struct kref *kref);
43 static inline void put_user_ns(struct user_namespace *ns)
45 if (ns)
46 kref_put(&ns->kref, free_user_ns);
49 struct seq_operations;
50 extern struct seq_operations proc_uid_seq_operations;
51 extern struct seq_operations proc_gid_seq_operations;
52 extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
53 extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
54 #else
56 static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
58 return &init_user_ns;
61 static inline int create_user_ns(struct cred *new)
63 return -EINVAL;
66 static inline void put_user_ns(struct user_namespace *ns)
70 #endif
72 #endif /* _LINUX_USER_H */