thread_self.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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/thread_self:
  9. */
  10. static const char *proc_thread_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. pid_t pid = task_pid_nr_ns(current, ns);
  17. char *name;
  18. if (!pid)
  19. return ERR_PTR(-ENOENT);
  20. name = kmalloc(10 + 6 + 10 + 1, dentry ? GFP_KERNEL : GFP_ATOMIC);
  21. if (unlikely(!name))
  22. return dentry ? ERR_PTR(-ENOMEM) : ERR_PTR(-ECHILD);
  23. sprintf(name, "%u/task/%u", tgid, pid);
  24. set_delayed_call(done, kfree_link, name);
  25. return name;
  26. }
  27. static const struct inode_operations proc_thread_self_inode_operations = {
  28. .get_link = proc_thread_self_get_link,
  29. };
  30. unsigned thread_self_inum __ro_after_init;
  31. int proc_setup_thread_self(struct super_block *s)
  32. {
  33. struct inode *root_inode = d_inode(s->s_root);
  34. struct dentry *thread_self;
  35. int ret = -ENOMEM;
  36. inode_lock(root_inode);
  37. thread_self = d_alloc_name(s->s_root, "thread-self");
  38. if (thread_self) {
  39. struct inode *inode = new_inode(s);
  40. if (inode) {
  41. inode->i_ino = thread_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_thread_self_inode_operations;
  47. d_make_persistent(thread_self, inode);
  48. ret = 0;
  49. }
  50. dput(thread_self);
  51. }
  52. inode_unlock(root_inode);
  53. if (ret)
  54. pr_err("proc_fill_super: can't allocate /proc/thread-self\n");
  55. return ret;
  56. }
  57. void __init proc_thread_self_init(void)
  58. {
  59. proc_alloc_inum(&thread_self_inum);
  60. }