Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[deliverable/linux.git] / include / linux / user_namespace.h
CommitLineData
acce292c
CLG
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/sched.h>
77ec739d 7#include <linux/err.h>
acce292c 8
22d917d8
EB
9#define UID_GID_MAP_MAX_EXTENTS 5
10
11struct 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];
18};
19
acce292c 20struct user_namespace {
22d917d8
EB
21 struct uid_gid_map uid_map;
22 struct uid_gid_map gid_map;
f76d207a 23 struct uid_gid_map projid_map;
c61a2810 24 atomic_t count;
aeb3ae9d 25 struct user_namespace *parent;
783291e6
EB
26 kuid_t owner;
27 kgid_t group;
98f842e6 28 unsigned int proc_inum;
87a8ebd6
EB
29 bool may_mount_sysfs;
30 bool may_mount_proc;
acce292c
CLG
31};
32
33extern struct user_namespace init_user_ns;
34
35#ifdef CONFIG_USER_NS
36
37static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
38{
39 if (ns)
c61a2810 40 atomic_inc(&ns->count);
acce292c
CLG
41 return ns;
42}
43
18b6e041 44extern int create_user_ns(struct cred *new);
b2e0d987 45extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred);
c61a2810 46extern void free_user_ns(struct user_namespace *ns);
acce292c
CLG
47
48static inline void put_user_ns(struct user_namespace *ns)
49{
c61a2810
EB
50 if (ns && atomic_dec_and_test(&ns->count))
51 free_user_ns(ns);
acce292c
CLG
52}
53
22d917d8
EB
54struct seq_operations;
55extern struct seq_operations proc_uid_seq_operations;
56extern struct seq_operations proc_gid_seq_operations;
f76d207a 57extern struct seq_operations proc_projid_seq_operations;
22d917d8
EB
58extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
59extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
f76d207a 60extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *);
acce292c
CLG
61#else
62
63static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
64{
65 return &init_user_ns;
66}
67
18b6e041 68static inline int create_user_ns(struct cred *new)
acce292c 69{
18b6e041 70 return -EINVAL;
acce292c
CLG
71}
72
b2e0d987
EB
73static inline int unshare_userns(unsigned long unshare_flags,
74 struct cred **new_cred)
75{
76 if (unshare_flags & CLONE_NEWUSER)
77 return -EINVAL;
78 return 0;
79}
80
acce292c
CLG
81static inline void put_user_ns(struct user_namespace *ns)
82{
83}
84
22d917d8
EB
85#endif
86
87a8ebd6
EB
87void update_mnt_policy(struct user_namespace *userns);
88
acce292c 89#endif /* _LINUX_USER_H */
This page took 0.983722 seconds and 5 git commands to generate.