2 * linux/fs/ext2/namei.c
4 * Rewrite to pagecache. Almost all code had been changed, so blame me
5 * if the things go wrong. Please, send bug reports to
8 * Stuff here is basically a glue between the VFS and generic UNIXish
9 * filesystem that keeps everything in pagecache. All knowledge of the
10 * directory layout is in fs/ext2/dir.c - it turned out to be easily separatable
11 * and it's easier to debug that way. In principle we might want to
12 * generalize that a bit and turn it into a library. Or not.
14 * The only non-static object here is ext2_dir_inode_operations.
16 * TODO: get rid of kmap() use, add readahead.
18 * Copyright (C) 1992, 1993, 1994, 1995
20 * Laboratoire MASI - Institut Blaise Pascal
21 * Universite Pierre et Marie Curie (Paris VI)
25 * linux/fs/minix/namei.c
27 * Copyright (C) 1991, 1992 Linus Torvalds
29 * Big-endian to little-endian byte-swapping/bitmaps by
33 #include <linux/pagemap.h>
34 #include <linux/quotaops.h>
39 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
41 int err = ext2_add_link(dentry, inode);
43 unlock_new_inode(inode);
44 d_instantiate(dentry, inode);
47 inode_dec_link_count(inode);
48 unlock_new_inode(inode);
57 static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
62 if (dentry->d_name.len > EXT2_NAME_LEN)
63 return ERR_PTR(-ENAMETOOLONG);
65 ino = ext2_inode_by_name(dir, &dentry->d_name);
68 inode = ext2_iget(dir->i_sb, ino);
69 if (inode == ERR_PTR(-ESTALE)) {
70 ext2_error(dir->i_sb, __func__,
71 "deleted inode referenced: %lu",
76 return d_splice_alias(inode, dentry);
79 struct dentry *ext2_get_parent(struct dentry *child)
81 struct qstr dotdot = QSTR_INIT("..", 2);
82 unsigned long ino = ext2_inode_by_name(d_inode(child), &dotdot);
84 return ERR_PTR(-ENOENT);
85 return d_obtain_alias(ext2_iget(d_inode(child)->i_sb, ino));
89 * By the time this is called, we already have created
90 * the directory cache entry for the new file, but it
91 * is so far negative - it has no inode.
93 * If the create succeeds, we fill in the inode information
94 * with d_instantiate().
96 static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
101 err = dquot_initialize(dir);
105 inode = ext2_new_inode(dir, mode, &dentry->d_name);
107 return PTR_ERR(inode);
109 inode->i_op = &ext2_file_inode_operations;
110 if (test_opt(inode->i_sb, NOBH)) {
111 inode->i_mapping->a_ops = &ext2_nobh_aops;
112 inode->i_fop = &ext2_file_operations;
114 inode->i_mapping->a_ops = &ext2_aops;
115 inode->i_fop = &ext2_file_operations;
117 mark_inode_dirty(inode);
118 return ext2_add_nondir(dentry, inode);
121 static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
123 struct inode *inode = ext2_new_inode(dir, mode, NULL);
125 return PTR_ERR(inode);
127 inode->i_op = &ext2_file_inode_operations;
128 if (test_opt(inode->i_sb, NOBH)) {
129 inode->i_mapping->a_ops = &ext2_nobh_aops;
130 inode->i_fop = &ext2_file_operations;
132 inode->i_mapping->a_ops = &ext2_aops;
133 inode->i_fop = &ext2_file_operations;
135 mark_inode_dirty(inode);
136 d_tmpfile(dentry, inode);
137 unlock_new_inode(inode);
141 static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
143 struct inode * inode;
146 if (!new_valid_dev(rdev))
149 err = dquot_initialize(dir);
153 inode = ext2_new_inode (dir, mode, &dentry->d_name);
154 err = PTR_ERR(inode);
155 if (!IS_ERR(inode)) {
156 init_special_inode(inode, inode->i_mode, rdev);
157 #ifdef CONFIG_EXT2_FS_XATTR
158 inode->i_op = &ext2_special_inode_operations;
160 mark_inode_dirty(inode);
161 err = ext2_add_nondir(dentry, inode);
166 static int ext2_symlink (struct inode * dir, struct dentry * dentry,
167 const char * symname)
169 struct super_block * sb = dir->i_sb;
170 int err = -ENAMETOOLONG;
171 unsigned l = strlen(symname)+1;
172 struct inode * inode;
174 if (l > sb->s_blocksize)
177 err = dquot_initialize(dir);
181 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
182 err = PTR_ERR(inode);
186 if (l > sizeof (EXT2_I(inode)->i_data)) {
188 inode->i_op = &ext2_symlink_inode_operations;
189 if (test_opt(inode->i_sb, NOBH))
190 inode->i_mapping->a_ops = &ext2_nobh_aops;
192 inode->i_mapping->a_ops = &ext2_aops;
193 err = page_symlink(inode, symname, l);
198 inode->i_op = &ext2_fast_symlink_inode_operations;
199 inode->i_link = (char*)EXT2_I(inode)->i_data;
200 memcpy(inode->i_link, symname, l);
203 mark_inode_dirty(inode);
205 err = ext2_add_nondir(dentry, inode);
210 inode_dec_link_count(inode);
211 unlock_new_inode(inode);
216 static int ext2_link (struct dentry * old_dentry, struct inode * dir,
217 struct dentry *dentry)
219 struct inode *inode = d_inode(old_dentry);
222 err = dquot_initialize(dir);
226 inode->i_ctime = CURRENT_TIME_SEC;
227 inode_inc_link_count(inode);
230 err = ext2_add_link(dentry, inode);
232 d_instantiate(dentry, inode);
235 inode_dec_link_count(inode);
240 static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
242 struct inode * inode;
245 err = dquot_initialize(dir);
249 inode_inc_link_count(dir);
251 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
252 err = PTR_ERR(inode);
256 inode->i_op = &ext2_dir_inode_operations;
257 inode->i_fop = &ext2_dir_operations;
258 if (test_opt(inode->i_sb, NOBH))
259 inode->i_mapping->a_ops = &ext2_nobh_aops;
261 inode->i_mapping->a_ops = &ext2_aops;
263 inode_inc_link_count(inode);
265 err = ext2_make_empty(inode, dir);
269 err = ext2_add_link(dentry, inode);
273 unlock_new_inode(inode);
274 d_instantiate(dentry, inode);
279 inode_dec_link_count(inode);
280 inode_dec_link_count(inode);
281 unlock_new_inode(inode);
284 inode_dec_link_count(dir);
288 static int ext2_unlink(struct inode * dir, struct dentry *dentry)
290 struct inode * inode = d_inode(dentry);
291 struct ext2_dir_entry_2 * de;
295 err = dquot_initialize(dir);
299 de = ext2_find_entry (dir, &dentry->d_name, &page);
305 err = ext2_delete_entry (de, page);
309 inode->i_ctime = dir->i_ctime;
310 inode_dec_link_count(inode);
316 static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
318 struct inode * inode = d_inode(dentry);
319 int err = -ENOTEMPTY;
321 if (ext2_empty_dir(inode)) {
322 err = ext2_unlink(dir, dentry);
325 inode_dec_link_count(inode);
326 inode_dec_link_count(dir);
332 static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
333 struct inode * new_dir, struct dentry * new_dentry )
335 struct inode * old_inode = d_inode(old_dentry);
336 struct inode * new_inode = d_inode(new_dentry);
337 struct page * dir_page = NULL;
338 struct ext2_dir_entry_2 * dir_de = NULL;
339 struct page * old_page;
340 struct ext2_dir_entry_2 * old_de;
343 err = dquot_initialize(old_dir);
347 err = dquot_initialize(new_dir);
351 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
357 if (S_ISDIR(old_inode->i_mode)) {
359 dir_de = ext2_dotdot(old_inode, &dir_page);
365 struct page *new_page;
366 struct ext2_dir_entry_2 *new_de;
369 if (dir_de && !ext2_empty_dir (new_inode))
373 new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
376 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
377 new_inode->i_ctime = CURRENT_TIME_SEC;
379 drop_nlink(new_inode);
380 inode_dec_link_count(new_inode);
382 err = ext2_add_link(new_dentry, old_inode);
386 inode_inc_link_count(new_dir);
390 * Like most other Unix systems, set the ctime for inodes on a
393 old_inode->i_ctime = CURRENT_TIME_SEC;
394 mark_inode_dirty(old_inode);
396 ext2_delete_entry (old_de, old_page);
399 if (old_dir != new_dir)
400 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
403 page_cache_release(dir_page);
405 inode_dec_link_count(old_dir);
413 page_cache_release(dir_page);
417 page_cache_release(old_page);
422 const struct inode_operations ext2_dir_inode_operations = {
423 .create = ext2_create,
424 .lookup = ext2_lookup,
426 .unlink = ext2_unlink,
427 .symlink = ext2_symlink,
431 .rename = ext2_rename,
432 #ifdef CONFIG_EXT2_FS_XATTR
433 .setxattr = generic_setxattr,
434 .getxattr = generic_getxattr,
435 .listxattr = ext2_listxattr,
436 .removexattr = generic_removexattr,
438 .setattr = ext2_setattr,
439 .get_acl = ext2_get_acl,
440 .set_acl = ext2_set_acl,
441 .tmpfile = ext2_tmpfile,
444 const struct inode_operations ext2_special_inode_operations = {
445 #ifdef CONFIG_EXT2_FS_XATTR
446 .setxattr = generic_setxattr,
447 .getxattr = generic_getxattr,
448 .listxattr = ext2_listxattr,
449 .removexattr = generic_removexattr,
451 .setattr = ext2_setattr,
452 .get_acl = ext2_get_acl,
453 .set_acl = ext2_set_acl,