blob: d976b0005549e9deb720352298550dfed644a839 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2extern struct vfsmount * sysfs_mount;
Christoph Lametere18b8902006-12-06 20:33:20 -08003extern struct kmem_cache *sysfs_dir_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -07005extern void sysfs_delete_inode(struct inode *inode);
Maneesh Soni82155342005-05-31 10:39:52 +05306extern struct inode * sysfs_new_inode(mode_t mode, struct sysfs_dirent *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007extern int sysfs_create(struct dentry *, int mode, int (*init)(struct inode *));
8
Maneesh Sonic5168652006-03-09 19:40:14 +05309extern int sysfs_dirent_exist(struct sysfs_dirent *, const unsigned char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010extern int sysfs_make_dirent(struct sysfs_dirent *, struct dentry *, void *,
11 umode_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13extern int sysfs_add_file(struct dentry *, const struct attribute *, int);
Randy.Dunlap995982c2006-07-10 23:05:25 -070014extern int sysfs_hash_and_remove(struct dentry * dir, const char * name);
NeilBrown4508a7a2006-03-20 17:53:53 +110015extern struct sysfs_dirent *sysfs_find(struct sysfs_dirent *dir, const char * name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17extern int sysfs_create_subdir(struct kobject *, const char *, struct dentry **);
18extern void sysfs_remove_subdir(struct dentry *);
19
20extern const unsigned char * sysfs_get_name(struct sysfs_dirent *sd);
21extern void sysfs_drop_dentry(struct sysfs_dirent *sd, struct dentry *parent);
Maneesh Soni988d1862005-05-31 10:39:14 +053022extern int sysfs_setattr(struct dentry *dentry, struct iattr *iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24extern struct rw_semaphore sysfs_rename_sem;
25extern struct super_block * sysfs_sb;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080026extern const struct file_operations sysfs_dir_operations;
27extern const struct file_operations sysfs_file_operations;
28extern const struct file_operations bin_fops;
Arjan van de Venc5ef1c42007-02-12 00:55:40 -080029extern const struct inode_operations sysfs_dir_inode_operations;
30extern const struct inode_operations sysfs_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32struct sysfs_symlink {
33 char * link_name;
34 struct kobject * target_kobj;
35};
36
Oliver Neukum94bebf42006-12-20 10:52:44 +010037struct sysfs_buffer {
38 struct list_head associates;
39 size_t count;
40 loff_t pos;
41 char * page;
42 struct sysfs_ops * ops;
43 struct semaphore sem;
44 int orphaned;
45 int needs_read_fill;
46 int event;
47};
48
49struct sysfs_buffer_collection {
50 struct list_head associates;
51};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static inline struct kobject * to_kobj(struct dentry * dentry)
54{
55 struct sysfs_dirent * sd = dentry->d_fsdata;
56 return ((struct kobject *) sd->s_element);
57}
58
59static inline struct attribute * to_attr(struct dentry * dentry)
60{
61 struct sysfs_dirent * sd = dentry->d_fsdata;
62 return ((struct attribute *) sd->s_element);
63}
64
65static inline struct bin_attribute * to_bin_attr(struct dentry * dentry)
66{
67 struct sysfs_dirent * sd = dentry->d_fsdata;
68 return ((struct bin_attribute *) sd->s_element);
69}
70
71static inline struct kobject *sysfs_get_kobject(struct dentry *dentry)
72{
73 struct kobject * kobj = NULL;
74
75 spin_lock(&dcache_lock);
76 if (!d_unhashed(dentry)) {
77 struct sysfs_dirent * sd = dentry->d_fsdata;
78 if (sd->s_type & SYSFS_KOBJ_LINK) {
79 struct sysfs_symlink * sl = sd->s_element;
80 kobj = kobject_get(sl->target_kobj);
81 } else
82 kobj = kobject_get(sd->s_element);
83 }
84 spin_unlock(&dcache_lock);
85
86 return kobj;
87}
88
89static inline void release_sysfs_dirent(struct sysfs_dirent * sd)
90{
91 if (sd->s_type & SYSFS_KOBJ_LINK) {
92 struct sysfs_symlink * sl = sd->s_element;
93 kfree(sl->link_name);
94 kobject_put(sl->target_kobj);
95 kfree(sl);
96 }
Maneesh Soni988d1862005-05-31 10:39:14 +053097 kfree(sd->s_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 kmem_cache_free(sysfs_dir_cachep, sd);
99}
100
101static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd)
102{
103 if (sd) {
104 WARN_ON(!atomic_read(&sd->s_count));
105 atomic_inc(&sd->s_count);
106 }
107 return sd;
108}
109
110static inline void sysfs_put(struct sysfs_dirent * sd)
111{
112 if (atomic_dec_and_test(&sd->s_count))
113 release_sysfs_dirent(sd);
114}
115
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700116static inline int sysfs_is_shadowed_inode(struct inode *inode)
117{
118 return S_ISDIR(inode->i_mode) && inode->i_op->follow_link;
119}