4 * Migration to usage of "page cache" on May 2006 by
9 * Charles University, Faculty of Mathematics and Physics
13 * linux/fs/ext2/namei.c
15 * Copyright (C) 1992, 1993, 1994, 1995
17 * Laboratoire MASI - Institut Blaise Pascal
18 * Universite Pierre et Marie Curie (Paris VI)
22 * linux/fs/minix/namei.c
24 * Copyright (C) 1991, 1992 Linus Torvalds
26 * Big-endian to little-endian byte-swapping/bitmaps by
30 #include <linux/time.h>
32 #include <linux/smp_lock.h>
38 static inline int ufs_add_nondir(struct dentry *dentry, struct inode *inode)
40 int err = ufs_add_link(dentry, inode);
42 d_instantiate(dentry, inode);
45 inode_dec_link_count(inode);
50 static struct dentry *ufs_lookup(struct inode * dir, struct dentry *dentry, struct nameidata *nd)
52 struct inode * inode = NULL;
55 if (dentry->d_name.len > UFS_MAXNAMLEN)
56 return ERR_PTR(-ENAMETOOLONG);
59 ino = ufs_inode_by_name(dir, &dentry->d_name);
61 inode = ufs_iget(dir->i_sb, ino);
64 return ERR_CAST(inode);
73 * By the time this is called, we already have created
74 * the directory cache entry for the new file, but it
75 * is so far negative - it has no inode.
77 * If the create succeeds, we fill in the inode information
78 * with d_instantiate().
80 static int ufs_create (struct inode * dir, struct dentry * dentry, int mode,
88 inode = ufs_new_inode(dir, mode);
92 inode->i_op = &ufs_file_inode_operations;
93 inode->i_fop = &ufs_file_operations;
94 inode->i_mapping->a_ops = &ufs_aops;
95 mark_inode_dirty(inode);
97 err = ufs_add_nondir(dentry, inode);
100 UFSD("END: err=%d\n", err);
104 static int ufs_mknod (struct inode * dir, struct dentry *dentry, int mode, dev_t rdev)
109 if (!old_valid_dev(rdev))
112 inode = ufs_new_inode(dir, mode);
113 err = PTR_ERR(inode);
114 if (!IS_ERR(inode)) {
115 init_special_inode(inode, mode, rdev);
116 ufs_set_inode_dev(inode->i_sb, UFS_I(inode), rdev);
117 mark_inode_dirty(inode);
119 err = ufs_add_nondir(dentry, inode);
125 static int ufs_symlink (struct inode * dir, struct dentry * dentry,
126 const char * symname)
128 struct super_block * sb = dir->i_sb;
129 int err = -ENAMETOOLONG;
130 unsigned l = strlen(symname)+1;
131 struct inode * inode;
133 if (l > sb->s_blocksize)
137 inode = ufs_new_inode(dir, S_IFLNK | S_IRWXUGO);
138 err = PTR_ERR(inode);
142 if (l > UFS_SB(sb)->s_uspi->s_maxsymlinklen) {
144 inode->i_op = &ufs_symlink_inode_operations;
145 inode->i_mapping->a_ops = &ufs_aops;
146 err = page_symlink(inode, symname, l);
151 inode->i_op = &ufs_fast_symlink_inode_operations;
152 memcpy(UFS_I(inode)->i_u1.i_symlink, symname, l);
155 mark_inode_dirty(inode);
157 err = ufs_add_nondir(dentry, inode);
164 inode_dec_link_count(inode);
169 static int ufs_link (struct dentry * old_dentry, struct inode * dir,
170 struct dentry *dentry)
172 struct inode *inode = old_dentry->d_inode;
176 if (inode->i_nlink >= UFS_LINK_MAX) {
181 inode->i_ctime = CURRENT_TIME_SEC;
182 inode_inc_link_count(inode);
183 atomic_inc(&inode->i_count);
185 error = ufs_add_nondir(dentry, inode);
190 static int ufs_mkdir(struct inode * dir, struct dentry * dentry, int mode)
192 struct inode * inode;
195 if (dir->i_nlink >= UFS_LINK_MAX)
199 inode_inc_link_count(dir);
201 inode = ufs_new_inode(dir, S_IFDIR|mode);
202 err = PTR_ERR(inode);
206 inode->i_op = &ufs_dir_inode_operations;
207 inode->i_fop = &ufs_dir_operations;
208 inode->i_mapping->a_ops = &ufs_aops;
210 inode_inc_link_count(inode);
212 err = ufs_make_empty(inode, dir);
216 err = ufs_add_link(dentry, inode);
221 d_instantiate(dentry, inode);
226 inode_dec_link_count(inode);
227 inode_dec_link_count(inode);
230 inode_dec_link_count(dir);
235 static int ufs_unlink(struct inode *dir, struct dentry *dentry)
237 struct inode * inode = dentry->d_inode;
238 struct ufs_dir_entry *de;
242 de = ufs_find_entry(dir, &dentry->d_name, &page);
246 err = ufs_delete_entry(dir, de, page);
250 inode->i_ctime = dir->i_ctime;
251 inode_dec_link_count(inode);
257 static int ufs_rmdir (struct inode * dir, struct dentry *dentry)
259 struct inode * inode = dentry->d_inode;
263 if (ufs_empty_dir (inode)) {
264 err = ufs_unlink(dir, dentry);
267 inode_dec_link_count(inode);
268 inode_dec_link_count(dir);
275 static int ufs_rename(struct inode *old_dir, struct dentry *old_dentry,
276 struct inode *new_dir, struct dentry *new_dentry)
278 struct inode *old_inode = old_dentry->d_inode;
279 struct inode *new_inode = new_dentry->d_inode;
280 struct page *dir_page = NULL;
281 struct ufs_dir_entry * dir_de = NULL;
282 struct page *old_page;
283 struct ufs_dir_entry *old_de;
286 old_de = ufs_find_entry(old_dir, &old_dentry->d_name, &old_page);
290 if (S_ISDIR(old_inode->i_mode)) {
292 dir_de = ufs_dotdot(old_inode, &dir_page);
298 struct page *new_page;
299 struct ufs_dir_entry *new_de;
302 if (dir_de && !ufs_empty_dir(new_inode))
306 new_de = ufs_find_entry(new_dir, &new_dentry->d_name, &new_page);
309 inode_inc_link_count(old_inode);
310 ufs_set_link(new_dir, new_de, new_page, old_inode);
311 new_inode->i_ctime = CURRENT_TIME_SEC;
313 drop_nlink(new_inode);
314 inode_dec_link_count(new_inode);
318 if (new_dir->i_nlink >= UFS_LINK_MAX)
321 inode_inc_link_count(old_inode);
322 err = ufs_add_link(new_dentry, old_inode);
324 inode_dec_link_count(old_inode);
328 inode_inc_link_count(new_dir);
332 * Like most other Unix systems, set the ctime for inodes on a
334 * inode_dec_link_count() will mark the inode dirty.
336 old_inode->i_ctime = CURRENT_TIME_SEC;
338 ufs_delete_entry(old_dir, old_de, old_page);
339 inode_dec_link_count(old_inode);
342 ufs_set_link(old_inode, dir_de, dir_page, new_dir);
343 inode_dec_link_count(old_dir);
351 page_cache_release(dir_page);
355 page_cache_release(old_page);
360 const struct inode_operations ufs_dir_inode_operations = {
361 .create = ufs_create,
362 .lookup = ufs_lookup,
364 .unlink = ufs_unlink,
365 .symlink = ufs_symlink,
369 .rename = ufs_rename,