1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Creates, reads, walks and deletes directory-nodes
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * Portions of this code from linux/fs/ext3/dir.c
12 * Copyright (C) 1992, 1993, 1994, 1995
13 * Remy Card (card@masi.ibp.fr)
14 * Laboratoire MASI - Institut Blaise pascal
15 * Universite Pierre et Marie Curie (Paris VI)
19 * linux/fs/minix/dir.c
21 * Copyright (C) 1991, 1992 Linux Torvalds
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public
25 * License as published by the Free Software Foundation; either
26 * version 2 of the License, or (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31 * General Public License for more details.
33 * You should have received a copy of the GNU General Public
34 * License along with this program; if not, write to the
35 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
36 * Boston, MA 021110-1307, USA.
40 #include <linux/types.h>
41 #include <linux/slab.h>
42 #include <linux/highmem.h>
44 #define MLOG_MASK_PREFIX ML_NAMEI
45 #include <cluster/masklog.h>
52 #include "extent_map.h"
61 #include "buffer_head_io.h"
63 #define NAMEI_RA_CHUNKS 2
64 #define NAMEI_RA_BLOCKS 4
65 #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
66 #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b))
68 static unsigned char ocfs2_filetype_table
[] = {
69 DT_UNKNOWN
, DT_REG
, DT_DIR
, DT_CHR
, DT_BLK
, DT_FIFO
, DT_SOCK
, DT_LNK
72 static int ocfs2_extend_dir(struct ocfs2_super
*osb
,
74 struct buffer_head
*parent_fe_bh
,
75 unsigned int blocks_wanted
,
76 struct buffer_head
**new_de_bh
);
77 static int ocfs2_do_extend_dir(struct super_block
*sb
,
80 struct buffer_head
*parent_fe_bh
,
81 struct ocfs2_alloc_context
*data_ac
,
82 struct ocfs2_alloc_context
*meta_ac
,
83 struct buffer_head
**new_bh
);
86 * bh passed here can be an inode block or a dir data block, depending
87 * on the inode inline data flag.
89 static int ocfs2_check_dir_entry(struct inode
* dir
,
90 struct ocfs2_dir_entry
* de
,
91 struct buffer_head
* bh
,
94 const char *error_msg
= NULL
;
95 const int rlen
= le16_to_cpu(de
->rec_len
);
97 if (rlen
< OCFS2_DIR_REC_LEN(1))
98 error_msg
= "rec_len is smaller than minimal";
99 else if (rlen
% 4 != 0)
100 error_msg
= "rec_len % 4 != 0";
101 else if (rlen
< OCFS2_DIR_REC_LEN(de
->name_len
))
102 error_msg
= "rec_len is too small for name_len";
103 else if (((char *) de
- bh
->b_data
) + rlen
> dir
->i_sb
->s_blocksize
)
104 error_msg
= "directory entry across blocks";
106 if (error_msg
!= NULL
)
107 mlog(ML_ERROR
, "bad entry in directory #%llu: %s - "
108 "offset=%lu, inode=%llu, rec_len=%d, name_len=%d\n",
109 (unsigned long long)OCFS2_I(dir
)->ip_blkno
, error_msg
,
110 offset
, (unsigned long long)le64_to_cpu(de
->inode
), rlen
,
112 return error_msg
== NULL
? 1 : 0;
115 static inline int ocfs2_match(int len
,
116 const char * const name
,
117 struct ocfs2_dir_entry
*de
)
119 if (len
!= de
->name_len
)
123 return !memcmp(name
, de
->name
, len
);
127 * Returns 0 if not found, -1 on failure, and 1 on success
129 static int inline ocfs2_search_dirblock(struct buffer_head
*bh
,
131 const char *name
, int namelen
,
132 unsigned long offset
,
135 struct ocfs2_dir_entry
**res_dir
)
137 struct ocfs2_dir_entry
*de
;
138 char *dlimit
, *de_buf
;
145 dlimit
= de_buf
+ bytes
;
147 while (de_buf
< dlimit
) {
148 /* this code is executed quadratically often */
149 /* do minimal checking `by hand' */
151 de
= (struct ocfs2_dir_entry
*) de_buf
;
153 if (de_buf
+ namelen
<= dlimit
&&
154 ocfs2_match(namelen
, name
, de
)) {
155 /* found a match - just to be sure, do a full check */
156 if (!ocfs2_check_dir_entry(dir
, de
, bh
, offset
)) {
165 /* prevent looping on a bad block */
166 de_len
= le16_to_cpu(de
->rec_len
);
181 static struct buffer_head
*ocfs2_find_entry_id(const char *name
,
184 struct ocfs2_dir_entry
**res_dir
)
187 struct buffer_head
*di_bh
= NULL
;
188 struct ocfs2_dinode
*di
;
189 struct ocfs2_inline_data
*data
;
191 ret
= ocfs2_read_block(OCFS2_SB(dir
->i_sb
), OCFS2_I(dir
)->ip_blkno
,
192 &di_bh
, OCFS2_BH_CACHED
, dir
);
198 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
199 data
= &di
->id2
.i_data
;
201 found
= ocfs2_search_dirblock(di_bh
, dir
, name
, namelen
, 0,
202 data
->id_data
, i_size_read(dir
), res_dir
);
211 static struct buffer_head
*ocfs2_find_entry_el(const char *name
, int namelen
,
213 struct ocfs2_dir_entry
**res_dir
)
215 struct super_block
*sb
;
216 struct buffer_head
*bh_use
[NAMEI_RA_SIZE
];
217 struct buffer_head
*bh
, *ret
= NULL
;
218 unsigned long start
, block
, b
;
219 int ra_max
= 0; /* Number of bh's in the readahead
221 int ra_ptr
= 0; /* Current index into readahead
230 nblocks
= i_size_read(dir
) >> sb
->s_blocksize_bits
;
231 start
= OCFS2_I(dir
)->ip_dir_start_lookup
;
232 if (start
>= nblocks
)
239 * We deal with the read-ahead logic here.
241 if (ra_ptr
>= ra_max
) {
242 /* Refill the readahead buffer */
245 for (ra_max
= 0; ra_max
< NAMEI_RA_SIZE
; ra_max
++) {
247 * Terminate if we reach the end of the
248 * directory and must wrap, or if our
249 * search has finished at this block.
251 if (b
>= nblocks
|| (num
&& block
== start
)) {
252 bh_use
[ra_max
] = NULL
;
257 bh
= ocfs2_bread(dir
, b
++, &err
, 1);
261 if ((bh
= bh_use
[ra_ptr
++]) == NULL
)
264 if (!buffer_uptodate(bh
)) {
265 /* read error, skip block & hope for the best */
266 ocfs2_error(dir
->i_sb
, "reading directory %llu, "
268 (unsigned long long)OCFS2_I(dir
)->ip_blkno
,
273 i
= ocfs2_search_dirblock(bh
, dir
, name
, namelen
,
274 block
<< sb
->s_blocksize_bits
,
275 bh
->b_data
, sb
->s_blocksize
,
278 OCFS2_I(dir
)->ip_dir_start_lookup
= block
;
280 goto cleanup_and_exit
;
284 goto cleanup_and_exit
;
287 if (++block
>= nblocks
)
289 } while (block
!= start
);
292 * If the directory has grown while we were searching, then
293 * search the last part of the directory before giving up.
296 nblocks
= i_size_read(dir
) >> sb
->s_blocksize_bits
;
297 if (block
< nblocks
) {
303 /* Clean up the read-ahead blocks */
304 for (; ra_ptr
< ra_max
; ra_ptr
++)
305 brelse(bh_use
[ra_ptr
]);
312 * Try to find an entry of the provided name within 'dir'.
314 * If nothing was found, NULL is returned. Otherwise, a buffer_head
315 * and pointer to the dir entry are passed back.
317 * Caller can NOT assume anything about the contents of the
318 * buffer_head - it is passed back only so that it can be passed into
319 * any one of the manipulation functions (add entry, delete entry,
320 * etc). As an example, bh in the extent directory case is a data
321 * block, in the inline-data case it actually points to an inode.
323 struct buffer_head
*ocfs2_find_entry(const char *name
, int namelen
,
325 struct ocfs2_dir_entry
**res_dir
)
329 if (OCFS2_I(dir
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
330 return ocfs2_find_entry_id(name
, namelen
, dir
, res_dir
);
332 return ocfs2_find_entry_el(name
, namelen
, dir
, res_dir
);
336 * Update inode number and type of a previously found directory entry.
338 int ocfs2_update_entry(struct inode
*dir
, handle_t
*handle
,
339 struct buffer_head
*de_bh
, struct ocfs2_dir_entry
*de
,
340 struct inode
*new_entry_inode
)
345 * The same code works fine for both inline-data and extent
346 * based directories, so no need to split this up.
349 ret
= ocfs2_journal_access(handle
, dir
, de_bh
,
350 OCFS2_JOURNAL_ACCESS_WRITE
);
356 de
->inode
= cpu_to_le64(OCFS2_I(new_entry_inode
)->ip_blkno
);
357 ocfs2_set_de_type(de
, new_entry_inode
->i_mode
);
359 ocfs2_journal_dirty(handle
, de_bh
);
365 static int __ocfs2_delete_entry(handle_t
*handle
, struct inode
*dir
,
366 struct ocfs2_dir_entry
*de_del
,
367 struct buffer_head
*bh
, char *first_de
,
370 struct ocfs2_dir_entry
*de
, *pde
;
371 int i
, status
= -ENOENT
;
373 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p)\n", handle
, dir
, de_del
, bh
);
377 de
= (struct ocfs2_dir_entry
*) first_de
;
379 if (!ocfs2_check_dir_entry(dir
, de
, bh
, i
)) {
385 status
= ocfs2_journal_access(handle
, dir
, bh
,
386 OCFS2_JOURNAL_ACCESS_WRITE
);
393 le16_add_cpu(&pde
->rec_len
,
394 le16_to_cpu(de
->rec_len
));
398 status
= ocfs2_journal_dirty(handle
, bh
);
401 i
+= le16_to_cpu(de
->rec_len
);
403 de
= (struct ocfs2_dir_entry
*)((char *)de
+ le16_to_cpu(de
->rec_len
));
410 static inline int ocfs2_delete_entry_id(handle_t
*handle
,
412 struct ocfs2_dir_entry
*de_del
,
413 struct buffer_head
*bh
)
416 struct buffer_head
*di_bh
= NULL
;
417 struct ocfs2_dinode
*di
;
418 struct ocfs2_inline_data
*data
;
420 ret
= ocfs2_read_block(OCFS2_SB(dir
->i_sb
), OCFS2_I(dir
)->ip_blkno
,
421 &di_bh
, OCFS2_BH_CACHED
, dir
);
427 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
428 data
= &di
->id2
.i_data
;
430 ret
= __ocfs2_delete_entry(handle
, dir
, de_del
, bh
, data
->id_data
,
438 static inline int ocfs2_delete_entry_el(handle_t
*handle
,
440 struct ocfs2_dir_entry
*de_del
,
441 struct buffer_head
*bh
)
443 return __ocfs2_delete_entry(handle
, dir
, de_del
, bh
, bh
->b_data
,
448 * ocfs2_delete_entry deletes a directory entry by merging it with the
451 int ocfs2_delete_entry(handle_t
*handle
,
453 struct ocfs2_dir_entry
*de_del
,
454 struct buffer_head
*bh
)
456 if (OCFS2_I(dir
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
457 return ocfs2_delete_entry_id(handle
, dir
, de_del
, bh
);
459 return ocfs2_delete_entry_el(handle
, dir
, de_del
, bh
);
463 * Check whether 'de' has enough room to hold an entry of
464 * 'new_rec_len' bytes.
466 static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry
*de
,
467 unsigned int new_rec_len
)
469 unsigned int de_really_used
;
471 /* Check whether this is an empty record with enough space */
472 if (le64_to_cpu(de
->inode
) == 0 &&
473 le16_to_cpu(de
->rec_len
) >= new_rec_len
)
477 * Record might have free space at the end which we can
480 de_really_used
= OCFS2_DIR_REC_LEN(de
->name_len
);
481 if (le16_to_cpu(de
->rec_len
) >= (de_really_used
+ new_rec_len
))
487 /* we don't always have a dentry for what we want to add, so people
488 * like orphan dir can call this instead.
490 * If you pass me insert_bh, I'll skip the search of the other dir
491 * blocks and put the record in there.
493 int __ocfs2_add_entry(handle_t
*handle
,
495 const char *name
, int namelen
,
496 struct inode
*inode
, u64 blkno
,
497 struct buffer_head
*parent_fe_bh
,
498 struct buffer_head
*insert_bh
)
500 unsigned long offset
;
501 unsigned short rec_len
;
502 struct ocfs2_dir_entry
*de
, *de1
;
503 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)parent_fe_bh
->b_data
;
504 struct super_block
*sb
= dir
->i_sb
;
506 unsigned int size
= sb
->s_blocksize
;
507 char *data_start
= insert_bh
->b_data
;
514 if (OCFS2_I(dir
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
515 data_start
= di
->id2
.i_data
.id_data
;
516 size
= i_size_read(dir
);
518 BUG_ON(insert_bh
!= parent_fe_bh
);
521 rec_len
= OCFS2_DIR_REC_LEN(namelen
);
523 de
= (struct ocfs2_dir_entry
*) data_start
;
525 BUG_ON((char *)de
>= (size
+ data_start
));
527 /* These checks should've already been passed by the
528 * prepare function, but I guess we can leave them
530 if (!ocfs2_check_dir_entry(dir
, de
, insert_bh
, offset
)) {
534 if (ocfs2_match(namelen
, name
, de
)) {
539 if (ocfs2_dirent_would_fit(de
, rec_len
)) {
540 dir
->i_mtime
= dir
->i_ctime
= CURRENT_TIME
;
541 retval
= ocfs2_mark_inode_dirty(handle
, dir
, parent_fe_bh
);
547 status
= ocfs2_journal_access(handle
, dir
, insert_bh
,
548 OCFS2_JOURNAL_ACCESS_WRITE
);
549 /* By now the buffer is marked for journaling */
550 offset
+= le16_to_cpu(de
->rec_len
);
551 if (le64_to_cpu(de
->inode
)) {
552 de1
= (struct ocfs2_dir_entry
*)((char *) de
+
553 OCFS2_DIR_REC_LEN(de
->name_len
));
555 cpu_to_le16(le16_to_cpu(de
->rec_len
) -
556 OCFS2_DIR_REC_LEN(de
->name_len
));
557 de
->rec_len
= cpu_to_le16(OCFS2_DIR_REC_LEN(de
->name_len
));
560 de
->file_type
= OCFS2_FT_UNKNOWN
;
562 de
->inode
= cpu_to_le64(blkno
);
563 ocfs2_set_de_type(de
, inode
->i_mode
);
566 de
->name_len
= namelen
;
567 memcpy(de
->name
, name
, namelen
);
570 status
= ocfs2_journal_dirty(handle
, insert_bh
);
574 offset
+= le16_to_cpu(de
->rec_len
);
575 de
= (struct ocfs2_dir_entry
*) ((char *) de
+ le16_to_cpu(de
->rec_len
));
578 /* when you think about it, the assert above should prevent us
579 * from ever getting here. */
587 static int ocfs2_dir_foreach_blk_id(struct inode
*inode
,
589 loff_t
*f_pos
, void *priv
,
590 filldir_t filldir
, int *filldir_err
)
592 int ret
, i
, filldir_ret
;
593 unsigned long offset
= *f_pos
;
594 struct buffer_head
*di_bh
= NULL
;
595 struct ocfs2_dinode
*di
;
596 struct ocfs2_inline_data
*data
;
597 struct ocfs2_dir_entry
*de
;
599 ret
= ocfs2_read_block(OCFS2_SB(inode
->i_sb
), OCFS2_I(inode
)->ip_blkno
,
600 &di_bh
, OCFS2_BH_CACHED
, inode
);
602 mlog(ML_ERROR
, "Unable to read inode block for dir %llu\n",
603 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
607 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
608 data
= &di
->id2
.i_data
;
610 while (*f_pos
< i_size_read(inode
)) {
612 /* If the dir block has changed since the last call to
613 * readdir(2), then we might be pointing to an invalid
614 * dirent right now. Scan from the start of the block
616 if (*f_version
!= inode
->i_version
) {
617 for (i
= 0; i
< i_size_read(inode
) && i
< offset
; ) {
618 de
= (struct ocfs2_dir_entry
*)
620 /* It's too expensive to do a full
621 * dirent test each time round this
622 * loop, but we do have to test at
623 * least that it is non-zero. A
624 * failure will be detected in the
625 * dirent test below. */
626 if (le16_to_cpu(de
->rec_len
) <
627 OCFS2_DIR_REC_LEN(1))
629 i
+= le16_to_cpu(de
->rec_len
);
632 *f_version
= inode
->i_version
;
635 de
= (struct ocfs2_dir_entry
*) (data
->id_data
+ *f_pos
);
636 if (!ocfs2_check_dir_entry(inode
, de
, di_bh
, *f_pos
)) {
637 /* On error, skip the f_pos to the end. */
638 *f_pos
= i_size_read(inode
);
641 offset
+= le16_to_cpu(de
->rec_len
);
642 if (le64_to_cpu(de
->inode
)) {
643 /* We might block in the next section
644 * if the data destination is
645 * currently swapped out. So, use a
646 * version stamp to detect whether or
647 * not the directory has been modified
648 * during the copy operation.
650 u64 version
= *f_version
;
651 unsigned char d_type
= DT_UNKNOWN
;
653 if (de
->file_type
< OCFS2_FT_MAX
)
654 d_type
= ocfs2_filetype_table
[de
->file_type
];
656 filldir_ret
= filldir(priv
, de
->name
,
659 le64_to_cpu(de
->inode
),
663 *filldir_err
= filldir_ret
;
666 if (version
!= *f_version
)
669 *f_pos
+= le16_to_cpu(de
->rec_len
);
678 static int ocfs2_dir_foreach_blk_el(struct inode
*inode
,
680 loff_t
*f_pos
, void *priv
,
681 filldir_t filldir
, int *filldir_err
)
684 unsigned long offset
, blk
, last_ra_blk
= 0;
686 struct buffer_head
* bh
, * tmp
;
687 struct ocfs2_dir_entry
* de
;
689 struct super_block
* sb
= inode
->i_sb
;
690 unsigned int ra_sectors
= 16;
695 offset
= (*f_pos
) & (sb
->s_blocksize
- 1);
697 while (!error
&& !stored
&& *f_pos
< i_size_read(inode
)) {
698 blk
= (*f_pos
) >> sb
->s_blocksize_bits
;
699 bh
= ocfs2_bread(inode
, blk
, &err
, 0);
702 "directory #%llu contains a hole at offset %lld\n",
703 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
705 *f_pos
+= sb
->s_blocksize
- offset
;
709 /* The idea here is to begin with 8k read-ahead and to stay
710 * 4k ahead of our current position.
712 * TODO: Use the pagecache for this. We just need to
713 * make sure it's cluster-safe... */
715 || (((last_ra_blk
- blk
) << 9) <= (ra_sectors
/ 2))) {
716 for (i
= ra_sectors
>> (sb
->s_blocksize_bits
- 9);
718 tmp
= ocfs2_bread(inode
, ++blk
, &err
, 1);
727 /* If the dir block has changed since the last call to
728 * readdir(2), then we might be pointing to an invalid
729 * dirent right now. Scan from the start of the block
731 if (*f_version
!= inode
->i_version
) {
732 for (i
= 0; i
< sb
->s_blocksize
&& i
< offset
; ) {
733 de
= (struct ocfs2_dir_entry
*) (bh
->b_data
+ i
);
734 /* It's too expensive to do a full
735 * dirent test each time round this
736 * loop, but we do have to test at
737 * least that it is non-zero. A
738 * failure will be detected in the
739 * dirent test below. */
740 if (le16_to_cpu(de
->rec_len
) <
741 OCFS2_DIR_REC_LEN(1))
743 i
+= le16_to_cpu(de
->rec_len
);
746 *f_pos
= ((*f_pos
) & ~(sb
->s_blocksize
- 1))
748 *f_version
= inode
->i_version
;
751 while (!error
&& *f_pos
< i_size_read(inode
)
752 && offset
< sb
->s_blocksize
) {
753 de
= (struct ocfs2_dir_entry
*) (bh
->b_data
+ offset
);
754 if (!ocfs2_check_dir_entry(inode
, de
, bh
, offset
)) {
755 /* On error, skip the f_pos to the
757 *f_pos
= ((*f_pos
) | (sb
->s_blocksize
- 1)) + 1;
761 offset
+= le16_to_cpu(de
->rec_len
);
762 if (le64_to_cpu(de
->inode
)) {
763 /* We might block in the next section
764 * if the data destination is
765 * currently swapped out. So, use a
766 * version stamp to detect whether or
767 * not the directory has been modified
768 * during the copy operation.
770 unsigned long version
= *f_version
;
771 unsigned char d_type
= DT_UNKNOWN
;
773 if (de
->file_type
< OCFS2_FT_MAX
)
774 d_type
= ocfs2_filetype_table
[de
->file_type
];
775 error
= filldir(priv
, de
->name
,
778 le64_to_cpu(de
->inode
),
782 *filldir_err
= error
;
785 if (version
!= *f_version
)
789 *f_pos
+= le16_to_cpu(de
->rec_len
);
800 static int ocfs2_dir_foreach_blk(struct inode
*inode
, u64
*f_version
,
801 loff_t
*f_pos
, void *priv
, filldir_t filldir
,
804 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
805 return ocfs2_dir_foreach_blk_id(inode
, f_version
, f_pos
, priv
,
806 filldir
, filldir_err
);
808 return ocfs2_dir_foreach_blk_el(inode
, f_version
, f_pos
, priv
, filldir
,
813 * This is intended to be called from inside other kernel functions,
814 * so we fake some arguments.
816 int ocfs2_dir_foreach(struct inode
*inode
, loff_t
*f_pos
, void *priv
,
819 int ret
= 0, filldir_err
= 0;
820 u64 version
= inode
->i_version
;
822 while (*f_pos
< i_size_read(inode
)) {
823 ret
= ocfs2_dir_foreach_blk(inode
, &version
, f_pos
, priv
,
824 filldir
, &filldir_err
);
825 if (ret
|| filldir_err
)
839 int ocfs2_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
842 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
845 mlog_entry("dirino=%llu\n",
846 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
848 error
= ocfs2_inode_lock_atime(inode
, filp
->f_vfsmnt
, &lock_level
);
849 if (lock_level
&& error
>= 0) {
850 /* We release EX lock which used to update atime
851 * and get PR lock again to reduce contention
852 * on commonly accessed directories. */
853 ocfs2_inode_unlock(inode
, 1);
855 error
= ocfs2_inode_lock(inode
, NULL
, 0);
858 if (error
!= -ENOENT
)
860 /* we haven't got any yet, so propagate the error. */
864 error
= ocfs2_dir_foreach_blk(inode
, &filp
->f_version
, &filp
->f_pos
,
865 dirent
, filldir
, NULL
);
867 ocfs2_inode_unlock(inode
, lock_level
);
876 * NOTE: this should always be called with parent dir i_mutex taken.
878 int ocfs2_find_files_on_disk(const char *name
,
882 struct buffer_head
**dirent_bh
,
883 struct ocfs2_dir_entry
**dirent
)
885 int status
= -ENOENT
;
887 mlog_entry("(name=%.*s, blkno=%p, inode=%p, dirent_bh=%p, dirent=%p)\n",
888 namelen
, name
, blkno
, inode
, dirent_bh
, dirent
);
890 *dirent_bh
= ocfs2_find_entry(name
, namelen
, inode
, dirent
);
891 if (!*dirent_bh
|| !*dirent
) {
896 *blkno
= le64_to_cpu((*dirent
)->inode
);
913 * Convenience function for callers which just want the block number
914 * mapped to a name and don't require the full dirent info, etc.
916 int ocfs2_lookup_ino_from_name(struct inode
*dir
, const char *name
,
917 int namelen
, u64
*blkno
)
920 struct buffer_head
*bh
= NULL
;
921 struct ocfs2_dir_entry
*dirent
= NULL
;
923 ret
= ocfs2_find_files_on_disk(name
, namelen
, blkno
, dir
, &bh
, &dirent
);
929 /* Check for a name within a directory.
931 * Return 0 if the name does not exist
932 * Return -EEXIST if the directory contains the name
934 * Callers should have i_mutex + a cluster lock on dir
936 int ocfs2_check_dir_for_entry(struct inode
*dir
,
941 struct buffer_head
*dirent_bh
= NULL
;
942 struct ocfs2_dir_entry
*dirent
= NULL
;
944 mlog_entry("dir %llu, name '%.*s'\n",
945 (unsigned long long)OCFS2_I(dir
)->ip_blkno
, namelen
, name
);
948 dirent_bh
= ocfs2_find_entry(name
, namelen
, dir
, &dirent
);
961 struct ocfs2_empty_dir_priv
{
963 unsigned seen_dot_dot
;
966 static int ocfs2_empty_dir_filldir(void *priv
, const char *name
, int name_len
,
967 loff_t pos
, u64 ino
, unsigned type
)
969 struct ocfs2_empty_dir_priv
*p
= priv
;
972 * Check the positions of "." and ".." records to be sure
973 * they're in the correct place.
975 if (name_len
== 1 && !strncmp(".", name
, 1) && pos
== 0) {
980 if (name_len
== 2 && !strncmp("..", name
, 2) &&
981 pos
== OCFS2_DIR_REC_LEN(1)) {
990 * routine to check that the specified directory is empty (for rmdir)
992 * Returns 1 if dir is empty, zero otherwise.
994 int ocfs2_empty_dir(struct inode
*inode
)
998 struct ocfs2_empty_dir_priv priv
;
1000 memset(&priv
, 0, sizeof(priv
));
1002 ret
= ocfs2_dir_foreach(inode
, &start
, &priv
, ocfs2_empty_dir_filldir
);
1006 if (!priv
.seen_dot
|| !priv
.seen_dot_dot
) {
1007 mlog(ML_ERROR
, "bad directory (dir #%llu) - no `.' or `..'\n",
1008 (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
1010 * XXX: Is it really safe to allow an unlink to continue?
1015 return !priv
.seen_other
;
1018 static void ocfs2_fill_initial_dirents(struct inode
*inode
,
1019 struct inode
*parent
,
1020 char *start
, unsigned int size
)
1022 struct ocfs2_dir_entry
*de
= (struct ocfs2_dir_entry
*)start
;
1024 de
->inode
= cpu_to_le64(OCFS2_I(inode
)->ip_blkno
);
1027 cpu_to_le16(OCFS2_DIR_REC_LEN(de
->name_len
));
1028 strcpy(de
->name
, ".");
1029 ocfs2_set_de_type(de
, S_IFDIR
);
1031 de
= (struct ocfs2_dir_entry
*) ((char *)de
+ le16_to_cpu(de
->rec_len
));
1032 de
->inode
= cpu_to_le64(OCFS2_I(parent
)->ip_blkno
);
1033 de
->rec_len
= cpu_to_le16(size
- OCFS2_DIR_REC_LEN(1));
1035 strcpy(de
->name
, "..");
1036 ocfs2_set_de_type(de
, S_IFDIR
);
1040 * This works together with code in ocfs2_mknod_locked() which sets
1041 * the inline-data flag and initializes the inline-data section.
1043 static int ocfs2_fill_new_dir_id(struct ocfs2_super
*osb
,
1045 struct inode
*parent
,
1046 struct inode
*inode
,
1047 struct buffer_head
*di_bh
)
1050 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
1051 struct ocfs2_inline_data
*data
= &di
->id2
.i_data
;
1052 unsigned int size
= le16_to_cpu(data
->id_count
);
1054 ret
= ocfs2_journal_access(handle
, inode
, di_bh
,
1055 OCFS2_JOURNAL_ACCESS_WRITE
);
1061 ocfs2_fill_initial_dirents(inode
, parent
, data
->id_data
, size
);
1063 ocfs2_journal_dirty(handle
, di_bh
);
1069 i_size_write(inode
, size
);
1071 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
1073 ret
= ocfs2_mark_inode_dirty(handle
, inode
, di_bh
);
1081 static int ocfs2_fill_new_dir_el(struct ocfs2_super
*osb
,
1083 struct inode
*parent
,
1084 struct inode
*inode
,
1085 struct buffer_head
*fe_bh
,
1086 struct ocfs2_alloc_context
*data_ac
)
1089 struct buffer_head
*new_bh
= NULL
;
1093 status
= ocfs2_do_extend_dir(osb
->sb
, handle
, inode
, fe_bh
,
1094 data_ac
, NULL
, &new_bh
);
1100 ocfs2_set_new_buffer_uptodate(inode
, new_bh
);
1102 status
= ocfs2_journal_access(handle
, inode
, new_bh
,
1103 OCFS2_JOURNAL_ACCESS_CREATE
);
1108 memset(new_bh
->b_data
, 0, osb
->sb
->s_blocksize
);
1110 ocfs2_fill_initial_dirents(inode
, parent
, new_bh
->b_data
,
1111 osb
->sb
->s_blocksize
);
1113 status
= ocfs2_journal_dirty(handle
, new_bh
);
1119 i_size_write(inode
, inode
->i_sb
->s_blocksize
);
1121 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
1122 status
= ocfs2_mark_inode_dirty(handle
, inode
, fe_bh
);
1137 int ocfs2_fill_new_dir(struct ocfs2_super
*osb
,
1139 struct inode
*parent
,
1140 struct inode
*inode
,
1141 struct buffer_head
*fe_bh
,
1142 struct ocfs2_alloc_context
*data_ac
)
1144 BUG_ON(!ocfs2_supports_inline_data(osb
) && data_ac
== NULL
);
1146 if (OCFS2_I(inode
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
)
1147 return ocfs2_fill_new_dir_id(osb
, handle
, parent
, inode
, fe_bh
);
1149 return ocfs2_fill_new_dir_el(osb
, handle
, parent
, inode
, fe_bh
,
1153 static void ocfs2_expand_last_dirent(char *start
, unsigned int old_size
,
1154 unsigned int new_size
)
1156 struct ocfs2_dir_entry
*de
;
1157 struct ocfs2_dir_entry
*prev_de
;
1158 char *de_buf
, *limit
;
1159 unsigned int bytes
= new_size
- old_size
;
1161 limit
= start
+ old_size
;
1163 de
= (struct ocfs2_dir_entry
*)de_buf
;
1166 de_buf
+= le16_to_cpu(de
->rec_len
);
1167 de
= (struct ocfs2_dir_entry
*)de_buf
;
1168 } while (de_buf
< limit
);
1170 le16_add_cpu(&prev_de
->rec_len
, bytes
);
1174 * We allocate enough clusters to fulfill "blocks_wanted", but set
1175 * i_size to exactly one block. Ocfs2_extend_dir() will handle the
1176 * rest automatically for us.
1178 * *first_block_bh is a pointer to the 1st data block allocated to the
1181 static int ocfs2_expand_inline_dir(struct inode
*dir
, struct buffer_head
*di_bh
,
1182 unsigned int blocks_wanted
,
1183 struct buffer_head
**first_block_bh
)
1185 int ret
, credits
= OCFS2_INLINE_TO_EXTENTS_CREDITS
;
1186 u32 alloc
, bit_off
, len
;
1187 struct super_block
*sb
= dir
->i_sb
;
1188 u64 blkno
, bytes
= blocks_wanted
<< sb
->s_blocksize_bits
;
1189 struct ocfs2_super
*osb
= OCFS2_SB(dir
->i_sb
);
1190 struct ocfs2_inode_info
*oi
= OCFS2_I(dir
);
1191 struct ocfs2_alloc_context
*data_ac
;
1192 struct buffer_head
*dirdata_bh
= NULL
;
1193 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
1196 alloc
= ocfs2_clusters_for_bytes(sb
, bytes
);
1199 * We should never need more than 2 clusters for this -
1200 * maximum dirent size is far less than one block. In fact,
1201 * the only time we'd need more than one cluster is if
1202 * blocksize == clustersize and the dirent won't fit in the
1203 * extra space that the expansion to a single block gives. As
1204 * of today, that only happens on 4k/4k file systems.
1208 ret
= ocfs2_reserve_clusters(osb
, alloc
, &data_ac
);
1214 down_write(&oi
->ip_alloc_sem
);
1217 * Prepare for worst case allocation scenario of two separate
1221 credits
+= OCFS2_SUBALLOC_ALLOC
;
1223 handle
= ocfs2_start_trans(osb
, credits
);
1224 if (IS_ERR(handle
)) {
1225 ret
= PTR_ERR(handle
);
1231 * Try to claim as many clusters as the bitmap can give though
1232 * if we only get one now, that's enough to continue. The rest
1233 * will be claimed after the conversion to extents.
1235 ret
= ocfs2_claim_clusters(osb
, handle
, data_ac
, 1, &bit_off
, &len
);
1242 * Operations are carefully ordered so that we set up the new
1243 * data block first. The conversion from inline data to
1246 blkno
= ocfs2_clusters_to_blocks(dir
->i_sb
, bit_off
);
1247 dirdata_bh
= sb_getblk(sb
, blkno
);
1254 ocfs2_set_new_buffer_uptodate(dir
, dirdata_bh
);
1256 ret
= ocfs2_journal_access(handle
, dir
, dirdata_bh
,
1257 OCFS2_JOURNAL_ACCESS_CREATE
);
1263 memcpy(dirdata_bh
->b_data
, di
->id2
.i_data
.id_data
, i_size_read(dir
));
1264 memset(dirdata_bh
->b_data
+ i_size_read(dir
), 0,
1265 sb
->s_blocksize
- i_size_read(dir
));
1266 ocfs2_expand_last_dirent(dirdata_bh
->b_data
, i_size_read(dir
),
1269 ret
= ocfs2_journal_dirty(handle
, dirdata_bh
);
1276 * Set extent, i_size, etc on the directory. After this, the
1277 * inode should contain the same exact dirents as before and
1278 * be fully accessible from system calls.
1280 * We let the later dirent insert modify c/mtime - to the user
1281 * the data hasn't changed.
1283 ret
= ocfs2_journal_access(handle
, dir
, di_bh
,
1284 OCFS2_JOURNAL_ACCESS_CREATE
);
1290 spin_lock(&oi
->ip_lock
);
1291 oi
->ip_dyn_features
&= ~OCFS2_INLINE_DATA_FL
;
1292 di
->i_dyn_features
= cpu_to_le16(oi
->ip_dyn_features
);
1293 spin_unlock(&oi
->ip_lock
);
1295 ocfs2_dinode_new_extent_list(dir
, di
);
1297 i_size_write(dir
, sb
->s_blocksize
);
1298 dir
->i_mtime
= dir
->i_ctime
= CURRENT_TIME
;
1300 di
->i_size
= cpu_to_le64(sb
->s_blocksize
);
1301 di
->i_ctime
= di
->i_mtime
= cpu_to_le64(dir
->i_ctime
.tv_sec
);
1302 di
->i_ctime_nsec
= di
->i_mtime_nsec
= cpu_to_le32(dir
->i_ctime
.tv_nsec
);
1303 dir
->i_blocks
= ocfs2_inode_sector_count(dir
);
1306 * This should never fail as our extent list is empty and all
1307 * related blocks have been journaled already.
1309 ret
= ocfs2_insert_extent(osb
, handle
, dir
, di_bh
, 0, blkno
, len
, 0,
1316 ret
= ocfs2_journal_dirty(handle
, di_bh
);
1323 * We asked for two clusters, but only got one in the 1st
1324 * pass. Claim the 2nd cluster as a separate extent.
1327 ret
= ocfs2_claim_clusters(osb
, handle
, data_ac
, 1, &bit_off
,
1333 blkno
= ocfs2_clusters_to_blocks(dir
->i_sb
, bit_off
);
1335 ret
= ocfs2_insert_extent(osb
, handle
, dir
, di_bh
, 1, blkno
,
1343 *first_block_bh
= dirdata_bh
;
1347 ocfs2_commit_trans(osb
, handle
);
1350 up_write(&oi
->ip_alloc_sem
);
1354 ocfs2_free_alloc_context(data_ac
);
1361 /* returns a bh of the 1st new block in the allocation. */
1362 static int ocfs2_do_extend_dir(struct super_block
*sb
,
1365 struct buffer_head
*parent_fe_bh
,
1366 struct ocfs2_alloc_context
*data_ac
,
1367 struct ocfs2_alloc_context
*meta_ac
,
1368 struct buffer_head
**new_bh
)
1372 u64 p_blkno
, v_blkno
;
1374 spin_lock(&OCFS2_I(dir
)->ip_lock
);
1375 extend
= (i_size_read(dir
) == ocfs2_clusters_to_bytes(sb
, OCFS2_I(dir
)->ip_clusters
));
1376 spin_unlock(&OCFS2_I(dir
)->ip_lock
);
1379 u32 offset
= OCFS2_I(dir
)->ip_clusters
;
1381 status
= ocfs2_do_extend_allocation(OCFS2_SB(sb
), dir
, &offset
,
1382 1, 0, parent_fe_bh
, handle
,
1383 data_ac
, meta_ac
, NULL
);
1384 BUG_ON(status
== -EAGAIN
);
1391 v_blkno
= ocfs2_blocks_for_bytes(sb
, i_size_read(dir
));
1392 status
= ocfs2_extent_map_get_blocks(dir
, v_blkno
, &p_blkno
, NULL
, NULL
);
1398 *new_bh
= sb_getblk(sb
, p_blkno
);
1411 * Assumes you already have a cluster lock on the directory.
1413 * 'blocks_wanted' is only used if we have an inline directory which
1414 * is to be turned into an extent based one. The size of the dirent to
1415 * insert might be larger than the space gained by growing to just one
1416 * block, so we may have to grow the inode by two blocks in that case.
1418 static int ocfs2_extend_dir(struct ocfs2_super
*osb
,
1420 struct buffer_head
*parent_fe_bh
,
1421 unsigned int blocks_wanted
,
1422 struct buffer_head
**new_de_bh
)
1425 int credits
, num_free_extents
, drop_alloc_sem
= 0;
1427 struct ocfs2_dinode
*fe
= (struct ocfs2_dinode
*) parent_fe_bh
->b_data
;
1428 struct ocfs2_alloc_context
*data_ac
= NULL
;
1429 struct ocfs2_alloc_context
*meta_ac
= NULL
;
1430 handle_t
*handle
= NULL
;
1431 struct buffer_head
*new_bh
= NULL
;
1432 struct ocfs2_dir_entry
* de
;
1433 struct super_block
*sb
= osb
->sb
;
1437 if (OCFS2_I(dir
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1438 status
= ocfs2_expand_inline_dir(dir
, parent_fe_bh
,
1439 blocks_wanted
, &new_bh
);
1445 if (blocks_wanted
== 1) {
1447 * If the new dirent will fit inside the space
1448 * created by pushing out to one block, then
1449 * we can complete the operation
1450 * here. Otherwise we have to expand i_size
1451 * and format the 2nd block below.
1453 BUG_ON(new_bh
== NULL
);
1458 * Get rid of 'new_bh' - we want to format the 2nd
1459 * data block and return that instead.
1464 dir_i_size
= i_size_read(dir
);
1465 credits
= OCFS2_SIMPLE_DIR_EXTEND_CREDITS
;
1469 dir_i_size
= i_size_read(dir
);
1470 mlog(0, "extending dir %llu (i_size = %lld)\n",
1471 (unsigned long long)OCFS2_I(dir
)->ip_blkno
, dir_i_size
);
1473 /* dir->i_size is always block aligned. */
1474 spin_lock(&OCFS2_I(dir
)->ip_lock
);
1475 if (dir_i_size
== ocfs2_clusters_to_bytes(sb
, OCFS2_I(dir
)->ip_clusters
)) {
1476 spin_unlock(&OCFS2_I(dir
)->ip_lock
);
1477 num_free_extents
= ocfs2_num_free_extents(osb
, dir
, fe
);
1478 if (num_free_extents
< 0) {
1479 status
= num_free_extents
;
1484 if (!num_free_extents
) {
1485 status
= ocfs2_reserve_new_metadata(osb
, fe
, &meta_ac
);
1487 if (status
!= -ENOSPC
)
1493 status
= ocfs2_reserve_clusters(osb
, 1, &data_ac
);
1495 if (status
!= -ENOSPC
)
1500 credits
= ocfs2_calc_extend_credits(sb
, fe
, 1);
1502 spin_unlock(&OCFS2_I(dir
)->ip_lock
);
1503 credits
= OCFS2_SIMPLE_DIR_EXTEND_CREDITS
;
1507 down_write(&OCFS2_I(dir
)->ip_alloc_sem
);
1510 handle
= ocfs2_start_trans(osb
, credits
);
1511 if (IS_ERR(handle
)) {
1512 status
= PTR_ERR(handle
);
1518 status
= ocfs2_do_extend_dir(osb
->sb
, handle
, dir
, parent_fe_bh
,
1519 data_ac
, meta_ac
, &new_bh
);
1525 ocfs2_set_new_buffer_uptodate(dir
, new_bh
);
1527 status
= ocfs2_journal_access(handle
, dir
, new_bh
,
1528 OCFS2_JOURNAL_ACCESS_CREATE
);
1533 memset(new_bh
->b_data
, 0, sb
->s_blocksize
);
1534 de
= (struct ocfs2_dir_entry
*) new_bh
->b_data
;
1536 de
->rec_len
= cpu_to_le16(sb
->s_blocksize
);
1537 status
= ocfs2_journal_dirty(handle
, new_bh
);
1543 dir_i_size
+= dir
->i_sb
->s_blocksize
;
1544 i_size_write(dir
, dir_i_size
);
1545 dir
->i_blocks
= ocfs2_inode_sector_count(dir
);
1546 status
= ocfs2_mark_inode_dirty(handle
, dir
, parent_fe_bh
);
1553 *new_de_bh
= new_bh
;
1557 up_write(&OCFS2_I(dir
)->ip_alloc_sem
);
1559 ocfs2_commit_trans(osb
, handle
);
1562 ocfs2_free_alloc_context(data_ac
);
1564 ocfs2_free_alloc_context(meta_ac
);
1573 static int ocfs2_find_dir_space_id(struct inode
*dir
, struct buffer_head
*di_bh
,
1574 const char *name
, int namelen
,
1575 struct buffer_head
**ret_de_bh
,
1576 unsigned int *blocks_wanted
)
1579 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
1580 struct ocfs2_dir_entry
*de
, *last_de
= NULL
;
1581 char *de_buf
, *limit
;
1582 unsigned long offset
= 0;
1583 unsigned int rec_len
, new_rec_len
;
1585 de_buf
= di
->id2
.i_data
.id_data
;
1586 limit
= de_buf
+ i_size_read(dir
);
1587 rec_len
= OCFS2_DIR_REC_LEN(namelen
);
1589 while (de_buf
< limit
) {
1590 de
= (struct ocfs2_dir_entry
*)de_buf
;
1592 if (!ocfs2_check_dir_entry(dir
, de
, di_bh
, offset
)) {
1596 if (ocfs2_match(namelen
, name
, de
)) {
1600 if (ocfs2_dirent_would_fit(de
, rec_len
)) {
1601 /* Ok, we found a spot. Return this bh and let
1602 * the caller actually fill it in. */
1610 de_buf
+= le16_to_cpu(de
->rec_len
);
1611 offset
+= le16_to_cpu(de
->rec_len
);
1615 * We're going to require expansion of the directory - figure
1616 * out how many blocks we'll need so that a place for the
1617 * dirent can be found.
1620 new_rec_len
= le16_to_cpu(last_de
->rec_len
) + (dir
->i_sb
->s_blocksize
- i_size_read(dir
));
1621 if (new_rec_len
< (rec_len
+ OCFS2_DIR_REC_LEN(last_de
->name_len
)))
1629 static int ocfs2_find_dir_space_el(struct inode
*dir
, const char *name
,
1630 int namelen
, struct buffer_head
**ret_de_bh
)
1632 unsigned long offset
;
1633 struct buffer_head
*bh
= NULL
;
1634 unsigned short rec_len
;
1635 struct ocfs2_dir_entry
*de
;
1636 struct super_block
*sb
= dir
->i_sb
;
1639 bh
= ocfs2_bread(dir
, 0, &status
, 0);
1645 rec_len
= OCFS2_DIR_REC_LEN(namelen
);
1647 de
= (struct ocfs2_dir_entry
*) bh
->b_data
;
1649 if ((char *)de
>= sb
->s_blocksize
+ bh
->b_data
) {
1653 if (i_size_read(dir
) <= offset
) {
1655 * Caller will have to expand this
1661 bh
= ocfs2_bread(dir
,
1662 offset
>> sb
->s_blocksize_bits
,
1669 /* move to next block */
1670 de
= (struct ocfs2_dir_entry
*) bh
->b_data
;
1672 if (!ocfs2_check_dir_entry(dir
, de
, bh
, offset
)) {
1676 if (ocfs2_match(namelen
, name
, de
)) {
1680 if (ocfs2_dirent_would_fit(de
, rec_len
)) {
1681 /* Ok, we found a spot. Return this bh and let
1682 * the caller actually fill it in. */
1688 offset
+= le16_to_cpu(de
->rec_len
);
1689 de
= (struct ocfs2_dir_entry
*)((char *) de
+ le16_to_cpu(de
->rec_len
));
1701 int ocfs2_prepare_dir_for_insert(struct ocfs2_super
*osb
,
1703 struct buffer_head
*parent_fe_bh
,
1706 struct buffer_head
**ret_de_bh
)
1709 unsigned int blocks_wanted
= 1;
1710 struct buffer_head
*bh
= NULL
;
1712 mlog(0, "getting ready to insert namelen %d into dir %llu\n",
1713 namelen
, (unsigned long long)OCFS2_I(dir
)->ip_blkno
);
1723 if (OCFS2_I(dir
)->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1724 ret
= ocfs2_find_dir_space_id(dir
, parent_fe_bh
, name
,
1725 namelen
, &bh
, &blocks_wanted
);
1727 ret
= ocfs2_find_dir_space_el(dir
, name
, namelen
, &bh
);
1729 if (ret
&& ret
!= -ENOSPC
) {
1734 if (ret
== -ENOSPC
) {
1736 * We have to expand the directory to add this name.
1740 ret
= ocfs2_extend_dir(osb
, dir
, parent_fe_bh
, blocks_wanted
,