proc_ns.h 2.4 KB

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