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 * Modified for NILFS by Amagai Yoshiji and Ryusuke Konishi.
19 * linux/fs/ext2/namei.c
21 * Copyright (C) 1992, 1993, 1994, 1995
22 * Remy Card (card@masi.ibp.fr)
23 * Laboratoire MASI - Institut Blaise Pascal
24 * Universite Pierre et Marie Curie (Paris VI)
28 * linux/fs/minix/namei.c
30 * Copyright (C) 1991, 1992 Linus Torvalds
32 * Big-endian to little-endian byte-swapping/bitmaps by
33 * David S. Miller (davem@caip.rutgers.edu), 1995
36 #include <linux/pagemap.h>
40 #define NILFS_FID_SIZE_NON_CONNECTABLE \
41 (offsetof(struct nilfs_fid, parent_gen) / 4)
42 #define NILFS_FID_SIZE_CONNECTABLE (sizeof(struct nilfs_fid) / 4)
44 static inline int nilfs_add_nondir(struct dentry
*dentry
, struct inode
*inode
)
46 int err
= nilfs_add_link(dentry
, inode
);
49 d_instantiate(dentry
, inode
);
50 unlock_new_inode(inode
);
53 inode_dec_link_count(inode
);
54 unlock_new_inode(inode
);
63 static struct dentry
*
64 nilfs_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
69 if (dentry
->d_name
.len
> NILFS_NAME_LEN
)
70 return ERR_PTR(-ENAMETOOLONG
);
72 ino
= nilfs_inode_by_name(dir
, &dentry
->d_name
);
73 inode
= ino
? nilfs_iget(dir
->i_sb
, NILFS_I(dir
)->i_root
, ino
) : NULL
;
74 return d_splice_alias(inode
, dentry
);
78 * By the time this is called, we already have created
79 * the directory cache entry for the new file, but it
80 * is so far negative - it has no inode.
82 * If the create succeeds, we fill in the inode information
83 * with d_instantiate().
85 static int nilfs_create(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
,
89 struct nilfs_transaction_info ti
;
92 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
95 inode
= nilfs_new_inode(dir
, mode
);
98 inode
->i_op
= &nilfs_file_inode_operations
;
99 inode
->i_fop
= &nilfs_file_operations
;
100 inode
->i_mapping
->a_ops
= &nilfs_aops
;
101 nilfs_mark_inode_dirty(inode
);
102 err
= nilfs_add_nondir(dentry
, inode
);
105 err
= nilfs_transaction_commit(dir
->i_sb
);
107 nilfs_transaction_abort(dir
->i_sb
);
113 nilfs_mknod(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
, dev_t rdev
)
116 struct nilfs_transaction_info ti
;
119 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
122 inode
= nilfs_new_inode(dir
, mode
);
123 err
= PTR_ERR(inode
);
124 if (!IS_ERR(inode
)) {
125 init_special_inode(inode
, inode
->i_mode
, rdev
);
126 nilfs_mark_inode_dirty(inode
);
127 err
= nilfs_add_nondir(dentry
, inode
);
130 err
= nilfs_transaction_commit(dir
->i_sb
);
132 nilfs_transaction_abort(dir
->i_sb
);
137 static int nilfs_symlink(struct inode
*dir
, struct dentry
*dentry
,
140 struct nilfs_transaction_info ti
;
141 struct super_block
*sb
= dir
->i_sb
;
142 unsigned int l
= strlen(symname
) + 1;
146 if (l
> sb
->s_blocksize
)
147 return -ENAMETOOLONG
;
149 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
153 inode
= nilfs_new_inode(dir
, S_IFLNK
| S_IRWXUGO
);
154 err
= PTR_ERR(inode
);
159 inode
->i_op
= &nilfs_symlink_inode_operations
;
160 inode_nohighmem(inode
);
161 inode
->i_mapping
->a_ops
= &nilfs_aops
;
162 err
= page_symlink(inode
, symname
, l
);
166 /* mark_inode_dirty(inode); */
167 /* page_symlink() do this */
169 err
= nilfs_add_nondir(dentry
, inode
);
172 err
= nilfs_transaction_commit(dir
->i_sb
);
174 nilfs_transaction_abort(dir
->i_sb
);
180 nilfs_mark_inode_dirty(inode
);
181 unlock_new_inode(inode
);
186 static int nilfs_link(struct dentry
*old_dentry
, struct inode
*dir
,
187 struct dentry
*dentry
)
189 struct inode
*inode
= d_inode(old_dentry
);
190 struct nilfs_transaction_info ti
;
193 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
197 inode
->i_ctime
= current_time(inode
);
198 inode_inc_link_count(inode
);
201 err
= nilfs_add_link(dentry
, inode
);
203 d_instantiate(dentry
, inode
);
204 err
= nilfs_transaction_commit(dir
->i_sb
);
206 inode_dec_link_count(inode
);
208 nilfs_transaction_abort(dir
->i_sb
);
214 static int nilfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
217 struct nilfs_transaction_info ti
;
220 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 1);
226 inode
= nilfs_new_inode(dir
, S_IFDIR
| mode
);
227 err
= PTR_ERR(inode
);
231 inode
->i_op
= &nilfs_dir_inode_operations
;
232 inode
->i_fop
= &nilfs_dir_operations
;
233 inode
->i_mapping
->a_ops
= &nilfs_aops
;
237 err
= nilfs_make_empty(inode
, dir
);
241 err
= nilfs_add_link(dentry
, inode
);
245 nilfs_mark_inode_dirty(inode
);
246 d_instantiate(dentry
, inode
);
247 unlock_new_inode(inode
);
250 err
= nilfs_transaction_commit(dir
->i_sb
);
252 nilfs_transaction_abort(dir
->i_sb
);
259 nilfs_mark_inode_dirty(inode
);
260 unlock_new_inode(inode
);
264 nilfs_mark_inode_dirty(dir
);
268 static int nilfs_do_unlink(struct inode
*dir
, struct dentry
*dentry
)
271 struct nilfs_dir_entry
*de
;
276 de
= nilfs_find_entry(dir
, &dentry
->d_name
, &page
);
280 inode
= d_inode(dentry
);
282 if (le64_to_cpu(de
->inode
) != inode
->i_ino
)
285 if (!inode
->i_nlink
) {
286 nilfs_msg(inode
->i_sb
, KERN_WARNING
,
287 "deleting nonexistent file (ino=%lu), %d",
288 inode
->i_ino
, inode
->i_nlink
);
291 err
= nilfs_delete_entry(de
, page
);
295 inode
->i_ctime
= dir
->i_ctime
;
302 static int nilfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
304 struct nilfs_transaction_info ti
;
307 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 0);
311 err
= nilfs_do_unlink(dir
, dentry
);
314 nilfs_mark_inode_dirty(dir
);
315 nilfs_mark_inode_dirty(d_inode(dentry
));
316 err
= nilfs_transaction_commit(dir
->i_sb
);
318 nilfs_transaction_abort(dir
->i_sb
);
323 static int nilfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
325 struct inode
*inode
= d_inode(dentry
);
326 struct nilfs_transaction_info ti
;
329 err
= nilfs_transaction_begin(dir
->i_sb
, &ti
, 0);
334 if (nilfs_empty_dir(inode
)) {
335 err
= nilfs_do_unlink(dir
, dentry
);
339 nilfs_mark_inode_dirty(inode
);
341 nilfs_mark_inode_dirty(dir
);
345 err
= nilfs_transaction_commit(dir
->i_sb
);
347 nilfs_transaction_abort(dir
->i_sb
);
352 static int nilfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
353 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 if (flags
& ~RENAME_NOREPLACE
)
368 err
= nilfs_transaction_begin(old_dir
->i_sb
, &ti
, 1);
373 old_de
= nilfs_find_entry(old_dir
, &old_dentry
->d_name
, &old_page
);
377 if (S_ISDIR(old_inode
->i_mode
)) {
379 dir_de
= nilfs_dotdot(old_inode
, &dir_page
);
385 struct page
*new_page
;
386 struct nilfs_dir_entry
*new_de
;
389 if (dir_de
&& !nilfs_empty_dir(new_inode
))
393 new_de
= nilfs_find_entry(new_dir
, &new_dentry
->d_name
, &new_page
);
396 nilfs_set_link(new_dir
, new_de
, new_page
, old_inode
);
397 nilfs_mark_inode_dirty(new_dir
);
398 new_inode
->i_ctime
= current_time(new_inode
);
400 drop_nlink(new_inode
);
401 drop_nlink(new_inode
);
402 nilfs_mark_inode_dirty(new_inode
);
404 err
= nilfs_add_link(new_dentry
, old_inode
);
409 nilfs_mark_inode_dirty(new_dir
);
414 * Like most other Unix systems, set the ctime for inodes on a
417 old_inode
->i_ctime
= current_time(old_inode
);
419 nilfs_delete_entry(old_de
, old_page
);
422 nilfs_set_link(old_inode
, dir_de
, dir_page
, new_dir
);
425 nilfs_mark_inode_dirty(old_dir
);
426 nilfs_mark_inode_dirty(old_inode
);
428 err
= nilfs_transaction_commit(old_dir
->i_sb
);
440 nilfs_transaction_abort(old_dir
->i_sb
);
447 static struct dentry
*nilfs_get_parent(struct dentry
*child
)
451 struct qstr dotdot
= QSTR_INIT("..", 2);
452 struct nilfs_root
*root
;
454 ino
= nilfs_inode_by_name(d_inode(child
), &dotdot
);
456 return ERR_PTR(-ENOENT
);
458 root
= NILFS_I(d_inode(child
))->i_root
;
460 inode
= nilfs_iget(child
->d_sb
, root
, ino
);
462 return ERR_CAST(inode
);
464 return d_obtain_alias(inode
);
467 static struct dentry
*nilfs_get_dentry(struct super_block
*sb
, u64 cno
,
470 struct nilfs_root
*root
;
473 if (ino
< NILFS_FIRST_INO(sb
) && ino
!= NILFS_ROOT_INO
)
474 return ERR_PTR(-ESTALE
);
476 root
= nilfs_lookup_root(sb
->s_fs_info
, cno
);
478 return ERR_PTR(-ESTALE
);
480 inode
= nilfs_iget(sb
, root
, ino
);
481 nilfs_put_root(root
);
484 return ERR_CAST(inode
);
485 if (gen
&& inode
->i_generation
!= gen
) {
487 return ERR_PTR(-ESTALE
);
489 return d_obtain_alias(inode
);
492 static struct dentry
*nilfs_fh_to_dentry(struct super_block
*sb
, struct fid
*fh
,
493 int fh_len
, int fh_type
)
495 struct nilfs_fid
*fid
= (struct nilfs_fid
*)fh
;
497 if (fh_len
< NILFS_FID_SIZE_NON_CONNECTABLE
||
498 (fh_type
!= FILEID_NILFS_WITH_PARENT
&&
499 fh_type
!= FILEID_NILFS_WITHOUT_PARENT
))
502 return nilfs_get_dentry(sb
, fid
->cno
, fid
->ino
, fid
->gen
);
505 static struct dentry
*nilfs_fh_to_parent(struct super_block
*sb
, struct fid
*fh
,
506 int fh_len
, int fh_type
)
508 struct nilfs_fid
*fid
= (struct nilfs_fid
*)fh
;
510 if (fh_len
< NILFS_FID_SIZE_CONNECTABLE
||
511 fh_type
!= FILEID_NILFS_WITH_PARENT
)
514 return nilfs_get_dentry(sb
, fid
->cno
, fid
->parent_ino
, fid
->parent_gen
);
517 static int nilfs_encode_fh(struct inode
*inode
, __u32
*fh
, int *lenp
,
518 struct inode
*parent
)
520 struct nilfs_fid
*fid
= (struct nilfs_fid
*)fh
;
521 struct nilfs_root
*root
= NILFS_I(inode
)->i_root
;
524 if (parent
&& *lenp
< NILFS_FID_SIZE_CONNECTABLE
) {
525 *lenp
= NILFS_FID_SIZE_CONNECTABLE
;
526 return FILEID_INVALID
;
528 if (*lenp
< NILFS_FID_SIZE_NON_CONNECTABLE
) {
529 *lenp
= NILFS_FID_SIZE_NON_CONNECTABLE
;
530 return FILEID_INVALID
;
533 fid
->cno
= root
->cno
;
534 fid
->ino
= inode
->i_ino
;
535 fid
->gen
= inode
->i_generation
;
538 fid
->parent_ino
= parent
->i_ino
;
539 fid
->parent_gen
= parent
->i_generation
;
540 type
= FILEID_NILFS_WITH_PARENT
;
541 *lenp
= NILFS_FID_SIZE_CONNECTABLE
;
543 type
= FILEID_NILFS_WITHOUT_PARENT
;
544 *lenp
= NILFS_FID_SIZE_NON_CONNECTABLE
;
550 const struct inode_operations nilfs_dir_inode_operations
= {
551 .create
= nilfs_create
,
552 .lookup
= nilfs_lookup
,
554 .unlink
= nilfs_unlink
,
555 .symlink
= nilfs_symlink
,
556 .mkdir
= nilfs_mkdir
,
557 .rmdir
= nilfs_rmdir
,
558 .mknod
= nilfs_mknod
,
559 .rename
= nilfs_rename
,
560 .setattr
= nilfs_setattr
,
561 .permission
= nilfs_permission
,
562 .fiemap
= nilfs_fiemap
,
565 const struct inode_operations nilfs_special_inode_operations
= {
566 .setattr
= nilfs_setattr
,
567 .permission
= nilfs_permission
,
570 const struct inode_operations nilfs_symlink_inode_operations
= {
571 .readlink
= generic_readlink
,
572 .get_link
= page_get_link
,
573 .permission
= nilfs_permission
,
576 const struct export_operations nilfs_export_ops
= {
577 .encode_fh
= nilfs_encode_fh
,
578 .fh_to_dentry
= nilfs_fh_to_dentry
,
579 .fh_to_parent
= nilfs_fh_to_parent
,
580 .get_parent
= nilfs_get_parent
,