Merge commit 'v2.6.27-rc7' into x86/pebs
[linux-2.6-block.git] / fs / ocfs2 / dir.c
CommitLineData
ccd979bd
MF
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * dir.c
5 *
6 * Creates, reads, walks and deletes directory-nodes
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * Portions of this code from linux/fs/ext3/dir.c
11 *
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)
16 *
17 * from
18 *
19 * linux/fs/minix/dir.c
20 *
21 * Copyright (C) 1991, 1992 Linux Torvalds
22 *
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.
27 *
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.
32 *
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.
37 */
38
39#include <linux/fs.h>
40#include <linux/types.h>
41#include <linux/slab.h>
42#include <linux/highmem.h>
43
44#define MLOG_MASK_PREFIX ML_NAMEI
45#include <cluster/masklog.h>
46
47#include "ocfs2.h"
48
49#include "alloc.h"
50#include "dir.h"
51#include "dlmglue.h"
52#include "extent_map.h"
53#include "file.h"
54#include "inode.h"
55#include "journal.h"
56#include "namei.h"
57#include "suballoc.h"
316f4b9f 58#include "super.h"
ccd979bd
MF
59#include "uptodate.h"
60
61#include "buffer_head_io.h"
62
316f4b9f
MF
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))
67
ccd979bd
MF
68static unsigned char ocfs2_filetype_table[] = {
69 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
70};
71
72static int ocfs2_extend_dir(struct ocfs2_super *osb,
73 struct inode *dir,
74 struct buffer_head *parent_fe_bh,
5b6a3a2b 75 unsigned int blocks_wanted,
ccd979bd 76 struct buffer_head **new_de_bh);
316f4b9f
MF
77static int ocfs2_do_extend_dir(struct super_block *sb,
78 handle_t *handle,
79 struct inode *dir,
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);
84
23193e51
MF
85/*
86 * bh passed here can be an inode block or a dir data block, depending
87 * on the inode inline data flag.
88 */
5eae5b96
MF
89static int ocfs2_check_dir_entry(struct inode * dir,
90 struct ocfs2_dir_entry * de,
91 struct buffer_head * bh,
92 unsigned long offset)
316f4b9f
MF
93{
94 const char *error_msg = NULL;
95 const int rlen = le16_to_cpu(de->rec_len);
96
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";
105
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,
111 de->name_len);
112 return error_msg == NULL ? 1 : 0;
113}
114
115static inline int ocfs2_match(int len,
116 const char * const name,
117 struct ocfs2_dir_entry *de)
118{
119 if (len != de->name_len)
120 return 0;
121 if (!de->inode)
122 return 0;
123 return !memcmp(name, de->name, len);
124}
125
126/*
127 * Returns 0 if not found, -1 on failure, and 1 on success
128 */
129static int inline ocfs2_search_dirblock(struct buffer_head *bh,
130 struct inode *dir,
131 const char *name, int namelen,
132 unsigned long offset,
23193e51
MF
133 char *first_de,
134 unsigned int bytes,
316f4b9f
MF
135 struct ocfs2_dir_entry **res_dir)
136{
137 struct ocfs2_dir_entry *de;
138 char *dlimit, *de_buf;
139 int de_len;
140 int ret = 0;
141
142 mlog_entry_void();
143
23193e51
MF
144 de_buf = first_de;
145 dlimit = de_buf + bytes;
316f4b9f
MF
146
147 while (de_buf < dlimit) {
148 /* this code is executed quadratically often */
149 /* do minimal checking `by hand' */
150
151 de = (struct ocfs2_dir_entry *) de_buf;
152
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)) {
157 ret = -1;
158 goto bail;
159 }
160 *res_dir = de;
161 ret = 1;
162 goto bail;
163 }
164
165 /* prevent looping on a bad block */
166 de_len = le16_to_cpu(de->rec_len);
167 if (de_len <= 0) {
168 ret = -1;
169 goto bail;
170 }
171
172 de_buf += de_len;
173 offset += de_len;
174 }
175
176bail:
177 mlog_exit(ret);
178 return ret;
179}
180
23193e51
MF
181static struct buffer_head *ocfs2_find_entry_id(const char *name,
182 int namelen,
183 struct inode *dir,
184 struct ocfs2_dir_entry **res_dir)
185{
186 int ret, found;
187 struct buffer_head *di_bh = NULL;
188 struct ocfs2_dinode *di;
189 struct ocfs2_inline_data *data;
190
191 ret = ocfs2_read_block(OCFS2_SB(dir->i_sb), OCFS2_I(dir)->ip_blkno,
192 &di_bh, OCFS2_BH_CACHED, dir);
193 if (ret) {
194 mlog_errno(ret);
195 goto out;
196 }
197
198 di = (struct ocfs2_dinode *)di_bh->b_data;
199 data = &di->id2.i_data;
200
201 found = ocfs2_search_dirblock(di_bh, dir, name, namelen, 0,
202 data->id_data, i_size_read(dir), res_dir);
203 if (found == 1)
204 return di_bh;
205
206 brelse(di_bh);
207out:
208 return NULL;
209}
210
0af4bd38
AB
211static struct buffer_head *ocfs2_find_entry_el(const char *name, int namelen,
212 struct inode *dir,
213 struct ocfs2_dir_entry **res_dir)
316f4b9f
MF
214{
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
220 buffer, bh_use[] */
221 int ra_ptr = 0; /* Current index into readahead
222 buffer */
223 int num = 0;
224 int nblocks, i, err;
225
226 mlog_entry_void();
227
316f4b9f
MF
228 sb = dir->i_sb;
229
230 nblocks = i_size_read(dir) >> sb->s_blocksize_bits;
231 start = OCFS2_I(dir)->ip_dir_start_lookup;
232 if (start >= nblocks)
233 start = 0;
234 block = start;
235
236restart:
237 do {
238 /*
239 * We deal with the read-ahead logic here.
240 */
241 if (ra_ptr >= ra_max) {
242 /* Refill the readahead buffer */
243 ra_ptr = 0;
244 b = block;
245 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
246 /*
247 * Terminate if we reach the end of the
248 * directory and must wrap, or if our
249 * search has finished at this block.
250 */
251 if (b >= nblocks || (num && block == start)) {
252 bh_use[ra_max] = NULL;
253 break;
254 }
255 num++;
256
257 bh = ocfs2_bread(dir, b++, &err, 1);
258 bh_use[ra_max] = bh;
259 }
260 }
261 if ((bh = bh_use[ra_ptr++]) == NULL)
262 goto next;
263 wait_on_buffer(bh);
264 if (!buffer_uptodate(bh)) {
265 /* read error, skip block & hope for the best */
266 ocfs2_error(dir->i_sb, "reading directory %llu, "
267 "offset %lu\n",
268 (unsigned long long)OCFS2_I(dir)->ip_blkno,
269 block);
270 brelse(bh);
271 goto next;
272 }
273 i = ocfs2_search_dirblock(bh, dir, name, namelen,
274 block << sb->s_blocksize_bits,
23193e51 275 bh->b_data, sb->s_blocksize,
316f4b9f
MF
276 res_dir);
277 if (i == 1) {
278 OCFS2_I(dir)->ip_dir_start_lookup = block;
279 ret = bh;
280 goto cleanup_and_exit;
281 } else {
282 brelse(bh);
283 if (i < 0)
284 goto cleanup_and_exit;
285 }
286 next:
287 if (++block >= nblocks)
288 block = 0;
289 } while (block != start);
290
291 /*
292 * If the directory has grown while we were searching, then
293 * search the last part of the directory before giving up.
294 */
295 block = nblocks;
296 nblocks = i_size_read(dir) >> sb->s_blocksize_bits;
297 if (block < nblocks) {
298 start = 0;
299 goto restart;
300 }
301
302cleanup_and_exit:
303 /* Clean up the read-ahead blocks */
304 for (; ra_ptr < ra_max; ra_ptr++)
305 brelse(bh_use[ra_ptr]);
306
307 mlog_exit_ptr(ret);
308 return ret;
309}
310
23193e51
MF
311/*
312 * Try to find an entry of the provided name within 'dir'.
313 *
314 * If nothing was found, NULL is returned. Otherwise, a buffer_head
315 * and pointer to the dir entry are passed back.
316 *
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.
322 */
323struct buffer_head *ocfs2_find_entry(const char *name, int namelen,
324 struct inode *dir,
325 struct ocfs2_dir_entry **res_dir)
326{
327 *res_dir = NULL;
328
329 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
330 return ocfs2_find_entry_id(name, namelen, dir, res_dir);
331
332 return ocfs2_find_entry_el(name, namelen, dir, res_dir);
333}
334
5b6a3a2b
MF
335/*
336 * Update inode number and type of a previously found directory entry.
337 */
38760e24
MF
338int 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)
341{
342 int ret;
343
5b6a3a2b
MF
344 /*
345 * The same code works fine for both inline-data and extent
346 * based directories, so no need to split this up.
347 */
348
38760e24
MF
349 ret = ocfs2_journal_access(handle, dir, de_bh,
350 OCFS2_JOURNAL_ACCESS_WRITE);
351 if (ret) {
352 mlog_errno(ret);
353 goto out;
354 }
355
356 de->inode = cpu_to_le64(OCFS2_I(new_entry_inode)->ip_blkno);
357 ocfs2_set_de_type(de, new_entry_inode->i_mode);
358
359 ocfs2_journal_dirty(handle, de_bh);
360
361out:
362 return ret;
363}
364
5b6a3a2b
MF
365static 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,
368 unsigned int bytes)
316f4b9f
MF
369{
370 struct ocfs2_dir_entry *de, *pde;
371 int i, status = -ENOENT;
372
373 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p)\n", handle, dir, de_del, bh);
374
375 i = 0;
376 pde = NULL;
5b6a3a2b
MF
377 de = (struct ocfs2_dir_entry *) first_de;
378 while (i < bytes) {
316f4b9f
MF
379 if (!ocfs2_check_dir_entry(dir, de, bh, i)) {
380 status = -EIO;
381 mlog_errno(status);
382 goto bail;
383 }
384 if (de == de_del) {
385 status = ocfs2_journal_access(handle, dir, bh,
386 OCFS2_JOURNAL_ACCESS_WRITE);
387 if (status < 0) {
388 status = -EIO;
389 mlog_errno(status);
390 goto bail;
391 }
392 if (pde)
0dd3256e
MS
393 le16_add_cpu(&pde->rec_len,
394 le16_to_cpu(de->rec_len));
316f4b9f
MF
395 else
396 de->inode = 0;
397 dir->i_version++;
398 status = ocfs2_journal_dirty(handle, bh);
399 goto bail;
400 }
401 i += le16_to_cpu(de->rec_len);
402 pde = de;
403 de = (struct ocfs2_dir_entry *)((char *)de + le16_to_cpu(de->rec_len));
404 }
405bail:
406 mlog_exit(status);
407 return status;
408}
409
5b6a3a2b
MF
410static inline int ocfs2_delete_entry_id(handle_t *handle,
411 struct inode *dir,
412 struct ocfs2_dir_entry *de_del,
413 struct buffer_head *bh)
414{
415 int ret;
416 struct buffer_head *di_bh = NULL;
417 struct ocfs2_dinode *di;
418 struct ocfs2_inline_data *data;
419
420 ret = ocfs2_read_block(OCFS2_SB(dir->i_sb), OCFS2_I(dir)->ip_blkno,
421 &di_bh, OCFS2_BH_CACHED, dir);
422 if (ret) {
423 mlog_errno(ret);
424 goto out;
425 }
426
427 di = (struct ocfs2_dinode *)di_bh->b_data;
428 data = &di->id2.i_data;
429
430 ret = __ocfs2_delete_entry(handle, dir, de_del, bh, data->id_data,
431 i_size_read(dir));
432
433 brelse(di_bh);
434out:
435 return ret;
436}
437
438static inline int ocfs2_delete_entry_el(handle_t *handle,
439 struct inode *dir,
440 struct ocfs2_dir_entry *de_del,
441 struct buffer_head *bh)
442{
443 return __ocfs2_delete_entry(handle, dir, de_del, bh, bh->b_data,
444 bh->b_size);
445}
446
447/*
448 * ocfs2_delete_entry deletes a directory entry by merging it with the
449 * previous entry
450 */
451int ocfs2_delete_entry(handle_t *handle,
452 struct inode *dir,
453 struct ocfs2_dir_entry *de_del,
454 struct buffer_head *bh)
455{
456 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
457 return ocfs2_delete_entry_id(handle, dir, de_del, bh);
458
459 return ocfs2_delete_entry_el(handle, dir, de_del, bh);
460}
461
8553cf4f
MF
462/*
463 * Check whether 'de' has enough room to hold an entry of
464 * 'new_rec_len' bytes.
465 */
466static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry *de,
467 unsigned int new_rec_len)
468{
469 unsigned int de_really_used;
470
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)
474 return 1;
475
476 /*
477 * Record might have free space at the end which we can
478 * use.
479 */
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))
482 return 1;
483
484 return 0;
485}
486
316f4b9f
MF
487/* we don't always have a dentry for what we want to add, so people
488 * like orphan dir can call this instead.
489 *
490 * If you pass me insert_bh, I'll skip the search of the other dir
491 * blocks and put the record in there.
492 */
493int __ocfs2_add_entry(handle_t *handle,
494 struct inode *dir,
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)
499{
500 unsigned long offset;
501 unsigned short rec_len;
502 struct ocfs2_dir_entry *de, *de1;
5b6a3a2b
MF
503 struct ocfs2_dinode *di = (struct ocfs2_dinode *)parent_fe_bh->b_data;
504 struct super_block *sb = dir->i_sb;
316f4b9f 505 int retval, status;
5b6a3a2b
MF
506 unsigned int size = sb->s_blocksize;
507 char *data_start = insert_bh->b_data;
316f4b9f
MF
508
509 mlog_entry_void();
510
316f4b9f
MF
511 if (!namelen)
512 return -EINVAL;
513
5b6a3a2b
MF
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);
517
518 BUG_ON(insert_bh != parent_fe_bh);
519 }
520
316f4b9f
MF
521 rec_len = OCFS2_DIR_REC_LEN(namelen);
522 offset = 0;
5b6a3a2b 523 de = (struct ocfs2_dir_entry *) data_start;
316f4b9f 524 while (1) {
5b6a3a2b
MF
525 BUG_ON((char *)de >= (size + data_start));
526
316f4b9f
MF
527 /* These checks should've already been passed by the
528 * prepare function, but I guess we can leave them
529 * here anyway. */
530 if (!ocfs2_check_dir_entry(dir, de, insert_bh, offset)) {
531 retval = -ENOENT;
532 goto bail;
533 }
534 if (ocfs2_match(namelen, name, de)) {
535 retval = -EEXIST;
536 goto bail;
537 }
8553cf4f
MF
538
539 if (ocfs2_dirent_would_fit(de, rec_len)) {
316f4b9f
MF
540 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
541 retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
542 if (retval < 0) {
543 mlog_errno(retval);
544 goto bail;
545 }
546
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));
554 de1->rec_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));
558 de = de1;
559 }
560 de->file_type = OCFS2_FT_UNKNOWN;
561 if (blkno) {
562 de->inode = cpu_to_le64(blkno);
563 ocfs2_set_de_type(de, inode->i_mode);
564 } else
565 de->inode = 0;
566 de->name_len = namelen;
567 memcpy(de->name, name, namelen);
568
569 dir->i_version++;
570 status = ocfs2_journal_dirty(handle, insert_bh);
571 retval = 0;
572 goto bail;
573 }
574 offset += le16_to_cpu(de->rec_len);
575 de = (struct ocfs2_dir_entry *) ((char *) de + le16_to_cpu(de->rec_len));
576 }
577
578 /* when you think about it, the assert above should prevent us
579 * from ever getting here. */
580 retval = -ENOSPC;
581bail:
582
583 mlog_exit(retval);
584 return retval;
585}
586
23193e51 587static int ocfs2_dir_foreach_blk_id(struct inode *inode,
2b47c361 588 u64 *f_version,
23193e51 589 loff_t *f_pos, void *priv,
e7b34019 590 filldir_t filldir, int *filldir_err)
23193e51
MF
591{
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;
598
599 ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), OCFS2_I(inode)->ip_blkno,
600 &di_bh, OCFS2_BH_CACHED, inode);
601 if (ret) {
602 mlog(ML_ERROR, "Unable to read inode block for dir %llu\n",
603 (unsigned long long)OCFS2_I(inode)->ip_blkno);
604 goto out;
605 }
606
607 di = (struct ocfs2_dinode *)di_bh->b_data;
608 data = &di->id2.i_data;
609
610 while (*f_pos < i_size_read(inode)) {
611revalidate:
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
615 * to make sure. */
616 if (*f_version != inode->i_version) {
617 for (i = 0; i < i_size_read(inode) && i < offset; ) {
618 de = (struct ocfs2_dir_entry *)
619 (data->id_data + i);
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))
628 break;
629 i += le16_to_cpu(de->rec_len);
630 }
631 *f_pos = offset = i;
632 *f_version = inode->i_version;
633 }
634
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);
639 goto out;
640 }
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.
649 */
2b47c361 650 u64 version = *f_version;
23193e51
MF
651 unsigned char d_type = DT_UNKNOWN;
652
653 if (de->file_type < OCFS2_FT_MAX)
654 d_type = ocfs2_filetype_table[de->file_type];
655
656 filldir_ret = filldir(priv, de->name,
657 de->name_len,
658 *f_pos,
659 le64_to_cpu(de->inode),
660 d_type);
e7b34019
MF
661 if (filldir_ret) {
662 if (filldir_err)
663 *filldir_err = filldir_ret;
23193e51 664 break;
e7b34019 665 }
23193e51
MF
666 if (version != *f_version)
667 goto revalidate;
668 }
669 *f_pos += le16_to_cpu(de->rec_len);
670 }
671
672out:
673 brelse(di_bh);
674
675 return 0;
676}
677
678static int ocfs2_dir_foreach_blk_el(struct inode *inode,
2b47c361 679 u64 *f_version,
23193e51 680 loff_t *f_pos, void *priv,
e7b34019 681 filldir_t filldir, int *filldir_err)
ccd979bd
MF
682{
683 int error = 0;
aa958874
MF
684 unsigned long offset, blk, last_ra_blk = 0;
685 int i, stored;
ccd979bd
MF
686 struct buffer_head * bh, * tmp;
687 struct ocfs2_dir_entry * de;
688 int err;
ccd979bd 689 struct super_block * sb = inode->i_sb;
aa958874 690 unsigned int ra_sectors = 16;
ccd979bd
MF
691
692 stored = 0;
693 bh = NULL;
694
b8bc5f4f 695 offset = (*f_pos) & (sb->s_blocksize - 1);
ccd979bd 696
b8bc5f4f
MF
697 while (!error && !stored && *f_pos < i_size_read(inode)) {
698 blk = (*f_pos) >> sb->s_blocksize_bits;
ccd979bd
MF
699 bh = ocfs2_bread(inode, blk, &err, 0);
700 if (!bh) {
b0697053
MF
701 mlog(ML_ERROR,
702 "directory #%llu contains a hole at offset %lld\n",
703 (unsigned long long)OCFS2_I(inode)->ip_blkno,
b8bc5f4f
MF
704 *f_pos);
705 *f_pos += sb->s_blocksize - offset;
ccd979bd
MF
706 continue;
707 }
708
aa958874
MF
709 /* The idea here is to begin with 8k read-ahead and to stay
710 * 4k ahead of our current position.
711 *
712 * TODO: Use the pagecache for this. We just need to
713 * make sure it's cluster-safe... */
714 if (!last_ra_blk
715 || (((last_ra_blk - blk) << 9) <= (ra_sectors / 2))) {
716 for (i = ra_sectors >> (sb->s_blocksize_bits - 9);
ccd979bd
MF
717 i > 0; i--) {
718 tmp = ocfs2_bread(inode, ++blk, &err, 1);
719 if (tmp)
720 brelse(tmp);
721 }
aa958874
MF
722 last_ra_blk = blk;
723 ra_sectors = 8;
ccd979bd
MF
724 }
725
726revalidate:
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
730 * to make sure. */
b8bc5f4f 731 if (*f_version != inode->i_version) {
ccd979bd
MF
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))
742 break;
743 i += le16_to_cpu(de->rec_len);
744 }
745 offset = i;
b8bc5f4f 746 *f_pos = ((*f_pos) & ~(sb->s_blocksize - 1))
ccd979bd 747 | offset;
b8bc5f4f 748 *f_version = inode->i_version;
ccd979bd
MF
749 }
750
b8bc5f4f 751 while (!error && *f_pos < i_size_read(inode)
ccd979bd
MF
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
756 next block. */
b8bc5f4f 757 *f_pos = ((*f_pos) | (sb->s_blocksize - 1)) + 1;
ccd979bd 758 brelse(bh);
b8bc5f4f 759 goto out;
ccd979bd
MF
760 }
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.
769 */
b8bc5f4f 770 unsigned long version = *f_version;
ccd979bd
MF
771 unsigned char d_type = DT_UNKNOWN;
772
773 if (de->file_type < OCFS2_FT_MAX)
774 d_type = ocfs2_filetype_table[de->file_type];
b8bc5f4f 775 error = filldir(priv, de->name,
ccd979bd 776 de->name_len,
b8bc5f4f 777 *f_pos,
7e853679 778 le64_to_cpu(de->inode),
ccd979bd 779 d_type);
e7b34019
MF
780 if (error) {
781 if (filldir_err)
782 *filldir_err = error;
ccd979bd 783 break;
e7b34019 784 }
b8bc5f4f 785 if (version != *f_version)
ccd979bd
MF
786 goto revalidate;
787 stored ++;
788 }
b8bc5f4f 789 *f_pos += le16_to_cpu(de->rec_len);
ccd979bd
MF
790 }
791 offset = 0;
792 brelse(bh);
793 }
794
795 stored = 0;
b8bc5f4f
MF
796out:
797 return stored;
798}
799
2b47c361 800static int ocfs2_dir_foreach_blk(struct inode *inode, u64 *f_version,
e7b34019
MF
801 loff_t *f_pos, void *priv, filldir_t filldir,
802 int *filldir_err)
23193e51
MF
803{
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,
e7b34019 806 filldir, filldir_err);
23193e51 807
e7b34019
MF
808 return ocfs2_dir_foreach_blk_el(inode, f_version, f_pos, priv, filldir,
809 filldir_err);
23193e51
MF
810}
811
5eae5b96
MF
812/*
813 * This is intended to be called from inside other kernel functions,
814 * so we fake some arguments.
815 */
816int ocfs2_dir_foreach(struct inode *inode, loff_t *f_pos, void *priv,
817 filldir_t filldir)
818{
e7b34019 819 int ret = 0, filldir_err = 0;
2b47c361 820 u64 version = inode->i_version;
5eae5b96
MF
821
822 while (*f_pos < i_size_read(inode)) {
823 ret = ocfs2_dir_foreach_blk(inode, &version, f_pos, priv,
e7b34019
MF
824 filldir, &filldir_err);
825 if (ret || filldir_err)
5eae5b96
MF
826 break;
827 }
828
e7b34019
MF
829 if (ret > 0)
830 ret = -EIO;
831
5eae5b96
MF
832 return 0;
833}
834
b8bc5f4f
MF
835/*
836 * ocfs2_readdir()
837 *
838 */
839int ocfs2_readdir(struct file * filp, void * dirent, filldir_t filldir)
840{
841 int error = 0;
842 struct inode *inode = filp->f_path.dentry->d_inode;
843 int lock_level = 0;
844
845 mlog_entry("dirino=%llu\n",
846 (unsigned long long)OCFS2_I(inode)->ip_blkno);
847
e63aecb6 848 error = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level);
b8bc5f4f
MF
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. */
e63aecb6 853 ocfs2_inode_unlock(inode, 1);
b8bc5f4f 854 lock_level = 0;
e63aecb6 855 error = ocfs2_inode_lock(inode, NULL, 0);
b8bc5f4f
MF
856 }
857 if (error < 0) {
858 if (error != -ENOENT)
859 mlog_errno(error);
860 /* we haven't got any yet, so propagate the error. */
861 goto bail_nolock;
862 }
863
864 error = ocfs2_dir_foreach_blk(inode, &filp->f_version, &filp->f_pos,
e7b34019 865 dirent, filldir, NULL);
b8bc5f4f 866
e63aecb6 867 ocfs2_inode_unlock(inode, lock_level);
ccd979bd 868
aa958874 869bail_nolock:
b8bc5f4f 870 mlog_exit(error);
ccd979bd 871
b8bc5f4f 872 return error;
ccd979bd
MF
873}
874
875/*
1b1dcc1b 876 * NOTE: this should always be called with parent dir i_mutex taken.
ccd979bd
MF
877 */
878int ocfs2_find_files_on_disk(const char *name,
879 int namelen,
880 u64 *blkno,
881 struct inode *inode,
882 struct buffer_head **dirent_bh,
883 struct ocfs2_dir_entry **dirent)
884{
885 int status = -ENOENT;
ccd979bd 886
2b388c67
JB
887 mlog_entry("(name=%.*s, blkno=%p, inode=%p, dirent_bh=%p, dirent=%p)\n",
888 namelen, name, blkno, inode, dirent_bh, dirent);
ccd979bd
MF
889
890 *dirent_bh = ocfs2_find_entry(name, namelen, inode, dirent);
891 if (!*dirent_bh || !*dirent) {
892 status = -ENOENT;
893 goto leave;
894 }
895
896 *blkno = le64_to_cpu((*dirent)->inode);
897
898 status = 0;
899leave:
900 if (status < 0) {
901 *dirent = NULL;
902 if (*dirent_bh) {
903 brelse(*dirent_bh);
904 *dirent_bh = NULL;
905 }
906 }
907
908 mlog_exit(status);
909 return status;
910}
911
be94d117
MF
912/*
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.
915 */
916int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name,
917 int namelen, u64 *blkno)
918{
919 int ret;
920 struct buffer_head *bh = NULL;
921 struct ocfs2_dir_entry *dirent = NULL;
922
923 ret = ocfs2_find_files_on_disk(name, namelen, blkno, dir, &bh, &dirent);
924 brelse(bh);
925
926 return ret;
927}
928
ccd979bd
MF
929/* Check for a name within a directory.
930 *
931 * Return 0 if the name does not exist
932 * Return -EEXIST if the directory contains the name
933 *
1b1dcc1b 934 * Callers should have i_mutex + a cluster lock on dir
ccd979bd
MF
935 */
936int ocfs2_check_dir_for_entry(struct inode *dir,
937 const char *name,
938 int namelen)
939{
940 int ret;
941 struct buffer_head *dirent_bh = NULL;
942 struct ocfs2_dir_entry *dirent = NULL;
943
b0697053
MF
944 mlog_entry("dir %llu, name '%.*s'\n",
945 (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen, name);
ccd979bd
MF
946
947 ret = -EEXIST;
948 dirent_bh = ocfs2_find_entry(name, namelen, dir, &dirent);
949 if (dirent_bh)
950 goto bail;
951
952 ret = 0;
953bail:
954 if (dirent_bh)
955 brelse(dirent_bh);
956
957 mlog_exit(ret);
958 return ret;
959}
960
0bfbbf62
MF
961struct ocfs2_empty_dir_priv {
962 unsigned seen_dot;
963 unsigned seen_dot_dot;
964 unsigned seen_other;
965};
966static int ocfs2_empty_dir_filldir(void *priv, const char *name, int name_len,
967 loff_t pos, u64 ino, unsigned type)
968{
969 struct ocfs2_empty_dir_priv *p = priv;
970
971 /*
972 * Check the positions of "." and ".." records to be sure
973 * they're in the correct place.
974 */
975 if (name_len == 1 && !strncmp(".", name, 1) && pos == 0) {
976 p->seen_dot = 1;
977 return 0;
978 }
979
980 if (name_len == 2 && !strncmp("..", name, 2) &&
981 pos == OCFS2_DIR_REC_LEN(1)) {
982 p->seen_dot_dot = 1;
983 return 0;
984 }
985
986 p->seen_other = 1;
987 return 1;
988}
ccd979bd
MF
989/*
990 * routine to check that the specified directory is empty (for rmdir)
0bfbbf62
MF
991 *
992 * Returns 1 if dir is empty, zero otherwise.
ccd979bd
MF
993 */
994int ocfs2_empty_dir(struct inode *inode)
995{
0bfbbf62
MF
996 int ret;
997 loff_t start = 0;
998 struct ocfs2_empty_dir_priv priv;
ccd979bd 999
0bfbbf62 1000 memset(&priv, 0, sizeof(priv));
ccd979bd 1001
0bfbbf62
MF
1002 ret = ocfs2_dir_foreach(inode, &start, &priv, ocfs2_empty_dir_filldir);
1003 if (ret)
1004 mlog_errno(ret);
1005
1006 if (!priv.seen_dot || !priv.seen_dot_dot) {
1007 mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n",
b0697053 1008 (unsigned long long)OCFS2_I(inode)->ip_blkno);
0bfbbf62
MF
1009 /*
1010 * XXX: Is it really safe to allow an unlink to continue?
1011 */
ccd979bd
MF
1012 return 1;
1013 }
0bfbbf62
MF
1014
1015 return !priv.seen_other;
ccd979bd
MF
1016}
1017
5b6a3a2b
MF
1018static void ocfs2_fill_initial_dirents(struct inode *inode,
1019 struct inode *parent,
1020 char *start, unsigned int size)
1021{
1022 struct ocfs2_dir_entry *de = (struct ocfs2_dir_entry *)start;
1023
1024 de->inode = cpu_to_le64(OCFS2_I(inode)->ip_blkno);
1025 de->name_len = 1;
1026 de->rec_len =
1027 cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len));
1028 strcpy(de->name, ".");
1029 ocfs2_set_de_type(de, S_IFDIR);
1030
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));
1034 de->name_len = 2;
1035 strcpy(de->name, "..");
1036 ocfs2_set_de_type(de, S_IFDIR);
1037}
1038
1039/*
1040 * This works together with code in ocfs2_mknod_locked() which sets
1041 * the inline-data flag and initializes the inline-data section.
1042 */
1043static int ocfs2_fill_new_dir_id(struct ocfs2_super *osb,
1044 handle_t *handle,
1045 struct inode *parent,
1046 struct inode *inode,
1047 struct buffer_head *di_bh)
1048{
1049 int ret;
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);
1053
1054 ret = ocfs2_journal_access(handle, inode, di_bh,
1055 OCFS2_JOURNAL_ACCESS_WRITE);
1056 if (ret) {
1057 mlog_errno(ret);
1058 goto out;
1059 }
1060
1061 ocfs2_fill_initial_dirents(inode, parent, data->id_data, size);
1062
1063 ocfs2_journal_dirty(handle, di_bh);
1064 if (ret) {
1065 mlog_errno(ret);
1066 goto out;
1067 }
1068
1069 i_size_write(inode, size);
1070 inode->i_nlink = 2;
1071 inode->i_blocks = ocfs2_inode_sector_count(inode);
1072
1073 ret = ocfs2_mark_inode_dirty(handle, inode, di_bh);
1074 if (ret < 0)
1075 mlog_errno(ret);
1076
1077out:
1078 return ret;
1079}
1080
1081static int ocfs2_fill_new_dir_el(struct ocfs2_super *osb,
1082 handle_t *handle,
1083 struct inode *parent,
1084 struct inode *inode,
1085 struct buffer_head *fe_bh,
1086 struct ocfs2_alloc_context *data_ac)
316f4b9f
MF
1087{
1088 int status;
1089 struct buffer_head *new_bh = NULL;
316f4b9f
MF
1090
1091 mlog_entry_void();
1092
1093 status = ocfs2_do_extend_dir(osb->sb, handle, inode, fe_bh,
1094 data_ac, NULL, &new_bh);
1095 if (status < 0) {
1096 mlog_errno(status);
1097 goto bail;
1098 }
1099
1100 ocfs2_set_new_buffer_uptodate(inode, new_bh);
1101
1102 status = ocfs2_journal_access(handle, inode, new_bh,
1103 OCFS2_JOURNAL_ACCESS_CREATE);
1104 if (status < 0) {
1105 mlog_errno(status);
1106 goto bail;
1107 }
1108 memset(new_bh->b_data, 0, osb->sb->s_blocksize);
1109
5b6a3a2b
MF
1110 ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data,
1111 osb->sb->s_blocksize);
316f4b9f
MF
1112
1113 status = ocfs2_journal_dirty(handle, new_bh);
1114 if (status < 0) {
1115 mlog_errno(status);
1116 goto bail;
1117 }
1118
1119 i_size_write(inode, inode->i_sb->s_blocksize);
1120 inode->i_nlink = 2;
1121 inode->i_blocks = ocfs2_inode_sector_count(inode);
1122 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
1123 if (status < 0) {
1124 mlog_errno(status);
1125 goto bail;
1126 }
1127
1128 status = 0;
1129bail:
1130 if (new_bh)
1131 brelse(new_bh);
1132
1133 mlog_exit(status);
1134 return status;
1135}
1136
5b6a3a2b
MF
1137int ocfs2_fill_new_dir(struct ocfs2_super *osb,
1138 handle_t *handle,
1139 struct inode *parent,
1140 struct inode *inode,
1141 struct buffer_head *fe_bh,
1142 struct ocfs2_alloc_context *data_ac)
1143{
1144 BUG_ON(!ocfs2_supports_inline_data(osb) && data_ac == NULL);
1145
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);
1148
1149 return ocfs2_fill_new_dir_el(osb, handle, parent, inode, fe_bh,
1150 data_ac);
1151}
1152
1153static void ocfs2_expand_last_dirent(char *start, unsigned int old_size,
1154 unsigned int new_size)
1155{
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;
1160
1161 limit = start + old_size;
1162 de_buf = start;
1163 de = (struct ocfs2_dir_entry *)de_buf;
1164 do {
1165 prev_de = de;
1166 de_buf += le16_to_cpu(de->rec_len);
1167 de = (struct ocfs2_dir_entry *)de_buf;
1168 } while (de_buf < limit);
1169
1170 le16_add_cpu(&prev_de->rec_len, bytes);
1171}
1172
1173/*
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.
1177 *
1178 * *first_block_bh is a pointer to the 1st data block allocated to the
1179 * directory.
1180 */
1181static 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)
1184{
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;
1194 handle_t *handle;
1195
1196 alloc = ocfs2_clusters_for_bytes(sb, bytes);
1197
1198 /*
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.
1205 */
1206 BUG_ON(alloc > 2);
1207
1208 ret = ocfs2_reserve_clusters(osb, alloc, &data_ac);
1209 if (ret) {
1210 mlog_errno(ret);
1211 goto out;
1212 }
1213
1214 down_write(&oi->ip_alloc_sem);
1215
1216 /*
c78bad11 1217 * Prepare for worst case allocation scenario of two separate
5b6a3a2b
MF
1218 * extents.
1219 */
1220 if (alloc == 2)
1221 credits += OCFS2_SUBALLOC_ALLOC;
1222
1223 handle = ocfs2_start_trans(osb, credits);
1224 if (IS_ERR(handle)) {
1225 ret = PTR_ERR(handle);
1226 mlog_errno(ret);
1227 goto out_sem;
1228 }
1229
1230 /*
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.
1234 */
1235 ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off, &len);
1236 if (ret) {
1237 mlog_errno(ret);
1238 goto out_commit;
1239 }
1240
1241 /*
1242 * Operations are carefully ordered so that we set up the new
1243 * data block first. The conversion from inline data to
1244 * extents follows.
1245 */
1246 blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
1247 dirdata_bh = sb_getblk(sb, blkno);
1248 if (!dirdata_bh) {
1249 ret = -EIO;
1250 mlog_errno(ret);
1251 goto out_commit;
1252 }
1253
1254 ocfs2_set_new_buffer_uptodate(dir, dirdata_bh);
1255
1256 ret = ocfs2_journal_access(handle, dir, dirdata_bh,
1257 OCFS2_JOURNAL_ACCESS_CREATE);
1258 if (ret) {
1259 mlog_errno(ret);
1260 goto out_commit;
1261 }
1262
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),
1267 sb->s_blocksize);
1268
1269 ret = ocfs2_journal_dirty(handle, dirdata_bh);
1270 if (ret) {
1271 mlog_errno(ret);
1272 goto out_commit;
1273 }
1274
1275 /*
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.
1279 *
1280 * We let the later dirent insert modify c/mtime - to the user
1281 * the data hasn't changed.
1282 */
1283 ret = ocfs2_journal_access(handle, dir, di_bh,
1284 OCFS2_JOURNAL_ACCESS_CREATE);
1285 if (ret) {
1286 mlog_errno(ret);
1287 goto out_commit;
1288 }
1289
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);
1294
1295 ocfs2_dinode_new_extent_list(dir, di);
1296
1297 i_size_write(dir, sb->s_blocksize);
1298 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
1299
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);
5b6a3a2b
MF
1303
1304 /*
1305 * This should never fail as our extent list is empty and all
1306 * related blocks have been journaled already.
1307 */
1308 ret = ocfs2_insert_extent(osb, handle, dir, di_bh, 0, blkno, len, 0,
1309 NULL);
1310 if (ret) {
1311 mlog_errno(ret);
83cab533 1312 goto out_commit;
5b6a3a2b
MF
1313 }
1314
9780eb6c
MF
1315 /*
1316 * Set i_blocks after the extent insert for the most up to
1317 * date ip_clusters value.
1318 */
1319 dir->i_blocks = ocfs2_inode_sector_count(dir);
1320
5b6a3a2b
MF
1321 ret = ocfs2_journal_dirty(handle, di_bh);
1322 if (ret) {
1323 mlog_errno(ret);
1324 goto out_commit;
1325 }
1326
1327 /*
1328 * We asked for two clusters, but only got one in the 1st
1329 * pass. Claim the 2nd cluster as a separate extent.
1330 */
1331 if (alloc > len) {
1332 ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off,
1333 &len);
1334 if (ret) {
1335 mlog_errno(ret);
1336 goto out_commit;
1337 }
1338 blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off);
1339
1340 ret = ocfs2_insert_extent(osb, handle, dir, di_bh, 1, blkno,
1341 len, 0, NULL);
1342 if (ret) {
1343 mlog_errno(ret);
83cab533 1344 goto out_commit;
5b6a3a2b
MF
1345 }
1346 }
1347
1348 *first_block_bh = dirdata_bh;
1349 dirdata_bh = NULL;
1350
1351out_commit:
1352 ocfs2_commit_trans(osb, handle);
1353
1354out_sem:
1355 up_write(&oi->ip_alloc_sem);
1356
1357out:
1358 if (data_ac)
1359 ocfs2_free_alloc_context(data_ac);
1360
1361 brelse(dirdata_bh);
1362
1363 return ret;
1364}
1365
ccd979bd 1366/* returns a bh of the 1st new block in the allocation. */
316f4b9f
MF
1367static int ocfs2_do_extend_dir(struct super_block *sb,
1368 handle_t *handle,
1369 struct inode *dir,
1370 struct buffer_head *parent_fe_bh,
1371 struct ocfs2_alloc_context *data_ac,
1372 struct ocfs2_alloc_context *meta_ac,
1373 struct buffer_head **new_bh)
ccd979bd
MF
1374{
1375 int status;
1376 int extend;
8110b073 1377 u64 p_blkno, v_blkno;
ccd979bd
MF
1378
1379 spin_lock(&OCFS2_I(dir)->ip_lock);
1380 extend = (i_size_read(dir) == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters));
1381 spin_unlock(&OCFS2_I(dir)->ip_lock);
1382
1383 if (extend) {
dcd0538f
MF
1384 u32 offset = OCFS2_I(dir)->ip_clusters;
1385
1386 status = ocfs2_do_extend_allocation(OCFS2_SB(sb), dir, &offset,
2ae99a60 1387 1, 0, parent_fe_bh, handle,
ccd979bd
MF
1388 data_ac, meta_ac, NULL);
1389 BUG_ON(status == -EAGAIN);
1390 if (status < 0) {
1391 mlog_errno(status);
1392 goto bail;
1393 }
1394 }
1395
8110b073
MF
1396 v_blkno = ocfs2_blocks_for_bytes(sb, i_size_read(dir));
1397 status = ocfs2_extent_map_get_blocks(dir, v_blkno, &p_blkno, NULL, NULL);
ccd979bd
MF
1398 if (status < 0) {
1399 mlog_errno(status);
1400 goto bail;
1401 }
1402
1403 *new_bh = sb_getblk(sb, p_blkno);
1404 if (!*new_bh) {
1405 status = -EIO;
1406 mlog_errno(status);
1407 goto bail;
1408 }
1409 status = 0;
1410bail:
1411 mlog_exit(status);
1412 return status;
1413}
1414
5b6a3a2b
MF
1415/*
1416 * Assumes you already have a cluster lock on the directory.
1417 *
1418 * 'blocks_wanted' is only used if we have an inline directory which
1419 * is to be turned into an extent based one. The size of the dirent to
1420 * insert might be larger than the space gained by growing to just one
1421 * block, so we may have to grow the inode by two blocks in that case.
1422 */
ccd979bd
MF
1423static int ocfs2_extend_dir(struct ocfs2_super *osb,
1424 struct inode *dir,
1425 struct buffer_head *parent_fe_bh,
5b6a3a2b 1426 unsigned int blocks_wanted,
ccd979bd
MF
1427 struct buffer_head **new_de_bh)
1428{
1429 int status = 0;
ee19a779 1430 int credits, num_free_extents, drop_alloc_sem = 0;
ccd979bd
MF
1431 loff_t dir_i_size;
1432 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) parent_fe_bh->b_data;
1433 struct ocfs2_alloc_context *data_ac = NULL;
1434 struct ocfs2_alloc_context *meta_ac = NULL;
1fabe148 1435 handle_t *handle = NULL;
ccd979bd
MF
1436 struct buffer_head *new_bh = NULL;
1437 struct ocfs2_dir_entry * de;
1438 struct super_block *sb = osb->sb;
1439
1440 mlog_entry_void();
1441
5b6a3a2b
MF
1442 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1443 status = ocfs2_expand_inline_dir(dir, parent_fe_bh,
1444 blocks_wanted, &new_bh);
1445 if (status) {
1446 mlog_errno(status);
1447 goto bail;
1448 }
1449
1450 if (blocks_wanted == 1) {
1451 /*
1452 * If the new dirent will fit inside the space
1453 * created by pushing out to one block, then
1454 * we can complete the operation
1455 * here. Otherwise we have to expand i_size
1456 * and format the 2nd block below.
1457 */
1458 BUG_ON(new_bh == NULL);
1459 goto bail_bh;
1460 }
1461
1462 /*
1463 * Get rid of 'new_bh' - we want to format the 2nd
1464 * data block and return that instead.
1465 */
1466 brelse(new_bh);
1467 new_bh = NULL;
1468
1469 dir_i_size = i_size_read(dir);
1470 credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS;
1471 goto do_extend;
1472 }
1473
ccd979bd 1474 dir_i_size = i_size_read(dir);
b0697053
MF
1475 mlog(0, "extending dir %llu (i_size = %lld)\n",
1476 (unsigned long long)OCFS2_I(dir)->ip_blkno, dir_i_size);
ccd979bd 1477
ccd979bd
MF
1478 /* dir->i_size is always block aligned. */
1479 spin_lock(&OCFS2_I(dir)->ip_lock);
1480 if (dir_i_size == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)) {
1481 spin_unlock(&OCFS2_I(dir)->ip_lock);
1482 num_free_extents = ocfs2_num_free_extents(osb, dir, fe);
1483 if (num_free_extents < 0) {
1484 status = num_free_extents;
1485 mlog_errno(status);
1486 goto bail;
1487 }
1488
1489 if (!num_free_extents) {
da5cbf2f 1490 status = ocfs2_reserve_new_metadata(osb, fe, &meta_ac);
ccd979bd
MF
1491 if (status < 0) {
1492 if (status != -ENOSPC)
1493 mlog_errno(status);
1494 goto bail;
1495 }
1496 }
1497
da5cbf2f 1498 status = ocfs2_reserve_clusters(osb, 1, &data_ac);
ccd979bd
MF
1499 if (status < 0) {
1500 if (status != -ENOSPC)
1501 mlog_errno(status);
1502 goto bail;
1503 }
1504
1505 credits = ocfs2_calc_extend_credits(sb, fe, 1);
1506 } else {
1507 spin_unlock(&OCFS2_I(dir)->ip_lock);
1508 credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS;
1509 }
1510
5b6a3a2b 1511do_extend:
ee19a779
JB
1512 down_write(&OCFS2_I(dir)->ip_alloc_sem);
1513 drop_alloc_sem = 1;
1514
65eff9cc 1515 handle = ocfs2_start_trans(osb, credits);
ccd979bd
MF
1516 if (IS_ERR(handle)) {
1517 status = PTR_ERR(handle);
1518 handle = NULL;
1519 mlog_errno(status);
1520 goto bail;
1521 }
1522
1523 status = ocfs2_do_extend_dir(osb->sb, handle, dir, parent_fe_bh,
1524 data_ac, meta_ac, &new_bh);
1525 if (status < 0) {
1526 mlog_errno(status);
1527 goto bail;
1528 }
1529
1530 ocfs2_set_new_buffer_uptodate(dir, new_bh);
1531
1532 status = ocfs2_journal_access(handle, dir, new_bh,
1533 OCFS2_JOURNAL_ACCESS_CREATE);
1534 if (status < 0) {
1535 mlog_errno(status);
1536 goto bail;
1537 }
1538 memset(new_bh->b_data, 0, sb->s_blocksize);
1539 de = (struct ocfs2_dir_entry *) new_bh->b_data;
1540 de->inode = 0;
1541 de->rec_len = cpu_to_le16(sb->s_blocksize);
1542 status = ocfs2_journal_dirty(handle, new_bh);
1543 if (status < 0) {
1544 mlog_errno(status);
1545 goto bail;
1546 }
1547
1548 dir_i_size += dir->i_sb->s_blocksize;
1549 i_size_write(dir, dir_i_size);
8110b073 1550 dir->i_blocks = ocfs2_inode_sector_count(dir);
ccd979bd
MF
1551 status = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh);
1552 if (status < 0) {
1553 mlog_errno(status);
1554 goto bail;
1555 }
1556
5b6a3a2b 1557bail_bh:
ccd979bd
MF
1558 *new_de_bh = new_bh;
1559 get_bh(*new_de_bh);
1560bail:
ee19a779
JB
1561 if (drop_alloc_sem)
1562 up_write(&OCFS2_I(dir)->ip_alloc_sem);
ccd979bd 1563 if (handle)
02dc1af4 1564 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
1565
1566 if (data_ac)
1567 ocfs2_free_alloc_context(data_ac);
1568 if (meta_ac)
1569 ocfs2_free_alloc_context(meta_ac);
1570
1571 if (new_bh)
1572 brelse(new_bh);
1573
1574 mlog_exit(status);
1575 return status;
1576}
1577
5b6a3a2b
MF
1578static int ocfs2_find_dir_space_id(struct inode *dir, struct buffer_head *di_bh,
1579 const char *name, int namelen,
1580 struct buffer_head **ret_de_bh,
1581 unsigned int *blocks_wanted)
ccd979bd 1582{
5b6a3a2b
MF
1583 int ret;
1584 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1585 struct ocfs2_dir_entry *de, *last_de = NULL;
1586 char *de_buf, *limit;
1587 unsigned long offset = 0;
1588 unsigned int rec_len, new_rec_len;
1589
1590 de_buf = di->id2.i_data.id_data;
1591 limit = de_buf + i_size_read(dir);
1592 rec_len = OCFS2_DIR_REC_LEN(namelen);
ccd979bd 1593
5b6a3a2b
MF
1594 while (de_buf < limit) {
1595 de = (struct ocfs2_dir_entry *)de_buf;
ccd979bd 1596
5b6a3a2b
MF
1597 if (!ocfs2_check_dir_entry(dir, de, di_bh, offset)) {
1598 ret = -ENOENT;
1599 goto out;
1600 }
1601 if (ocfs2_match(namelen, name, de)) {
1602 ret = -EEXIST;
1603 goto out;
1604 }
1605 if (ocfs2_dirent_would_fit(de, rec_len)) {
1606 /* Ok, we found a spot. Return this bh and let
1607 * the caller actually fill it in. */
1608 *ret_de_bh = di_bh;
1609 get_bh(*ret_de_bh);
1610 ret = 0;
1611 goto out;
1612 }
ccd979bd 1613
5b6a3a2b
MF
1614 last_de = de;
1615 de_buf += le16_to_cpu(de->rec_len);
1616 offset += le16_to_cpu(de->rec_len);
1617 }
ccd979bd 1618
5b6a3a2b
MF
1619 /*
1620 * We're going to require expansion of the directory - figure
1621 * out how many blocks we'll need so that a place for the
1622 * dirent can be found.
1623 */
1624 *blocks_wanted = 1;
1625 new_rec_len = le16_to_cpu(last_de->rec_len) + (dir->i_sb->s_blocksize - i_size_read(dir));
1626 if (new_rec_len < (rec_len + OCFS2_DIR_REC_LEN(last_de->name_len)))
1627 *blocks_wanted = 2;
ccd979bd 1628
5b6a3a2b
MF
1629 ret = -ENOSPC;
1630out:
1631 return ret;
1632}
1633
1634static int ocfs2_find_dir_space_el(struct inode *dir, const char *name,
1635 int namelen, struct buffer_head **ret_de_bh)
1636{
1637 unsigned long offset;
1638 struct buffer_head *bh = NULL;
1639 unsigned short rec_len;
1640 struct ocfs2_dir_entry *de;
1641 struct super_block *sb = dir->i_sb;
1642 int status;
ccd979bd
MF
1643
1644 bh = ocfs2_bread(dir, 0, &status, 0);
1645 if (!bh) {
1646 mlog_errno(status);
1647 goto bail;
1648 }
1649
1650 rec_len = OCFS2_DIR_REC_LEN(namelen);
1651 offset = 0;
1652 de = (struct ocfs2_dir_entry *) bh->b_data;
1653 while (1) {
1654 if ((char *)de >= sb->s_blocksize + bh->b_data) {
1655 brelse(bh);
1656 bh = NULL;
1657
1658 if (i_size_read(dir) <= offset) {
5b6a3a2b
MF
1659 /*
1660 * Caller will have to expand this
1661 * directory.
1662 */
1663 status = -ENOSPC;
ccd979bd
MF
1664 goto bail;
1665 }
1666 bh = ocfs2_bread(dir,
1667 offset >> sb->s_blocksize_bits,
1668 &status,
1669 0);
1670 if (!bh) {
1671 mlog_errno(status);
1672 goto bail;
1673 }
1674 /* move to next block */
1675 de = (struct ocfs2_dir_entry *) bh->b_data;
1676 }
1677 if (!ocfs2_check_dir_entry(dir, de, bh, offset)) {
1678 status = -ENOENT;
1679 goto bail;
1680 }
1681 if (ocfs2_match(namelen, name, de)) {
1682 status = -EEXIST;
1683 goto bail;
1684 }
8553cf4f 1685 if (ocfs2_dirent_would_fit(de, rec_len)) {
ccd979bd
MF
1686 /* Ok, we found a spot. Return this bh and let
1687 * the caller actually fill it in. */
1688 *ret_de_bh = bh;
1689 get_bh(*ret_de_bh);
1690 status = 0;
1691 goto bail;
1692 }
1693 offset += le16_to_cpu(de->rec_len);
1694 de = (struct ocfs2_dir_entry *)((char *) de + le16_to_cpu(de->rec_len));
1695 }
1696
1697 status = 0;
1698bail:
1699 if (bh)
1700 brelse(bh);
1701
1702 mlog_exit(status);
1703 return status;
1704}
5b6a3a2b
MF
1705
1706int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb,
1707 struct inode *dir,
1708 struct buffer_head *parent_fe_bh,
1709 const char *name,
1710 int namelen,
1711 struct buffer_head **ret_de_bh)
1712{
1713 int ret;
1714 unsigned int blocks_wanted = 1;
1715 struct buffer_head *bh = NULL;
1716
1717 mlog(0, "getting ready to insert namelen %d into dir %llu\n",
1718 namelen, (unsigned long long)OCFS2_I(dir)->ip_blkno);
1719
1720 *ret_de_bh = NULL;
1721
1722 if (!namelen) {
1723 ret = -EINVAL;
1724 mlog_errno(ret);
1725 goto out;
1726 }
1727
1728 if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1729 ret = ocfs2_find_dir_space_id(dir, parent_fe_bh, name,
1730 namelen, &bh, &blocks_wanted);
1731 } else
1732 ret = ocfs2_find_dir_space_el(dir, name, namelen, &bh);
1733
1734 if (ret && ret != -ENOSPC) {
1735 mlog_errno(ret);
1736 goto out;
1737 }
1738
1739 if (ret == -ENOSPC) {
1740 /*
1741 * We have to expand the directory to add this name.
1742 */
1743 BUG_ON(bh);
1744
1745 ret = ocfs2_extend_dir(osb, dir, parent_fe_bh, blocks_wanted,
1746 &bh);
1747 if (ret) {
1748 if (ret != -ENOSPC)
1749 mlog_errno(ret);
1750 goto out;
1751 }
1752
1753 BUG_ON(!bh);
1754 }
1755
1756 *ret_de_bh = bh;
1757 bh = NULL;
1758out:
1759 if (bh)
1760 brelse(bh);
1761 return ret;
1762}