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>
16 extern struct super_block
* sysfs_sb
;
18 static struct address_space_operations sysfs_aops
= {
19 .readpage
= simple_readpage
,
20 .prepare_write
= simple_prepare_write
,
21 .commit_write
= simple_commit_write
24 static struct backing_dev_info sysfs_backing_dev_info
= {
25 .ra_pages
= 0, /* No readahead */
26 .capabilities
= BDI_CAP_NO_ACCT_DIRTY
| BDI_CAP_NO_WRITEBACK
,
29 static struct inode_operations sysfs_inode_operations
={
30 .setattr
= sysfs_setattr
,
33 int sysfs_setattr(struct dentry
* dentry
, struct iattr
* iattr
)
35 struct inode
* inode
= dentry
->d_inode
;
36 struct sysfs_dirent
* sd
= dentry
->d_fsdata
;
37 struct iattr
* sd_iattr
;
38 unsigned int ia_valid
= iattr
->ia_valid
;
44 sd_iattr
= sd
->s_iattr
;
46 error
= inode_change_ok(inode
, iattr
);
50 error
= inode_setattr(inode
, iattr
);
55 /* setting attributes for the first time, allocate now */
56 sd_iattr
= kmalloc(sizeof(struct iattr
), GFP_KERNEL
);
59 /* assign default attributes */
60 memset(sd_iattr
, 0, sizeof(struct iattr
));
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
= 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 */
169 struct dentry
* sysfs_get_dentry(struct dentry
* parent
, const char * name
)
174 qstr
.len
= strlen(name
);
175 qstr
.hash
= full_name_hash(name
,qstr
.len
);
176 return lookup_hash(&qstr
,parent
);
180 * Get the name for corresponding element represented by the given sysfs_dirent
182 const unsigned char * sysfs_get_name(struct sysfs_dirent
*sd
)
184 struct attribute
* attr
;
185 struct bin_attribute
* bin_attr
;
186 struct sysfs_symlink
* sl
;
188 if (!sd
|| !sd
->s_element
)
191 switch (sd
->s_type
) {
193 /* Always have a dentry so use that */
194 return sd
->s_dentry
->d_name
.name
;
196 case SYSFS_KOBJ_ATTR
:
197 attr
= sd
->s_element
;
200 case SYSFS_KOBJ_BIN_ATTR
:
201 bin_attr
= sd
->s_element
;
202 return bin_attr
->attr
.name
;
204 case SYSFS_KOBJ_LINK
:
206 return sl
->link_name
;
213 * Unhashes the dentry corresponding to given sysfs_dirent
214 * Called with parent inode's i_sem held.
216 void sysfs_drop_dentry(struct sysfs_dirent
* sd
, struct dentry
* parent
)
218 struct dentry
* dentry
= sd
->s_dentry
;
221 spin_lock(&dcache_lock
);
222 spin_lock(&dentry
->d_lock
);
223 if (!(d_unhashed(dentry
) && dentry
->d_inode
)) {
226 spin_unlock(&dentry
->d_lock
);
227 spin_unlock(&dcache_lock
);
228 simple_unlink(parent
->d_inode
, dentry
);
230 spin_unlock(&dentry
->d_lock
);
231 spin_unlock(&dcache_lock
);
236 void sysfs_hash_and_remove(struct dentry
* dir
, const char * name
)
238 struct sysfs_dirent
* sd
;
239 struct sysfs_dirent
* parent_sd
= dir
->d_fsdata
;
241 down(&dir
->d_inode
->i_sem
);
242 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
245 if (!strcmp(sysfs_get_name(sd
), name
)) {
246 list_del_init(&sd
->s_sibling
);
247 sysfs_drop_dentry(sd
, dir
);
252 up(&dir
->d_inode
->i_sem
);