proc_ns.h 2.2 KB

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