Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 1 | struct sysfs_elem_dir { |
| 2 | struct kobject * kobj; |
| 3 | }; |
| 4 | |
| 5 | struct sysfs_elem_symlink { |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 6 | struct sysfs_dirent * target_sd; |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 7 | }; |
| 8 | |
| 9 | struct sysfs_elem_attr { |
| 10 | struct attribute * attr; |
| 11 | }; |
| 12 | |
| 13 | struct sysfs_elem_bin_attr { |
| 14 | struct bin_attribute * bin_attr; |
| 15 | }; |
| 16 | |
Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame^] | 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 | */ |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 22 | struct sysfs_dirent { |
| 23 | atomic_t s_count; |
Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame^] | 24 | struct rw_semaphore s_active; |
Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 25 | struct sysfs_dirent * s_parent; |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 26 | struct list_head s_sibling; |
| 27 | struct list_head s_children; |
Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 28 | const char * s_name; |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 29 | |
| 30 | union { |
| 31 | struct sysfs_elem_dir dir; |
| 32 | struct sysfs_elem_symlink symlink; |
| 33 | struct sysfs_elem_attr attr; |
| 34 | struct sysfs_elem_bin_attr bin_attr; |
| 35 | } s_elem; |
| 36 | |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 37 | int s_type; |
| 38 | umode_t s_mode; |
Eric Sandeen | dc35125 | 2007-06-11 14:02:45 +0900 | [diff] [blame] | 39 | ino_t s_ino; |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 40 | struct dentry * s_dentry; |
| 41 | struct iattr * s_iattr; |
| 42 | atomic_t s_event; |
| 43 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame^] | 45 | /* |
| 46 | * A sysfs file which deletes another file when written to need to |
| 47 | * write lock the s_active of the victim while its s_active is read |
| 48 | * locked for the write operation. Tell lockdep that this is okay. |
| 49 | */ |
| 50 | enum sysfs_s_active_class |
| 51 | { |
| 52 | SYSFS_S_ACTIVE_NORMAL, /* file r/w access, etc - default */ |
| 53 | SYSFS_S_ACTIVE_DEACTIVATE, /* file deactivation */ |
| 54 | }; |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | extern struct vfsmount * sysfs_mount; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 57 | extern struct kmem_cache *sysfs_dir_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 59 | extern void sysfs_delete_inode(struct inode *inode); |
Maneesh Soni | 8215534 | 2005-05-31 10:39:52 +0530 | [diff] [blame] | 60 | extern struct inode * sysfs_new_inode(mode_t mode, struct sysfs_dirent *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | extern int sysfs_create(struct dentry *, int mode, int (*init)(struct inode *)); |
| 62 | |
Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 63 | extern void release_sysfs_dirent(struct sysfs_dirent * sd); |
Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 64 | extern int sysfs_dirent_exist(struct sysfs_dirent *, const unsigned char *); |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 65 | extern struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, |
| 66 | int type); |
Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 67 | extern void sysfs_attach_dirent(struct sysfs_dirent *sd, |
| 68 | struct sysfs_dirent *parent_sd, |
| 69 | struct dentry *dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | extern int sysfs_add_file(struct dentry *, const struct attribute *, int); |
Randy.Dunlap | 995982c | 2006-07-10 23:05:25 -0700 | [diff] [blame] | 72 | extern int sysfs_hash_and_remove(struct dentry * dir, const char * name); |
NeilBrown | 4508a7a | 2006-03-20 17:53:53 +1100 | [diff] [blame] | 73 | extern struct sysfs_dirent *sysfs_find(struct sysfs_dirent *dir, const char * name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | extern int sysfs_create_subdir(struct kobject *, const char *, struct dentry **); |
| 76 | extern void sysfs_remove_subdir(struct dentry *); |
| 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | extern void sysfs_drop_dentry(struct sysfs_dirent *sd, struct dentry *parent); |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 79 | extern int sysfs_setattr(struct dentry *dentry, struct iattr *iattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Tejun Heo | dd14cbc | 2007-06-11 14:04:01 +0900 | [diff] [blame] | 81 | extern spinlock_t sysfs_lock; |
Tejun Heo | aecdced | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 82 | extern spinlock_t kobj_sysfs_assoc_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | extern struct rw_semaphore sysfs_rename_sem; |
| 84 | extern struct super_block * sysfs_sb; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 85 | extern const struct file_operations sysfs_dir_operations; |
| 86 | extern const struct file_operations sysfs_file_operations; |
| 87 | extern const struct file_operations bin_fops; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 88 | extern const struct inode_operations sysfs_dir_inode_operations; |
| 89 | extern const struct inode_operations sysfs_symlink_inode_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Oliver Neukum | 94bebf4 | 2006-12-20 10:52:44 +0100 | [diff] [blame] | 91 | struct sysfs_buffer { |
| 92 | struct list_head associates; |
| 93 | size_t count; |
| 94 | loff_t pos; |
| 95 | char * page; |
| 96 | struct sysfs_ops * ops; |
| 97 | struct semaphore sem; |
| 98 | int orphaned; |
| 99 | int needs_read_fill; |
| 100 | int event; |
| 101 | }; |
| 102 | |
| 103 | struct sysfs_buffer_collection { |
| 104 | struct list_head associates; |
| 105 | }; |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd) |
| 108 | { |
| 109 | if (sd) { |
| 110 | WARN_ON(!atomic_read(&sd->s_count)); |
| 111 | atomic_inc(&sd->s_count); |
| 112 | } |
| 113 | return sd; |
| 114 | } |
| 115 | |
| 116 | static inline void sysfs_put(struct sysfs_dirent * sd) |
| 117 | { |
Tejun Heo | 7a23ad4 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 118 | if (sd && atomic_dec_and_test(&sd->s_count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | release_sysfs_dirent(sd); |
| 120 | } |
| 121 | |
Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame^] | 122 | /** |
| 123 | * sysfs_get_active - get an active reference to sysfs_dirent |
| 124 | * @sd: sysfs_dirent to get an active reference to |
| 125 | * |
| 126 | * Get an active reference of @sd. This function is noop if @sd |
| 127 | * is NULL. |
| 128 | * |
| 129 | * RETURNS: |
| 130 | * Pointer to @sd on success, NULL on failure. |
| 131 | */ |
| 132 | static inline struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd) |
| 133 | { |
| 134 | if (sd) { |
| 135 | if (unlikely(!down_read_trylock(&sd->s_active))) |
| 136 | sd = NULL; |
| 137 | } |
| 138 | return sd; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * sysfs_put_active - put an active reference to sysfs_dirent |
| 143 | * @sd: sysfs_dirent to put an active reference to |
| 144 | * |
| 145 | * Put an active reference to @sd. This function is noop if @sd |
| 146 | * is NULL. |
| 147 | */ |
| 148 | static inline void sysfs_put_active(struct sysfs_dirent *sd) |
| 149 | { |
| 150 | if (sd) |
| 151 | up_read(&sd->s_active); |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * sysfs_get_active_two - get active references to sysfs_dirent and parent |
| 156 | * @sd: sysfs_dirent of interest |
| 157 | * |
| 158 | * Get active reference to @sd and its parent. Parent's active |
| 159 | * reference is grabbed first. This function is noop if @sd is |
| 160 | * NULL. |
| 161 | * |
| 162 | * RETURNS: |
| 163 | * Pointer to @sd on success, NULL on failure. |
| 164 | */ |
| 165 | static inline struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd) |
| 166 | { |
| 167 | if (sd) { |
| 168 | if (sd->s_parent && unlikely(!sysfs_get_active(sd->s_parent))) |
| 169 | return NULL; |
| 170 | if (unlikely(!sysfs_get_active(sd))) { |
| 171 | sysfs_put_active(sd->s_parent); |
| 172 | return NULL; |
| 173 | } |
| 174 | } |
| 175 | return sd; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * sysfs_put_active_two - put active references to sysfs_dirent and parent |
| 180 | * @sd: sysfs_dirent of interest |
| 181 | * |
| 182 | * Put active references to @sd and its parent. This function is |
| 183 | * noop if @sd is NULL. |
| 184 | */ |
| 185 | static inline void sysfs_put_active_two(struct sysfs_dirent *sd) |
| 186 | { |
| 187 | if (sd) { |
| 188 | sysfs_put_active(sd); |
| 189 | sysfs_put_active(sd->s_parent); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * sysfs_deactivate - deactivate sysfs_dirent |
| 195 | * @sd: sysfs_dirent to deactivate |
| 196 | * |
| 197 | * Deny new active references and drain existing ones. s_active |
| 198 | * will be unlocked when the sysfs_dirent is released. |
| 199 | */ |
| 200 | static inline void sysfs_deactivate(struct sysfs_dirent *sd) |
| 201 | { |
| 202 | down_write_nested(&sd->s_active, SYSFS_S_ACTIVE_DEACTIVATE); |
| 203 | |
| 204 | /* s_active will be unlocked by the thread doing the final put |
| 205 | * on @sd. Lie to lockdep. |
| 206 | */ |
| 207 | rwsem_release(&sd->s_active.dep_map, 1, _RET_IP_); |
| 208 | } |
| 209 | |
Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 210 | static inline int sysfs_is_shadowed_inode(struct inode *inode) |
| 211 | { |
| 212 | return S_ISDIR(inode->i_mode) && inode->i_op->follow_link; |
| 213 | } |