blob: caf2e56bdf21bb60ecd5d1d0872232e28fd9cbfd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sysfs.h - definitions for the device driver filesystem
3 *
4 * Copyright (c) 2001,2002 Patrick Mochel
5 * Copyright (c) 2004 Silicon Graphics, Inc.
Tejun Heo6d66f5c2007-09-20 17:31:38 +09006 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Please see Documentation/filesystems/sysfs.txt for more information.
10 */
11
12#ifndef _SYSFS_H_
13#define _SYSFS_H_
14
Andrew Morton4a7fb632006-08-14 22:43:17 -070015#include <linux/compiler.h>
Ralf Baechle5851fad2007-03-18 12:58:08 +000016#include <linux/errno.h>
Frank Haverkampbf0acc32007-01-17 17:51:18 +010017#include <linux/list.h>
Eric W. Biederman6992f532010-02-11 15:21:53 -080018#include <linux/lockdep.h>
David Howells8488a382010-08-11 15:01:02 +010019#include <linux/kobject_ns.h>
Arun Sharma60063492011-07-26 16:09:06 -070020#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22struct kobject;
23struct module;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070024enum kobj_ns_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26struct attribute {
Tejun Heo59f69012007-09-20 16:05:10 +090027 const char *name;
Al Viro9104e422011-07-23 23:10:46 -040028 umode_t mode;
Eric W. Biederman6992f532010-02-11 15:21:53 -080029#ifdef CONFIG_DEBUG_LOCK_ALLOC
30 struct lock_class_key *key;
31 struct lock_class_key skey;
32#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Eric W. Biederman35960252010-02-12 04:35:32 -080035/**
36 * sysfs_attr_init - initialize a dynamically allocated sysfs attribute
37 * @attr: struct attribute to initialize
38 *
39 * Initialize a dynamically allocated struct attribute so we can
40 * make lockdep happy. This is a new requirement for attributes
41 * and initially this is only needed when lockdep is enabled.
42 * Lockdep gives a nice error when your attribute is added to
43 * sysfs if you don't have this.
44 */
Eric W. Biederman6992f532010-02-11 15:21:53 -080045#ifdef CONFIG_DEBUG_LOCK_ALLOC
46#define sysfs_attr_init(attr) \
47do { \
48 static struct lock_class_key __key; \
49 \
50 (attr)->key = &__key; \
51} while(0)
52#else
53#define sysfs_attr_init(attr) do {} while(0)
54#endif
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056struct attribute_group {
Tejun Heo59f69012007-09-20 16:05:10 +090057 const char *name;
Al Viro587a1f12011-07-23 23:11:19 -040058 umode_t (*is_visible)(struct kobject *,
James Bottomleyd4acd722007-10-31 09:38:04 -050059 struct attribute *, int);
Tejun Heo59f69012007-09-20 16:05:10 +090060 struct attribute **attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63
64
65/**
66 * Use these macros to make defining attributes easier. See include/linux/device.h
67 * for examples..
68 */
69
70#define __ATTR(_name,_mode,_show,_store) { \
Tejun Heo7b595752007-06-14 03:45:17 +090071 .attr = {.name = __stringify(_name), .mode = _mode }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .show = _show, \
73 .store = _store, \
74}
75
76#define __ATTR_RO(_name) { \
Tejun Heo7b595752007-06-14 03:45:17 +090077 .attr = { .name = __stringify(_name), .mode = 0444 }, \
78 .show = _name##_show, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81#define __ATTR_NULL { .attr = { .name = NULL } }
82
Greg Kroah-Hartman3d44f1b2013-07-14 16:05:52 -070083#define ATTRIBUTE_GROUPS(name) \
84static const struct attribute_group name##_group = { \
85 .attrs = name##_attrs, \
86}; \
87static const struct attribute_group *name##_groups[] = { \
88 &name##_group, \
89 NULL, \
90}
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#define attr_name(_attr) (_attr).attr.name
93
Chris Wright2c3c8be2010-05-12 18:28:57 -070094struct file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095struct vm_area_struct;
96
97struct bin_attribute {
98 struct attribute attr;
99 size_t size;
100 void *private;
Chris Wright2c3c8be2010-05-12 18:28:57 -0700101 ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *,
Zhang Rui91a69022007-06-09 13:57:22 +0800102 char *, loff_t, size_t);
Chris Wright2c3c8be2010-05-12 18:28:57 -0700103 ssize_t (*write)(struct file *,struct kobject *, struct bin_attribute *,
Zhang Rui91a69022007-06-09 13:57:22 +0800104 char *, loff_t, size_t);
Chris Wright2c3c8be2010-05-12 18:28:57 -0700105 int (*mmap)(struct file *, struct kobject *, struct bin_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 struct vm_area_struct *vma);
107};
108
Eric W. Biederman35960252010-02-12 04:35:32 -0800109/**
110 * sysfs_bin_attr_init - initialize a dynamically allocated bin_attribute
111 * @attr: struct bin_attribute to initialize
112 *
113 * Initialize a dynamically allocated struct bin_attribute so we
114 * can make lockdep happy. This is a new requirement for
115 * attributes and initially this is only needed when lockdep is
116 * enabled. Lockdep gives a nice error when your attribute is
117 * added to sysfs if you don't have this.
118 */
Stephen Rothwell62e877b2010-03-01 20:38:36 +1100119#define sysfs_bin_attr_init(bin_attr) sysfs_attr_init(&(bin_attr)->attr)
Eric W. Biederman6992f532010-02-11 15:21:53 -0800120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121struct sysfs_ops {
122 ssize_t (*show)(struct kobject *, struct attribute *,char *);
123 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
Eric W. Biederman487505c2011-10-12 21:53:38 +0000124 const void *(*namespace)(struct kobject *, const struct attribute *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Neil Brownf1282c82008-07-16 08:58:04 +1000127struct sysfs_dirent;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#ifdef CONFIG_SYSFS
130
Tejun Heo59f69012007-09-20 16:05:10 +0900131int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
132 void *data, struct module *owner);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400133
Tejun Heo59f69012007-09-20 16:05:10 +0900134int __must_check sysfs_create_dir(struct kobject *kobj);
135void sysfs_remove_dir(struct kobject *kobj);
136int __must_check sysfs_rename_dir(struct kobject *kobj, const char *new_name);
137int __must_check sysfs_move_dir(struct kobject *kobj,
138 struct kobject *new_parent_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Tejun Heo59f69012007-09-20 16:05:10 +0900140int __must_check sysfs_create_file(struct kobject *kobj,
141 const struct attribute *attr);
Andi Kleen1c205ae2010-01-05 12:48:01 +0100142int __must_check sysfs_create_files(struct kobject *kobj,
143 const struct attribute **attr);
Jean Delvare49c19402010-07-02 16:54:05 +0200144int __must_check sysfs_chmod_file(struct kobject *kobj,
Al Viro48176a92011-07-24 03:40:40 -0400145 const struct attribute *attr, umode_t mode);
Tejun Heo59f69012007-09-20 16:05:10 +0900146void sysfs_remove_file(struct kobject *kobj, const struct attribute *attr);
Andi Kleen1c205ae2010-01-05 12:48:01 +0100147void sysfs_remove_files(struct kobject *kobj, const struct attribute **attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Andrew Morton4a7fb632006-08-14 22:43:17 -0700149int __must_check sysfs_create_bin_file(struct kobject *kobj,
Phil Carmody66ecb922009-12-18 15:34:20 +0200150 const struct bin_attribute *attr);
151void sysfs_remove_bin_file(struct kobject *kobj,
152 const struct bin_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Tejun Heo59f69012007-09-20 16:05:10 +0900154int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target,
155 const char *name);
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200156int __must_check sysfs_create_link_nowarn(struct kobject *kobj,
157 struct kobject *target,
158 const char *name);
Tejun Heo59f69012007-09-20 16:05:10 +0900159void sysfs_remove_link(struct kobject *kobj, const char *name);
Alan Sterndfa87c82007-02-20 15:02:44 -0500160
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800161int sysfs_rename_link(struct kobject *kobj, struct kobject *target,
162 const char *old_name, const char *new_name);
163
Eric W. Biederman746edb72010-03-30 11:31:28 -0700164void sysfs_delete_link(struct kobject *dir, struct kobject *targ,
165 const char *name);
166
Tejun Heo59f69012007-09-20 16:05:10 +0900167int __must_check sysfs_create_group(struct kobject *kobj,
168 const struct attribute_group *grp);
James Bottomley0f423892008-03-20 20:47:52 -0500169int sysfs_update_group(struct kobject *kobj,
170 const struct attribute_group *grp);
Tejun Heo59f69012007-09-20 16:05:10 +0900171void sysfs_remove_group(struct kobject *kobj,
172 const struct attribute_group *grp);
173int sysfs_add_file_to_group(struct kobject *kobj,
174 const struct attribute *attr, const char *group);
175void sysfs_remove_file_from_group(struct kobject *kobj,
176 const struct attribute *attr, const char *group);
Alan Stern69d44ff2010-09-25 23:34:22 +0200177int sysfs_merge_group(struct kobject *kobj,
178 const struct attribute_group *grp);
179void sysfs_unmerge_group(struct kobject *kobj,
180 const struct attribute_group *grp);
Tejun Heo59f69012007-09-20 16:05:10 +0900181
Trent Piepho8c0e3992008-09-25 16:45:13 -0700182void sysfs_notify(struct kobject *kobj, const char *dir, const char *attr);
Neil Brownf1282c82008-07-16 08:58:04 +1000183void sysfs_notify_dirent(struct sysfs_dirent *sd);
184struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700185 const void *ns,
Neil Brownf1282c82008-07-16 08:58:04 +1000186 const unsigned char *name);
187struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd);
188void sysfs_put(struct sysfs_dirent *sd);
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700189
Neil Brownf1282c82008-07-16 08:58:04 +1000190int __must_check sysfs_init(void);
Andrew Mortonf20a9ea2006-08-14 22:43:23 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#else /* CONFIG_SYSFS */
193
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400194static inline int sysfs_schedule_callback(struct kobject *kobj,
Alan Stern523ded72007-04-26 00:12:04 -0700195 void (*func)(void *), void *data, struct module *owner)
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400196{
197 return -ENOSYS;
198}
199
Tejun Heo59f69012007-09-20 16:05:10 +0900200static inline int sysfs_create_dir(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 return 0;
203}
204
Tejun Heo59f69012007-09-20 16:05:10 +0900205static inline void sysfs_remove_dir(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Tejun Heo59f69012007-09-20 16:05:10 +0900209static inline int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Tejun Heo59f69012007-09-20 16:05:10 +0900214static inline int sysfs_move_dir(struct kobject *kobj,
215 struct kobject *new_parent_kobj)
Cornelia Huck8a824722006-11-20 17:07:51 +0100216{
217 return 0;
218}
219
Tejun Heo59f69012007-09-20 16:05:10 +0900220static inline int sysfs_create_file(struct kobject *kobj,
221 const struct attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 return 0;
224}
225
Andi Kleen1c205ae2010-01-05 12:48:01 +0100226static inline int sysfs_create_files(struct kobject *kobj,
227 const struct attribute **attr)
228{
229 return 0;
230}
231
Tejun Heo59f69012007-09-20 16:05:10 +0900232static inline int sysfs_chmod_file(struct kobject *kobj,
Al Viro48176a92011-07-24 03:40:40 -0400233 const struct attribute *attr, umode_t mode)
Kay Sievers31e5abe2005-04-18 21:57:32 -0700234{
235 return 0;
236}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Tejun Heo59f69012007-09-20 16:05:10 +0900238static inline void sysfs_remove_file(struct kobject *kobj,
239 const struct attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Andi Kleen1c205ae2010-01-05 12:48:01 +0100243static inline void sysfs_remove_files(struct kobject *kobj,
244 const struct attribute **attr)
245{
246}
247
Tejun Heo59f69012007-09-20 16:05:10 +0900248static inline int sysfs_create_bin_file(struct kobject *kobj,
Phil Carmody66ecb922009-12-18 15:34:20 +0200249 const struct bin_attribute *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 return 0;
252}
253
David Rientjes3612e062008-02-19 17:39:02 -0800254static inline void sysfs_remove_bin_file(struct kobject *kobj,
Phil Carmody66ecb922009-12-18 15:34:20 +0200255 const struct bin_attribute *attr)
Tejun Heo59f69012007-09-20 16:05:10 +0900256{
Tejun Heo59f69012007-09-20 16:05:10 +0900257}
258
259static inline int sysfs_create_link(struct kobject *kobj,
260 struct kobject *target, const char *name)
261{
262 return 0;
263}
264
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200265static inline int sysfs_create_link_nowarn(struct kobject *kobj,
266 struct kobject *target,
267 const char *name)
268{
269 return 0;
270}
271
Tejun Heo59f69012007-09-20 16:05:10 +0900272static inline void sysfs_remove_link(struct kobject *kobj, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800276static inline int sysfs_rename_link(struct kobject *k, struct kobject *t,
277 const char *old_name, const char *new_name)
278{
279 return 0;
280}
281
Eric W. Biederman746edb72010-03-30 11:31:28 -0700282static inline void sysfs_delete_link(struct kobject *k, struct kobject *t,
283 const char *name)
284{
285}
286
Tejun Heo59f69012007-09-20 16:05:10 +0900287static inline int sysfs_create_group(struct kobject *kobj,
288 const struct attribute_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 return 0;
291}
292
Randy Dunlap1cbfb7a2008-04-30 09:01:17 -0700293static inline int sysfs_update_group(struct kobject *kobj,
294 const struct attribute_group *grp)
295{
296 return 0;
297}
298
Tejun Heo59f69012007-09-20 16:05:10 +0900299static inline void sysfs_remove_group(struct kobject *kobj,
300 const struct attribute_group *grp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Alan Sterndfa87c82007-02-20 15:02:44 -0500304static inline int sysfs_add_file_to_group(struct kobject *kobj,
305 const struct attribute *attr, const char *group)
306{
307 return 0;
308}
309
310static inline void sysfs_remove_file_from_group(struct kobject *kobj,
Ralf Baechled701d8a2007-03-01 12:40:21 +0000311 const struct attribute *attr, const char *group)
Alan Sterndfa87c82007-02-20 15:02:44 -0500312{
Alan Sterndfa87c82007-02-20 15:02:44 -0500313}
314
Alan Stern69d44ff2010-09-25 23:34:22 +0200315static inline int sysfs_merge_group(struct kobject *kobj,
316 const struct attribute_group *grp)
317{
318 return 0;
319}
320
321static inline void sysfs_unmerge_group(struct kobject *kobj,
322 const struct attribute_group *grp)
323{
324}
325
Trent Piepho8c0e3992008-09-25 16:45:13 -0700326static inline void sysfs_notify(struct kobject *kobj, const char *dir,
327 const char *attr)
NeilBrown4508a7a2006-03-20 17:53:53 +1100328{
329}
Neil Brownf1282c82008-07-16 08:58:04 +1000330static inline void sysfs_notify_dirent(struct sysfs_dirent *sd)
331{
332}
333static inline
334struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700335 const void *ns,
Neil Brownf1282c82008-07-16 08:58:04 +1000336 const unsigned char *name)
337{
338 return NULL;
339}
340static inline struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
341{
342 return NULL;
343}
344static inline void sysfs_put(struct sysfs_dirent *sd)
345{
346}
NeilBrown4508a7a2006-03-20 17:53:53 +1100347
Andrew Mortonf20a9ea2006-08-14 22:43:23 -0700348static inline int __must_check sysfs_init(void)
349{
350 return 0;
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#endif /* CONFIG_SYSFS */
354
355#endif /* _SYSFS_H_ */