1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/ext2/namei.c
5 * Rewrite to pagecache. Almost all code had been changed, so blame me
6 * if the things go wrong. Please, send bug reports to
9 * Stuff here is basically a glue between the VFS and generic UNIXish
10 * filesystem that keeps everything in pagecache. All knowledge of the
11 * directory layout is in fs/ext2/dir.c - it turned out to be easily separatable
12 * and it's easier to debug that way. In principle we might want to
13 * generalize that a bit and turn it into a library. Or not.
15 * The only non-static object here is ext2_dir_inode_operations.
17 * TODO: get rid of kmap() use, add readahead.
19 * Copyright (C) 1992, 1993, 1994, 1995
21 * Laboratoire MASI - Institut Blaise Pascal
22 * Universite Pierre et Marie Curie (Paris VI)
26 * linux/fs/minix/namei.c
28 * Copyright (C) 1991, 1992 Linus Torvalds
30 * Big-endian to little-endian byte-swapping/bitmaps by
34 #include <linux/pagemap.h>
35 #include <linux/quotaops.h>
40 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
42 int err = ext2_add_link(dentry, inode);
44 unlock_new_inode(inode);
45 d_instantiate(dentry, inode);
48 inode_dec_link_count(inode);
49 unlock_new_inode(inode);
58 static struct dentry *ext2_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
63 if (dentry->d_name.len > EXT2_NAME_LEN)
64 return ERR_PTR(-ENAMETOOLONG);
66 ino = ext2_inode_by_name(dir, &dentry->d_name);
69 inode = ext2_iget(dir->i_sb, ino);
70 if (inode == ERR_PTR(-ESTALE)) {
71 ext2_error(dir->i_sb, __func__,
72 "deleted inode referenced: %lu",
77 return d_splice_alias(inode, dentry);
80 struct dentry *ext2_get_parent(struct dentry *child)
82 struct qstr dotdot = QSTR_INIT("..", 2);
83 unsigned long ino = ext2_inode_by_name(d_inode(child), &dotdot);
85 return ERR_PTR(-ENOENT);
86 return d_obtain_alias(ext2_iget(child->d_sb, ino));
90 * By the time this is called, we already have created
91 * the directory cache entry for the new file, but it
92 * is so far negative - it has no inode.
94 * If the create succeeds, we fill in the inode information
95 * with d_instantiate().
97 static int ext2_create (struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
102 err = dquot_initialize(dir);
106 inode = ext2_new_inode(dir, mode, &dentry->d_name);
108 return PTR_ERR(inode);
110 ext2_set_file_ops(inode);
111 mark_inode_dirty(inode);
112 return ext2_add_nondir(dentry, inode);
115 static int ext2_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
117 struct inode *inode = ext2_new_inode(dir, mode, NULL);
119 return PTR_ERR(inode);
121 ext2_set_file_ops(inode);
122 mark_inode_dirty(inode);
123 d_tmpfile(dentry, inode);
124 unlock_new_inode(inode);
128 static int ext2_mknod (struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
130 struct inode * inode;
133 err = dquot_initialize(dir);
137 inode = ext2_new_inode (dir, mode, &dentry->d_name);
138 err = PTR_ERR(inode);
139 if (!IS_ERR(inode)) {
140 init_special_inode(inode, inode->i_mode, rdev);
141 #ifdef CONFIG_EXT2_FS_XATTR
142 inode->i_op = &ext2_special_inode_operations;
144 mark_inode_dirty(inode);
145 err = ext2_add_nondir(dentry, inode);
150 static int ext2_symlink (struct inode * dir, struct dentry * dentry,
151 const char * symname)
153 struct super_block * sb = dir->i_sb;
154 int err = -ENAMETOOLONG;
155 unsigned l = strlen(symname)+1;
156 struct inode * inode;
158 if (l > sb->s_blocksize)
161 err = dquot_initialize(dir);
165 inode = ext2_new_inode (dir, S_IFLNK | S_IRWXUGO, &dentry->d_name);
166 err = PTR_ERR(inode);
170 if (l > sizeof (EXT2_I(inode)->i_data)) {
172 inode->i_op = &ext2_symlink_inode_operations;
173 inode_nohighmem(inode);
174 if (test_opt(inode->i_sb, NOBH))
175 inode->i_mapping->a_ops = &ext2_nobh_aops;
177 inode->i_mapping->a_ops = &ext2_aops;
178 err = page_symlink(inode, symname, l);
183 inode->i_op = &ext2_fast_symlink_inode_operations;
184 inode->i_link = (char*)EXT2_I(inode)->i_data;
185 memcpy(inode->i_link, symname, l);
188 mark_inode_dirty(inode);
190 err = ext2_add_nondir(dentry, inode);
195 inode_dec_link_count(inode);
196 unlock_new_inode(inode);
201 static int ext2_link (struct dentry * old_dentry, struct inode * dir,
202 struct dentry *dentry)
204 struct inode *inode = d_inode(old_dentry);
207 err = dquot_initialize(dir);
211 inode->i_ctime = current_time(inode);
212 inode_inc_link_count(inode);
215 err = ext2_add_link(dentry, inode);
217 d_instantiate(dentry, inode);
220 inode_dec_link_count(inode);
225 static int ext2_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
227 struct inode * inode;
230 err = dquot_initialize(dir);
234 inode_inc_link_count(dir);
236 inode = ext2_new_inode(dir, S_IFDIR | mode, &dentry->d_name);
237 err = PTR_ERR(inode);
241 inode->i_op = &ext2_dir_inode_operations;
242 inode->i_fop = &ext2_dir_operations;
243 if (test_opt(inode->i_sb, NOBH))
244 inode->i_mapping->a_ops = &ext2_nobh_aops;
246 inode->i_mapping->a_ops = &ext2_aops;
248 inode_inc_link_count(inode);
250 err = ext2_make_empty(inode, dir);
254 err = ext2_add_link(dentry, inode);
258 unlock_new_inode(inode);
259 d_instantiate(dentry, inode);
264 inode_dec_link_count(inode);
265 inode_dec_link_count(inode);
266 unlock_new_inode(inode);
269 inode_dec_link_count(dir);
273 static int ext2_unlink(struct inode * dir, struct dentry *dentry)
275 struct inode * inode = d_inode(dentry);
276 struct ext2_dir_entry_2 * de;
280 err = dquot_initialize(dir);
284 de = ext2_find_entry (dir, &dentry->d_name, &page);
290 err = ext2_delete_entry (de, page);
294 inode->i_ctime = dir->i_ctime;
295 inode_dec_link_count(inode);
301 static int ext2_rmdir (struct inode * dir, struct dentry *dentry)
303 struct inode * inode = d_inode(dentry);
304 int err = -ENOTEMPTY;
306 if (ext2_empty_dir(inode)) {
307 err = ext2_unlink(dir, dentry);
310 inode_dec_link_count(inode);
311 inode_dec_link_count(dir);
317 static int ext2_rename (struct inode * old_dir, struct dentry * old_dentry,
318 struct inode * new_dir, struct dentry * new_dentry,
321 struct inode * old_inode = d_inode(old_dentry);
322 struct inode * new_inode = d_inode(new_dentry);
323 struct page * dir_page = NULL;
324 struct ext2_dir_entry_2 * dir_de = NULL;
325 struct page * old_page;
326 struct ext2_dir_entry_2 * old_de;
329 if (flags & ~RENAME_NOREPLACE)
332 err = dquot_initialize(old_dir);
336 err = dquot_initialize(new_dir);
340 old_de = ext2_find_entry (old_dir, &old_dentry->d_name, &old_page);
346 if (S_ISDIR(old_inode->i_mode)) {
348 dir_de = ext2_dotdot(old_inode, &dir_page);
354 struct page *new_page;
355 struct ext2_dir_entry_2 *new_de;
358 if (dir_de && !ext2_empty_dir (new_inode))
362 new_de = ext2_find_entry (new_dir, &new_dentry->d_name, &new_page);
365 ext2_set_link(new_dir, new_de, new_page, old_inode, 1);
366 new_inode->i_ctime = current_time(new_inode);
368 drop_nlink(new_inode);
369 inode_dec_link_count(new_inode);
371 err = ext2_add_link(new_dentry, old_inode);
375 inode_inc_link_count(new_dir);
379 * Like most other Unix systems, set the ctime for inodes on a
382 old_inode->i_ctime = current_time(old_inode);
383 mark_inode_dirty(old_inode);
385 ext2_delete_entry (old_de, old_page);
388 if (old_dir != new_dir)
389 ext2_set_link(old_inode, dir_de, dir_page, new_dir, 0);
394 inode_dec_link_count(old_dir);
411 const struct inode_operations ext2_dir_inode_operations = {
412 .create = ext2_create,
413 .lookup = ext2_lookup,
415 .unlink = ext2_unlink,
416 .symlink = ext2_symlink,
420 .rename = ext2_rename,
421 #ifdef CONFIG_EXT2_FS_XATTR
422 .listxattr = ext2_listxattr,
424 .setattr = ext2_setattr,
425 .get_acl = ext2_get_acl,
426 .set_acl = ext2_set_acl,
427 .tmpfile = ext2_tmpfile,
430 const struct inode_operations ext2_special_inode_operations = {
431 #ifdef CONFIG_EXT2_FS_XATTR
432 .listxattr = ext2_listxattr,
434 .setattr = ext2_setattr,
435 .get_acl = ext2_get_acl,
436 .set_acl = ext2_set_acl,