blob: 4e72922e5a751c150386e4eb9f8e961ac1051d67 [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>
6#include <linux/sched.h>
Serge E. Hallyn77ec7392007-07-15 23:41:01 -07007#include <linux/err.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -07008
Eric W. Biederman22d917d2011-11-17 00:11:58 -08009#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
Cedric Le Goateracce2922007-07-15 23:40:59 -070020struct user_namespace {
Eric W. Biederman22d917d2011-11-17 00:11:58 -080021 struct uid_gid_map uid_map;
22 struct uid_gid_map gid_map;
Cedric Le Goateracce2922007-07-15 23:40:59 -070023 struct kref kref;
Eric W. Biedermanaeb3ae92011-11-16 21:59:43 -080024 struct user_namespace *parent;
Eric W. Biederman783291e2011-11-17 01:32:59 -080025 kuid_t owner;
26 kgid_t group;
Cedric Le Goateracce2922007-07-15 23:40:59 -070027};
28
29extern struct user_namespace init_user_ns;
30
31#ifdef CONFIG_USER_NS
32
33static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
34{
35 if (ns)
36 kref_get(&ns->kref);
37 return ns;
38}
39
Serge Hallyn18b6e042008-10-15 16:38:45 -050040extern int create_user_ns(struct cred *new);
Cedric Le Goateracce2922007-07-15 23:40:59 -070041extern void free_user_ns(struct kref *kref);
42
43static inline void put_user_ns(struct user_namespace *ns)
44{
45 if (ns)
46 kref_put(&ns->kref, free_user_ns);
47}
48
Eric W. Biederman22d917d2011-11-17 00:11:58 -080049struct seq_operations;
50extern struct seq_operations proc_uid_seq_operations;
51extern struct seq_operations proc_gid_seq_operations;
52extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *);
53extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *);
Cedric Le Goateracce2922007-07-15 23:40:59 -070054#else
55
56static inline struct user_namespace *get_user_ns(struct user_namespace *ns)
57{
58 return &init_user_ns;
59}
60
Serge Hallyn18b6e042008-10-15 16:38:45 -050061static inline int create_user_ns(struct cred *new)
Cedric Le Goateracce2922007-07-15 23:40:59 -070062{
Serge Hallyn18b6e042008-10-15 16:38:45 -050063 return -EINVAL;
Cedric Le Goateracce2922007-07-15 23:40:59 -070064}
65
66static inline void put_user_ns(struct user_namespace *ns)
67{
68}
69
Eric W. Biederman22d917d2011-11-17 00:11:58 -080070#endif
71
Cedric Le Goateracce2922007-07-15 23:40:59 -070072#endif /* _LINUX_USER_H */