proc_ns.h 2.2 KB

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