2 * inode.c - basic inode and dentry operations.
4 * sysfs is Copyright (c) 2001-3 Patrick Mochel
6 * Please see Documentation/filesystems/sysfs.txt for more information.
11 #include <linux/pagemap.h>
12 #include <linux/namei.h>
13 #include <linux/backing-dev.h>
14 #include <linux/capability.h>
17 extern struct super_block
* sysfs_sb
;
19 static struct address_space_operations sysfs_aops
= {
20 .readpage
= simple_readpage
,
21 .prepare_write
= simple_prepare_write
,
22 .commit_write
= simple_commit_write
25 static struct backing_dev_info sysfs_backing_dev_info
= {
26 .ra_pages
= 0, /* No readahead */
27 .capabilities
= BDI_CAP_NO_ACCT_DIRTY
| BDI_CAP_NO_WRITEBACK
,
30 static struct inode_operations sysfs_inode_operations
={
31 .setattr
= sysfs_setattr
,
34 int sysfs_setattr(struct dentry
* dentry
, struct iattr
* iattr
)
36 struct inode
* inode
= dentry
->d_inode
;
37 struct sysfs_dirent
* sd
= dentry
->d_fsdata
;
38 struct iattr
* sd_iattr
;
39 unsigned int ia_valid
= iattr
->ia_valid
;
45 sd_iattr
= sd
->s_iattr
;
47 error
= inode_change_ok(inode
, iattr
);
51 error
= inode_setattr(inode
, iattr
);
56 /* setting attributes for the first time, allocate now */
57 sd_iattr
= kzalloc(sizeof(struct iattr
), GFP_KERNEL
);
60 /* assign default attributes */
61 sd_iattr
->ia_mode
= sd
->s_mode
;
64 sd_iattr
->ia_atime
= sd_iattr
->ia_mtime
= sd_iattr
->ia_ctime
= CURRENT_TIME
;
65 sd
->s_iattr
= sd_iattr
;
68 /* attributes were changed atleast once in past */
70 if (ia_valid
& ATTR_UID
)
71 sd_iattr
->ia_uid
= iattr
->ia_uid
;
72 if (ia_valid
& ATTR_GID
)
73 sd_iattr
->ia_gid
= iattr
->ia_gid
;
74 if (ia_valid
& ATTR_ATIME
)
75 sd_iattr
->ia_atime
= timespec_trunc(iattr
->ia_atime
,
76 inode
->i_sb
->s_time_gran
);
77 if (ia_valid
& ATTR_MTIME
)
78 sd_iattr
->ia_mtime
= timespec_trunc(iattr
->ia_mtime
,
79 inode
->i_sb
->s_time_gran
);
80 if (ia_valid
& ATTR_CTIME
)
81 sd_iattr
->ia_ctime
= timespec_trunc(iattr
->ia_ctime
,
82 inode
->i_sb
->s_time_gran
);
83 if (ia_valid
& ATTR_MODE
) {
84 umode_t mode
= iattr
->ia_mode
;
86 if (!in_group_p(inode
->i_gid
) && !capable(CAP_FSETID
))
88 sd_iattr
->ia_mode
= sd
->s_mode
= mode
;
94 static inline void set_default_inode_attr(struct inode
* inode
, mode_t mode
)
99 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= CURRENT_TIME
;
102 static inline void set_inode_attr(struct inode
* inode
, struct iattr
* iattr
)
104 inode
->i_mode
= iattr
->ia_mode
;
105 inode
->i_uid
= iattr
->ia_uid
;
106 inode
->i_gid
= iattr
->ia_gid
;
107 inode
->i_atime
= iattr
->ia_atime
;
108 inode
->i_mtime
= iattr
->ia_mtime
;
109 inode
->i_ctime
= iattr
->ia_ctime
;
112 struct inode
* sysfs_new_inode(mode_t mode
, struct sysfs_dirent
* sd
)
114 struct inode
* inode
= new_inode(sysfs_sb
);
116 inode
->i_blksize
= PAGE_CACHE_SIZE
;
118 inode
->i_mapping
->a_ops
= &sysfs_aops
;
119 inode
->i_mapping
->backing_dev_info
= &sysfs_backing_dev_info
;
120 inode
->i_op
= &sysfs_inode_operations
;
123 /* sysfs_dirent has non-default attributes
124 * get them for the new inode from persistent copy
127 set_inode_attr(inode
, sd
->s_iattr
);
129 set_default_inode_attr(inode
, mode
);
134 int sysfs_create(struct dentry
* dentry
, int mode
, int (*init
)(struct inode
*))
137 struct inode
* inode
= NULL
;
139 if (!dentry
->d_inode
) {
140 struct sysfs_dirent
* sd
= dentry
->d_fsdata
;
141 if ((inode
= sysfs_new_inode(mode
, sd
))) {
142 if (dentry
->d_parent
&& dentry
->d_parent
->d_inode
) {
143 struct inode
*p_inode
= dentry
->d_parent
->d_inode
;
144 p_inode
->i_mtime
= p_inode
->i_ctime
= CURRENT_TIME
;
160 d_instantiate(dentry
, inode
);
162 dget(dentry
); /* pin only directory dentry in core */
170 * Get the name for corresponding element represented by the given sysfs_dirent
172 const unsigned char * sysfs_get_name(struct sysfs_dirent
*sd
)
174 struct attribute
* attr
;
175 struct bin_attribute
* bin_attr
;
176 struct sysfs_symlink
* sl
;
178 BUG_ON(!sd
|| !sd
->s_element
);
180 switch (sd
->s_type
) {
182 /* Always have a dentry so use that */
183 return sd
->s_dentry
->d_name
.name
;
185 case SYSFS_KOBJ_ATTR
:
186 attr
= sd
->s_element
;
189 case SYSFS_KOBJ_BIN_ATTR
:
190 bin_attr
= sd
->s_element
;
191 return bin_attr
->attr
.name
;
193 case SYSFS_KOBJ_LINK
:
195 return sl
->link_name
;
202 * Unhashes the dentry corresponding to given sysfs_dirent
203 * Called with parent inode's i_mutex held.
205 void sysfs_drop_dentry(struct sysfs_dirent
* sd
, struct dentry
* parent
)
207 struct dentry
* dentry
= sd
->s_dentry
;
210 spin_lock(&dcache_lock
);
211 spin_lock(&dentry
->d_lock
);
212 if (!(d_unhashed(dentry
) && dentry
->d_inode
)) {
215 spin_unlock(&dentry
->d_lock
);
216 spin_unlock(&dcache_lock
);
217 simple_unlink(parent
->d_inode
, dentry
);
219 spin_unlock(&dentry
->d_lock
);
220 spin_unlock(&dcache_lock
);
225 void sysfs_hash_and_remove(struct dentry
* dir
, const char * name
)
227 struct sysfs_dirent
* sd
;
228 struct sysfs_dirent
* parent_sd
;
233 if (dir
->d_inode
== NULL
)
234 /* no inode means this hasn't been made visible yet */
237 parent_sd
= dir
->d_fsdata
;
238 mutex_lock(&dir
->d_inode
->i_mutex
);
239 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
242 if (!strcmp(sysfs_get_name(sd
), name
)) {
243 list_del_init(&sd
->s_sibling
);
244 sysfs_drop_dentry(sd
, dir
);
249 mutex_unlock(&dir
->d_inode
->i_mutex
);