sysfs.h 4.0 KB

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