1 // SPDX-License-Identifier: GPL-2.0
5 * Migration to usage of "page cache" on May 2006 by
10 * Charles University, Faculty of Mathematics and Physics
14 * linux/fs/ext2/namei.c
16 * Copyright (C) 1992, 1993, 1994, 1995
18 * Laboratoire MASI - Institut Blaise Pascal
19 * Universite Pierre et Marie Curie (Paris VI)
23 * linux/fs/minix/namei.c
25 * Copyright (C) 1991, 1992 Linus Torvalds
27 * Big-endian to little-endian byte-swapping/bitmaps by
31 #include <linux/time.h>
38 static inline int ufs_add_nondir(struct dentry *dentry, struct inode *inode)
40 int err = ufs_add_link(dentry, inode);
42 unlock_new_inode(inode);
43 d_instantiate(dentry, inode);
46 inode_dec_link_count(inode);
47 unlock_new_inode(inode);
52 static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
54 struct inode * inode = NULL;
57 if (dentry->d_name.len > UFS_MAXNAMLEN)
58 return ERR_PTR(-ENAMETOOLONG);
60 ino = ufs_inode_by_name(dir, &dentry->d_name);
62 inode = ufs_iget(dir->i_sb, ino);
63 return d_splice_alias(inode, dentry);
67 * By the time this is called, we already have created
68 * the directory cache entry for the new file, but it
69 * is so far negative - it has no inode.
71 * If the create succeeds, we fill in the inode information
72 * with d_instantiate().
74 static int ufs_create (struct inode * dir, struct dentry * dentry, umode_t mode,
79 inode = ufs_new_inode(dir, mode);
81 return PTR_ERR(inode);
83 inode->i_op = &ufs_file_inode_operations;
84 inode->i_fop = &ufs_file_operations;
85 inode->i_mapping->a_ops = &ufs_aops;
86 mark_inode_dirty(inode);
87 return ufs_add_nondir(dentry, inode);
90 static int ufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t rdev)
95 if (!old_valid_dev(rdev))
98 inode = ufs_new_inode(dir, mode);
100 if (!IS_ERR(inode)) {
101 init_special_inode(inode, mode, rdev);
102 ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
103 mark_inode_dirty(inode);
104 err = ufs_add_nondir(dentry, inode);
109 static int ufs_symlink (struct inode * dir, struct dentry * dentry,
110 const char * symname)
112 struct super_block * sb = dir->i_sb;
114 unsigned l = strlen(symname)+1;
115 struct inode * inode;
117 if (l > sb->s_blocksize)
118 return -ENAMETOOLONG;
120 inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
121 err = PTR_ERR(inode);
125 if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
127 inode->i_op = &page_symlink_inode_operations;
128 inode_nohighmem(inode);
129 inode->i_mapping->a_ops = &ufs_aops;
130 err = page_symlink(inode, symname, l);
135 inode->i_op = &simple_symlink_inode_operations;
136 inode->i_link = (char *)UFS_I(inode)->i_u1.i_symlink;
137 memcpy(inode->i_link, symname, l);
140 mark_inode_dirty(inode);
142 return ufs_add_nondir(dentry, inode);
145 inode_dec_link_count(inode);
146 unlock_new_inode(inode);
151 static int ufs_link (struct dentry * old_dentry, struct inode * dir,
152 struct dentry *dentry)
154 struct inode *inode = d_inode(old_dentry);
157 inode->i_ctime = current_time(inode);
158 inode_inc_link_count(inode);
161 error = ufs_add_link(dentry, inode);
163 inode_dec_link_count(inode);
166 d_instantiate(dentry, inode);
170 static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
172 struct inode * inode;
175 inode_inc_link_count(dir);
177 inode = ufs_new_inode(dir, S_IFDIR|mode);
178 err = PTR_ERR(inode);
182 inode->i_op = &ufs_dir_inode_operations;
183 inode->i_fop = &ufs_dir_operations;
184 inode->i_mapping->a_ops = &ufs_aops;
186 inode_inc_link_count(inode);
188 err = ufs_make_empty(inode, dir);
192 err = ufs_add_link(dentry, inode);
196 unlock_new_inode(inode);
197 d_instantiate(dentry, inode);
201 inode_dec_link_count(inode);
202 inode_dec_link_count(inode);
203 unlock_new_inode(inode);
206 inode_dec_link_count(dir);
210 static int ufs_unlink(struct inode *dir, struct dentry *dentry)
212 struct inode * inode = d_inode(dentry);
213 struct ufs_dir_entry *de;
217 de = ufs_find_entry(dir, &dentry->d_name, &page);
221 err = ufs_delete_entry(dir, de, page);
225 inode->i_ctime = dir->i_ctime;
226 inode_dec_link_count(inode);
232 static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
234 struct inode * inode = d_inode(dentry);
237 if (ufs_empty_dir (inode)) {
238 err = ufs_unlink(dir, dentry);
241 inode_dec_link_count(inode);
242 inode_dec_link_count(dir);
248 static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
249 struct inode *new_dir, struct dentry *new_dentry,
252 struct inode *old_inode = d_inode(old_dentry);
253 struct inode *new_inode = d_inode(new_dentry);
254 struct page *dir_page = NULL;
255 struct ufs_dir_entry * dir_de = NULL;
256 struct page *old_page;
257 struct ufs_dir_entry *old_de;
260 if (flags & ~RENAME_NOREPLACE)
263 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
267 if (S_ISDIR(old_inode->i_mode)) {
269 dir_de = ufs_dotdot(old_inode, &dir_page);
275 struct page *new_page;
276 struct ufs_dir_entry *new_de;
279 if (dir_de && !ufs_empty_dir(new_inode))
283 new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
286 ufs_set_link(new_dir, new_de, new_page, old_inode, 1);
287 new_inode->i_ctime = current_time(new_inode);
289 drop_nlink(new_inode);
290 inode_dec_link_count(new_inode);
292 err = ufs_add_link(new_dentry, old_inode);
296 inode_inc_link_count(new_dir);
300 * Like most other Unix systems, set the ctime for inodes on a
303 old_inode->i_ctime = current_time(old_inode);
305 ufs_delete_entry(old_dir, old_de, old_page);
306 mark_inode_dirty(old_inode);
309 if (old_dir != new_dir)
310 ufs_set_link(old_inode, dir_de, dir_page, new_dir, 0);
315 inode_dec_link_count(old_dir);
332 const struct inode_operations ufs_dir_inode_operations = {
333 .create = ufs_create,
334 .lookup = ufs_lookup,
336 .unlink = ufs_unlink,
337 .symlink = ufs_symlink,
341 .rename = ufs_rename,