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 | |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 17 | struct sysfs_dirent { |
| 18 | atomic_t s_count; |
Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 19 | struct sysfs_dirent * s_parent; |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 20 | struct list_head s_sibling; |
| 21 | struct list_head s_children; |
Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 22 | const char * s_name; |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 23 | |
| 24 | union { |
| 25 | struct sysfs_elem_dir dir; |
| 26 | struct sysfs_elem_symlink symlink; |
| 27 | struct sysfs_elem_attr attr; |
| 28 | struct sysfs_elem_bin_attr bin_attr; |
| 29 | } s_elem; |
| 30 | |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 31 | int s_type; |
| 32 | umode_t s_mode; |
Eric Sandeen | dc35125 | 2007-06-11 14:02:45 +0900 | [diff] [blame] | 33 | ino_t s_ino; |
Adam J. Richter | d56c3ea | 2007-02-16 21:35:25 +0800 | [diff] [blame] | 34 | struct dentry * s_dentry; |
| 35 | struct iattr * s_iattr; |
| 36 | atomic_t s_event; |
| 37 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | extern struct vfsmount * sysfs_mount; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 40 | extern struct kmem_cache *sysfs_dir_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 42 | extern void sysfs_delete_inode(struct inode *inode); |
Maneesh Soni | 8215534 | 2005-05-31 10:39:52 +0530 | [diff] [blame] | 43 | extern struct inode * sysfs_new_inode(mode_t mode, struct sysfs_dirent *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | extern int sysfs_create(struct dentry *, int mode, int (*init)(struct inode *)); |
| 45 | |
Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 46 | extern void release_sysfs_dirent(struct sysfs_dirent * sd); |
Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 47 | extern int sysfs_dirent_exist(struct sysfs_dirent *, const unsigned char *); |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 48 | extern struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, |
| 49 | int type); |
Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 50 | extern void sysfs_attach_dirent(struct sysfs_dirent *sd, |
| 51 | struct sysfs_dirent *parent_sd, |
| 52 | struct dentry *dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | extern int sysfs_add_file(struct dentry *, const struct attribute *, int); |
Randy.Dunlap | 995982c | 2006-07-10 23:05:25 -0700 | [diff] [blame] | 55 | extern int sysfs_hash_and_remove(struct dentry * dir, const char * name); |
NeilBrown | 4508a7a | 2006-03-20 17:53:53 +1100 | [diff] [blame] | 56 | 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] | 57 | |
| 58 | extern int sysfs_create_subdir(struct kobject *, const char *, struct dentry **); |
| 59 | extern void sysfs_remove_subdir(struct dentry *); |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | extern void sysfs_drop_dentry(struct sysfs_dirent *sd, struct dentry *parent); |
Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 62 | extern int sysfs_setattr(struct dentry *dentry, struct iattr *iattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Tejun Heo | dd14cbc | 2007-06-11 14:04:01 +0900 | [diff] [blame] | 64 | extern spinlock_t sysfs_lock; |
Tejun Heo | aecdced | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 65 | extern spinlock_t kobj_sysfs_assoc_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | extern struct rw_semaphore sysfs_rename_sem; |
| 67 | extern struct super_block * sysfs_sb; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 68 | extern const struct file_operations sysfs_dir_operations; |
| 69 | extern const struct file_operations sysfs_file_operations; |
| 70 | extern const struct file_operations bin_fops; |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 71 | extern const struct inode_operations sysfs_dir_inode_operations; |
| 72 | extern const struct inode_operations sysfs_symlink_inode_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Oliver Neukum | 94bebf4 | 2006-12-20 10:52:44 +0100 | [diff] [blame] | 74 | struct sysfs_buffer { |
| 75 | struct list_head associates; |
| 76 | size_t count; |
| 77 | loff_t pos; |
| 78 | char * page; |
| 79 | struct sysfs_ops * ops; |
| 80 | struct semaphore sem; |
| 81 | int orphaned; |
| 82 | int needs_read_fill; |
| 83 | int event; |
| 84 | }; |
| 85 | |
| 86 | struct sysfs_buffer_collection { |
| 87 | struct list_head associates; |
| 88 | }; |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | static inline struct kobject * to_kobj(struct dentry * dentry) |
| 91 | { |
| 92 | struct sysfs_dirent * sd = dentry->d_fsdata; |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 93 | return sd->s_elem.dir.kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static inline struct kobject *sysfs_get_kobject(struct dentry *dentry) |
| 97 | { |
| 98 | struct kobject * kobj = NULL; |
| 99 | |
| 100 | spin_lock(&dcache_lock); |
| 101 | if (!d_unhashed(dentry)) { |
| 102 | struct sysfs_dirent * sd = dentry->d_fsdata; |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame^] | 103 | |
Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 104 | if (sd->s_type & SYSFS_KOBJ_LINK) |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame^] | 105 | sd = sd->s_elem.symlink.target_sd; |
| 106 | |
| 107 | kobj = kobject_get(sd->s_elem.dir.kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
| 109 | spin_unlock(&dcache_lock); |
| 110 | |
| 111 | return kobj; |
| 112 | } |
| 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd) |
| 115 | { |
| 116 | if (sd) { |
| 117 | WARN_ON(!atomic_read(&sd->s_count)); |
| 118 | atomic_inc(&sd->s_count); |
| 119 | } |
| 120 | return sd; |
| 121 | } |
| 122 | |
| 123 | static inline void sysfs_put(struct sysfs_dirent * sd) |
| 124 | { |
Tejun Heo | 7a23ad4 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 125 | if (sd && atomic_dec_and_test(&sd->s_count)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | release_sysfs_dirent(sd); |
| 127 | } |
| 128 | |
Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 129 | static inline int sysfs_is_shadowed_inode(struct inode *inode) |
| 130 | { |
| 131 | return S_ISDIR(inode->i_mode) && inode->i_op->follow_link; |
| 132 | } |