]> Pileus Git - ~andy/linux/blob - fs/kernfs/kernfs-internal.h
sysfs, kernfs: make sysfs_dirent definition public
[~andy/linux] / fs / kernfs / kernfs-internal.h
1 /*
2  * fs/kernfs/kernfs-internal.h - kernfs internal header file
3  *
4  * Copyright (c) 2001-3 Patrick Mochel
5  * Copyright (c) 2007 SUSE Linux Products GmbH
6  * Copyright (c) 2007, 2013 Tejun Heo <teheo@suse.de>
7  *
8  * This file is released under the GPLv2.
9  */
10
11 #ifndef __KERNFS_INTERNAL_H
12 #define __KERNFS_INTERNAL_H
13
14 #include <linux/lockdep.h>
15 #include <linux/fs.h>
16 #include <linux/mutex.h>
17
18 #include <linux/kernfs.h>
19
20 struct sysfs_inode_attrs {
21         struct iattr    ia_iattr;
22         void            *ia_secdata;
23         u32             ia_secdata_len;
24 };
25
26 #define SD_DEACTIVATED_BIAS             INT_MIN
27
28 /* SYSFS_TYPE_MASK and types are defined in include/linux/kernfs.h */
29
30 /**
31  * kernfs_root - find out the kernfs_root a sysfs_dirent belongs to
32  * @sd: sysfs_dirent of interest
33  *
34  * Return the kernfs_root @sd belongs to.
35  */
36 static inline struct kernfs_root *kernfs_root(struct sysfs_dirent *sd)
37 {
38         /* if parent exists, it's always a dir; otherwise, @sd is a dir */
39         if (sd->s_parent)
40                 sd = sd->s_parent;
41         return sd->s_dir.root;
42 }
43
44 /*
45  * Context structure to be used while adding/removing nodes.
46  */
47 struct sysfs_addrm_cxt {
48         struct sysfs_dirent     *removed;
49 };
50
51 #include "../sysfs/sysfs.h"
52
53 /*
54  * mount.c
55  */
56 struct sysfs_super_info {
57         /*
58          * The root associated with this super_block.  Each super_block is
59          * identified by the root and ns it's associated with.
60          */
61         struct kernfs_root      *root;
62
63         /*
64          * Each sb is associated with one namespace tag, currently the network
65          * namespace of the task which mounted this sysfs instance.  If multiple
66          * tags become necessary, make the following an array and compare
67          * sysfs_dirent tag against every entry.
68          */
69         const void              *ns;
70 };
71 #define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info))
72
73 extern struct kmem_cache *sysfs_dir_cachep;
74
75 /*
76  * inode.c
77  */
78 struct inode *sysfs_get_inode(struct super_block *sb, struct sysfs_dirent *sd);
79 void sysfs_evict_inode(struct inode *inode);
80 int sysfs_permission(struct inode *inode, int mask);
81 int sysfs_setattr(struct dentry *dentry, struct iattr *iattr);
82 int sysfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
83                   struct kstat *stat);
84 int sysfs_setxattr(struct dentry *dentry, const char *name, const void *value,
85                    size_t size, int flags);
86 void sysfs_inode_init(void);
87
88 /*
89  * dir.c
90  */
91 extern struct mutex sysfs_mutex;
92 extern const struct dentry_operations sysfs_dentry_ops;
93 extern const struct file_operations sysfs_dir_operations;
94 extern const struct inode_operations sysfs_dir_inode_operations;
95
96 struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd);
97 void sysfs_put_active(struct sysfs_dirent *sd);
98 void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt);
99 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd,
100                   struct sysfs_dirent *parent_sd);
101 void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt);
102 struct sysfs_dirent *sysfs_new_dirent(struct kernfs_root *root,
103                                       const char *name, umode_t mode, int type);
104
105 /*
106  * file.c
107  */
108 extern const struct file_operations kernfs_file_operations;
109
110 void sysfs_unmap_bin_file(struct sysfs_dirent *sd);
111
112 /*
113  * symlink.c
114  */
115 extern const struct inode_operations sysfs_symlink_inode_operations;
116
117 #endif  /* __KERNFS_INTERNAL_H */