sysfs.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. struct sysfs_open_dirent;
  2. /* type-specific structures for sysfs_dirent->s_* union members */
  3. struct sysfs_elem_dir {
  4. struct kobject *kobj;
  5. /* children list starts here and goes through sd->s_sibling */
  6. struct sysfs_dirent *children;
  7. };
  8. struct sysfs_elem_symlink {
  9. struct sysfs_dirent *target_sd;
  10. };
  11. struct sysfs_elem_attr {
  12. struct attribute *attr;
  13. struct sysfs_open_dirent *open;
  14. };
  15. struct sysfs_elem_bin_attr {
  16. struct bin_attribute *bin_attr;
  17. };
  18. /*
  19. * sysfs_dirent - the building block of sysfs hierarchy. Each and
  20. * every sysfs node is represented by single sysfs_dirent.
  21. *
  22. * As long as s_count reference is held, the sysfs_dirent itself is
  23. * accessible. Dereferencing s_elem or any other outer entity
  24. * requires s_active reference.
  25. */
  26. struct sysfs_dirent {
  27. atomic_t s_count;
  28. atomic_t s_active;
  29. struct sysfs_dirent *s_parent;
  30. struct sysfs_dirent *s_sibling;
  31. const char *s_name;
  32. union {
  33. struct sysfs_elem_dir s_dir;
  34. struct sysfs_elem_symlink s_symlink;
  35. struct sysfs_elem_attr s_attr;
  36. struct sysfs_elem_bin_attr s_bin_attr;
  37. };
  38. unsigned int s_flags;
  39. ino_t s_ino;
  40. umode_t s_mode;
  41. struct iattr *s_iattr;
  42. };
  43. #define SD_DEACTIVATED_BIAS INT_MIN
  44. #define SYSFS_TYPE_MASK 0x00ff
  45. #define SYSFS_DIR 0x0001
  46. #define SYSFS_KOBJ_ATTR 0x0002
  47. #define SYSFS_KOBJ_BIN_ATTR 0x0004
  48. #define SYSFS_KOBJ_LINK 0x0008
  49. #define SYSFS_COPY_NAME (SYSFS_DIR | SYSFS_KOBJ_LINK)
  50. #define SYSFS_FLAG_MASK ~SYSFS_TYPE_MASK
  51. #define SYSFS_FLAG_REMOVED 0x0200
  52. static inline unsigned int sysfs_type(struct sysfs_dirent *sd)
  53. {
  54. return sd->s_flags & SYSFS_TYPE_MASK;
  55. }
  56. /*
  57. * Context structure to be used while adding/removing nodes.
  58. */
  59. struct sysfs_addrm_cxt {
  60. struct sysfs_dirent *parent_sd;
  61. struct inode *parent_inode;
  62. struct sysfs_dirent *removed;
  63. int cnt;
  64. };
  65. /*
  66. * mount.c
  67. */
  68. extern struct sysfs_dirent sysfs_root;
  69. extern struct super_block *sysfs_sb;
  70. extern struct kmem_cache *sysfs_dir_cachep;
  71. /*
  72. * dir.c
  73. */
  74. extern struct mutex sysfs_mutex;
  75. extern struct mutex sysfs_rename_mutex;
  76. extern spinlock_t sysfs_assoc_lock;
  77. extern const struct file_operations sysfs_dir_operations;
  78. extern const struct inode_operations sysfs_dir_inode_operations;
  79. struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd);
  80. struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd);
  81. void sysfs_put_active(struct sysfs_dirent *sd);
  82. struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd);
  83. void sysfs_put_active_two(struct sysfs_dirent *sd);
  84. void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
  85. struct sysfs_dirent *parent_sd);
  86. int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd);
  87. void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd);
  88. void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt);
  89. struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
  90. const unsigned char *name);
  91. struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
  92. const unsigned char *name);
  93. struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type);
  94. void release_sysfs_dirent(struct sysfs_dirent *sd);
  95. int sysfs_create_subdir(struct kobject *kobj, const char *name,
  96. struct sysfs_dirent **p_sd);
  97. void sysfs_remove_subdir(struct sysfs_dirent *sd);
  98. static inline struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
  99. {
  100. if (sd) {
  101. WARN_ON(!atomic_read(&sd->s_count));
  102. atomic_inc(&sd->s_count);
  103. }
  104. return sd;
  105. }
  106. static inline void sysfs_put(struct sysfs_dirent *sd)
  107. {
  108. if (sd && atomic_dec_and_test(&sd->s_count))
  109. release_sysfs_dirent(sd);
  110. }
  111. /*
  112. * inode.c
  113. */
  114. struct inode *sysfs_get_inode(struct sysfs_dirent *sd);
  115. int sysfs_setattr(struct dentry *dentry, struct iattr *iattr);
  116. int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const char *name);
  117. /*
  118. * file.c
  119. */
  120. extern const struct file_operations sysfs_file_operations;
  121. int sysfs_add_file(struct sysfs_dirent *dir_sd,
  122. const struct attribute *attr, int type);
  123. /*
  124. * bin.c
  125. */
  126. extern const struct file_operations bin_fops;
  127. /*
  128. * symlink.c
  129. */
  130. extern const struct inode_operations sysfs_symlink_inode_operations;