self.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/cache.h>
  3. #include <linux/sched.h>
  4. #include <linux/slab.h>
  5. #include <linux/pid_namespace.h>
  6. #include "internal.h"
  7. /*
  8. * /proc/self:
  9. */
  10. static const char *proc_self_get_link(struct dentry *dentry,
  11. struct inode *inode,
  12. struct delayed_call *done)
  13. {
  14. struct pid_namespace *ns = proc_pid_ns(inode->i_sb);
  15. pid_t tgid = task_tgid_nr_ns(current, ns);
  16. char *name;
  17. if (!tgid)
  18. return ERR_PTR(-ENOENT);
  19. /* max length of unsigned int in decimal + NULL term */
  20. name = kmalloc(10 + 1, dentry ? GFP_KERNEL : GFP_ATOMIC);
  21. if (unlikely(!name))
  22. return dentry ? ERR_PTR(-ENOMEM) : ERR_PTR(-ECHILD);
  23. sprintf(name, "%u", tgid);
  24. set_delayed_call(done, kfree_link, name);
  25. return name;
  26. }
  27. static const struct inode_operations proc_self_inode_operations = {
  28. .get_link = proc_self_get_link,
  29. };
  30. unsigned self_inum __ro_after_init;
  31. int proc_setup_self(struct super_block *s)
  32. {
  33. struct inode *root_inode = d_inode(s->s_root);
  34. struct dentry *self;
  35. int ret = -ENOMEM;
  36. inode_lock(root_inode);
  37. self = d_alloc_name(s->s_root, "self");
  38. if (self) {
  39. struct inode *inode = new_inode(s);
  40. if (inode) {
  41. inode->i_ino = self_inum;
  42. simple_inode_init_ts(inode);
  43. inode->i_mode = S_IFLNK | S_IRWXUGO;
  44. inode->i_uid = GLOBAL_ROOT_UID;
  45. inode->i_gid = GLOBAL_ROOT_GID;
  46. inode->i_op = &proc_self_inode_operations;
  47. d_make_persistent(self, inode);
  48. ret = 0;
  49. }
  50. dput(self);
  51. }
  52. inode_unlock(root_inode);
  53. if (ret)
  54. pr_err("proc_fill_super: can't allocate /proc/self\n");
  55. return ret;
  56. }
  57. void __init proc_self_init(void)
  58. {
  59. proc_alloc_inum(&self_inum);
  60. }