2 * Copyright (C) 2005, 2006
3 * Avishay Traeger (avishay@gmail.com)
4 * Copyright (C) 2008, 2009
5 * Boaz Harrosh <bharrosh@panasas.com>
7 * Copyrights for code taken from ext2:
8 * Copyright (C) 1992, 1993, 1994, 1995
9 * Remy Card (card@masi.ibp.fr)
10 * Laboratoire MASI - Institut Blaise Pascal
11 * Universite Pierre et Marie Curie (Paris VI)
13 * linux/fs/minix/inode.c
14 * Copyright (C) 1991, 1992 Linus Torvalds
16 * This file is part of exofs.
18 * exofs is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation. Since it is based on ext2, and the only
21 * valid version of GPL for the Linux kernel is version 2, the only valid
22 * version of GPL for exofs is version 2.
24 * exofs is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
29 * You should have received a copy of the GNU General Public License
30 * along with exofs; if not, write to the Free Software
31 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
36 static inline int exofs_add_nondir(struct dentry
*dentry
, struct inode
*inode
)
38 int err
= exofs_add_link(dentry
, inode
);
40 d_instantiate(dentry
, inode
);
43 inode_dec_link_count(inode
);
48 static struct dentry
*exofs_lookup(struct inode
*dir
, struct dentry
*dentry
,
54 if (dentry
->d_name
.len
> EXOFS_NAME_LEN
)
55 return ERR_PTR(-ENAMETOOLONG
);
57 ino
= exofs_inode_by_name(dir
, dentry
);
58 inode
= ino
? exofs_iget(dir
->i_sb
, ino
) : NULL
;
59 return d_splice_alias(inode
, dentry
);
62 static int exofs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
65 struct inode
*inode
= exofs_new_inode(dir
, mode
);
66 int err
= PTR_ERR(inode
);
68 inode
->i_op
= &exofs_file_inode_operations
;
69 inode
->i_fop
= &exofs_file_operations
;
70 inode
->i_mapping
->a_ops
= &exofs_aops
;
71 mark_inode_dirty(inode
);
72 err
= exofs_add_nondir(dentry
, inode
);
77 static int exofs_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
83 if (!new_valid_dev(rdev
))
86 inode
= exofs_new_inode(dir
, mode
);
89 init_special_inode(inode
, inode
->i_mode
, rdev
);
90 mark_inode_dirty(inode
);
91 err
= exofs_add_nondir(dentry
, inode
);
96 static int exofs_symlink(struct inode
*dir
, struct dentry
*dentry
,
99 struct super_block
*sb
= dir
->i_sb
;
100 int err
= -ENAMETOOLONG
;
101 unsigned l
= strlen(symname
)+1;
103 struct exofs_i_info
*oi
;
105 if (l
> sb
->s_blocksize
)
108 inode
= exofs_new_inode(dir
, S_IFLNK
| S_IRWXUGO
);
109 err
= PTR_ERR(inode
);
114 if (l
> sizeof(oi
->i_data
)) {
116 inode
->i_op
= &exofs_symlink_inode_operations
;
117 inode
->i_mapping
->a_ops
= &exofs_aops
;
118 memset(oi
->i_data
, 0, sizeof(oi
->i_data
));
120 err
= page_symlink(inode
, symname
, l
);
125 inode
->i_op
= &exofs_fast_symlink_inode_operations
;
126 memcpy(oi
->i_data
, symname
, l
);
129 mark_inode_dirty(inode
);
131 err
= exofs_add_nondir(dentry
, inode
);
136 inode_dec_link_count(inode
);
141 static int exofs_link(struct dentry
*old_dentry
, struct inode
*dir
,
142 struct dentry
*dentry
)
144 struct inode
*inode
= old_dentry
->d_inode
;
146 inode
->i_ctime
= CURRENT_TIME
;
147 inode_inc_link_count(inode
);
150 return exofs_add_nondir(dentry
, inode
);
153 static int exofs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
158 inode_inc_link_count(dir
);
160 inode
= exofs_new_inode(dir
, S_IFDIR
| mode
);
161 err
= PTR_ERR(inode
);
165 inode
->i_op
= &exofs_dir_inode_operations
;
166 inode
->i_fop
= &exofs_dir_operations
;
167 inode
->i_mapping
->a_ops
= &exofs_aops
;
169 inode_inc_link_count(inode
);
171 err
= exofs_make_empty(inode
, dir
);
175 err
= exofs_add_link(dentry
, inode
);
179 d_instantiate(dentry
, inode
);
184 inode_dec_link_count(inode
);
185 inode_dec_link_count(inode
);
188 inode_dec_link_count(dir
);
192 static int exofs_unlink(struct inode
*dir
, struct dentry
*dentry
)
194 struct inode
*inode
= dentry
->d_inode
;
195 struct exofs_dir_entry
*de
;
199 de
= exofs_find_entry(dir
, dentry
, &page
);
203 err
= exofs_delete_entry(de
, page
);
207 inode
->i_ctime
= dir
->i_ctime
;
208 inode_dec_link_count(inode
);
214 static int exofs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
216 struct inode
*inode
= dentry
->d_inode
;
217 int err
= -ENOTEMPTY
;
219 if (exofs_empty_dir(inode
)) {
220 err
= exofs_unlink(dir
, dentry
);
223 inode_dec_link_count(inode
);
224 inode_dec_link_count(dir
);
230 static int exofs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
231 struct inode
*new_dir
, struct dentry
*new_dentry
)
233 struct inode
*old_inode
= old_dentry
->d_inode
;
234 struct inode
*new_inode
= new_dentry
->d_inode
;
235 struct page
*dir_page
= NULL
;
236 struct exofs_dir_entry
*dir_de
= NULL
;
237 struct page
*old_page
;
238 struct exofs_dir_entry
*old_de
;
241 old_de
= exofs_find_entry(old_dir
, old_dentry
, &old_page
);
245 if (S_ISDIR(old_inode
->i_mode
)) {
247 dir_de
= exofs_dotdot(old_inode
, &dir_page
);
253 struct page
*new_page
;
254 struct exofs_dir_entry
*new_de
;
257 if (dir_de
&& !exofs_empty_dir(new_inode
))
261 new_de
= exofs_find_entry(new_dir
, new_dentry
, &new_page
);
264 err
= exofs_set_link(new_dir
, new_de
, new_page
, old_inode
);
265 new_inode
->i_ctime
= CURRENT_TIME
;
267 drop_nlink(new_inode
);
268 inode_dec_link_count(new_inode
);
272 err
= exofs_add_link(new_dentry
, old_inode
);
276 inode_inc_link_count(new_dir
);
279 old_inode
->i_ctime
= CURRENT_TIME
;
281 exofs_delete_entry(old_de
, old_page
);
282 mark_inode_dirty(old_inode
);
285 err
= exofs_set_link(old_inode
, dir_de
, dir_page
, new_dir
);
286 inode_dec_link_count(old_dir
);
296 page_cache_release(dir_page
);
300 page_cache_release(old_page
);
305 const struct inode_operations exofs_dir_inode_operations
= {
306 .create
= exofs_create
,
307 .lookup
= exofs_lookup
,
309 .unlink
= exofs_unlink
,
310 .symlink
= exofs_symlink
,
311 .mkdir
= exofs_mkdir
,
312 .rmdir
= exofs_rmdir
,
313 .mknod
= exofs_mknod
,
314 .rename
= exofs_rename
,
315 .setattr
= exofs_setattr
,
318 const struct inode_operations exofs_special_inode_operations
= {
319 .setattr
= exofs_setattr
,