| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | #ifndef _LINUX_USER_NAMESPACE_H
 | 
					
						
							|  |  |  | #define _LINUX_USER_NAMESPACE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kref.h>
 | 
					
						
							|  |  |  | #include <linux/nsproxy.h>
 | 
					
						
							|  |  |  | #include <linux/sched.h>
 | 
					
						
							| 
									
										
										
										
											2007-07-15 23:41:01 -07:00
										 |  |  | #include <linux/err.h>
 | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-17 00:11:58 -08:00
										 |  |  | #define UID_GID_MAP_MAX_EXTENTS 5
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct uid_gid_map {	/* 64 bytes -- 1 cache line */ | 
					
						
							|  |  |  | 	u32 nr_extents; | 
					
						
							|  |  |  | 	struct uid_gid_extent { | 
					
						
							|  |  |  | 		u32 first; | 
					
						
							|  |  |  | 		u32 lower_first; | 
					
						
							|  |  |  | 		u32 count; | 
					
						
							|  |  |  | 	} extent[UID_GID_MAP_MAX_EXTENTS]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | struct user_namespace { | 
					
						
							| 
									
										
										
										
											2011-11-17 00:11:58 -08:00
										 |  |  | 	struct uid_gid_map	uid_map; | 
					
						
							|  |  |  | 	struct uid_gid_map	gid_map; | 
					
						
							| 
									
										
										
										
											2012-08-30 01:24:05 -07:00
										 |  |  | 	struct uid_gid_map	projid_map; | 
					
						
							| 
									
										
										
										
											2012-12-28 18:58:39 -08:00
										 |  |  | 	atomic_t		count; | 
					
						
							| 
									
										
										
										
											2011-11-16 21:59:43 -08:00
										 |  |  | 	struct user_namespace	*parent; | 
					
						
							| 
									
										
										
										
											2011-11-17 01:32:59 -08:00
										 |  |  | 	kuid_t			owner; | 
					
						
							|  |  |  | 	kgid_t			group; | 
					
						
							| 
									
										
										
										
											2011-06-15 10:21:48 -07:00
										 |  |  | 	unsigned int		proc_inum; | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct user_namespace init_user_ns; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_USER_NS
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline struct user_namespace *get_user_ns(struct user_namespace *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ns) | 
					
						
							| 
									
										
										
										
											2012-12-28 18:58:39 -08:00
										 |  |  | 		atomic_inc(&ns->count); | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | 	return ns; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 16:38:45 -05:00
										 |  |  | extern int create_user_ns(struct cred *new); | 
					
						
							| 
									
										
										
										
											2012-07-26 05:15:35 -07:00
										 |  |  | extern int unshare_userns(unsigned long unshare_flags, struct cred **new_cred); | 
					
						
							| 
									
										
										
										
											2012-12-28 18:58:39 -08:00
										 |  |  | extern void free_user_ns(struct user_namespace *ns); | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | static inline void put_user_ns(struct user_namespace *ns) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-12-28 18:58:39 -08:00
										 |  |  | 	if (ns && atomic_dec_and_test(&ns->count)) | 
					
						
							|  |  |  | 		free_user_ns(ns); | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-17 00:11:58 -08:00
										 |  |  | struct seq_operations; | 
					
						
							|  |  |  | extern struct seq_operations proc_uid_seq_operations; | 
					
						
							|  |  |  | extern struct seq_operations proc_gid_seq_operations; | 
					
						
							| 
									
										
										
										
											2012-08-30 01:24:05 -07:00
										 |  |  | extern struct seq_operations proc_projid_seq_operations; | 
					
						
							| 
									
										
										
										
											2011-11-17 00:11:58 -08:00
										 |  |  | extern ssize_t proc_uid_map_write(struct file *, const char __user *, size_t, loff_t *); | 
					
						
							|  |  |  | extern ssize_t proc_gid_map_write(struct file *, const char __user *, size_t, loff_t *); | 
					
						
							| 
									
										
										
										
											2012-08-30 01:24:05 -07:00
										 |  |  | extern ssize_t proc_projid_map_write(struct file *, const char __user *, size_t, loff_t *); | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline struct user_namespace *get_user_ns(struct user_namespace *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return &init_user_ns; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 16:38:45 -05:00
										 |  |  | static inline int create_user_ns(struct cred *new) | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-10-15 16:38:45 -05:00
										 |  |  | 	return -EINVAL; | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-26 05:15:35 -07:00
										 |  |  | static inline int unshare_userns(unsigned long unshare_flags, | 
					
						
							|  |  |  | 				 struct cred **new_cred) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (unshare_flags & CLONE_NEWUSER) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | static inline void put_user_ns(struct user_namespace *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-17 00:11:58 -08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-15 23:40:59 -07:00
										 |  |  | #endif /* _LINUX_USER_H */
 |