proc_ns.h 2.6 KB

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