sysfs.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. atomic_t s_event;
  43. };
  44. #define SD_DEACTIVATED_BIAS INT_MIN
  45. #define SYSFS_TYPE_MASK 0x00ff
  46. #define SYSFS_DIR 0x0001
  47. #define SYSFS_KOBJ_ATTR 0x0002
  48. #define SYSFS_KOBJ_BIN_ATTR 0x0004
  49. #define SYSFS_KOBJ_LINK 0x0008
  50. #define SYSFS_COPY_NAME (SYSFS_DIR | SYSFS_KOBJ_LINK)
  51. #define SYSFS_FLAG_MASK ~SYSFS_TYPE_MASK
  52. #define SYSFS_FLAG_REMOVED 0x0200
  53. static inline unsigned int sysfs_type(struct sysfs_dirent *sd)
  54. {
  55. return sd->s_flags & SYSFS_TYPE_MASK;
  56. }
  57. /*
  58. * Context structure to be used while adding/removing nodes.
  59. */
  60. struct sysfs_addrm_cxt {
  61. struct sysfs_dirent *parent_sd;
  62. struct inode *parent_inode;
  63. struct sysfs_dirent *removed;
  64. int cnt;
  65. };
  66. /*
  67. * mount.c
  68. */
  69. extern struct sysfs_dirent sysfs_root;
  70. extern struct super_block *sysfs_sb;
  71. extern struct kmem_cache *sysfs_dir_cachep;
  72. /*
  73. * dir.c
  74. */
  75. extern struct mutex sysfs_mutex;
  76. extern struct mutex sysfs_rename_mutex;
  77. extern spinlock_t sysfs_assoc_lock;
  78. extern const struct file_operations sysfs_dir_operations;
  79. extern const struct inode_operations sysfs_dir_inode_operations;
  80. struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd);
  81. struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd);
  82. void sysfs_put_active(struct sysfs_dirent *sd);
  83. struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd);
  84. void sysfs_put_active_two(struct sysfs_dirent *sd);
  85. void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
  86. struct sysfs_dirent *parent_sd);
  87. int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd);
  88. void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd);
  89. void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt);
  90. struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
  91. const unsigned char *name);
  92. struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
  93. const unsigned char *name);
  94. struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type);
  95. void release_sysfs_dirent(struct sysfs_dirent *sd);
  96. int sysfs_create_subdir(struct kobject *kobj, const char *name,
  97. struct sysfs_dirent **p_sd);
  98. void sysfs_remove_subdir(struct sysfs_dirent *sd);
  99. static inline struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
  100. {
  101. if (sd) {
  102. WARN_ON(!atomic_read(&sd->s_count));
  103. atomic_inc(&sd->s_count);
  104. }
  105. return sd;
  106. }
  107. static inline void sysfs_put(struct sysfs_dirent *sd)
  108. {
  109. if (sd && atomic_dec_and_test(&sd->s_count))
  110. release_sysfs_dirent(sd);
  111. }
  112. /*
  113. * inode.c
  114. */
  115. struct inode *sysfs_get_inode(struct sysfs_dirent *sd);
  116. int sysfs_setattr(struct dentry *dentry, struct iattr *iattr);
  117. int sysfs_hash_and_remove(struct sysfs_dirent *dir_sd, const char *name);
  118. /*
  119. * file.c
  120. */
  121. extern const struct file_operations sysfs_file_operations;
  122. int sysfs_add_file(struct sysfs_dirent *dir_sd,
  123. const struct attribute *attr, int type);
  124. /*
  125. * bin.c
  126. */
  127. extern const struct file_operations bin_fops;
  128. /*
  129. * symlink.c
  130. */
  131. extern const struct inode_operations sysfs_symlink_inode_operations;