2 * sysfs.h - definitions for the device driver filesystem
4 * Copyright (c) 2001,2002 Patrick Mochel
5 * Copyright (c) 2004 Silicon Graphics, Inc.
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
9 * Please see Documentation/filesystems/sysfs.txt for more information.
15 #include <linux/compiler.h>
16 #include <linux/errno.h>
17 #include <linux/list.h>
18 #include <linux/lockdep.h>
19 #include <linux/kobject_ns.h>
20 #include <linux/atomic.h>
29 #ifdef CONFIG_DEBUG_LOCK_ALLOC
30 bool ignore_lockdep:1;
31 struct lock_class_key *key;
32 struct lock_class_key skey;
37 * sysfs_attr_init - initialize a dynamically allocated sysfs attribute
38 * @attr: struct attribute to initialize
40 * Initialize a dynamically allocated struct attribute so we can
41 * make lockdep happy. This is a new requirement for attributes
42 * and initially this is only needed when lockdep is enabled.
43 * Lockdep gives a nice error when your attribute is added to
44 * sysfs if you don't have this.
46 #ifdef CONFIG_DEBUG_LOCK_ALLOC
47 #define sysfs_attr_init(attr) \
49 static struct lock_class_key __key; \
51 (attr)->key = &__key; \
54 #define sysfs_attr_init(attr) do {} while(0)
57 struct attribute_group {
59 umode_t (*is_visible)(struct kobject *,
60 struct attribute *, int);
61 struct attribute **attrs;
67 * Use these macros to make defining attributes easier. See include/linux/device.h
71 #define __ATTR(_name,_mode,_show,_store) { \
72 .attr = {.name = __stringify(_name), .mode = _mode }, \
77 #define __ATTR_RO(_name) { \
78 .attr = { .name = __stringify(_name), .mode = 0444 }, \
79 .show = _name##_show, \
82 #define __ATTR_NULL { .attr = { .name = NULL } }
84 #ifdef CONFIG_DEBUG_LOCK_ALLOC
85 #define __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) { \
86 .attr = {.name = __stringify(_name), .mode = _mode, \
87 .ignore_lockdep = true }, \
92 #define __ATTR_IGNORE_LOCKDEP __ATTR
95 #define attr_name(_attr) (_attr).attr.name
98 struct vm_area_struct;
100 struct bin_attribute {
101 struct attribute attr;
104 ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *,
105 char *, loff_t, size_t);
106 ssize_t (*write)(struct file *,struct kobject *, struct bin_attribute *,
107 char *, loff_t, size_t);
108 int (*mmap)(struct file *, struct kobject *, struct bin_attribute *attr,
109 struct vm_area_struct *vma);
113 * sysfs_bin_attr_init - initialize a dynamically allocated bin_attribute
114 * @attr: struct bin_attribute to initialize
116 * Initialize a dynamically allocated struct bin_attribute so we
117 * can make lockdep happy. This is a new requirement for
118 * attributes and initially this is only needed when lockdep is
119 * enabled. Lockdep gives a nice error when your attribute is
120 * added to sysfs if you don't have this.
122 #define sysfs_bin_attr_init(bin_attr) sysfs_attr_init(&(bin_attr)->attr)
125 ssize_t (*show)(struct kobject *, struct attribute *,char *);
126 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
127 const void *(*namespace)(struct kobject *, const struct attribute *);
134 int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
135 void *data, struct module *owner);
137 int __must_check sysfs_create_dir(struct kobject *kobj);
138 void sysfs_remove_dir(struct kobject *kobj);
139 int __must_check sysfs_rename_dir(struct kobject *kobj, const char *new_name);
140 int __must_check sysfs_move_dir(struct kobject *kobj,
141 struct kobject *new_parent_kobj);
143 int __must_check sysfs_create_file(struct kobject *kobj,
144 const struct attribute *attr);
145 int __must_check sysfs_create_files(struct kobject *kobj,
146 const struct attribute **attr);
147 int __must_check sysfs_chmod_file(struct kobject *kobj,
148 const struct attribute *attr, umode_t mode);
149 void sysfs_remove_file(struct kobject *kobj, const struct attribute *attr);
150 void sysfs_remove_files(struct kobject *kobj, const struct attribute **attr);
152 int __must_check sysfs_create_bin_file(struct kobject *kobj,
153 const struct bin_attribute *attr);
154 void sysfs_remove_bin_file(struct kobject *kobj,
155 const struct bin_attribute *attr);
157 int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target,
159 int __must_check sysfs_create_link_nowarn(struct kobject *kobj,
160 struct kobject *target,
162 void sysfs_remove_link(struct kobject *kobj, const char *name);
164 int sysfs_rename_link(struct kobject *kobj, struct kobject *target,
165 const char *old_name, const char *new_name);
167 void sysfs_delete_link(struct kobject *dir, struct kobject *targ,
170 int __must_check sysfs_create_group(struct kobject *kobj,
171 const struct attribute_group *grp);
172 int sysfs_update_group(struct kobject *kobj,
173 const struct attribute_group *grp);
174 void sysfs_remove_group(struct kobject *kobj,
175 const struct attribute_group *grp);
176 int sysfs_add_file_to_group(struct kobject *kobj,
177 const struct attribute *attr, const char *group);
178 void sysfs_remove_file_from_group(struct kobject *kobj,
179 const struct attribute *attr, const char *group);
180 int sysfs_merge_group(struct kobject *kobj,
181 const struct attribute_group *grp);
182 void sysfs_unmerge_group(struct kobject *kobj,
183 const struct attribute_group *grp);
184 int sysfs_add_link_to_group(struct kobject *kobj, const char *group_name,
185 struct kobject *target, const char *link_name);
186 void sysfs_remove_link_from_group(struct kobject *kobj, const char *group_name,
187 const char *link_name);
189 void sysfs_notify(struct kobject *kobj, const char *dir, const char *attr);
190 void sysfs_notify_dirent(struct sysfs_dirent *sd);
191 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
193 const unsigned char *name);
194 struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd);
195 void sysfs_put(struct sysfs_dirent *sd);
197 int __must_check sysfs_init(void);
199 #else /* CONFIG_SYSFS */
201 static inline int sysfs_schedule_callback(struct kobject *kobj,
202 void (*func)(void *), void *data, struct module *owner)
207 static inline int sysfs_create_dir(struct kobject *kobj)
212 static inline void sysfs_remove_dir(struct kobject *kobj)
216 static inline int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
221 static inline int sysfs_move_dir(struct kobject *kobj,
222 struct kobject *new_parent_kobj)
227 static inline int sysfs_create_file(struct kobject *kobj,
228 const struct attribute *attr)
233 static inline int sysfs_create_files(struct kobject *kobj,
234 const struct attribute **attr)
239 static inline int sysfs_chmod_file(struct kobject *kobj,
240 const struct attribute *attr, umode_t mode)
245 static inline void sysfs_remove_file(struct kobject *kobj,
246 const struct attribute *attr)
250 static inline void sysfs_remove_files(struct kobject *kobj,
251 const struct attribute **attr)
255 static inline int sysfs_create_bin_file(struct kobject *kobj,
256 const struct bin_attribute *attr)
261 static inline void sysfs_remove_bin_file(struct kobject *kobj,
262 const struct bin_attribute *attr)
266 static inline int sysfs_create_link(struct kobject *kobj,
267 struct kobject *target, const char *name)
272 static inline int sysfs_create_link_nowarn(struct kobject *kobj,
273 struct kobject *target,
279 static inline void sysfs_remove_link(struct kobject *kobj, const char *name)
283 static inline int sysfs_rename_link(struct kobject *k, struct kobject *t,
284 const char *old_name, const char *new_name)
289 static inline void sysfs_delete_link(struct kobject *k, struct kobject *t,
294 static inline int sysfs_create_group(struct kobject *kobj,
295 const struct attribute_group *grp)
300 static inline int sysfs_update_group(struct kobject *kobj,
301 const struct attribute_group *grp)
306 static inline void sysfs_remove_group(struct kobject *kobj,
307 const struct attribute_group *grp)
311 static inline int sysfs_add_file_to_group(struct kobject *kobj,
312 const struct attribute *attr, const char *group)
317 static inline void sysfs_remove_file_from_group(struct kobject *kobj,
318 const struct attribute *attr, const char *group)
322 static inline int sysfs_merge_group(struct kobject *kobj,
323 const struct attribute_group *grp)
328 static inline void sysfs_unmerge_group(struct kobject *kobj,
329 const struct attribute_group *grp)
333 static inline int sysfs_add_link_to_group(struct kobject *kobj,
334 const char *group_name, struct kobject *target,
335 const char *link_name)
340 static inline void sysfs_remove_link_from_group(struct kobject *kobj,
341 const char *group_name, const char *link_name)
345 static inline void sysfs_notify(struct kobject *kobj, const char *dir,
349 static inline void sysfs_notify_dirent(struct sysfs_dirent *sd)
353 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
355 const unsigned char *name)
359 static inline struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
363 static inline void sysfs_put(struct sysfs_dirent *sd)
367 static inline int __must_check sysfs_init(void)
372 #endif /* CONFIG_SYSFS */
374 #endif /* _SYSFS_H_ */