2 * namei.c - NILFS pathname lookup operations.
4 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Modified for NILFS by Amagai Yoshiji <amagai@osrg.net>,
21 * Ryusuke Konishi <ryusuke@osrg.net>
24 * linux/fs/ext2/namei.c
26 * Copyright (C) 1992, 1993, 1994, 1995
27 * Remy Card (card@masi.ibp.fr)
28 * Laboratoire MASI - Institut Blaise Pascal
29 * Universite Pierre et Marie Curie (Paris VI)
33 * linux/fs/minix/namei.c
35 * Copyright (C) 1991, 1992 Linus Torvalds
37 * Big-endian to little-endian byte-swapping/bitmaps by
38 * David S. Miller (davem@caip.rutgers.edu), 1995
41 #include <linux/pagemap.h>
45 static inline int nilfs_add_nondir(struct dentry *dentry, struct inode *inode)
47 int err = nilfs_add_link(dentry, inode);
49 d_instantiate(dentry, inode);
52 inode_dec_link_count(inode);
61 static struct dentry *
62 nilfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
67 if (dentry->d_name.len > NILFS_NAME_LEN)
68 return ERR_PTR(-ENAMETOOLONG);
70 ino = nilfs_inode_by_name(dir, dentry);
73 inode = nilfs_iget(dir->i_sb, ino);
75 return ERR_CAST(inode);
77 return d_splice_alias(inode, dentry);
80 struct dentry *nilfs_get_parent(struct dentry *child)
86 dotdot.d_name.name = "..";
87 dotdot.d_name.len = 2;
89 ino = nilfs_inode_by_name(child->d_inode, &dotdot);
91 return ERR_PTR(-ENOENT);
93 inode = nilfs_iget(child->d_inode->i_sb, ino);
95 return ERR_CAST(inode);
96 return d_obtain_alias(inode);
100 * By the time this is called, we already have created
101 * the directory cache entry for the new file, but it
102 * is so far negative - it has no inode.
104 * If the create succeeds, we fill in the inode information
105 * with d_instantiate().
107 static int nilfs_create(struct inode *dir, struct dentry *dentry, int mode,
108 struct nameidata *nd)
111 struct nilfs_transaction_info ti;
114 err = nilfs_transaction_begin(dir->i_sb, &ti, 1);
117 inode = nilfs_new_inode(dir, mode);
118 err = PTR_ERR(inode);
119 if (!IS_ERR(inode)) {
120 inode->i_op = &nilfs_file_inode_operations;
121 inode->i_fop = &nilfs_file_operations;
122 inode->i_mapping->a_ops = &nilfs_aops;
123 mark_inode_dirty(inode);
124 err = nilfs_add_nondir(dentry, inode);
127 err = nilfs_transaction_commit(dir->i_sb);
129 nilfs_transaction_abort(dir->i_sb);
135 nilfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev)
138 struct nilfs_transaction_info ti;
141 if (!new_valid_dev(rdev))
144 err = nilfs_transaction_begin(dir->i_sb, &ti, 1);
147 inode = nilfs_new_inode(dir, mode);
148 err = PTR_ERR(inode);
149 if (!IS_ERR(inode)) {
150 init_special_inode(inode, inode->i_mode, rdev);
151 mark_inode_dirty(inode);
152 err = nilfs_add_nondir(dentry, inode);
155 err = nilfs_transaction_commit(dir->i_sb);
157 nilfs_transaction_abort(dir->i_sb);
162 static int nilfs_symlink(struct inode *dir, struct dentry *dentry,
165 struct nilfs_transaction_info ti;
166 struct super_block *sb = dir->i_sb;
167 unsigned l = strlen(symname)+1;
171 if (l > sb->s_blocksize)
172 return -ENAMETOOLONG;
174 err = nilfs_transaction_begin(dir->i_sb, &ti, 1);
178 inode = nilfs_new_inode(dir, S_IFLNK | S_IRWXUGO);
179 err = PTR_ERR(inode);
184 inode->i_op = &nilfs_symlink_inode_operations;
185 inode->i_mapping->a_ops = &nilfs_aops;
186 err = page_symlink(inode, symname, l);
190 /* mark_inode_dirty(inode); */
191 /* nilfs_new_inode() and page_symlink() do this */
193 err = nilfs_add_nondir(dentry, inode);
196 err = nilfs_transaction_commit(dir->i_sb);
198 nilfs_transaction_abort(dir->i_sb);
203 inode_dec_link_count(inode);
208 static int nilfs_link(struct dentry *old_dentry, struct inode *dir,
209 struct dentry *dentry)
211 struct inode *inode = old_dentry->d_inode;
212 struct nilfs_transaction_info ti;
215 if (inode->i_nlink >= NILFS_LINK_MAX)
218 err = nilfs_transaction_begin(dir->i_sb, &ti, 1);
222 inode->i_ctime = CURRENT_TIME;
223 inode_inc_link_count(inode);
224 atomic_inc(&inode->i_count);
226 err = nilfs_add_nondir(dentry, inode);
228 err = nilfs_transaction_commit(dir->i_sb);
230 nilfs_transaction_abort(dir->i_sb);
235 static int nilfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
238 struct nilfs_transaction_info ti;
241 if (dir->i_nlink >= NILFS_LINK_MAX)
244 err = nilfs_transaction_begin(dir->i_sb, &ti, 1);
248 inode_inc_link_count(dir);
250 inode = nilfs_new_inode(dir, S_IFDIR | mode);
251 err = PTR_ERR(inode);
255 inode->i_op = &nilfs_dir_inode_operations;
256 inode->i_fop = &nilfs_dir_operations;
257 inode->i_mapping->a_ops = &nilfs_aops;
259 inode_inc_link_count(inode);
261 err = nilfs_make_empty(inode, dir);
265 err = nilfs_add_link(dentry, inode);
269 d_instantiate(dentry, inode);
272 err = nilfs_transaction_commit(dir->i_sb);
274 nilfs_transaction_abort(dir->i_sb);
279 inode_dec_link_count(inode);
280 inode_dec_link_count(inode);
283 inode_dec_link_count(dir);
287 static int nilfs_unlink(struct inode *dir, struct dentry *dentry)
290 struct nilfs_dir_entry *de;
292 struct nilfs_transaction_info ti;
295 err = nilfs_transaction_begin(dir->i_sb, &ti, 0);
300 de = nilfs_find_entry(dir, dentry, &page);
304 inode = dentry->d_inode;
306 if (le64_to_cpu(de->inode) != inode->i_ino)
309 if (!inode->i_nlink) {
310 nilfs_warning(inode->i_sb, __func__,
311 "deleting nonexistent file (%lu), %d\n",
312 inode->i_ino, inode->i_nlink);
315 err = nilfs_delete_entry(de, page);
319 inode->i_ctime = dir->i_ctime;
320 inode_dec_link_count(inode);
324 err = nilfs_transaction_commit(dir->i_sb);
326 nilfs_transaction_abort(dir->i_sb);
331 static int nilfs_rmdir(struct inode *dir, struct dentry *dentry)
333 struct inode *inode = dentry->d_inode;
334 struct nilfs_transaction_info ti;
337 err = nilfs_transaction_begin(dir->i_sb, &ti, 0);
342 if (nilfs_empty_dir(inode)) {
343 err = nilfs_unlink(dir, dentry);
346 inode_dec_link_count(inode);
347 inode_dec_link_count(dir);
351 err = nilfs_transaction_commit(dir->i_sb);
353 nilfs_transaction_abort(dir->i_sb);
358 static int nilfs_rename(struct inode *old_dir, struct dentry *old_dentry,
359 struct inode *new_dir, struct dentry *new_dentry)
361 struct inode *old_inode = old_dentry->d_inode;
362 struct inode *new_inode = new_dentry->d_inode;
363 struct page *dir_page = NULL;
364 struct nilfs_dir_entry *dir_de = NULL;
365 struct page *old_page;
366 struct nilfs_dir_entry *old_de;
367 struct nilfs_transaction_info ti;
370 err = nilfs_transaction_begin(old_dir->i_sb, &ti, 1);
375 old_de = nilfs_find_entry(old_dir, old_dentry, &old_page);
379 if (S_ISDIR(old_inode->i_mode)) {
381 dir_de = nilfs_dotdot(old_inode, &dir_page);
387 struct page *new_page;
388 struct nilfs_dir_entry *new_de;
391 if (dir_de && !nilfs_empty_dir(new_inode))
395 new_de = nilfs_find_entry(new_dir, new_dentry, &new_page);
398 inode_inc_link_count(old_inode);
399 nilfs_set_link(new_dir, new_de, new_page, old_inode);
400 new_inode->i_ctime = CURRENT_TIME;
402 drop_nlink(new_inode);
403 inode_dec_link_count(new_inode);
407 if (new_dir->i_nlink >= NILFS_LINK_MAX)
410 inode_inc_link_count(old_inode);
411 err = nilfs_add_link(new_dentry, old_inode);
413 inode_dec_link_count(old_inode);
417 inode_inc_link_count(new_dir);
421 * Like most other Unix systems, set the ctime for inodes on a
423 * inode_dec_link_count() will mark the inode dirty.
425 old_inode->i_ctime = CURRENT_TIME;
427 nilfs_delete_entry(old_de, old_page);
428 inode_dec_link_count(old_inode);
431 nilfs_set_link(old_inode, dir_de, dir_page, new_dir);
432 inode_dec_link_count(old_dir);
435 err = nilfs_transaction_commit(old_dir->i_sb);
441 page_cache_release(dir_page);
445 page_cache_release(old_page);
447 nilfs_transaction_abort(old_dir->i_sb);
451 struct inode_operations nilfs_dir_inode_operations = {
452 .create = nilfs_create,
453 .lookup = nilfs_lookup,
455 .unlink = nilfs_unlink,
456 .symlink = nilfs_symlink,
457 .mkdir = nilfs_mkdir,
458 .rmdir = nilfs_rmdir,
459 .mknod = nilfs_mknod,
460 .rename = nilfs_rename,
461 .setattr = nilfs_setattr,
462 .permission = nilfs_permission,
465 struct inode_operations nilfs_special_inode_operations = {
466 .setattr = nilfs_setattr,
467 .permission = nilfs_permission,
470 struct inode_operations nilfs_symlink_inode_operations = {
471 .readlink = generic_readlink,
472 .follow_link = page_follow_link_light,
473 .put_link = page_put_link,