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 #define NILFS_FID_SIZE_NON_CONNECTABLE \
46 (offsetof(struct nilfs_fid, parent_gen) / 4)
47 #define NILFS_FID_SIZE_CONNECTABLE (sizeof(struct nilfs_fid) / 4)
49 static inline int nilfs_add_nondir(struct dentry
*dentry
, struct inode
*inode
)
51 int err
= nilfs_add_link(dentry
, inode
);
53 d_instantiate_new(dentry
, inode
);
56 inode_dec_link_count(inode
);
57 unlock_new_inode(inode
);
66 static struct dentry
*
67 nilfs_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
72 if (dentry
->d_name
.len
> NILFS_NAME_LEN
)
73 return ERR_PTR(-ENAMETOOLONG
);
75 ino
= nilfs_inode_by_name(dir
, &dentry
->d_name
);
76 inode
= ino
? nilfs_iget(dir
->i_sb
, NILFS_I(dir
)->i_root
, ino
) : NULL
;
77 return d_splice_alias(inode
, dentry
);
81 * By the time this is called, we already have created
82 * the directory cache entry for the new file, but it
83 * is so far negative - it has no inode.
85 * If the create succeeds, we fill in the inode information
86 * with d_instantiate().
88 static int nilfs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
92 struct nilfs_transaction_info ti
;
95 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
98 inode
= nilfs_new_inode(dir
, mode
);
100 if (!IS_ERR(inode
)) {
101 inode
->i_op
= &nilfs_file_inode_operations
;
102 inode
->i_fop
= &nilfs_file_operations
;
103 inode
->i_mapping
->a_ops
= &nilfs_aops
;
104 nilfs_mark_inode_dirty(inode
);
105 err
= nilfs_add_nondir(dentry
, inode
);
108 err
= nilfs_transaction_commit(dir
->i_sb
);
110 nilfs_transaction_abort(dir
->i_sb
);
116 nilfs_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
, dev_t rdev
)
119 struct nilfs_transaction_info ti
;
122 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
125 inode
= nilfs_new_inode(dir
, mode
);
126 err
= PTR_ERR(inode
);
127 if (!IS_ERR(inode
)) {
128 init_special_inode(inode
, inode
->i_mode
, rdev
);
129 nilfs_mark_inode_dirty(inode
);
130 err
= nilfs_add_nondir(dentry
, inode
);
133 err
= nilfs_transaction_commit(dir
->i_sb
);
135 nilfs_transaction_abort(dir
->i_sb
);
140 static int nilfs_symlink(struct inode
*dir
, struct dentry
*dentry
,
143 struct nilfs_transaction_info ti
;
144 struct super_block
*sb
= dir
->i_sb
;
145 unsigned l
= strlen(symname
)+1;
149 if (l
> sb
->s_blocksize
)
150 return -ENAMETOOLONG
;
152 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
156 inode
= nilfs_new_inode(dir
, S_IFLNK
| S_IRWXUGO
);
157 err
= PTR_ERR(inode
);
162 inode
->i_op
= &nilfs_symlink_inode_operations
;
163 inode
->i_mapping
->a_ops
= &nilfs_aops
;
164 err
= page_symlink(inode
, symname
, l
);
168 /* mark_inode_dirty(inode); */
169 /* page_symlink() do this */
171 err
= nilfs_add_nondir(dentry
, inode
);
174 err
= nilfs_transaction_commit(dir
->i_sb
);
176 nilfs_transaction_abort(dir
->i_sb
);
182 nilfs_mark_inode_dirty(inode
);
183 unlock_new_inode(inode
);
188 static int nilfs_link(struct dentry
*old_dentry
, struct inode
*dir
,
189 struct dentry
*dentry
)
191 struct inode
*inode
= d_inode(old_dentry
);
192 struct nilfs_transaction_info ti
;
195 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
199 inode
->i_ctime
= CURRENT_TIME
;
200 inode_inc_link_count(inode
);
203 err
= nilfs_add_link(dentry
, inode
);
205 d_instantiate(dentry
, inode
);
206 err
= nilfs_transaction_commit(dir
->i_sb
);
208 inode_dec_link_count(inode
);
210 nilfs_transaction_abort(dir
->i_sb
);
216 static int nilfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
219 struct nilfs_transaction_info ti
;
222 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
228 inode
= nilfs_new_inode(dir
, S_IFDIR
| mode
);
229 err
= PTR_ERR(inode
);
233 inode
->i_op
= &nilfs_dir_inode_operations
;
234 inode
->i_fop
= &nilfs_dir_operations
;
235 inode
->i_mapping
->a_ops
= &nilfs_aops
;
239 err
= nilfs_make_empty(inode
, dir
);
243 err
= nilfs_add_link(dentry
, inode
);
247 nilfs_mark_inode_dirty(inode
);
248 d_instantiate_new(dentry
, inode
);
251 err
= nilfs_transaction_commit(dir
->i_sb
);
253 nilfs_transaction_abort(dir
->i_sb
);
260 nilfs_mark_inode_dirty(inode
);
261 unlock_new_inode(inode
);
265 nilfs_mark_inode_dirty(dir
);
269 static int nilfs_do_unlink(struct inode
*dir
, struct dentry
*dentry
)
272 struct nilfs_dir_entry
*de
;
277 de
= nilfs_find_entry(dir
, &dentry
->d_name
, &page
);
281 inode
= d_inode(dentry
);
283 if (le64_to_cpu(de
->inode
) != inode
->i_ino
)
286 if (!inode
->i_nlink
) {
287 nilfs_warning(inode
->i_sb
, __func__
,
288 "deleting nonexistent file (%lu), %d\n",
289 inode
->i_ino
, inode
->i_nlink
);
292 err
= nilfs_delete_entry(de
, page
);
296 inode
->i_ctime
= dir
->i_ctime
;
303 static int nilfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
305 struct nilfs_transaction_info ti
;
308 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 0);
312 err
= nilfs_do_unlink(dir
, dentry
);
315 nilfs_mark_inode_dirty(dir
);
316 nilfs_mark_inode_dirty(d_inode(dentry
));
317 err
= nilfs_transaction_commit(dir
->i_sb
);
319 nilfs_transaction_abort(dir
->i_sb
);
324 static int nilfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
326 struct inode
*inode
= d_inode(dentry
);
327 struct nilfs_transaction_info ti
;
330 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 0);
335 if (nilfs_empty_dir(inode
)) {
336 err
= nilfs_do_unlink(dir
, dentry
);
340 nilfs_mark_inode_dirty(inode
);
342 nilfs_mark_inode_dirty(dir
);
346 err
= nilfs_transaction_commit(dir
->i_sb
);
348 nilfs_transaction_abort(dir
->i_sb
);
353 static int nilfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
354 struct inode
*new_dir
, struct dentry
*new_dentry
)
356 struct inode
*old_inode
= d_inode(old_dentry
);
357 struct inode
*new_inode
= d_inode(new_dentry
);
358 struct page
*dir_page
= NULL
;
359 struct nilfs_dir_entry
*dir_de
= NULL
;
360 struct page
*old_page
;
361 struct nilfs_dir_entry
*old_de
;
362 struct nilfs_transaction_info ti
;
365 err
= nilfs_transaction_begin(old_dir
->i_sb
, &ti
, 1);
370 old_de
= nilfs_find_entry(old_dir
, &old_dentry
->d_name
, &old_page
);
374 if (S_ISDIR(old_inode
->i_mode
)) {
376 dir_de
= nilfs_dotdot(old_inode
, &dir_page
);
382 struct page
*new_page
;
383 struct nilfs_dir_entry
*new_de
;
386 if (dir_de
&& !nilfs_empty_dir(new_inode
))
390 new_de
= nilfs_find_entry(new_dir
, &new_dentry
->d_name
, &new_page
);
393 nilfs_set_link(new_dir
, new_de
, new_page
, old_inode
);
394 nilfs_mark_inode_dirty(new_dir
);
395 new_inode
->i_ctime
= CURRENT_TIME
;
397 drop_nlink(new_inode
);
398 drop_nlink(new_inode
);
399 nilfs_mark_inode_dirty(new_inode
);
401 err
= nilfs_add_link(new_dentry
, old_inode
);
406 nilfs_mark_inode_dirty(new_dir
);
411 * Like most other Unix systems, set the ctime for inodes on a
414 old_inode
->i_ctime
= CURRENT_TIME
;
416 nilfs_delete_entry(old_de
, old_page
);
419 nilfs_set_link(old_inode
, dir_de
, dir_page
, new_dir
);
422 nilfs_mark_inode_dirty(old_dir
);
423 nilfs_mark_inode_dirty(old_inode
);
425 err
= nilfs_transaction_commit(old_dir
->i_sb
);
431 page_cache_release(dir_page
);
435 page_cache_release(old_page
);
437 nilfs_transaction_abort(old_dir
->i_sb
);
444 static struct dentry
*nilfs_get_parent(struct dentry
*child
)
448 struct qstr dotdot
= QSTR_INIT("..", 2);
449 struct nilfs_root
*root
;
451 ino
= nilfs_inode_by_name(d_inode(child
), &dotdot
);
453 return ERR_PTR(-ENOENT
);
455 root
= NILFS_I(d_inode(child
))->i_root
;
457 inode
= nilfs_iget(d_inode(child
)->i_sb
, root
, ino
);
459 return ERR_CAST(inode
);
461 return d_obtain_alias(inode
);
464 static struct dentry
*nilfs_get_dentry(struct super_block
*sb
, u64 cno
,
467 struct nilfs_root
*root
;
470 if (ino
< NILFS_FIRST_INO(sb
) && ino
!= NILFS_ROOT_INO
)
471 return ERR_PTR(-ESTALE
);
473 root
= nilfs_lookup_root(sb
->s_fs_info
, cno
);
475 return ERR_PTR(-ESTALE
);
477 inode
= nilfs_iget(sb
, root
, ino
);
478 nilfs_put_root(root
);
481 return ERR_CAST(inode
);
482 if (gen
&& inode
->i_generation
!= gen
) {
484 return ERR_PTR(-ESTALE
);
486 return d_obtain_alias(inode
);
489 static struct dentry
*nilfs_fh_to_dentry(struct super_block
*sb
, struct fid
*fh
,
490 int fh_len
, int fh_type
)
492 struct nilfs_fid
*fid
= (struct nilfs_fid
*)fh
;
494 if (fh_len
< NILFS_FID_SIZE_NON_CONNECTABLE
||
495 (fh_type
!= FILEID_NILFS_WITH_PARENT
&&
496 fh_type
!= FILEID_NILFS_WITHOUT_PARENT
))
499 return nilfs_get_dentry(sb
, fid
->cno
, fid
->ino
, fid
->gen
);
502 static struct dentry
*nilfs_fh_to_parent(struct super_block
*sb
, struct fid
*fh
,
503 int fh_len
, int fh_type
)
505 struct nilfs_fid
*fid
= (struct nilfs_fid
*)fh
;
507 if (fh_len
< NILFS_FID_SIZE_CONNECTABLE
||
508 fh_type
!= FILEID_NILFS_WITH_PARENT
)
511 return nilfs_get_dentry(sb
, fid
->cno
, fid
->parent_ino
, fid
->parent_gen
);
514 static int nilfs_encode_fh(struct inode
*inode
, __u32
*fh
, int *lenp
,
515 struct inode
*parent
)
517 struct nilfs_fid
*fid
= (struct nilfs_fid
*)fh
;
518 struct nilfs_root
*root
= NILFS_I(inode
)->i_root
;
521 if (parent
&& *lenp
< NILFS_FID_SIZE_CONNECTABLE
) {
522 *lenp
= NILFS_FID_SIZE_CONNECTABLE
;
523 return FILEID_INVALID
;
525 if (*lenp
< NILFS_FID_SIZE_NON_CONNECTABLE
) {
526 *lenp
= NILFS_FID_SIZE_NON_CONNECTABLE
;
527 return FILEID_INVALID
;
530 fid
->cno
= root
->cno
;
531 fid
->ino
= inode
->i_ino
;
532 fid
->gen
= inode
->i_generation
;
535 fid
->parent_ino
= parent
->i_ino
;
536 fid
->parent_gen
= parent
->i_generation
;
537 type
= FILEID_NILFS_WITH_PARENT
;
538 *lenp
= NILFS_FID_SIZE_CONNECTABLE
;
540 type
= FILEID_NILFS_WITHOUT_PARENT
;
541 *lenp
= NILFS_FID_SIZE_NON_CONNECTABLE
;
547 const struct inode_operations nilfs_dir_inode_operations
= {
548 .create
= nilfs_create
,
549 .lookup
= nilfs_lookup
,
551 .unlink
= nilfs_unlink
,
552 .symlink
= nilfs_symlink
,
553 .mkdir
= nilfs_mkdir
,
554 .rmdir
= nilfs_rmdir
,
555 .mknod
= nilfs_mknod
,
556 .rename
= nilfs_rename
,
557 .setattr
= nilfs_setattr
,
558 .permission
= nilfs_permission
,
559 .fiemap
= nilfs_fiemap
,
562 const struct inode_operations nilfs_special_inode_operations
= {
563 .setattr
= nilfs_setattr
,
564 .permission
= nilfs_permission
,
567 const struct inode_operations nilfs_symlink_inode_operations
= {
568 .readlink
= generic_readlink
,
569 .follow_link
= page_follow_link_light
,
570 .put_link
= page_put_link
,
571 .permission
= nilfs_permission
,
574 const struct export_operations nilfs_export_ops
= {
575 .encode_fh
= nilfs_encode_fh
,
576 .fh_to_dentry
= nilfs_fh_to_dentry
,
577 .fh_to_parent
= nilfs_fh_to_parent
,
578 .get_parent
= nilfs_get_parent
,