Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * sysfs.h - definitions for the device driver filesystem
4 *
5 * Copyright (c) 2001,2002 Patrick Mochel
6 * Copyright (c) 2004 Silicon Graphics, Inc.
7 * Copyright (c) 2007 SUSE Linux Products GmbH
8 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
9 *
10 * Please see Documentation/filesystems/sysfs.txt for more information.
11 */
12
13#ifndef _SYSFS_H_
14#define _SYSFS_H_
15
16#include <linux/kernfs.h>
17#include <linux/compiler.h>
18#include <linux/errno.h>
19#include <linux/list.h>
20#include <linux/lockdep.h>
21#include <linux/kobject_ns.h>
22#include <linux/stat.h>
23#include <linux/atomic.h>
24
25struct kobject;
26struct module;
27struct bin_attribute;
28enum kobj_ns_type;
29
30struct attribute {
31 const char *name;
32 umode_t mode;
33#ifdef CONFIG_DEBUG_LOCK_ALLOC
34 bool ignore_lockdep:1;
35 struct lock_class_key *key;
36 struct lock_class_key skey;
37#endif
38};
39
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 */
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
61/**
62 * struct attribute_group - data structure used to declare an attribute group.
63 * @name: Optional: Attribute group name
64 * If specified, the attribute group will be created in
65 * a new subdirectory with this name.
66 * @is_visible: Optional: Function to return permissions associated with an
67 * attribute of the group. Will be called repeatedly for each
68 * non-binary attribute in the group. Only read/write
69 * permissions as well as SYSFS_PREALLOC are accepted. Must
70 * return 0 if an attribute is not visible. The returned value
71 * will replace static permissions defined in struct attribute.
72 * @is_bin_visible:
73 * Optional: Function to return permissions associated with a
74 * binary attribute of the group. Will be called repeatedly
75 * for each binary attribute in the group. Only read/write
76 * permissions as well as SYSFS_PREALLOC are accepted. Must
77 * return 0 if a binary attribute is not visible. The returned
78 * value will replace static permissions defined in
79 * struct bin_attribute.
80 * @attrs: Pointer to NULL terminated list of attributes.
81 * @bin_attrs: Pointer to NULL terminated list of binary attributes.
82 * Either attrs or bin_attrs or both must be provided.
83 */
84struct attribute_group {
85 const char *name;
86 umode_t (*is_visible)(struct kobject *,
87 struct attribute *, int);
88 umode_t (*is_bin_visible)(struct kobject *,
89 struct bin_attribute *, int);
90 struct attribute **attrs;
91 struct bin_attribute **bin_attrs;
92};
93
94/**
95 * Use these macros to make defining attributes easier. See include/linux/device.h
96 * for examples..
97 */
98
99#define SYSFS_PREALLOC 010000
100
101#define __ATTR(_name, _mode, _show, _store) { \
102 .attr = {.name = __stringify(_name), \
103 .mode = VERIFY_OCTAL_PERMISSIONS(_mode) }, \
104 .show = _show, \
105 .store = _store, \
106}
107
108#define __ATTR_PREALLOC(_name, _mode, _show, _store) { \
109 .attr = {.name = __stringify(_name), \
110 .mode = SYSFS_PREALLOC | VERIFY_OCTAL_PERMISSIONS(_mode) },\
111 .show = _show, \
112 .store = _store, \
113}
114
115#define __ATTR_RO(_name) { \
116 .attr = { .name = __stringify(_name), .mode = S_IRUGO }, \
117 .show = _name##_show, \
118}
119
120#define __ATTR_RO_MODE(_name, _mode) { \
121 .attr = { .name = __stringify(_name), \
122 .mode = VERIFY_OCTAL_PERMISSIONS(_mode) }, \
123 .show = _name##_show, \
124}
125
126#define __ATTR_WO(_name) { \
127 .attr = { .name = __stringify(_name), .mode = S_IWUSR }, \
128 .store = _name##_store, \
129}
130
131#define __ATTR_RW(_name) __ATTR(_name, (S_IWUSR | S_IRUGO), \
132 _name##_show, _name##_store)
133
134#define __ATTR_NULL { .attr = { .name = NULL } }
135
136#ifdef CONFIG_DEBUG_LOCK_ALLOC
137#define __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) { \
138 .attr = {.name = __stringify(_name), .mode = _mode, \
139 .ignore_lockdep = true }, \
140 .show = _show, \
141 .store = _store, \
142}
143#else
144#define __ATTR_IGNORE_LOCKDEP __ATTR
145#endif
146
147#define __ATTRIBUTE_GROUPS(_name) \
148static const struct attribute_group *_name##_groups[] = { \
149 &_name##_group, \
150 NULL, \
151}
152
153#define ATTRIBUTE_GROUPS(_name) \
154static const struct attribute_group _name##_group = { \
155 .attrs = _name##_attrs, \
156}; \
157__ATTRIBUTE_GROUPS(_name)
158
159struct file;
160struct vm_area_struct;
161
162struct bin_attribute {
163 struct attribute attr;
164 size_t size;
165 void *private;
166 ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *,
167 char *, loff_t, size_t);
168 ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *,
169 char *, loff_t, size_t);
170 int (*mmap)(struct file *, struct kobject *, struct bin_attribute *attr,
171 struct vm_area_struct *vma);
172};
173
174/**
175 * sysfs_bin_attr_init - initialize a dynamically allocated bin_attribute
176 * @attr: struct bin_attribute to initialize
177 *
178 * Initialize a dynamically allocated struct bin_attribute so we
179 * can make lockdep happy. This is a new requirement for
180 * attributes and initially this is only needed when lockdep is
181 * enabled. Lockdep gives a nice error when your attribute is
182 * added to sysfs if you don't have this.
183 */
184#define sysfs_bin_attr_init(bin_attr) sysfs_attr_init(&(bin_attr)->attr)
185
186/* macros to create static binary attributes easier */
187#define __BIN_ATTR(_name, _mode, _read, _write, _size) { \
188 .attr = { .name = __stringify(_name), .mode = _mode }, \
189 .read = _read, \
190 .write = _write, \
191 .size = _size, \
192}
193
194#define __BIN_ATTR_RO(_name, _size) { \
195 .attr = { .name = __stringify(_name), .mode = S_IRUGO }, \
196 .read = _name##_read, \
197 .size = _size, \
198}
199
200#define __BIN_ATTR_RW(_name, _size) __BIN_ATTR(_name, \
201 (S_IWUSR | S_IRUGO), _name##_read, \
202 _name##_write, _size)
203
204#define __BIN_ATTR_NULL __ATTR_NULL
205
206#define BIN_ATTR(_name, _mode, _read, _write, _size) \
207struct bin_attribute bin_attr_##_name = __BIN_ATTR(_name, _mode, _read, \
208 _write, _size)
209
210#define BIN_ATTR_RO(_name, _size) \
211struct bin_attribute bin_attr_##_name = __BIN_ATTR_RO(_name, _size)
212
213#define BIN_ATTR_RW(_name, _size) \
214struct bin_attribute bin_attr_##_name = __BIN_ATTR_RW(_name, _size)
215
216struct sysfs_ops {
217 ssize_t (*show)(struct kobject *, struct attribute *, char *);
218 ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t);
219};
220
221#ifdef CONFIG_SYSFS
222
223int __must_check sysfs_create_dir_ns(struct kobject *kobj, const void *ns);
224void sysfs_remove_dir(struct kobject *kobj);
225int __must_check sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
226 const void *new_ns);
227int __must_check sysfs_move_dir_ns(struct kobject *kobj,
228 struct kobject *new_parent_kobj,
229 const void *new_ns);
230int __must_check sysfs_create_mount_point(struct kobject *parent_kobj,
231 const char *name);
232void sysfs_remove_mount_point(struct kobject *parent_kobj,
233 const char *name);
234
235int __must_check sysfs_create_file_ns(struct kobject *kobj,
236 const struct attribute *attr,
237 const void *ns);
238int __must_check sysfs_create_files(struct kobject *kobj,
239 const struct attribute **attr);
240int __must_check sysfs_chmod_file(struct kobject *kobj,
241 const struct attribute *attr, umode_t mode);
242void sysfs_remove_file_ns(struct kobject *kobj, const struct attribute *attr,
243 const void *ns);
244bool sysfs_remove_file_self(struct kobject *kobj, const struct attribute *attr);
245void sysfs_remove_files(struct kobject *kobj, const struct attribute **attr);
246
247int __must_check sysfs_create_bin_file(struct kobject *kobj,
248 const struct bin_attribute *attr);
249void sysfs_remove_bin_file(struct kobject *kobj,
250 const struct bin_attribute *attr);
251
252int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target,
253 const char *name);
254int __must_check sysfs_create_link_nowarn(struct kobject *kobj,
255 struct kobject *target,
256 const char *name);
257void sysfs_remove_link(struct kobject *kobj, const char *name);
258
259int sysfs_rename_link_ns(struct kobject *kobj, struct kobject *target,
260 const char *old_name, const char *new_name,
261 const void *new_ns);
262
263void sysfs_delete_link(struct kobject *dir, struct kobject *targ,
264 const char *name);
265
266int __must_check sysfs_create_group(struct kobject *kobj,
267 const struct attribute_group *grp);
268int __must_check sysfs_create_groups(struct kobject *kobj,
269 const struct attribute_group **groups);
270int sysfs_update_group(struct kobject *kobj,
271 const struct attribute_group *grp);
272void sysfs_remove_group(struct kobject *kobj,
273 const struct attribute_group *grp);
274void sysfs_remove_groups(struct kobject *kobj,
275 const struct attribute_group **groups);
276int sysfs_add_file_to_group(struct kobject *kobj,
277 const struct attribute *attr, const char *group);
278void sysfs_remove_file_from_group(struct kobject *kobj,
279 const struct attribute *attr, const char *group);
280int sysfs_merge_group(struct kobject *kobj,
281 const struct attribute_group *grp);
282void sysfs_unmerge_group(struct kobject *kobj,
283 const struct attribute_group *grp);
284int sysfs_add_link_to_group(struct kobject *kobj, const char *group_name,
285 struct kobject *target, const char *link_name);
286void sysfs_remove_link_from_group(struct kobject *kobj, const char *group_name,
287 const char *link_name);
288int __compat_only_sysfs_link_entry_to_kobj(struct kobject *kobj,
289 struct kobject *target_kobj,
290 const char *target_name);
291
292void sysfs_notify(struct kobject *kobj, const char *dir, const char *attr);
293
294int __must_check sysfs_init(void);
295
296static inline void sysfs_enable_ns(struct kernfs_node *kn)
297{
298 return kernfs_enable_ns(kn);
299}
300
301#else /* CONFIG_SYSFS */
302
303static inline int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
304{
305 return 0;
306}
307
308static inline void sysfs_remove_dir(struct kobject *kobj)
309{
310}
311
312static inline int sysfs_rename_dir_ns(struct kobject *kobj,
313 const char *new_name, const void *new_ns)
314{
315 return 0;
316}
317
318static inline int sysfs_move_dir_ns(struct kobject *kobj,
319 struct kobject *new_parent_kobj,
320 const void *new_ns)
321{
322 return 0;
323}
324
325static inline int sysfs_create_mount_point(struct kobject *parent_kobj,
326 const char *name)
327{
328 return 0;
329}
330
331static inline void sysfs_remove_mount_point(struct kobject *parent_kobj,
332 const char *name)
333{
334}
335
336static inline int sysfs_create_file_ns(struct kobject *kobj,
337 const struct attribute *attr,
338 const void *ns)
339{
340 return 0;
341}
342
343static inline int sysfs_create_files(struct kobject *kobj,
344 const struct attribute **attr)
345{
346 return 0;
347}
348
349static inline int sysfs_chmod_file(struct kobject *kobj,
350 const struct attribute *attr, umode_t mode)
351{
352 return 0;
353}
354
355static inline void sysfs_remove_file_ns(struct kobject *kobj,
356 const struct attribute *attr,
357 const void *ns)
358{
359}
360
361static inline bool sysfs_remove_file_self(struct kobject *kobj,
362 const struct attribute *attr)
363{
364 return false;
365}
366
367static inline void sysfs_remove_files(struct kobject *kobj,
368 const struct attribute **attr)
369{
370}
371
372static inline int sysfs_create_bin_file(struct kobject *kobj,
373 const struct bin_attribute *attr)
374{
375 return 0;
376}
377
378static inline void sysfs_remove_bin_file(struct kobject *kobj,
379 const struct bin_attribute *attr)
380{
381}
382
383static inline int sysfs_create_link(struct kobject *kobj,
384 struct kobject *target, const char *name)
385{
386 return 0;
387}
388
389static inline int sysfs_create_link_nowarn(struct kobject *kobj,
390 struct kobject *target,
391 const char *name)
392{
393 return 0;
394}
395
396static inline void sysfs_remove_link(struct kobject *kobj, const char *name)
397{
398}
399
400static inline int sysfs_rename_link_ns(struct kobject *k, struct kobject *t,
401 const char *old_name,
402 const char *new_name, const void *ns)
403{
404 return 0;
405}
406
407static inline void sysfs_delete_link(struct kobject *k, struct kobject *t,
408 const char *name)
409{
410}
411
412static inline int sysfs_create_group(struct kobject *kobj,
413 const struct attribute_group *grp)
414{
415 return 0;
416}
417
418static inline int sysfs_create_groups(struct kobject *kobj,
419 const struct attribute_group **groups)
420{
421 return 0;
422}
423
424static inline int sysfs_update_group(struct kobject *kobj,
425 const struct attribute_group *grp)
426{
427 return 0;
428}
429
430static inline void sysfs_remove_group(struct kobject *kobj,
431 const struct attribute_group *grp)
432{
433}
434
435static inline void sysfs_remove_groups(struct kobject *kobj,
436 const struct attribute_group **groups)
437{
438}
439
440static inline int sysfs_add_file_to_group(struct kobject *kobj,
441 const struct attribute *attr, const char *group)
442{
443 return 0;
444}
445
446static inline void sysfs_remove_file_from_group(struct kobject *kobj,
447 const struct attribute *attr, const char *group)
448{
449}
450
451static inline int sysfs_merge_group(struct kobject *kobj,
452 const struct attribute_group *grp)
453{
454 return 0;
455}
456
457static inline void sysfs_unmerge_group(struct kobject *kobj,
458 const struct attribute_group *grp)
459{
460}
461
462static inline int sysfs_add_link_to_group(struct kobject *kobj,
463 const char *group_name, struct kobject *target,
464 const char *link_name)
465{
466 return 0;
467}
468
469static inline void sysfs_remove_link_from_group(struct kobject *kobj,
470 const char *group_name, const char *link_name)
471{
472}
473
474static inline int __compat_only_sysfs_link_entry_to_kobj(
475 struct kobject *kobj,
476 struct kobject *target_kobj,
477 const char *target_name)
478{
479 return 0;
480}
481
482static inline void sysfs_notify(struct kobject *kobj, const char *dir,
483 const char *attr)
484{
485}
486
487static inline int __must_check sysfs_init(void)
488{
489 return 0;
490}
491
492static inline void sysfs_enable_ns(struct kernfs_node *kn)
493{
494}
495
496#endif /* CONFIG_SYSFS */
497
498static inline int __must_check sysfs_create_file(struct kobject *kobj,
499 const struct attribute *attr)
500{
501 return sysfs_create_file_ns(kobj, attr, NULL);
502}
503
504static inline void sysfs_remove_file(struct kobject *kobj,
505 const struct attribute *attr)
506{
507 sysfs_remove_file_ns(kobj, attr, NULL);
508}
509
510static inline int sysfs_rename_link(struct kobject *kobj, struct kobject *target,
511 const char *old_name, const char *new_name)
512{
513 return sysfs_rename_link_ns(kobj, target, old_name, new_name, NULL);
514}
515
516static inline void sysfs_notify_dirent(struct kernfs_node *kn)
517{
518 kernfs_notify(kn);
519}
520
521static inline struct kernfs_node *sysfs_get_dirent(struct kernfs_node *parent,
522 const char *name)
523{
524 return kernfs_find_and_get(parent, name);
525}
526
527static inline struct kernfs_node *sysfs_get(struct kernfs_node *kn)
528{
529 kernfs_get(kn);
530 return kn;
531}
532
533static inline void sysfs_put(struct kernfs_node *kn)
534{
535 kernfs_put(kn);
536}
537
538#endif /* _SYSFS_H_ */