diff options
Diffstat (limited to 'fs/ocfs2/dir.c')
-rw-r--r-- | fs/ocfs2/dir.c | 1423 |
1 files changed, 1278 insertions, 145 deletions
diff --git a/fs/ocfs2/dir.c b/fs/ocfs2/dir.c index 0d5fdde959c8..7453b70c1a19 100644 --- a/fs/ocfs2/dir.c +++ b/fs/ocfs2/dir.c | |||
@@ -55,10 +55,16 @@ | |||
55 | #include "journal.h" | 55 | #include "journal.h" |
56 | #include "namei.h" | 56 | #include "namei.h" |
57 | #include "suballoc.h" | 57 | #include "suballoc.h" |
58 | #include "super.h" | ||
58 | #include "uptodate.h" | 59 | #include "uptodate.h" |
59 | 60 | ||
60 | #include "buffer_head_io.h" | 61 | #include "buffer_head_io.h" |
61 | 62 | ||
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 | |||
62 | static unsigned char ocfs2_filetype_table[] = { | 68 | static unsigned char ocfs2_filetype_table[] = { |
63 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK | 69 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK |
64 | }; | 70 | }; |
@@ -66,12 +72,614 @@ static unsigned char ocfs2_filetype_table[] = { | |||
66 | static int ocfs2_extend_dir(struct ocfs2_super *osb, | 72 | static int ocfs2_extend_dir(struct ocfs2_super *osb, |
67 | struct inode *dir, | 73 | struct inode *dir, |
68 | struct buffer_head *parent_fe_bh, | 74 | struct buffer_head *parent_fe_bh, |
75 | unsigned int blocks_wanted, | ||
69 | struct buffer_head **new_de_bh); | 76 | struct buffer_head **new_de_bh); |
77 | static 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 | |||
70 | /* | 85 | /* |
71 | * ocfs2_readdir() | 86 | * bh passed here can be an inode block or a dir data block, depending |
87 | * on the inode inline data flag. | ||
88 | */ | ||
89 | static int ocfs2_check_dir_entry(struct inode * dir, | ||
90 | struct ocfs2_dir_entry * de, | ||
91 | struct buffer_head * bh, | ||
92 | unsigned long offset) | ||
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 | |||
115 | static 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 | */ | ||
129 | static int inline ocfs2_search_dirblock(struct buffer_head *bh, | ||
130 | struct inode *dir, | ||
131 | const char *name, int namelen, | ||
132 | unsigned long offset, | ||
133 | char *first_de, | ||
134 | unsigned int bytes, | ||
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 | |||
144 | de_buf = first_de; | ||
145 | dlimit = de_buf + bytes; | ||
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 | |||
176 | bail: | ||
177 | mlog_exit(ret); | ||
178 | return ret; | ||
179 | } | ||
180 | |||
181 | static 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); | ||
207 | out: | ||
208 | return NULL; | ||
209 | } | ||
210 | |||
211 | struct buffer_head *ocfs2_find_entry_el(const char *name, int namelen, | ||
212 | struct inode *dir, | ||
213 | struct ocfs2_dir_entry **res_dir) | ||
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 | |||
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 | |||
236 | restart: | ||
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, | ||
275 | bh->b_data, sb->s_blocksize, | ||
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 | |||
302 | cleanup_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 | |||
311 | /* | ||
312 | * Try to find an entry of the provided name within 'dir'. | ||
72 | * | 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. | ||
73 | */ | 322 | */ |
74 | int ocfs2_readdir(struct file * filp, void * dirent, filldir_t filldir) | 323 | struct 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 | |||
335 | /* | ||
336 | * Update inode number and type of a previously found directory entry. | ||
337 | */ | ||
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) | ||
341 | { | ||
342 | int ret; | ||
343 | |||
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 | |||
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 | |||
361 | out: | ||
362 | return ret; | ||
363 | } | ||
364 | |||
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, | ||
368 | unsigned int bytes) | ||
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; | ||
377 | de = (struct ocfs2_dir_entry *) first_de; | ||
378 | while (i < bytes) { | ||
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) | ||
393 | pde->rec_len = | ||
394 | cpu_to_le16(le16_to_cpu(pde->rec_len) + | ||
395 | le16_to_cpu(de->rec_len)); | ||
396 | else | ||
397 | de->inode = 0; | ||
398 | dir->i_version++; | ||
399 | status = ocfs2_journal_dirty(handle, bh); | ||
400 | goto bail; | ||
401 | } | ||
402 | i += le16_to_cpu(de->rec_len); | ||
403 | pde = de; | ||
404 | de = (struct ocfs2_dir_entry *)((char *)de + le16_to_cpu(de->rec_len)); | ||
405 | } | ||
406 | bail: | ||
407 | mlog_exit(status); | ||
408 | return status; | ||
409 | } | ||
410 | |||
411 | static inline int ocfs2_delete_entry_id(handle_t *handle, | ||
412 | struct inode *dir, | ||
413 | struct ocfs2_dir_entry *de_del, | ||
414 | struct buffer_head *bh) | ||
415 | { | ||
416 | int ret; | ||
417 | struct buffer_head *di_bh = NULL; | ||
418 | struct ocfs2_dinode *di; | ||
419 | struct ocfs2_inline_data *data; | ||
420 | |||
421 | ret = ocfs2_read_block(OCFS2_SB(dir->i_sb), OCFS2_I(dir)->ip_blkno, | ||
422 | &di_bh, OCFS2_BH_CACHED, dir); | ||
423 | if (ret) { | ||
424 | mlog_errno(ret); | ||
425 | goto out; | ||
426 | } | ||
427 | |||
428 | di = (struct ocfs2_dinode *)di_bh->b_data; | ||
429 | data = &di->id2.i_data; | ||
430 | |||
431 | ret = __ocfs2_delete_entry(handle, dir, de_del, bh, data->id_data, | ||
432 | i_size_read(dir)); | ||
433 | |||
434 | brelse(di_bh); | ||
435 | out: | ||
436 | return ret; | ||
437 | } | ||
438 | |||
439 | static inline int ocfs2_delete_entry_el(handle_t *handle, | ||
440 | struct inode *dir, | ||
441 | struct ocfs2_dir_entry *de_del, | ||
442 | struct buffer_head *bh) | ||
443 | { | ||
444 | return __ocfs2_delete_entry(handle, dir, de_del, bh, bh->b_data, | ||
445 | bh->b_size); | ||
446 | } | ||
447 | |||
448 | /* | ||
449 | * ocfs2_delete_entry deletes a directory entry by merging it with the | ||
450 | * previous entry | ||
451 | */ | ||
452 | int ocfs2_delete_entry(handle_t *handle, | ||
453 | struct inode *dir, | ||
454 | struct ocfs2_dir_entry *de_del, | ||
455 | struct buffer_head *bh) | ||
456 | { | ||
457 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | ||
458 | return ocfs2_delete_entry_id(handle, dir, de_del, bh); | ||
459 | |||
460 | return ocfs2_delete_entry_el(handle, dir, de_del, bh); | ||
461 | } | ||
462 | |||
463 | /* | ||
464 | * Check whether 'de' has enough room to hold an entry of | ||
465 | * 'new_rec_len' bytes. | ||
466 | */ | ||
467 | static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry *de, | ||
468 | unsigned int new_rec_len) | ||
469 | { | ||
470 | unsigned int de_really_used; | ||
471 | |||
472 | /* Check whether this is an empty record with enough space */ | ||
473 | if (le64_to_cpu(de->inode) == 0 && | ||
474 | le16_to_cpu(de->rec_len) >= new_rec_len) | ||
475 | return 1; | ||
476 | |||
477 | /* | ||
478 | * Record might have free space at the end which we can | ||
479 | * use. | ||
480 | */ | ||
481 | de_really_used = OCFS2_DIR_REC_LEN(de->name_len); | ||
482 | if (le16_to_cpu(de->rec_len) >= (de_really_used + new_rec_len)) | ||
483 | return 1; | ||
484 | |||
485 | return 0; | ||
486 | } | ||
487 | |||
488 | /* we don't always have a dentry for what we want to add, so people | ||
489 | * like orphan dir can call this instead. | ||
490 | * | ||
491 | * If you pass me insert_bh, I'll skip the search of the other dir | ||
492 | * blocks and put the record in there. | ||
493 | */ | ||
494 | int __ocfs2_add_entry(handle_t *handle, | ||
495 | struct inode *dir, | ||
496 | const char *name, int namelen, | ||
497 | struct inode *inode, u64 blkno, | ||
498 | struct buffer_head *parent_fe_bh, | ||
499 | struct buffer_head *insert_bh) | ||
500 | { | ||
501 | unsigned long offset; | ||
502 | unsigned short rec_len; | ||
503 | struct ocfs2_dir_entry *de, *de1; | ||
504 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)parent_fe_bh->b_data; | ||
505 | struct super_block *sb = dir->i_sb; | ||
506 | int retval, status; | ||
507 | unsigned int size = sb->s_blocksize; | ||
508 | char *data_start = insert_bh->b_data; | ||
509 | |||
510 | mlog_entry_void(); | ||
511 | |||
512 | if (!namelen) | ||
513 | return -EINVAL; | ||
514 | |||
515 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | ||
516 | data_start = di->id2.i_data.id_data; | ||
517 | size = i_size_read(dir); | ||
518 | |||
519 | BUG_ON(insert_bh != parent_fe_bh); | ||
520 | } | ||
521 | |||
522 | rec_len = OCFS2_DIR_REC_LEN(namelen); | ||
523 | offset = 0; | ||
524 | de = (struct ocfs2_dir_entry *) data_start; | ||
525 | while (1) { | ||
526 | BUG_ON((char *)de >= (size + data_start)); | ||
527 | |||
528 | /* These checks should've already been passed by the | ||
529 | * prepare function, but I guess we can leave them | ||
530 | * here anyway. */ | ||
531 | if (!ocfs2_check_dir_entry(dir, de, insert_bh, offset)) { | ||
532 | retval = -ENOENT; | ||
533 | goto bail; | ||
534 | } | ||
535 | if (ocfs2_match(namelen, name, de)) { | ||
536 | retval = -EEXIST; | ||
537 | goto bail; | ||
538 | } | ||
539 | |||
540 | if (ocfs2_dirent_would_fit(de, rec_len)) { | ||
541 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; | ||
542 | retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh); | ||
543 | if (retval < 0) { | ||
544 | mlog_errno(retval); | ||
545 | goto bail; | ||
546 | } | ||
547 | |||
548 | status = ocfs2_journal_access(handle, dir, insert_bh, | ||
549 | OCFS2_JOURNAL_ACCESS_WRITE); | ||
550 | /* By now the buffer is marked for journaling */ | ||
551 | offset += le16_to_cpu(de->rec_len); | ||
552 | if (le64_to_cpu(de->inode)) { | ||
553 | de1 = (struct ocfs2_dir_entry *)((char *) de + | ||
554 | OCFS2_DIR_REC_LEN(de->name_len)); | ||
555 | de1->rec_len = | ||
556 | cpu_to_le16(le16_to_cpu(de->rec_len) - | ||
557 | OCFS2_DIR_REC_LEN(de->name_len)); | ||
558 | de->rec_len = cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len)); | ||
559 | de = de1; | ||
560 | } | ||
561 | de->file_type = OCFS2_FT_UNKNOWN; | ||
562 | if (blkno) { | ||
563 | de->inode = cpu_to_le64(blkno); | ||
564 | ocfs2_set_de_type(de, inode->i_mode); | ||
565 | } else | ||
566 | de->inode = 0; | ||
567 | de->name_len = namelen; | ||
568 | memcpy(de->name, name, namelen); | ||
569 | |||
570 | dir->i_version++; | ||
571 | status = ocfs2_journal_dirty(handle, insert_bh); | ||
572 | retval = 0; | ||
573 | goto bail; | ||
574 | } | ||
575 | offset += le16_to_cpu(de->rec_len); | ||
576 | de = (struct ocfs2_dir_entry *) ((char *) de + le16_to_cpu(de->rec_len)); | ||
577 | } | ||
578 | |||
579 | /* when you think about it, the assert above should prevent us | ||
580 | * from ever getting here. */ | ||
581 | retval = -ENOSPC; | ||
582 | bail: | ||
583 | |||
584 | mlog_exit(retval); | ||
585 | return retval; | ||
586 | } | ||
587 | |||
588 | static int ocfs2_dir_foreach_blk_id(struct inode *inode, | ||
589 | unsigned long *f_version, | ||
590 | loff_t *f_pos, void *priv, | ||
591 | filldir_t filldir, int *filldir_err) | ||
592 | { | ||
593 | int ret, i, filldir_ret; | ||
594 | unsigned long offset = *f_pos; | ||
595 | struct buffer_head *di_bh = NULL; | ||
596 | struct ocfs2_dinode *di; | ||
597 | struct ocfs2_inline_data *data; | ||
598 | struct ocfs2_dir_entry *de; | ||
599 | |||
600 | ret = ocfs2_read_block(OCFS2_SB(inode->i_sb), OCFS2_I(inode)->ip_blkno, | ||
601 | &di_bh, OCFS2_BH_CACHED, inode); | ||
602 | if (ret) { | ||
603 | mlog(ML_ERROR, "Unable to read inode block for dir %llu\n", | ||
604 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | ||
605 | goto out; | ||
606 | } | ||
607 | |||
608 | di = (struct ocfs2_dinode *)di_bh->b_data; | ||
609 | data = &di->id2.i_data; | ||
610 | |||
611 | while (*f_pos < i_size_read(inode)) { | ||
612 | revalidate: | ||
613 | /* If the dir block has changed since the last call to | ||
614 | * readdir(2), then we might be pointing to an invalid | ||
615 | * dirent right now. Scan from the start of the block | ||
616 | * to make sure. */ | ||
617 | if (*f_version != inode->i_version) { | ||
618 | for (i = 0; i < i_size_read(inode) && i < offset; ) { | ||
619 | de = (struct ocfs2_dir_entry *) | ||
620 | (data->id_data + i); | ||
621 | /* It's too expensive to do a full | ||
622 | * dirent test each time round this | ||
623 | * loop, but we do have to test at | ||
624 | * least that it is non-zero. A | ||
625 | * failure will be detected in the | ||
626 | * dirent test below. */ | ||
627 | if (le16_to_cpu(de->rec_len) < | ||
628 | OCFS2_DIR_REC_LEN(1)) | ||
629 | break; | ||
630 | i += le16_to_cpu(de->rec_len); | ||
631 | } | ||
632 | *f_pos = offset = i; | ||
633 | *f_version = inode->i_version; | ||
634 | } | ||
635 | |||
636 | de = (struct ocfs2_dir_entry *) (data->id_data + *f_pos); | ||
637 | if (!ocfs2_check_dir_entry(inode, de, di_bh, *f_pos)) { | ||
638 | /* On error, skip the f_pos to the end. */ | ||
639 | *f_pos = i_size_read(inode); | ||
640 | goto out; | ||
641 | } | ||
642 | offset += le16_to_cpu(de->rec_len); | ||
643 | if (le64_to_cpu(de->inode)) { | ||
644 | /* We might block in the next section | ||
645 | * if the data destination is | ||
646 | * currently swapped out. So, use a | ||
647 | * version stamp to detect whether or | ||
648 | * not the directory has been modified | ||
649 | * during the copy operation. | ||
650 | */ | ||
651 | unsigned long version = *f_version; | ||
652 | unsigned char d_type = DT_UNKNOWN; | ||
653 | |||
654 | if (de->file_type < OCFS2_FT_MAX) | ||
655 | d_type = ocfs2_filetype_table[de->file_type]; | ||
656 | |||
657 | filldir_ret = filldir(priv, de->name, | ||
658 | de->name_len, | ||
659 | *f_pos, | ||
660 | le64_to_cpu(de->inode), | ||
661 | d_type); | ||
662 | if (filldir_ret) { | ||
663 | if (filldir_err) | ||
664 | *filldir_err = filldir_ret; | ||
665 | break; | ||
666 | } | ||
667 | if (version != *f_version) | ||
668 | goto revalidate; | ||
669 | } | ||
670 | *f_pos += le16_to_cpu(de->rec_len); | ||
671 | } | ||
672 | |||
673 | out: | ||
674 | brelse(di_bh); | ||
675 | |||
676 | return 0; | ||
677 | } | ||
678 | |||
679 | static int ocfs2_dir_foreach_blk_el(struct inode *inode, | ||
680 | unsigned long *f_version, | ||
681 | loff_t *f_pos, void *priv, | ||
682 | filldir_t filldir, int *filldir_err) | ||
75 | { | 683 | { |
76 | int error = 0; | 684 | int error = 0; |
77 | unsigned long offset, blk, last_ra_blk = 0; | 685 | unsigned long offset, blk, last_ra_blk = 0; |
@@ -79,45 +687,23 @@ int ocfs2_readdir(struct file * filp, void * dirent, filldir_t filldir) | |||
79 | struct buffer_head * bh, * tmp; | 687 | struct buffer_head * bh, * tmp; |
80 | struct ocfs2_dir_entry * de; | 688 | struct ocfs2_dir_entry * de; |
81 | int err; | 689 | int err; |
82 | struct inode *inode = filp->f_path.dentry->d_inode; | ||
83 | struct super_block * sb = inode->i_sb; | 690 | struct super_block * sb = inode->i_sb; |
84 | unsigned int ra_sectors = 16; | 691 | unsigned int ra_sectors = 16; |
85 | int lock_level = 0; | ||
86 | |||
87 | mlog_entry("dirino=%llu\n", | ||
88 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | ||
89 | 692 | ||
90 | stored = 0; | 693 | stored = 0; |
91 | bh = NULL; | 694 | bh = NULL; |
92 | 695 | ||
93 | error = ocfs2_meta_lock_atime(inode, filp->f_vfsmnt, &lock_level); | 696 | offset = (*f_pos) & (sb->s_blocksize - 1); |
94 | if (lock_level && error >= 0) { | ||
95 | /* We release EX lock which used to update atime | ||
96 | * and get PR lock again to reduce contention | ||
97 | * on commonly accessed directories. */ | ||
98 | ocfs2_meta_unlock(inode, 1); | ||
99 | lock_level = 0; | ||
100 | error = ocfs2_meta_lock(inode, NULL, 0); | ||
101 | } | ||
102 | if (error < 0) { | ||
103 | if (error != -ENOENT) | ||
104 | mlog_errno(error); | ||
105 | /* we haven't got any yet, so propagate the error. */ | ||
106 | stored = error; | ||
107 | goto bail_nolock; | ||
108 | } | ||
109 | 697 | ||
110 | offset = filp->f_pos & (sb->s_blocksize - 1); | 698 | while (!error && !stored && *f_pos < i_size_read(inode)) { |
111 | 699 | blk = (*f_pos) >> sb->s_blocksize_bits; | |
112 | while (!error && !stored && filp->f_pos < i_size_read(inode)) { | ||
113 | blk = (filp->f_pos) >> sb->s_blocksize_bits; | ||
114 | bh = ocfs2_bread(inode, blk, &err, 0); | 700 | bh = ocfs2_bread(inode, blk, &err, 0); |
115 | if (!bh) { | 701 | if (!bh) { |
116 | mlog(ML_ERROR, | 702 | mlog(ML_ERROR, |
117 | "directory #%llu contains a hole at offset %lld\n", | 703 | "directory #%llu contains a hole at offset %lld\n", |
118 | (unsigned long long)OCFS2_I(inode)->ip_blkno, | 704 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
119 | filp->f_pos); | 705 | *f_pos); |
120 | filp->f_pos += sb->s_blocksize - offset; | 706 | *f_pos += sb->s_blocksize - offset; |
121 | continue; | 707 | continue; |
122 | } | 708 | } |
123 | 709 | ||
@@ -143,7 +729,7 @@ revalidate: | |||
143 | * readdir(2), then we might be pointing to an invalid | 729 | * readdir(2), then we might be pointing to an invalid |
144 | * dirent right now. Scan from the start of the block | 730 | * dirent right now. Scan from the start of the block |
145 | * to make sure. */ | 731 | * to make sure. */ |
146 | if (filp->f_version != inode->i_version) { | 732 | if (*f_version != inode->i_version) { |
147 | for (i = 0; i < sb->s_blocksize && i < offset; ) { | 733 | for (i = 0; i < sb->s_blocksize && i < offset; ) { |
148 | de = (struct ocfs2_dir_entry *) (bh->b_data + i); | 734 | de = (struct ocfs2_dir_entry *) (bh->b_data + i); |
149 | /* It's too expensive to do a full | 735 | /* It's too expensive to do a full |
@@ -158,21 +744,20 @@ revalidate: | |||
158 | i += le16_to_cpu(de->rec_len); | 744 | i += le16_to_cpu(de->rec_len); |
159 | } | 745 | } |
160 | offset = i; | 746 | offset = i; |
161 | filp->f_pos = (filp->f_pos & ~(sb->s_blocksize - 1)) | 747 | *f_pos = ((*f_pos) & ~(sb->s_blocksize - 1)) |
162 | | offset; | 748 | | offset; |
163 | filp->f_version = inode->i_version; | 749 | *f_version = inode->i_version; |
164 | } | 750 | } |
165 | 751 | ||
166 | while (!error && filp->f_pos < i_size_read(inode) | 752 | while (!error && *f_pos < i_size_read(inode) |
167 | && offset < sb->s_blocksize) { | 753 | && offset < sb->s_blocksize) { |
168 | de = (struct ocfs2_dir_entry *) (bh->b_data + offset); | 754 | de = (struct ocfs2_dir_entry *) (bh->b_data + offset); |
169 | if (!ocfs2_check_dir_entry(inode, de, bh, offset)) { | 755 | if (!ocfs2_check_dir_entry(inode, de, bh, offset)) { |
170 | /* On error, skip the f_pos to the | 756 | /* On error, skip the f_pos to the |
171 | next block. */ | 757 | next block. */ |
172 | filp->f_pos = (filp->f_pos | | 758 | *f_pos = ((*f_pos) | (sb->s_blocksize - 1)) + 1; |
173 | (sb->s_blocksize - 1)) + 1; | ||
174 | brelse(bh); | 759 | brelse(bh); |
175 | goto bail; | 760 | goto out; |
176 | } | 761 | } |
177 | offset += le16_to_cpu(de->rec_len); | 762 | offset += le16_to_cpu(de->rec_len); |
178 | if (le64_to_cpu(de->inode)) { | 763 | if (le64_to_cpu(de->inode)) { |
@@ -183,36 +768,109 @@ revalidate: | |||
183 | * not the directory has been modified | 768 | * not the directory has been modified |
184 | * during the copy operation. | 769 | * during the copy operation. |
185 | */ | 770 | */ |
186 | unsigned long version = filp->f_version; | 771 | unsigned long version = *f_version; |
187 | unsigned char d_type = DT_UNKNOWN; | 772 | unsigned char d_type = DT_UNKNOWN; |
188 | 773 | ||
189 | if (de->file_type < OCFS2_FT_MAX) | 774 | if (de->file_type < OCFS2_FT_MAX) |
190 | d_type = ocfs2_filetype_table[de->file_type]; | 775 | d_type = ocfs2_filetype_table[de->file_type]; |
191 | error = filldir(dirent, de->name, | 776 | error = filldir(priv, de->name, |
192 | de->name_len, | 777 | de->name_len, |
193 | filp->f_pos, | 778 | *f_pos, |
194 | ino_from_blkno(sb, le64_to_cpu(de->inode)), | 779 | le64_to_cpu(de->inode), |
195 | d_type); | 780 | d_type); |
196 | if (error) | 781 | if (error) { |
782 | if (filldir_err) | ||
783 | *filldir_err = error; | ||
197 | break; | 784 | break; |
198 | if (version != filp->f_version) | 785 | } |
786 | if (version != *f_version) | ||
199 | goto revalidate; | 787 | goto revalidate; |
200 | stored ++; | 788 | stored ++; |
201 | } | 789 | } |
202 | filp->f_pos += le16_to_cpu(de->rec_len); | 790 | *f_pos += le16_to_cpu(de->rec_len); |
203 | } | 791 | } |
204 | offset = 0; | 792 | offset = 0; |
205 | brelse(bh); | 793 | brelse(bh); |
206 | } | 794 | } |
207 | 795 | ||
208 | stored = 0; | 796 | stored = 0; |
209 | bail: | 797 | out: |
798 | return stored; | ||
799 | } | ||
800 | |||
801 | static int ocfs2_dir_foreach_blk(struct inode *inode, unsigned long *f_version, | ||
802 | loff_t *f_pos, void *priv, filldir_t filldir, | ||
803 | int *filldir_err) | ||
804 | { | ||
805 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | ||
806 | return ocfs2_dir_foreach_blk_id(inode, f_version, f_pos, priv, | ||
807 | filldir, filldir_err); | ||
808 | |||
809 | return ocfs2_dir_foreach_blk_el(inode, f_version, f_pos, priv, filldir, | ||
810 | filldir_err); | ||
811 | } | ||
812 | |||
813 | /* | ||
814 | * This is intended to be called from inside other kernel functions, | ||
815 | * so we fake some arguments. | ||
816 | */ | ||
817 | int ocfs2_dir_foreach(struct inode *inode, loff_t *f_pos, void *priv, | ||
818 | filldir_t filldir) | ||
819 | { | ||
820 | int ret = 0, filldir_err = 0; | ||
821 | unsigned long version = inode->i_version; | ||
822 | |||
823 | while (*f_pos < i_size_read(inode)) { | ||
824 | ret = ocfs2_dir_foreach_blk(inode, &version, f_pos, priv, | ||
825 | filldir, &filldir_err); | ||
826 | if (ret || filldir_err) | ||
827 | break; | ||
828 | } | ||
829 | |||
830 | if (ret > 0) | ||
831 | ret = -EIO; | ||
832 | |||
833 | return 0; | ||
834 | } | ||
835 | |||
836 | /* | ||
837 | * ocfs2_readdir() | ||
838 | * | ||
839 | */ | ||
840 | int ocfs2_readdir(struct file * filp, void * dirent, filldir_t filldir) | ||
841 | { | ||
842 | int error = 0; | ||
843 | struct inode *inode = filp->f_path.dentry->d_inode; | ||
844 | int lock_level = 0; | ||
845 | |||
846 | mlog_entry("dirino=%llu\n", | ||
847 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | ||
848 | |||
849 | error = ocfs2_meta_lock_atime(inode, filp->f_vfsmnt, &lock_level); | ||
850 | if (lock_level && error >= 0) { | ||
851 | /* We release EX lock which used to update atime | ||
852 | * and get PR lock again to reduce contention | ||
853 | * on commonly accessed directories. */ | ||
854 | ocfs2_meta_unlock(inode, 1); | ||
855 | lock_level = 0; | ||
856 | error = ocfs2_meta_lock(inode, NULL, 0); | ||
857 | } | ||
858 | if (error < 0) { | ||
859 | if (error != -ENOENT) | ||
860 | mlog_errno(error); | ||
861 | /* we haven't got any yet, so propagate the error. */ | ||
862 | goto bail_nolock; | ||
863 | } | ||
864 | |||
865 | error = ocfs2_dir_foreach_blk(inode, &filp->f_version, &filp->f_pos, | ||
866 | dirent, filldir, NULL); | ||
867 | |||
210 | ocfs2_meta_unlock(inode, lock_level); | 868 | ocfs2_meta_unlock(inode, lock_level); |
211 | 869 | ||
212 | bail_nolock: | 870 | bail_nolock: |
213 | mlog_exit(stored); | 871 | mlog_exit(error); |
214 | 872 | ||
215 | return stored; | 873 | return error; |
216 | } | 874 | } |
217 | 875 | ||
218 | /* | 876 | /* |
@@ -252,6 +910,23 @@ leave: | |||
252 | return status; | 910 | return status; |
253 | } | 911 | } |
254 | 912 | ||
913 | /* | ||
914 | * Convenience function for callers which just want the block number | ||
915 | * mapped to a name and don't require the full dirent info, etc. | ||
916 | */ | ||
917 | int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name, | ||
918 | int namelen, u64 *blkno) | ||
919 | { | ||
920 | int ret; | ||
921 | struct buffer_head *bh = NULL; | ||
922 | struct ocfs2_dir_entry *dirent = NULL; | ||
923 | |||
924 | ret = ocfs2_find_files_on_disk(name, namelen, blkno, dir, &bh, &dirent); | ||
925 | brelse(bh); | ||
926 | |||
927 | return ret; | ||
928 | } | ||
929 | |||
255 | /* Check for a name within a directory. | 930 | /* Check for a name within a directory. |
256 | * | 931 | * |
257 | * Return 0 if the name does not exist | 932 | * Return 0 if the name does not exist |
@@ -284,77 +959,414 @@ bail: | |||
284 | return ret; | 959 | return ret; |
285 | } | 960 | } |
286 | 961 | ||
962 | struct ocfs2_empty_dir_priv { | ||
963 | unsigned seen_dot; | ||
964 | unsigned seen_dot_dot; | ||
965 | unsigned seen_other; | ||
966 | }; | ||
967 | static int ocfs2_empty_dir_filldir(void *priv, const char *name, int name_len, | ||
968 | loff_t pos, u64 ino, unsigned type) | ||
969 | { | ||
970 | struct ocfs2_empty_dir_priv *p = priv; | ||
971 | |||
972 | /* | ||
973 | * Check the positions of "." and ".." records to be sure | ||
974 | * they're in the correct place. | ||
975 | */ | ||
976 | if (name_len == 1 && !strncmp(".", name, 1) && pos == 0) { | ||
977 | p->seen_dot = 1; | ||
978 | return 0; | ||
979 | } | ||
980 | |||
981 | if (name_len == 2 && !strncmp("..", name, 2) && | ||
982 | pos == OCFS2_DIR_REC_LEN(1)) { | ||
983 | p->seen_dot_dot = 1; | ||
984 | return 0; | ||
985 | } | ||
986 | |||
987 | p->seen_other = 1; | ||
988 | return 1; | ||
989 | } | ||
287 | /* | 990 | /* |
288 | * routine to check that the specified directory is empty (for rmdir) | 991 | * routine to check that the specified directory is empty (for rmdir) |
992 | * | ||
993 | * Returns 1 if dir is empty, zero otherwise. | ||
289 | */ | 994 | */ |
290 | int ocfs2_empty_dir(struct inode *inode) | 995 | int ocfs2_empty_dir(struct inode *inode) |
291 | { | 996 | { |
292 | unsigned long offset; | 997 | int ret; |
293 | struct buffer_head * bh; | 998 | loff_t start = 0; |
294 | struct ocfs2_dir_entry * de, * de1; | 999 | struct ocfs2_empty_dir_priv priv; |
295 | struct super_block * sb; | 1000 | |
296 | int err; | 1001 | memset(&priv, 0, sizeof(priv)); |
1002 | |||
1003 | ret = ocfs2_dir_foreach(inode, &start, &priv, ocfs2_empty_dir_filldir); | ||
1004 | if (ret) | ||
1005 | mlog_errno(ret); | ||
297 | 1006 | ||
298 | sb = inode->i_sb; | 1007 | if (!priv.seen_dot || !priv.seen_dot_dot) { |
299 | if ((i_size_read(inode) < | 1008 | mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n", |
300 | (OCFS2_DIR_REC_LEN(1) + OCFS2_DIR_REC_LEN(2))) || | ||
301 | !(bh = ocfs2_bread(inode, 0, &err, 0))) { | ||
302 | mlog(ML_ERROR, "bad directory (dir #%llu) - no data block\n", | ||
303 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | 1009 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
1010 | /* | ||
1011 | * XXX: Is it really safe to allow an unlink to continue? | ||
1012 | */ | ||
304 | return 1; | 1013 | return 1; |
305 | } | 1014 | } |
306 | 1015 | ||
307 | de = (struct ocfs2_dir_entry *) bh->b_data; | 1016 | return !priv.seen_other; |
308 | de1 = (struct ocfs2_dir_entry *) | 1017 | } |
309 | ((char *)de + le16_to_cpu(de->rec_len)); | 1018 | |
310 | if ((le64_to_cpu(de->inode) != OCFS2_I(inode)->ip_blkno) || | 1019 | static void ocfs2_fill_initial_dirents(struct inode *inode, |
311 | !le64_to_cpu(de1->inode) || | 1020 | struct inode *parent, |
312 | strcmp(".", de->name) || | 1021 | char *start, unsigned int size) |
313 | strcmp("..", de1->name)) { | 1022 | { |
314 | mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n", | 1023 | struct ocfs2_dir_entry *de = (struct ocfs2_dir_entry *)start; |
315 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | 1024 | |
316 | brelse(bh); | 1025 | de->inode = cpu_to_le64(OCFS2_I(inode)->ip_blkno); |
317 | return 1; | 1026 | de->name_len = 1; |
1027 | de->rec_len = | ||
1028 | cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len)); | ||
1029 | strcpy(de->name, "."); | ||
1030 | ocfs2_set_de_type(de, S_IFDIR); | ||
1031 | |||
1032 | de = (struct ocfs2_dir_entry *) ((char *)de + le16_to_cpu(de->rec_len)); | ||
1033 | de->inode = cpu_to_le64(OCFS2_I(parent)->ip_blkno); | ||
1034 | de->rec_len = cpu_to_le16(size - OCFS2_DIR_REC_LEN(1)); | ||
1035 | de->name_len = 2; | ||
1036 | strcpy(de->name, ".."); | ||
1037 | ocfs2_set_de_type(de, S_IFDIR); | ||
1038 | } | ||
1039 | |||
1040 | /* | ||
1041 | * This works together with code in ocfs2_mknod_locked() which sets | ||
1042 | * the inline-data flag and initializes the inline-data section. | ||
1043 | */ | ||
1044 | static int ocfs2_fill_new_dir_id(struct ocfs2_super *osb, | ||
1045 | handle_t *handle, | ||
1046 | struct inode *parent, | ||
1047 | struct inode *inode, | ||
1048 | struct buffer_head *di_bh) | ||
1049 | { | ||
1050 | int ret; | ||
1051 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | ||
1052 | struct ocfs2_inline_data *data = &di->id2.i_data; | ||
1053 | unsigned int size = le16_to_cpu(data->id_count); | ||
1054 | |||
1055 | ret = ocfs2_journal_access(handle, inode, di_bh, | ||
1056 | OCFS2_JOURNAL_ACCESS_WRITE); | ||
1057 | if (ret) { | ||
1058 | mlog_errno(ret); | ||
1059 | goto out; | ||
318 | } | 1060 | } |
319 | offset = le16_to_cpu(de->rec_len) + le16_to_cpu(de1->rec_len); | 1061 | |
320 | de = (struct ocfs2_dir_entry *)((char *)de1 + le16_to_cpu(de1->rec_len)); | 1062 | ocfs2_fill_initial_dirents(inode, parent, data->id_data, size); |
321 | while (offset < i_size_read(inode) ) { | 1063 | |
322 | if (!bh || (void *)de >= (void *)(bh->b_data + sb->s_blocksize)) { | 1064 | ocfs2_journal_dirty(handle, di_bh); |
323 | brelse(bh); | 1065 | if (ret) { |
324 | bh = ocfs2_bread(inode, | 1066 | mlog_errno(ret); |
325 | offset >> sb->s_blocksize_bits, &err, 0); | 1067 | goto out; |
326 | if (!bh) { | 1068 | } |
327 | mlog(ML_ERROR, "dir %llu has a hole at %lu\n", | 1069 | |
328 | (unsigned long long)OCFS2_I(inode)->ip_blkno, offset); | 1070 | i_size_write(inode, size); |
329 | offset += sb->s_blocksize; | 1071 | inode->i_nlink = 2; |
330 | continue; | 1072 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
331 | } | 1073 | |
332 | de = (struct ocfs2_dir_entry *) bh->b_data; | 1074 | ret = ocfs2_mark_inode_dirty(handle, inode, di_bh); |
333 | } | 1075 | if (ret < 0) |
334 | if (!ocfs2_check_dir_entry(inode, de, bh, offset)) { | 1076 | mlog_errno(ret); |
335 | brelse(bh); | 1077 | |
336 | return 1; | 1078 | out: |
1079 | return ret; | ||
1080 | } | ||
1081 | |||
1082 | static int ocfs2_fill_new_dir_el(struct ocfs2_super *osb, | ||
1083 | handle_t *handle, | ||
1084 | struct inode *parent, | ||
1085 | struct inode *inode, | ||
1086 | struct buffer_head *fe_bh, | ||
1087 | struct ocfs2_alloc_context *data_ac) | ||
1088 | { | ||
1089 | int status; | ||
1090 | struct buffer_head *new_bh = NULL; | ||
1091 | |||
1092 | mlog_entry_void(); | ||
1093 | |||
1094 | status = ocfs2_do_extend_dir(osb->sb, handle, inode, fe_bh, | ||
1095 | data_ac, NULL, &new_bh); | ||
1096 | if (status < 0) { | ||
1097 | mlog_errno(status); | ||
1098 | goto bail; | ||
1099 | } | ||
1100 | |||
1101 | ocfs2_set_new_buffer_uptodate(inode, new_bh); | ||
1102 | |||
1103 | status = ocfs2_journal_access(handle, inode, new_bh, | ||
1104 | OCFS2_JOURNAL_ACCESS_CREATE); | ||
1105 | if (status < 0) { | ||
1106 | mlog_errno(status); | ||
1107 | goto bail; | ||
1108 | } | ||
1109 | memset(new_bh->b_data, 0, osb->sb->s_blocksize); | ||
1110 | |||
1111 | ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data, | ||
1112 | osb->sb->s_blocksize); | ||
1113 | |||
1114 | status = ocfs2_journal_dirty(handle, new_bh); | ||
1115 | if (status < 0) { | ||
1116 | mlog_errno(status); | ||
1117 | goto bail; | ||
1118 | } | ||
1119 | |||
1120 | i_size_write(inode, inode->i_sb->s_blocksize); | ||
1121 | inode->i_nlink = 2; | ||
1122 | inode->i_blocks = ocfs2_inode_sector_count(inode); | ||
1123 | status = ocfs2_mark_inode_dirty(handle, inode, fe_bh); | ||
1124 | if (status < 0) { | ||
1125 | mlog_errno(status); | ||
1126 | goto bail; | ||
1127 | } | ||
1128 | |||
1129 | status = 0; | ||
1130 | bail: | ||
1131 | if (new_bh) | ||
1132 | brelse(new_bh); | ||
1133 | |||
1134 | mlog_exit(status); | ||
1135 | return status; | ||
1136 | } | ||
1137 | |||
1138 | int ocfs2_fill_new_dir(struct ocfs2_super *osb, | ||
1139 | handle_t *handle, | ||
1140 | struct inode *parent, | ||
1141 | struct inode *inode, | ||
1142 | struct buffer_head *fe_bh, | ||
1143 | struct ocfs2_alloc_context *data_ac) | ||
1144 | { | ||
1145 | BUG_ON(!ocfs2_supports_inline_data(osb) && data_ac == NULL); | ||
1146 | |||
1147 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | ||
1148 | return ocfs2_fill_new_dir_id(osb, handle, parent, inode, fe_bh); | ||
1149 | |||
1150 | return ocfs2_fill_new_dir_el(osb, handle, parent, inode, fe_bh, | ||
1151 | data_ac); | ||
1152 | } | ||
1153 | |||
1154 | static void ocfs2_expand_last_dirent(char *start, unsigned int old_size, | ||
1155 | unsigned int new_size) | ||
1156 | { | ||
1157 | struct ocfs2_dir_entry *de; | ||
1158 | struct ocfs2_dir_entry *prev_de; | ||
1159 | char *de_buf, *limit; | ||
1160 | unsigned int bytes = new_size - old_size; | ||
1161 | |||
1162 | limit = start + old_size; | ||
1163 | de_buf = start; | ||
1164 | de = (struct ocfs2_dir_entry *)de_buf; | ||
1165 | do { | ||
1166 | prev_de = de; | ||
1167 | de_buf += le16_to_cpu(de->rec_len); | ||
1168 | de = (struct ocfs2_dir_entry *)de_buf; | ||
1169 | } while (de_buf < limit); | ||
1170 | |||
1171 | le16_add_cpu(&prev_de->rec_len, bytes); | ||
1172 | } | ||
1173 | |||
1174 | /* | ||
1175 | * We allocate enough clusters to fulfill "blocks_wanted", but set | ||
1176 | * i_size to exactly one block. Ocfs2_extend_dir() will handle the | ||
1177 | * rest automatically for us. | ||
1178 | * | ||
1179 | * *first_block_bh is a pointer to the 1st data block allocated to the | ||
1180 | * directory. | ||
1181 | */ | ||
1182 | static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh, | ||
1183 | unsigned int blocks_wanted, | ||
1184 | struct buffer_head **first_block_bh) | ||
1185 | { | ||
1186 | int ret, credits = OCFS2_INLINE_TO_EXTENTS_CREDITS; | ||
1187 | u32 alloc, bit_off, len; | ||
1188 | struct super_block *sb = dir->i_sb; | ||
1189 | u64 blkno, bytes = blocks_wanted << sb->s_blocksize_bits; | ||
1190 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | ||
1191 | struct ocfs2_inode_info *oi = OCFS2_I(dir); | ||
1192 | struct ocfs2_alloc_context *data_ac; | ||
1193 | struct buffer_head *dirdata_bh = NULL; | ||
1194 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | ||
1195 | handle_t *handle; | ||
1196 | |||
1197 | alloc = ocfs2_clusters_for_bytes(sb, bytes); | ||
1198 | |||
1199 | /* | ||
1200 | * We should never need more than 2 clusters for this - | ||
1201 | * maximum dirent size is far less than one block. In fact, | ||
1202 | * the only time we'd need more than one cluster is if | ||
1203 | * blocksize == clustersize and the dirent won't fit in the | ||
1204 | * extra space that the expansion to a single block gives. As | ||
1205 | * of today, that only happens on 4k/4k file systems. | ||
1206 | */ | ||
1207 | BUG_ON(alloc > 2); | ||
1208 | |||
1209 | ret = ocfs2_reserve_clusters(osb, alloc, &data_ac); | ||
1210 | if (ret) { | ||
1211 | mlog_errno(ret); | ||
1212 | goto out; | ||
1213 | } | ||
1214 | |||
1215 | down_write(&oi->ip_alloc_sem); | ||
1216 | |||
1217 | /* | ||
1218 | * Prepare for worst case allocation scenario of two seperate | ||
1219 | * extents. | ||
1220 | */ | ||
1221 | if (alloc == 2) | ||
1222 | credits += OCFS2_SUBALLOC_ALLOC; | ||
1223 | |||
1224 | handle = ocfs2_start_trans(osb, credits); | ||
1225 | if (IS_ERR(handle)) { | ||
1226 | ret = PTR_ERR(handle); | ||
1227 | mlog_errno(ret); | ||
1228 | goto out_sem; | ||
1229 | } | ||
1230 | |||
1231 | /* | ||
1232 | * Try to claim as many clusters as the bitmap can give though | ||
1233 | * if we only get one now, that's enough to continue. The rest | ||
1234 | * will be claimed after the conversion to extents. | ||
1235 | */ | ||
1236 | ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off, &len); | ||
1237 | if (ret) { | ||
1238 | mlog_errno(ret); | ||
1239 | goto out_commit; | ||
1240 | } | ||
1241 | |||
1242 | /* | ||
1243 | * Operations are carefully ordered so that we set up the new | ||
1244 | * data block first. The conversion from inline data to | ||
1245 | * extents follows. | ||
1246 | */ | ||
1247 | blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off); | ||
1248 | dirdata_bh = sb_getblk(sb, blkno); | ||
1249 | if (!dirdata_bh) { | ||
1250 | ret = -EIO; | ||
1251 | mlog_errno(ret); | ||
1252 | goto out_commit; | ||
1253 | } | ||
1254 | |||
1255 | ocfs2_set_new_buffer_uptodate(dir, dirdata_bh); | ||
1256 | |||
1257 | ret = ocfs2_journal_access(handle, dir, dirdata_bh, | ||
1258 | OCFS2_JOURNAL_ACCESS_CREATE); | ||
1259 | if (ret) { | ||
1260 | mlog_errno(ret); | ||
1261 | goto out_commit; | ||
1262 | } | ||
1263 | |||
1264 | memcpy(dirdata_bh->b_data, di->id2.i_data.id_data, i_size_read(dir)); | ||
1265 | memset(dirdata_bh->b_data + i_size_read(dir), 0, | ||
1266 | sb->s_blocksize - i_size_read(dir)); | ||
1267 | ocfs2_expand_last_dirent(dirdata_bh->b_data, i_size_read(dir), | ||
1268 | sb->s_blocksize); | ||
1269 | |||
1270 | ret = ocfs2_journal_dirty(handle, dirdata_bh); | ||
1271 | if (ret) { | ||
1272 | mlog_errno(ret); | ||
1273 | goto out_commit; | ||
1274 | } | ||
1275 | |||
1276 | /* | ||
1277 | * Set extent, i_size, etc on the directory. After this, the | ||
1278 | * inode should contain the same exact dirents as before and | ||
1279 | * be fully accessible from system calls. | ||
1280 | * | ||
1281 | * We let the later dirent insert modify c/mtime - to the user | ||
1282 | * the data hasn't changed. | ||
1283 | */ | ||
1284 | ret = ocfs2_journal_access(handle, dir, di_bh, | ||
1285 | OCFS2_JOURNAL_ACCESS_CREATE); | ||
1286 | if (ret) { | ||
1287 | mlog_errno(ret); | ||
1288 | goto out_commit; | ||
1289 | } | ||
1290 | |||
1291 | spin_lock(&oi->ip_lock); | ||
1292 | oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL; | ||
1293 | di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); | ||
1294 | spin_unlock(&oi->ip_lock); | ||
1295 | |||
1296 | ocfs2_dinode_new_extent_list(dir, di); | ||
1297 | |||
1298 | i_size_write(dir, sb->s_blocksize); | ||
1299 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; | ||
1300 | |||
1301 | di->i_size = cpu_to_le64(sb->s_blocksize); | ||
1302 | di->i_ctime = di->i_mtime = cpu_to_le64(dir->i_ctime.tv_sec); | ||
1303 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(dir->i_ctime.tv_nsec); | ||
1304 | dir->i_blocks = ocfs2_inode_sector_count(dir); | ||
1305 | |||
1306 | /* | ||
1307 | * This should never fail as our extent list is empty and all | ||
1308 | * related blocks have been journaled already. | ||
1309 | */ | ||
1310 | ret = ocfs2_insert_extent(osb, handle, dir, di_bh, 0, blkno, len, 0, | ||
1311 | NULL); | ||
1312 | if (ret) { | ||
1313 | mlog_errno(ret); | ||
1314 | goto out; | ||
1315 | } | ||
1316 | |||
1317 | ret = ocfs2_journal_dirty(handle, di_bh); | ||
1318 | if (ret) { | ||
1319 | mlog_errno(ret); | ||
1320 | goto out_commit; | ||
1321 | } | ||
1322 | |||
1323 | /* | ||
1324 | * We asked for two clusters, but only got one in the 1st | ||
1325 | * pass. Claim the 2nd cluster as a separate extent. | ||
1326 | */ | ||
1327 | if (alloc > len) { | ||
1328 | ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off, | ||
1329 | &len); | ||
1330 | if (ret) { | ||
1331 | mlog_errno(ret); | ||
1332 | goto out_commit; | ||
337 | } | 1333 | } |
338 | if (le64_to_cpu(de->inode)) { | 1334 | blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off); |
339 | brelse(bh); | 1335 | |
340 | return 0; | 1336 | ret = ocfs2_insert_extent(osb, handle, dir, di_bh, 1, blkno, |
1337 | len, 0, NULL); | ||
1338 | if (ret) { | ||
1339 | mlog_errno(ret); | ||
1340 | goto out; | ||
341 | } | 1341 | } |
342 | offset += le16_to_cpu(de->rec_len); | ||
343 | de = (struct ocfs2_dir_entry *) | ||
344 | ((char *)de + le16_to_cpu(de->rec_len)); | ||
345 | } | 1342 | } |
346 | brelse(bh); | 1343 | |
347 | return 1; | 1344 | *first_block_bh = dirdata_bh; |
1345 | dirdata_bh = NULL; | ||
1346 | |||
1347 | out_commit: | ||
1348 | ocfs2_commit_trans(osb, handle); | ||
1349 | |||
1350 | out_sem: | ||
1351 | up_write(&oi->ip_alloc_sem); | ||
1352 | |||
1353 | out: | ||
1354 | if (data_ac) | ||
1355 | ocfs2_free_alloc_context(data_ac); | ||
1356 | |||
1357 | brelse(dirdata_bh); | ||
1358 | |||
1359 | return ret; | ||
348 | } | 1360 | } |
349 | 1361 | ||
350 | /* returns a bh of the 1st new block in the allocation. */ | 1362 | /* returns a bh of the 1st new block in the allocation. */ |
351 | int ocfs2_do_extend_dir(struct super_block *sb, | 1363 | static int ocfs2_do_extend_dir(struct super_block *sb, |
352 | handle_t *handle, | 1364 | handle_t *handle, |
353 | struct inode *dir, | 1365 | struct inode *dir, |
354 | struct buffer_head *parent_fe_bh, | 1366 | struct buffer_head *parent_fe_bh, |
355 | struct ocfs2_alloc_context *data_ac, | 1367 | struct ocfs2_alloc_context *data_ac, |
356 | struct ocfs2_alloc_context *meta_ac, | 1368 | struct ocfs2_alloc_context *meta_ac, |
357 | struct buffer_head **new_bh) | 1369 | struct buffer_head **new_bh) |
358 | { | 1370 | { |
359 | int status; | 1371 | int status; |
360 | int extend; | 1372 | int extend; |
@@ -396,10 +1408,18 @@ bail: | |||
396 | return status; | 1408 | return status; |
397 | } | 1409 | } |
398 | 1410 | ||
399 | /* assumes you already have a cluster lock on the directory. */ | 1411 | /* |
1412 | * Assumes you already have a cluster lock on the directory. | ||
1413 | * | ||
1414 | * 'blocks_wanted' is only used if we have an inline directory which | ||
1415 | * is to be turned into an extent based one. The size of the dirent to | ||
1416 | * insert might be larger than the space gained by growing to just one | ||
1417 | * block, so we may have to grow the inode by two blocks in that case. | ||
1418 | */ | ||
400 | static int ocfs2_extend_dir(struct ocfs2_super *osb, | 1419 | static int ocfs2_extend_dir(struct ocfs2_super *osb, |
401 | struct inode *dir, | 1420 | struct inode *dir, |
402 | struct buffer_head *parent_fe_bh, | 1421 | struct buffer_head *parent_fe_bh, |
1422 | unsigned int blocks_wanted, | ||
403 | struct buffer_head **new_de_bh) | 1423 | struct buffer_head **new_de_bh) |
404 | { | 1424 | { |
405 | int status = 0; | 1425 | int status = 0; |
@@ -415,6 +1435,38 @@ static int ocfs2_extend_dir(struct ocfs2_super *osb, | |||
415 | 1435 | ||
416 | mlog_entry_void(); | 1436 | mlog_entry_void(); |
417 | 1437 | ||
1438 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | ||
1439 | status = ocfs2_expand_inline_dir(dir, parent_fe_bh, | ||
1440 | blocks_wanted, &new_bh); | ||
1441 | if (status) { | ||
1442 | mlog_errno(status); | ||
1443 | goto bail; | ||
1444 | } | ||
1445 | |||
1446 | if (blocks_wanted == 1) { | ||
1447 | /* | ||
1448 | * If the new dirent will fit inside the space | ||
1449 | * created by pushing out to one block, then | ||
1450 | * we can complete the operation | ||
1451 | * here. Otherwise we have to expand i_size | ||
1452 | * and format the 2nd block below. | ||
1453 | */ | ||
1454 | BUG_ON(new_bh == NULL); | ||
1455 | goto bail_bh; | ||
1456 | } | ||
1457 | |||
1458 | /* | ||
1459 | * Get rid of 'new_bh' - we want to format the 2nd | ||
1460 | * data block and return that instead. | ||
1461 | */ | ||
1462 | brelse(new_bh); | ||
1463 | new_bh = NULL; | ||
1464 | |||
1465 | dir_i_size = i_size_read(dir); | ||
1466 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; | ||
1467 | goto do_extend; | ||
1468 | } | ||
1469 | |||
418 | dir_i_size = i_size_read(dir); | 1470 | dir_i_size = i_size_read(dir); |
419 | mlog(0, "extending dir %llu (i_size = %lld)\n", | 1471 | mlog(0, "extending dir %llu (i_size = %lld)\n", |
420 | (unsigned long long)OCFS2_I(dir)->ip_blkno, dir_i_size); | 1472 | (unsigned long long)OCFS2_I(dir)->ip_blkno, dir_i_size); |
@@ -452,6 +1504,7 @@ static int ocfs2_extend_dir(struct ocfs2_super *osb, | |||
452 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; | 1504 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; |
453 | } | 1505 | } |
454 | 1506 | ||
1507 | do_extend: | ||
455 | down_write(&OCFS2_I(dir)->ip_alloc_sem); | 1508 | down_write(&OCFS2_I(dir)->ip_alloc_sem); |
456 | drop_alloc_sem = 1; | 1509 | drop_alloc_sem = 1; |
457 | 1510 | ||
@@ -497,6 +1550,7 @@ static int ocfs2_extend_dir(struct ocfs2_super *osb, | |||
497 | goto bail; | 1550 | goto bail; |
498 | } | 1551 | } |
499 | 1552 | ||
1553 | bail_bh: | ||
500 | *new_de_bh = new_bh; | 1554 | *new_de_bh = new_bh; |
501 | get_bh(*new_de_bh); | 1555 | get_bh(*new_de_bh); |
502 | bail: | 1556 | bail: |
@@ -517,41 +1571,71 @@ bail: | |||
517 | return status; | 1571 | return status; |
518 | } | 1572 | } |
519 | 1573 | ||
520 | /* | 1574 | static int ocfs2_find_dir_space_id(struct inode *dir, struct buffer_head *di_bh, |
521 | * Search the dir for a good spot, extending it if necessary. The | 1575 | const char *name, int namelen, |
522 | * block containing an appropriate record is returned in ret_de_bh. | 1576 | struct buffer_head **ret_de_bh, |
523 | */ | 1577 | unsigned int *blocks_wanted) |
524 | int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb, | ||
525 | struct inode *dir, | ||
526 | struct buffer_head *parent_fe_bh, | ||
527 | const char *name, | ||
528 | int namelen, | ||
529 | struct buffer_head **ret_de_bh) | ||
530 | { | 1578 | { |
531 | unsigned long offset; | 1579 | int ret; |
532 | struct buffer_head * bh = NULL; | 1580 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
533 | unsigned short rec_len; | 1581 | struct ocfs2_dir_entry *de, *last_de = NULL; |
534 | struct ocfs2_dinode *fe; | 1582 | char *de_buf, *limit; |
535 | struct ocfs2_dir_entry *de; | 1583 | unsigned long offset = 0; |
536 | struct super_block *sb; | 1584 | unsigned int rec_len, new_rec_len; |
537 | int status; | 1585 | |
1586 | de_buf = di->id2.i_data.id_data; | ||
1587 | limit = de_buf + i_size_read(dir); | ||
1588 | rec_len = OCFS2_DIR_REC_LEN(namelen); | ||
538 | 1589 | ||
539 | mlog_entry_void(); | 1590 | while (de_buf < limit) { |
1591 | de = (struct ocfs2_dir_entry *)de_buf; | ||
540 | 1592 | ||
541 | mlog(0, "getting ready to insert namelen %d into dir %llu\n", | 1593 | if (!ocfs2_check_dir_entry(dir, de, di_bh, offset)) { |
542 | namelen, (unsigned long long)OCFS2_I(dir)->ip_blkno); | 1594 | ret = -ENOENT; |
1595 | goto out; | ||
1596 | } | ||
1597 | if (ocfs2_match(namelen, name, de)) { | ||
1598 | ret = -EEXIST; | ||
1599 | goto out; | ||
1600 | } | ||
1601 | if (ocfs2_dirent_would_fit(de, rec_len)) { | ||
1602 | /* Ok, we found a spot. Return this bh and let | ||
1603 | * the caller actually fill it in. */ | ||
1604 | *ret_de_bh = di_bh; | ||
1605 | get_bh(*ret_de_bh); | ||
1606 | ret = 0; | ||
1607 | goto out; | ||
1608 | } | ||
543 | 1609 | ||
544 | BUG_ON(!S_ISDIR(dir->i_mode)); | 1610 | last_de = de; |
545 | fe = (struct ocfs2_dinode *) parent_fe_bh->b_data; | 1611 | de_buf += le16_to_cpu(de->rec_len); |
546 | BUG_ON(le64_to_cpu(fe->i_size) != i_size_read(dir)); | 1612 | offset += le16_to_cpu(de->rec_len); |
1613 | } | ||
547 | 1614 | ||
548 | sb = dir->i_sb; | 1615 | /* |
1616 | * We're going to require expansion of the directory - figure | ||
1617 | * out how many blocks we'll need so that a place for the | ||
1618 | * dirent can be found. | ||
1619 | */ | ||
1620 | *blocks_wanted = 1; | ||
1621 | new_rec_len = le16_to_cpu(last_de->rec_len) + (dir->i_sb->s_blocksize - i_size_read(dir)); | ||
1622 | if (new_rec_len < (rec_len + OCFS2_DIR_REC_LEN(last_de->name_len))) | ||
1623 | *blocks_wanted = 2; | ||
1624 | |||
1625 | ret = -ENOSPC; | ||
1626 | out: | ||
1627 | return ret; | ||
1628 | } | ||
549 | 1629 | ||
550 | if (!namelen) { | 1630 | static int ocfs2_find_dir_space_el(struct inode *dir, const char *name, |
551 | status = -EINVAL; | 1631 | int namelen, struct buffer_head **ret_de_bh) |
552 | mlog_errno(status); | 1632 | { |
553 | goto bail; | 1633 | unsigned long offset; |
554 | } | 1634 | struct buffer_head *bh = NULL; |
1635 | unsigned short rec_len; | ||
1636 | struct ocfs2_dir_entry *de; | ||
1637 | struct super_block *sb = dir->i_sb; | ||
1638 | int status; | ||
555 | 1639 | ||
556 | bh = ocfs2_bread(dir, 0, &status, 0); | 1640 | bh = ocfs2_bread(dir, 0, &status, 0); |
557 | if (!bh) { | 1641 | if (!bh) { |
@@ -568,17 +1652,11 @@ int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb, | |||
568 | bh = NULL; | 1652 | bh = NULL; |
569 | 1653 | ||
570 | if (i_size_read(dir) <= offset) { | 1654 | if (i_size_read(dir) <= offset) { |
571 | status = ocfs2_extend_dir(osb, | 1655 | /* |
572 | dir, | 1656 | * Caller will have to expand this |
573 | parent_fe_bh, | 1657 | * directory. |
574 | &bh); | 1658 | */ |
575 | if (status < 0) { | 1659 | status = -ENOSPC; |
576 | mlog_errno(status); | ||
577 | goto bail; | ||
578 | } | ||
579 | BUG_ON(!bh); | ||
580 | *ret_de_bh = bh; | ||
581 | get_bh(*ret_de_bh); | ||
582 | goto bail; | 1660 | goto bail; |
583 | } | 1661 | } |
584 | bh = ocfs2_bread(dir, | 1662 | bh = ocfs2_bread(dir, |
@@ -600,10 +1678,7 @@ int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb, | |||
600 | status = -EEXIST; | 1678 | status = -EEXIST; |
601 | goto bail; | 1679 | goto bail; |
602 | } | 1680 | } |
603 | if (((le64_to_cpu(de->inode) == 0) && | 1681 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
604 | (le16_to_cpu(de->rec_len) >= rec_len)) || | ||
605 | (le16_to_cpu(de->rec_len) >= | ||
606 | (OCFS2_DIR_REC_LEN(de->name_len) + rec_len))) { | ||
607 | /* Ok, we found a spot. Return this bh and let | 1682 | /* Ok, we found a spot. Return this bh and let |
608 | * the caller actually fill it in. */ | 1683 | * the caller actually fill it in. */ |
609 | *ret_de_bh = bh; | 1684 | *ret_de_bh = bh; |
@@ -623,3 +1698,61 @@ bail: | |||
623 | mlog_exit(status); | 1698 | mlog_exit(status); |
624 | return status; | 1699 | return status; |
625 | } | 1700 | } |
1701 | |||
1702 | int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb, | ||
1703 | struct inode *dir, | ||
1704 | struct buffer_head *parent_fe_bh, | ||
1705 | const char *name, | ||
1706 | int namelen, | ||
1707 | struct buffer_head **ret_de_bh) | ||
1708 | { | ||
1709 | int ret; | ||
1710 | unsigned int blocks_wanted = 1; | ||
1711 | struct buffer_head *bh = NULL; | ||
1712 | |||
1713 | mlog(0, "getting ready to insert namelen %d into dir %llu\n", | ||
1714 | namelen, (unsigned long long)OCFS2_I(dir)->ip_blkno); | ||
1715 | |||
1716 | *ret_de_bh = NULL; | ||
1717 | |||
1718 | if (!namelen) { | ||
1719 | ret = -EINVAL; | ||
1720 | mlog_errno(ret); | ||
1721 | goto out; | ||
1722 | } | ||
1723 | |||
1724 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | ||
1725 | ret = ocfs2_find_dir_space_id(dir, parent_fe_bh, name, | ||
1726 | namelen, &bh, &blocks_wanted); | ||
1727 | } else | ||
1728 | ret = ocfs2_find_dir_space_el(dir, name, namelen, &bh); | ||
1729 | |||
1730 | if (ret && ret != -ENOSPC) { | ||
1731 | mlog_errno(ret); | ||
1732 | goto out; | ||
1733 | } | ||
1734 | |||
1735 | if (ret == -ENOSPC) { | ||
1736 | /* | ||
1737 | * We have to expand the directory to add this name. | ||
1738 | */ | ||
1739 | BUG_ON(bh); | ||
1740 | |||
1741 | ret = ocfs2_extend_dir(osb, dir, parent_fe_bh, blocks_wanted, | ||
1742 | &bh); | ||
1743 | if (ret) { | ||
1744 | if (ret != -ENOSPC) | ||
1745 | mlog_errno(ret); | ||
1746 | goto out; | ||
1747 | } | ||
1748 | |||
1749 | BUG_ON(!bh); | ||
1750 | } | ||
1751 | |||
1752 | *ret_de_bh = bh; | ||
1753 | bh = NULL; | ||
1754 | out: | ||
1755 | if (bh) | ||
1756 | brelse(bh); | ||
1757 | return ret; | ||
1758 | } | ||