proc_ns.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * procfs namespace bits
  3. */
  4. #ifndef _LINUX_PROC_NS_H
  5. #define _LINUX_PROC_NS_H
  6. #include <linux/ns_common.h>
  7. struct pid_namespace;
  8. struct nsproxy;
  9. struct path;
  10. struct task_struct;
  11. struct inode;
  12. struct proc_ns_operations {
  13. const char *name;
  14. int type;
  15. struct ns_common *(*get)(struct task_struct *task);
  16. void (*put)(struct ns_common *ns);
  17. int (*install)(struct nsproxy *nsproxy, struct ns_common *ns);
  18. struct user_namespace *(*owner)(struct ns_common *ns);
  19. struct ns_common *(*get_parent)(struct ns_common *ns);
  20. };
  21. extern const struct proc_ns_operations netns_operations;
  22. extern const struct proc_ns_operations utsns_operations;
  23. extern const struct proc_ns_operations ipcns_operations;
  24. extern const struct proc_ns_operations pidns_operations;
  25. extern const struct proc_ns_operations userns_operations;
  26. extern const struct proc_ns_operations mntns_operations;
  27. extern const struct proc_ns_operations cgroupns_operations;
  28. /*
  29. * We always define these enumerators
  30. */
  31. enum {
  32. PROC_ROOT_INO = 1,
  33. PROC_IPC_INIT_INO = 0xEFFFFFFFU,
  34. PROC_UTS_INIT_INO = 0xEFFFFFFEU,
  35. PROC_USER_INIT_INO = 0xEFFFFFFDU,
  36. PROC_PID_INIT_INO = 0xEFFFFFFCU,
  37. PROC_CGROUP_INIT_INO = 0xEFFFFFFBU,
  38. };
  39. #ifdef CONFIG_PROC_FS
  40. extern int pid_ns_prepare_proc(struct pid_namespace *ns);
  41. extern void pid_ns_release_proc(struct pid_namespace *ns);
  42. extern int proc_alloc_inum(unsigned int *pino);
  43. extern void proc_free_inum(unsigned int inum);
  44. #else /* CONFIG_PROC_FS */
  45. static inline int pid_ns_prepare_proc(struct pid_namespace *ns) { return 0; }
  46. static inline void pid_ns_release_proc(struct pid_namespace *ns) {}
  47. static inline int proc_alloc_inum(unsigned int *inum)
  48. {
  49. *inum = 1;
  50. return 0;
  51. }
  52. static inline void proc_free_inum(unsigned int inum) {}
  53. #endif /* CONFIG_PROC_FS */
  54. static inline int ns_alloc_inum(struct ns_common *ns)
  55. {
  56. atomic_long_set(&ns->stashed, 0);
  57. return proc_alloc_inum(&ns->inum);
  58. }
  59. #define ns_free_inum(ns) proc_free_inum((ns)->inum)
  60. extern struct file *proc_ns_fget(int fd);
  61. #define get_proc_ns(inode) ((struct ns_common *)(inode)->i_private)
  62. extern void *ns_get_path(struct path *path, struct task_struct *task,
  63. const struct proc_ns_operations *ns_ops);
  64. extern int ns_get_name(char *buf, size_t size, struct task_struct *task,
  65. const struct proc_ns_operations *ns_ops);
  66. extern void nsfs_init(void);
  67. #endif /* _LINUX_PROC_NS_H */