sysfs-namespaces: add a high-level Documentation file
[deliverable/linux.git] / include / linux / sysfs.h
CommitLineData
1da177e4
LT
1/*
2 * sysfs.h - definitions for the device driver filesystem
3 *
4 * Copyright (c) 2001,2002 Patrick Mochel
5 * Copyright (c) 2004 Silicon Graphics, Inc.
6d66f5cd
TH
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
1da177e4
LT
8 *
9 * Please see Documentation/filesystems/sysfs.txt for more information.
10 */
11
12#ifndef _SYSFS_H_
13#define _SYSFS_H_
14
4a7fb636 15#include <linux/compiler.h>
5851fadc 16#include <linux/errno.h>
bf0acc33 17#include <linux/list.h>
6992f533 18#include <linux/lockdep.h>
1da177e4
LT
19#include <asm/atomic.h>
20
21struct kobject;
22struct module;
3ff195b0 23enum kobj_ns_type;
1da177e4 24
7b595756 25/* FIXME
01e8ef11
PW
26 * The *owner field is no longer used.
27 * x86 tree has been cleaned up. The owner
28 * attribute is still left for other arches.
7b595756 29 */
1da177e4 30struct attribute {
59f69015
TH
31 const char *name;
32 struct module *owner;
1da177e4 33 mode_t mode;
6992f533
EB
34#ifdef CONFIG_DEBUG_LOCK_ALLOC
35 struct lock_class_key *key;
36 struct lock_class_key skey;
37#endif
1da177e4
LT
38};
39
35960258
EB
40/**
41 * sysfs_attr_init - initialize a dynamically allocated sysfs attribute
42 * @attr: struct attribute to initialize
43 *
44 * Initialize a dynamically allocated struct attribute so we can
45 * make lockdep happy. This is a new requirement for attributes
46 * and initially this is only needed when lockdep is enabled.
47 * Lockdep gives a nice error when your attribute is added to
48 * sysfs if you don't have this.
49 */
6992f533
EB
50#ifdef CONFIG_DEBUG_LOCK_ALLOC
51#define sysfs_attr_init(attr) \
52do { \
53 static struct lock_class_key __key; \
54 \
55 (attr)->key = &__key; \
56} while(0)
57#else
58#define sysfs_attr_init(attr) do {} while(0)
59#endif
60
1da177e4 61struct attribute_group {
59f69015 62 const char *name;
0f423895 63 mode_t (*is_visible)(struct kobject *,
d4acd722 64 struct attribute *, int);
59f69015 65 struct attribute **attrs;
1da177e4
LT
66};
67
68
69
70/**
71 * Use these macros to make defining attributes easier. See include/linux/device.h
72 * for examples..
73 */
74
75#define __ATTR(_name,_mode,_show,_store) { \
7b595756 76 .attr = {.name = __stringify(_name), .mode = _mode }, \
1da177e4
LT
77 .show = _show, \
78 .store = _store, \
79}
80
81#define __ATTR_RO(_name) { \
7b595756
TH
82 .attr = { .name = __stringify(_name), .mode = 0444 }, \
83 .show = _name##_show, \
1da177e4
LT
84}
85
86#define __ATTR_NULL { .attr = { .name = NULL } }
87
88#define attr_name(_attr) (_attr).attr.name
89
90struct vm_area_struct;
91
92struct bin_attribute {
93 struct attribute attr;
94 size_t size;
95 void *private;
91a69029
ZR
96 ssize_t (*read)(struct kobject *, struct bin_attribute *,
97 char *, loff_t, size_t);
98 ssize_t (*write)(struct kobject *, struct bin_attribute *,
99 char *, loff_t, size_t);
1da177e4
LT
100 int (*mmap)(struct kobject *, struct bin_attribute *attr,
101 struct vm_area_struct *vma);
102};
103
35960258
EB
104/**
105 * sysfs_bin_attr_init - initialize a dynamically allocated bin_attribute
106 * @attr: struct bin_attribute to initialize
107 *
108 * Initialize a dynamically allocated struct bin_attribute so we
109 * can make lockdep happy. This is a new requirement for
110 * attributes and initially this is only needed when lockdep is
111 * enabled. Lockdep gives a nice error when your attribute is
112 * added to sysfs if you don't have this.
113 */
62e877b8 114#define sysfs_bin_attr_init(bin_attr) sysfs_attr_init(&(bin_attr)->attr)
6992f533 115
1da177e4
LT
116struct sysfs_ops {
117 ssize_t (*show)(struct kobject *, struct attribute *,char *);
118 ssize_t (*store)(struct kobject *,struct attribute *,const char *, size_t);
119};
120
f1282c84
NB
121struct sysfs_dirent;
122
1da177e4
LT
123#ifdef CONFIG_SYSFS
124
59f69015
TH
125int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
126 void *data, struct module *owner);
1da177e4 127
59f69015
TH
128int __must_check sysfs_create_dir(struct kobject *kobj);
129void sysfs_remove_dir(struct kobject *kobj);
130int __must_check sysfs_rename_dir(struct kobject *kobj, const char *new_name);
131int __must_check sysfs_move_dir(struct kobject *kobj,
132 struct kobject *new_parent_kobj);
31e5abe9 133
59f69015
TH
134int __must_check sysfs_create_file(struct kobject *kobj,
135 const struct attribute *attr);
1c205ae1
AK
136int __must_check sysfs_create_files(struct kobject *kobj,
137 const struct attribute **attr);
59f69015
TH
138int __must_check sysfs_chmod_file(struct kobject *kobj, struct attribute *attr,
139 mode_t mode);
140void sysfs_remove_file(struct kobject *kobj, const struct attribute *attr);
1c205ae1 141void sysfs_remove_files(struct kobject *kobj, const struct attribute **attr);
1da177e4 142
4a7fb636 143int __must_check sysfs_create_bin_file(struct kobject *kobj,
66ecb92b
PC
144 const struct bin_attribute *attr);
145void sysfs_remove_bin_file(struct kobject *kobj,
146 const struct bin_attribute *attr);
1da177e4 147
59f69015
TH
148int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target,
149 const char *name);
36ce6dad
CH
150int __must_check sysfs_create_link_nowarn(struct kobject *kobj,
151 struct kobject *target,
152 const char *name);
59f69015
TH
153void sysfs_remove_link(struct kobject *kobj, const char *name);
154
7cb32942
EB
155int sysfs_rename_link(struct kobject *kobj, struct kobject *target,
156 const char *old_name, const char *new_name);
157
746edb7a
EB
158void sysfs_delete_link(struct kobject *dir, struct kobject *targ,
159 const char *name);
160
59f69015
TH
161int __must_check sysfs_create_group(struct kobject *kobj,
162 const struct attribute_group *grp);
0f423895
JB
163int sysfs_update_group(struct kobject *kobj,
164 const struct attribute_group *grp);
59f69015
TH
165void sysfs_remove_group(struct kobject *kobj,
166 const struct attribute_group *grp);
dfa87c82 167int sysfs_add_file_to_group(struct kobject *kobj,
59f69015 168 const struct attribute *attr, const char *group);
dfa87c82 169void sysfs_remove_file_from_group(struct kobject *kobj,
59f69015 170 const struct attribute *attr, const char *group);
dfa87c82 171
8c0e3998 172void sysfs_notify(struct kobject *kobj, const char *dir, const char *attr);
f1282c84
NB
173void sysfs_notify_dirent(struct sysfs_dirent *sd);
174struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
3ff195b0 175 const void *ns,
f1282c84
NB
176 const unsigned char *name);
177struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd);
178void sysfs_put(struct sysfs_dirent *sd);
ae87221d 179void sysfs_printk_last_file(void);
3ff195b0 180
be867b19 181/* Called to clear a ns tag when it is no longer valid */
3ff195b0
EB
182void sysfs_exit_ns(enum kobj_ns_type type, const void *tag);
183
f1282c84 184int __must_check sysfs_init(void);
f20a9ead 185
1da177e4
LT
186#else /* CONFIG_SYSFS */
187
d9a9cdfb 188static inline int sysfs_schedule_callback(struct kobject *kobj,
523ded71 189 void (*func)(void *), void *data, struct module *owner)
d9a9cdfb
AS
190{
191 return -ENOSYS;
192}
193
59f69015 194static inline int sysfs_create_dir(struct kobject *kobj)
1da177e4
LT
195{
196 return 0;
197}
198
59f69015 199static inline void sysfs_remove_dir(struct kobject *kobj)
1da177e4 200{
1da177e4
LT
201}
202
59f69015 203static inline int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
1da177e4 204{
0b4a4fea 205 return 0;
1da177e4
LT
206}
207
59f69015
TH
208static inline int sysfs_move_dir(struct kobject *kobj,
209 struct kobject *new_parent_kobj)
8a82472f
CH
210{
211 return 0;
212}
213
59f69015
TH
214static inline int sysfs_create_file(struct kobject *kobj,
215 const struct attribute *attr)
1da177e4
LT
216{
217 return 0;
218}
219
1c205ae1
AK
220static inline int sysfs_create_files(struct kobject *kobj,
221 const struct attribute **attr)
222{
223 return 0;
224}
225
59f69015
TH
226static inline int sysfs_chmod_file(struct kobject *kobj,
227 struct attribute *attr, mode_t mode)
31e5abe9
KS
228{
229 return 0;
230}
1da177e4 231
59f69015
TH
232static inline void sysfs_remove_file(struct kobject *kobj,
233 const struct attribute *attr)
1da177e4 234{
1da177e4
LT
235}
236
1c205ae1
AK
237static inline void sysfs_remove_files(struct kobject *kobj,
238 const struct attribute **attr)
239{
240}
241
59f69015 242static inline int sysfs_create_bin_file(struct kobject *kobj,
66ecb92b 243 const struct bin_attribute *attr)
1da177e4
LT
244{
245 return 0;
246}
247
3612e06b 248static inline void sysfs_remove_bin_file(struct kobject *kobj,
66ecb92b 249 const struct bin_attribute *attr)
1da177e4 250{
1da177e4
LT
251}
252
59f69015
TH
253static inline int sysfs_create_link(struct kobject *kobj,
254 struct kobject *target, const char *name)
1da177e4
LT
255{
256 return 0;
257}
258
36ce6dad
CH
259static inline int sysfs_create_link_nowarn(struct kobject *kobj,
260 struct kobject *target,
261 const char *name)
262{
263 return 0;
264}
265
59f69015 266static inline void sysfs_remove_link(struct kobject *kobj, const char *name)
1da177e4 267{
1da177e4
LT
268}
269
7cb32942
EB
270static inline int sysfs_rename_link(struct kobject *k, struct kobject *t,
271 const char *old_name, const char *new_name)
272{
273 return 0;
274}
275
746edb7a
EB
276static inline void sysfs_delete_link(struct kobject *k, struct kobject *t,
277 const char *name)
278{
279}
280
59f69015
TH
281static inline int sysfs_create_group(struct kobject *kobj,
282 const struct attribute_group *grp)
1da177e4
LT
283{
284 return 0;
285}
286
1cbfb7a5
RD
287static inline int sysfs_update_group(struct kobject *kobj,
288 const struct attribute_group *grp)
289{
290 return 0;
291}
292
59f69015
TH
293static inline void sysfs_remove_group(struct kobject *kobj,
294 const struct attribute_group *grp)
1da177e4 295{
1da177e4
LT
296}
297
dfa87c82
AS
298static inline int sysfs_add_file_to_group(struct kobject *kobj,
299 const struct attribute *attr, const char *group)
300{
301 return 0;
302}
303
304static inline void sysfs_remove_file_from_group(struct kobject *kobj,
d701d8a3 305 const struct attribute *attr, const char *group)
dfa87c82 306{
dfa87c82
AS
307}
308
8c0e3998
TP
309static inline void sysfs_notify(struct kobject *kobj, const char *dir,
310 const char *attr)
4508a7a7
N
311{
312}
f1282c84
NB
313static inline void sysfs_notify_dirent(struct sysfs_dirent *sd)
314{
315}
316static inline
317struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
3ff195b0 318 const void *ns,
f1282c84
NB
319 const unsigned char *name)
320{
321 return NULL;
322}
323static inline struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
324{
325 return NULL;
326}
327static inline void sysfs_put(struct sysfs_dirent *sd)
328{
329}
4508a7a7 330
3ff195b0
EB
331static inline void sysfs_exit_ns(enum kobj_ns_type type, const void *tag)
332{
333}
334
f20a9ead
AM
335static inline int __must_check sysfs_init(void)
336{
337 return 0;
338}
339
ae87221d
AM
340static inline void sysfs_printk_last_file(void)
341{
342}
343
1da177e4
LT
344#endif /* CONFIG_SYSFS */
345
346#endif /* _SYSFS_H_ */
This page took 0.852908 seconds and 5 git commands to generate.