]>
Commit | Line | Data |
---|---|---|
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> | |
a90714c1 | 43 | #include <linux/quotaops.h> |
9b7895ef | 44 | #include <linux/sort.h> |
ccd979bd MF |
45 | |
46 | #define MLOG_MASK_PREFIX ML_NAMEI | |
47 | #include <cluster/masklog.h> | |
48 | ||
49 | #include "ocfs2.h" | |
50 | ||
51 | #include "alloc.h" | |
c175a518 | 52 | #include "blockcheck.h" |
ccd979bd MF |
53 | #include "dir.h" |
54 | #include "dlmglue.h" | |
55 | #include "extent_map.h" | |
56 | #include "file.h" | |
57 | #include "inode.h" | |
58 | #include "journal.h" | |
59 | #include "namei.h" | |
60 | #include "suballoc.h" | |
316f4b9f | 61 | #include "super.h" |
9b7895ef | 62 | #include "sysfile.h" |
ccd979bd MF |
63 | #include "uptodate.h" |
64 | ||
65 | #include "buffer_head_io.h" | |
66 | ||
316f4b9f MF |
67 | #define NAMEI_RA_CHUNKS 2 |
68 | #define NAMEI_RA_BLOCKS 4 | |
69 | #define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS) | |
70 | #define NAMEI_RA_INDEX(c,b) (((c) * NAMEI_RA_BLOCKS) + (b)) | |
71 | ||
ccd979bd MF |
72 | static unsigned char ocfs2_filetype_table[] = { |
73 | DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK | |
74 | }; | |
75 | ||
316f4b9f MF |
76 | static int ocfs2_do_extend_dir(struct super_block *sb, |
77 | handle_t *handle, | |
78 | struct inode *dir, | |
79 | struct buffer_head *parent_fe_bh, | |
80 | struct ocfs2_alloc_context *data_ac, | |
81 | struct ocfs2_alloc_context *meta_ac, | |
82 | struct buffer_head **new_bh); | |
e7c17e43 | 83 | static int ocfs2_dir_indexed(struct inode *inode); |
316f4b9f | 84 | |
87d35a74 MF |
85 | /* |
86 | * These are distinct checks because future versions of the file system will | |
87 | * want to have a trailing dirent structure independent of indexing. | |
88 | */ | |
e7c17e43 | 89 | static int ocfs2_supports_dir_trailer(struct inode *dir) |
87d35a74 | 90 | { |
e7c17e43 MF |
91 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
92 | ||
87d35a74 MF |
93 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
94 | return 0; | |
95 | ||
e7c17e43 | 96 | return ocfs2_meta_ecc(osb) || ocfs2_dir_indexed(dir); |
87d35a74 MF |
97 | } |
98 | ||
e7c17e43 MF |
99 | /* |
100 | * "new' here refers to the point at which we're creating a new | |
101 | * directory via "mkdir()", but also when we're expanding an inline | |
102 | * directory. In either case, we don't yet have the indexing bit set | |
103 | * on the directory, so the standard checks will fail in when metaecc | |
104 | * is turned off. Only directory-initialization type functions should | |
105 | * use this then. Everything else wants ocfs2_supports_dir_trailer() | |
106 | */ | |
107 | static int ocfs2_new_dir_wants_trailer(struct inode *dir) | |
87d35a74 | 108 | { |
e7c17e43 MF |
109 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
110 | ||
111 | return ocfs2_meta_ecc(osb) || | |
112 | ocfs2_supports_indexed_dirs(osb); | |
87d35a74 MF |
113 | } |
114 | ||
115 | static inline unsigned int ocfs2_dir_trailer_blk_off(struct super_block *sb) | |
116 | { | |
117 | return sb->s_blocksize - sizeof(struct ocfs2_dir_block_trailer); | |
118 | } | |
119 | ||
120 | #define ocfs2_trailer_from_bh(_bh, _sb) ((struct ocfs2_dir_block_trailer *) ((_bh)->b_data + ocfs2_dir_trailer_blk_off((_sb)))) | |
121 | ||
c175a518 JB |
122 | /* XXX ocfs2_block_dqtrailer() is similar but not quite - can we make |
123 | * them more consistent? */ | |
124 | struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize, | |
125 | void *data) | |
126 | { | |
127 | char *p = data; | |
128 | ||
129 | p += blocksize - sizeof(struct ocfs2_dir_block_trailer); | |
130 | return (struct ocfs2_dir_block_trailer *)p; | |
131 | } | |
132 | ||
87d35a74 MF |
133 | /* |
134 | * XXX: This is executed once on every dirent. We should consider optimizing | |
135 | * it. | |
136 | */ | |
137 | static int ocfs2_skip_dir_trailer(struct inode *dir, | |
138 | struct ocfs2_dir_entry *de, | |
139 | unsigned long offset, | |
140 | unsigned long blklen) | |
141 | { | |
142 | unsigned long toff = blklen - sizeof(struct ocfs2_dir_block_trailer); | |
143 | ||
e7c17e43 | 144 | if (!ocfs2_supports_dir_trailer(dir)) |
87d35a74 MF |
145 | return 0; |
146 | ||
147 | if (offset != toff) | |
148 | return 0; | |
149 | ||
150 | return 1; | |
151 | } | |
152 | ||
153 | static void ocfs2_init_dir_trailer(struct inode *inode, | |
e7c17e43 | 154 | struct buffer_head *bh, u16 rec_len) |
87d35a74 MF |
155 | { |
156 | struct ocfs2_dir_block_trailer *trailer; | |
157 | ||
158 | trailer = ocfs2_trailer_from_bh(bh, inode->i_sb); | |
159 | strcpy(trailer->db_signature, OCFS2_DIR_TRAILER_SIGNATURE); | |
160 | trailer->db_compat_rec_len = | |
161 | cpu_to_le16(sizeof(struct ocfs2_dir_block_trailer)); | |
162 | trailer->db_parent_dinode = cpu_to_le64(OCFS2_I(inode)->ip_blkno); | |
163 | trailer->db_blkno = cpu_to_le64(bh->b_blocknr); | |
e7c17e43 MF |
164 | trailer->db_free_rec_len = cpu_to_le16(rec_len); |
165 | } | |
166 | /* | |
167 | * Link an unindexed block with a dir trailer structure into the index free | |
168 | * list. This function will modify dirdata_bh, but assumes you've already | |
169 | * passed it to the journal. | |
170 | */ | |
171 | static int ocfs2_dx_dir_link_trailer(struct inode *dir, handle_t *handle, | |
172 | struct buffer_head *dx_root_bh, | |
173 | struct buffer_head *dirdata_bh) | |
174 | { | |
175 | int ret; | |
176 | struct ocfs2_dx_root_block *dx_root; | |
177 | struct ocfs2_dir_block_trailer *trailer; | |
178 | ||
0cf2f763 | 179 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
e7c17e43 MF |
180 | OCFS2_JOURNAL_ACCESS_WRITE); |
181 | if (ret) { | |
182 | mlog_errno(ret); | |
183 | goto out; | |
184 | } | |
185 | trailer = ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb); | |
186 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
187 | ||
188 | trailer->db_free_next = dx_root->dr_free_blk; | |
189 | dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr); | |
190 | ||
191 | ocfs2_journal_dirty(handle, dx_root_bh); | |
192 | ||
193 | out: | |
194 | return ret; | |
195 | } | |
196 | ||
197 | static int ocfs2_free_list_at_root(struct ocfs2_dir_lookup_result *res) | |
198 | { | |
199 | return res->dl_prev_leaf_bh == NULL; | |
87d35a74 MF |
200 | } |
201 | ||
4a12ca3a MF |
202 | void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res) |
203 | { | |
4ed8a6bb | 204 | brelse(res->dl_dx_root_bh); |
4a12ca3a | 205 | brelse(res->dl_leaf_bh); |
9b7895ef | 206 | brelse(res->dl_dx_leaf_bh); |
e7c17e43 | 207 | brelse(res->dl_prev_leaf_bh); |
9b7895ef MF |
208 | } |
209 | ||
210 | static int ocfs2_dir_indexed(struct inode *inode) | |
211 | { | |
212 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INDEXED_DIR_FL) | |
213 | return 1; | |
214 | return 0; | |
215 | } | |
216 | ||
4ed8a6bb MF |
217 | static inline int ocfs2_dx_root_inline(struct ocfs2_dx_root_block *dx_root) |
218 | { | |
219 | return dx_root->dr_flags & OCFS2_DX_FLAG_INLINE; | |
220 | } | |
221 | ||
9b7895ef MF |
222 | /* |
223 | * Hashing code adapted from ext3 | |
224 | */ | |
225 | #define DELTA 0x9E3779B9 | |
226 | ||
227 | static void TEA_transform(__u32 buf[4], __u32 const in[]) | |
228 | { | |
229 | __u32 sum = 0; | |
230 | __u32 b0 = buf[0], b1 = buf[1]; | |
231 | __u32 a = in[0], b = in[1], c = in[2], d = in[3]; | |
232 | int n = 16; | |
233 | ||
234 | do { | |
235 | sum += DELTA; | |
236 | b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b); | |
237 | b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d); | |
238 | } while (--n); | |
239 | ||
240 | buf[0] += b0; | |
241 | buf[1] += b1; | |
242 | } | |
243 | ||
244 | static void str2hashbuf(const char *msg, int len, __u32 *buf, int num) | |
245 | { | |
246 | __u32 pad, val; | |
247 | int i; | |
248 | ||
249 | pad = (__u32)len | ((__u32)len << 8); | |
250 | pad |= pad << 16; | |
251 | ||
252 | val = pad; | |
253 | if (len > num*4) | |
254 | len = num * 4; | |
255 | for (i = 0; i < len; i++) { | |
256 | if ((i % 4) == 0) | |
257 | val = pad; | |
258 | val = msg[i] + (val << 8); | |
259 | if ((i % 4) == 3) { | |
260 | *buf++ = val; | |
261 | val = pad; | |
262 | num--; | |
263 | } | |
264 | } | |
265 | if (--num >= 0) | |
266 | *buf++ = val; | |
267 | while (--num >= 0) | |
268 | *buf++ = pad; | |
269 | } | |
270 | ||
271 | static void ocfs2_dx_dir_name_hash(struct inode *dir, const char *name, int len, | |
272 | struct ocfs2_dx_hinfo *hinfo) | |
273 | { | |
274 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
275 | const char *p; | |
276 | __u32 in[8], buf[4]; | |
277 | ||
278 | /* | |
279 | * XXX: Is this really necessary, if the index is never looked | |
280 | * at by readdir? Is a hash value of '0' a bad idea? | |
281 | */ | |
282 | if ((len == 1 && !strncmp(".", name, 1)) || | |
283 | (len == 2 && !strncmp("..", name, 2))) { | |
284 | buf[0] = buf[1] = 0; | |
285 | goto out; | |
286 | } | |
287 | ||
288 | #ifdef OCFS2_DEBUG_DX_DIRS | |
289 | /* | |
290 | * This makes it very easy to debug indexing problems. We | |
291 | * should never allow this to be selected without hand editing | |
292 | * this file though. | |
293 | */ | |
294 | buf[0] = buf[1] = len; | |
295 | goto out; | |
296 | #endif | |
297 | ||
298 | memcpy(buf, osb->osb_dx_seed, sizeof(buf)); | |
299 | ||
300 | p = name; | |
301 | while (len > 0) { | |
302 | str2hashbuf(p, len, in, 4); | |
303 | TEA_transform(buf, in); | |
304 | len -= 16; | |
305 | p += 16; | |
306 | } | |
307 | ||
308 | out: | |
309 | hinfo->major_hash = buf[0]; | |
310 | hinfo->minor_hash = buf[1]; | |
4a12ca3a MF |
311 | } |
312 | ||
23193e51 MF |
313 | /* |
314 | * bh passed here can be an inode block or a dir data block, depending | |
315 | * on the inode inline data flag. | |
316 | */ | |
5eae5b96 MF |
317 | static int ocfs2_check_dir_entry(struct inode * dir, |
318 | struct ocfs2_dir_entry * de, | |
319 | struct buffer_head * bh, | |
320 | unsigned long offset) | |
316f4b9f MF |
321 | { |
322 | const char *error_msg = NULL; | |
323 | const int rlen = le16_to_cpu(de->rec_len); | |
324 | ||
325 | if (rlen < OCFS2_DIR_REC_LEN(1)) | |
326 | error_msg = "rec_len is smaller than minimal"; | |
327 | else if (rlen % 4 != 0) | |
328 | error_msg = "rec_len % 4 != 0"; | |
329 | else if (rlen < OCFS2_DIR_REC_LEN(de->name_len)) | |
330 | error_msg = "rec_len is too small for name_len"; | |
331 | else if (((char *) de - bh->b_data) + rlen > dir->i_sb->s_blocksize) | |
332 | error_msg = "directory entry across blocks"; | |
333 | ||
334 | if (error_msg != NULL) | |
335 | mlog(ML_ERROR, "bad entry in directory #%llu: %s - " | |
336 | "offset=%lu, inode=%llu, rec_len=%d, name_len=%d\n", | |
337 | (unsigned long long)OCFS2_I(dir)->ip_blkno, error_msg, | |
338 | offset, (unsigned long long)le64_to_cpu(de->inode), rlen, | |
339 | de->name_len); | |
340 | return error_msg == NULL ? 1 : 0; | |
341 | } | |
342 | ||
343 | static inline int ocfs2_match(int len, | |
344 | const char * const name, | |
345 | struct ocfs2_dir_entry *de) | |
346 | { | |
347 | if (len != de->name_len) | |
348 | return 0; | |
349 | if (!de->inode) | |
350 | return 0; | |
351 | return !memcmp(name, de->name, len); | |
352 | } | |
353 | ||
354 | /* | |
355 | * Returns 0 if not found, -1 on failure, and 1 on success | |
356 | */ | |
357 | static int inline ocfs2_search_dirblock(struct buffer_head *bh, | |
358 | struct inode *dir, | |
359 | const char *name, int namelen, | |
360 | unsigned long offset, | |
23193e51 MF |
361 | char *first_de, |
362 | unsigned int bytes, | |
316f4b9f MF |
363 | struct ocfs2_dir_entry **res_dir) |
364 | { | |
365 | struct ocfs2_dir_entry *de; | |
366 | char *dlimit, *de_buf; | |
367 | int de_len; | |
368 | int ret = 0; | |
369 | ||
370 | mlog_entry_void(); | |
371 | ||
23193e51 MF |
372 | de_buf = first_de; |
373 | dlimit = de_buf + bytes; | |
316f4b9f MF |
374 | |
375 | while (de_buf < dlimit) { | |
376 | /* this code is executed quadratically often */ | |
377 | /* do minimal checking `by hand' */ | |
378 | ||
379 | de = (struct ocfs2_dir_entry *) de_buf; | |
380 | ||
381 | if (de_buf + namelen <= dlimit && | |
382 | ocfs2_match(namelen, name, de)) { | |
383 | /* found a match - just to be sure, do a full check */ | |
384 | if (!ocfs2_check_dir_entry(dir, de, bh, offset)) { | |
385 | ret = -1; | |
386 | goto bail; | |
387 | } | |
388 | *res_dir = de; | |
389 | ret = 1; | |
390 | goto bail; | |
391 | } | |
392 | ||
393 | /* prevent looping on a bad block */ | |
394 | de_len = le16_to_cpu(de->rec_len); | |
395 | if (de_len <= 0) { | |
396 | ret = -1; | |
397 | goto bail; | |
398 | } | |
399 | ||
400 | de_buf += de_len; | |
401 | offset += de_len; | |
402 | } | |
403 | ||
404 | bail: | |
405 | mlog_exit(ret); | |
406 | return ret; | |
407 | } | |
408 | ||
23193e51 MF |
409 | static struct buffer_head *ocfs2_find_entry_id(const char *name, |
410 | int namelen, | |
411 | struct inode *dir, | |
412 | struct ocfs2_dir_entry **res_dir) | |
413 | { | |
414 | int ret, found; | |
415 | struct buffer_head *di_bh = NULL; | |
416 | struct ocfs2_dinode *di; | |
417 | struct ocfs2_inline_data *data; | |
418 | ||
b657c95c | 419 | ret = ocfs2_read_inode_block(dir, &di_bh); |
23193e51 MF |
420 | if (ret) { |
421 | mlog_errno(ret); | |
422 | goto out; | |
423 | } | |
424 | ||
425 | di = (struct ocfs2_dinode *)di_bh->b_data; | |
426 | data = &di->id2.i_data; | |
427 | ||
428 | found = ocfs2_search_dirblock(di_bh, dir, name, namelen, 0, | |
429 | data->id_data, i_size_read(dir), res_dir); | |
430 | if (found == 1) | |
431 | return di_bh; | |
432 | ||
433 | brelse(di_bh); | |
434 | out: | |
435 | return NULL; | |
436 | } | |
437 | ||
a22305cc JB |
438 | static int ocfs2_validate_dir_block(struct super_block *sb, |
439 | struct buffer_head *bh) | |
440 | { | |
c175a518 JB |
441 | int rc; |
442 | struct ocfs2_dir_block_trailer *trailer = | |
443 | ocfs2_trailer_from_bh(bh, sb); | |
444 | ||
445 | ||
a22305cc | 446 | /* |
c175a518 | 447 | * We don't validate dirents here, that's handled |
a22305cc JB |
448 | * in-place when the code walks them. |
449 | */ | |
970e4936 JB |
450 | mlog(0, "Validating dirblock %llu\n", |
451 | (unsigned long long)bh->b_blocknr); | |
a22305cc | 452 | |
c175a518 JB |
453 | BUG_ON(!buffer_uptodate(bh)); |
454 | ||
455 | /* | |
456 | * If the ecc fails, we return the error but otherwise | |
457 | * leave the filesystem running. We know any error is | |
458 | * local to this block. | |
459 | * | |
460 | * Note that we are safe to call this even if the directory | |
461 | * doesn't have a trailer. Filesystems without metaecc will do | |
462 | * nothing, and filesystems with it will have one. | |
463 | */ | |
464 | rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &trailer->db_check); | |
465 | if (rc) | |
466 | mlog(ML_ERROR, "Checksum failed for dinode %llu\n", | |
467 | (unsigned long long)bh->b_blocknr); | |
468 | ||
469 | return rc; | |
a22305cc JB |
470 | } |
471 | ||
9b7895ef MF |
472 | /* |
473 | * Validate a directory trailer. | |
474 | * | |
475 | * We check the trailer here rather than in ocfs2_validate_dir_block() | |
476 | * because that function doesn't have the inode to test. | |
477 | */ | |
478 | static int ocfs2_check_dir_trailer(struct inode *dir, struct buffer_head *bh) | |
479 | { | |
480 | int rc = 0; | |
481 | struct ocfs2_dir_block_trailer *trailer; | |
482 | ||
483 | trailer = ocfs2_trailer_from_bh(bh, dir->i_sb); | |
484 | if (!OCFS2_IS_VALID_DIR_TRAILER(trailer)) { | |
485 | rc = -EINVAL; | |
486 | ocfs2_error(dir->i_sb, | |
487 | "Invalid dirblock #%llu: " | |
488 | "signature = %.*s\n", | |
489 | (unsigned long long)bh->b_blocknr, 7, | |
490 | trailer->db_signature); | |
491 | goto out; | |
492 | } | |
493 | if (le64_to_cpu(trailer->db_blkno) != bh->b_blocknr) { | |
494 | rc = -EINVAL; | |
495 | ocfs2_error(dir->i_sb, | |
496 | "Directory block #%llu has an invalid " | |
497 | "db_blkno of %llu", | |
498 | (unsigned long long)bh->b_blocknr, | |
499 | (unsigned long long)le64_to_cpu(trailer->db_blkno)); | |
500 | goto out; | |
501 | } | |
502 | if (le64_to_cpu(trailer->db_parent_dinode) != | |
503 | OCFS2_I(dir)->ip_blkno) { | |
504 | rc = -EINVAL; | |
505 | ocfs2_error(dir->i_sb, | |
506 | "Directory block #%llu on dinode " | |
507 | "#%llu has an invalid parent_dinode " | |
508 | "of %llu", | |
509 | (unsigned long long)bh->b_blocknr, | |
510 | (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
511 | (unsigned long long)le64_to_cpu(trailer->db_blkno)); | |
512 | goto out; | |
513 | } | |
514 | out: | |
515 | return rc; | |
516 | } | |
517 | ||
a22305cc JB |
518 | /* |
519 | * This function forces all errors to -EIO for consistency with its | |
520 | * predecessor, ocfs2_bread(). We haven't audited what returning the | |
521 | * real error codes would do to callers. We log the real codes with | |
522 | * mlog_errno() before we squash them. | |
523 | */ | |
524 | static int ocfs2_read_dir_block(struct inode *inode, u64 v_block, | |
525 | struct buffer_head **bh, int flags) | |
526 | { | |
527 | int rc = 0; | |
528 | struct buffer_head *tmp = *bh; | |
a22305cc | 529 | |
511308d9 JB |
530 | rc = ocfs2_read_virt_blocks(inode, v_block, 1, &tmp, flags, |
531 | ocfs2_validate_dir_block); | |
87d35a74 | 532 | if (rc) { |
a22305cc | 533 | mlog_errno(rc); |
87d35a74 MF |
534 | goto out; |
535 | } | |
536 | ||
87d35a74 | 537 | if (!(flags & OCFS2_BH_READAHEAD) && |
e7c17e43 | 538 | ocfs2_supports_dir_trailer(inode)) { |
9b7895ef MF |
539 | rc = ocfs2_check_dir_trailer(inode, tmp); |
540 | if (rc) { | |
541 | if (!*bh) | |
542 | brelse(tmp); | |
543 | mlog_errno(rc); | |
87d35a74 MF |
544 | goto out; |
545 | } | |
546 | } | |
a22305cc | 547 | |
511308d9 | 548 | /* If ocfs2_read_virt_blocks() got us a new bh, pass it up. */ |
87d35a74 | 549 | if (!*bh) |
a22305cc JB |
550 | *bh = tmp; |
551 | ||
87d35a74 | 552 | out: |
a22305cc JB |
553 | return rc ? -EIO : 0; |
554 | } | |
555 | ||
9b7895ef MF |
556 | /* |
557 | * Read the block at 'phys' which belongs to this directory | |
558 | * inode. This function does no virtual->physical block translation - | |
559 | * what's passed in is assumed to be a valid directory block. | |
560 | */ | |
561 | static int ocfs2_read_dir_block_direct(struct inode *dir, u64 phys, | |
562 | struct buffer_head **bh) | |
563 | { | |
564 | int ret; | |
565 | struct buffer_head *tmp = *bh; | |
566 | ||
8cb471e8 JB |
567 | ret = ocfs2_read_block(INODE_CACHE(dir), phys, &tmp, |
568 | ocfs2_validate_dir_block); | |
9b7895ef MF |
569 | if (ret) { |
570 | mlog_errno(ret); | |
571 | goto out; | |
572 | } | |
573 | ||
574 | if (ocfs2_supports_dir_trailer(dir)) { | |
575 | ret = ocfs2_check_dir_trailer(dir, tmp); | |
576 | if (ret) { | |
577 | if (!*bh) | |
578 | brelse(tmp); | |
579 | mlog_errno(ret); | |
580 | goto out; | |
581 | } | |
582 | } | |
583 | ||
584 | if (!ret && !*bh) | |
585 | *bh = tmp; | |
586 | out: | |
587 | return ret; | |
588 | } | |
589 | ||
590 | static int ocfs2_validate_dx_root(struct super_block *sb, | |
591 | struct buffer_head *bh) | |
592 | { | |
593 | int ret; | |
594 | struct ocfs2_dx_root_block *dx_root; | |
595 | ||
596 | BUG_ON(!buffer_uptodate(bh)); | |
597 | ||
598 | dx_root = (struct ocfs2_dx_root_block *) bh->b_data; | |
599 | ||
600 | ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_root->dr_check); | |
601 | if (ret) { | |
602 | mlog(ML_ERROR, | |
603 | "Checksum failed for dir index root block %llu\n", | |
604 | (unsigned long long)bh->b_blocknr); | |
605 | return ret; | |
606 | } | |
607 | ||
608 | if (!OCFS2_IS_VALID_DX_ROOT(dx_root)) { | |
609 | ocfs2_error(sb, | |
610 | "Dir Index Root # %llu has bad signature %.*s", | |
611 | (unsigned long long)le64_to_cpu(dx_root->dr_blkno), | |
612 | 7, dx_root->dr_signature); | |
613 | return -EINVAL; | |
614 | } | |
615 | ||
616 | return 0; | |
617 | } | |
618 | ||
619 | static int ocfs2_read_dx_root(struct inode *dir, struct ocfs2_dinode *di, | |
620 | struct buffer_head **dx_root_bh) | |
621 | { | |
622 | int ret; | |
623 | u64 blkno = le64_to_cpu(di->i_dx_root); | |
624 | struct buffer_head *tmp = *dx_root_bh; | |
625 | ||
8cb471e8 JB |
626 | ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp, |
627 | ocfs2_validate_dx_root); | |
9b7895ef MF |
628 | |
629 | /* If ocfs2_read_block() got us a new bh, pass it up. */ | |
630 | if (!ret && !*dx_root_bh) | |
631 | *dx_root_bh = tmp; | |
632 | ||
633 | return ret; | |
634 | } | |
635 | ||
636 | static int ocfs2_validate_dx_leaf(struct super_block *sb, | |
637 | struct buffer_head *bh) | |
638 | { | |
639 | int ret; | |
640 | struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)bh->b_data; | |
641 | ||
642 | BUG_ON(!buffer_uptodate(bh)); | |
643 | ||
644 | ret = ocfs2_validate_meta_ecc(sb, bh->b_data, &dx_leaf->dl_check); | |
645 | if (ret) { | |
646 | mlog(ML_ERROR, | |
647 | "Checksum failed for dir index leaf block %llu\n", | |
648 | (unsigned long long)bh->b_blocknr); | |
649 | return ret; | |
650 | } | |
651 | ||
652 | if (!OCFS2_IS_VALID_DX_LEAF(dx_leaf)) { | |
653 | ocfs2_error(sb, "Dir Index Leaf has bad signature %.*s", | |
654 | 7, dx_leaf->dl_signature); | |
655 | return -EROFS; | |
656 | } | |
657 | ||
658 | return 0; | |
659 | } | |
660 | ||
661 | static int ocfs2_read_dx_leaf(struct inode *dir, u64 blkno, | |
662 | struct buffer_head **dx_leaf_bh) | |
663 | { | |
664 | int ret; | |
665 | struct buffer_head *tmp = *dx_leaf_bh; | |
666 | ||
8cb471e8 JB |
667 | ret = ocfs2_read_block(INODE_CACHE(dir), blkno, &tmp, |
668 | ocfs2_validate_dx_leaf); | |
9b7895ef MF |
669 | |
670 | /* If ocfs2_read_block() got us a new bh, pass it up. */ | |
671 | if (!ret && !*dx_leaf_bh) | |
672 | *dx_leaf_bh = tmp; | |
673 | ||
674 | return ret; | |
675 | } | |
676 | ||
677 | /* | |
678 | * Read a series of dx_leaf blocks. This expects all buffer_head | |
679 | * pointers to be NULL on function entry. | |
680 | */ | |
681 | static int ocfs2_read_dx_leaves(struct inode *dir, u64 start, int num, | |
682 | struct buffer_head **dx_leaf_bhs) | |
683 | { | |
684 | int ret; | |
685 | ||
8cb471e8 | 686 | ret = ocfs2_read_blocks(INODE_CACHE(dir), start, num, dx_leaf_bhs, 0, |
9b7895ef MF |
687 | ocfs2_validate_dx_leaf); |
688 | if (ret) | |
689 | mlog_errno(ret); | |
690 | ||
691 | return ret; | |
692 | } | |
693 | ||
0af4bd38 AB |
694 | static struct buffer_head *ocfs2_find_entry_el(const char *name, int namelen, |
695 | struct inode *dir, | |
696 | struct ocfs2_dir_entry **res_dir) | |
316f4b9f MF |
697 | { |
698 | struct super_block *sb; | |
699 | struct buffer_head *bh_use[NAMEI_RA_SIZE]; | |
700 | struct buffer_head *bh, *ret = NULL; | |
701 | unsigned long start, block, b; | |
702 | int ra_max = 0; /* Number of bh's in the readahead | |
703 | buffer, bh_use[] */ | |
704 | int ra_ptr = 0; /* Current index into readahead | |
705 | buffer */ | |
706 | int num = 0; | |
707 | int nblocks, i, err; | |
708 | ||
709 | mlog_entry_void(); | |
710 | ||
316f4b9f MF |
711 | sb = dir->i_sb; |
712 | ||
713 | nblocks = i_size_read(dir) >> sb->s_blocksize_bits; | |
714 | start = OCFS2_I(dir)->ip_dir_start_lookup; | |
715 | if (start >= nblocks) | |
716 | start = 0; | |
717 | block = start; | |
718 | ||
719 | restart: | |
720 | do { | |
721 | /* | |
722 | * We deal with the read-ahead logic here. | |
723 | */ | |
724 | if (ra_ptr >= ra_max) { | |
725 | /* Refill the readahead buffer */ | |
726 | ra_ptr = 0; | |
727 | b = block; | |
728 | for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) { | |
729 | /* | |
730 | * Terminate if we reach the end of the | |
731 | * directory and must wrap, or if our | |
732 | * search has finished at this block. | |
733 | */ | |
734 | if (b >= nblocks || (num && block == start)) { | |
735 | bh_use[ra_max] = NULL; | |
736 | break; | |
737 | } | |
738 | num++; | |
739 | ||
a22305cc JB |
740 | bh = NULL; |
741 | err = ocfs2_read_dir_block(dir, b++, &bh, | |
742 | OCFS2_BH_READAHEAD); | |
316f4b9f MF |
743 | bh_use[ra_max] = bh; |
744 | } | |
745 | } | |
746 | if ((bh = bh_use[ra_ptr++]) == NULL) | |
747 | goto next; | |
a22305cc | 748 | if (ocfs2_read_dir_block(dir, block, &bh, 0)) { |
5e0b3dec | 749 | /* read error, skip block & hope for the best. |
a22305cc | 750 | * ocfs2_read_dir_block() has released the bh. */ |
316f4b9f MF |
751 | ocfs2_error(dir->i_sb, "reading directory %llu, " |
752 | "offset %lu\n", | |
753 | (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
754 | block); | |
316f4b9f MF |
755 | goto next; |
756 | } | |
757 | i = ocfs2_search_dirblock(bh, dir, name, namelen, | |
758 | block << sb->s_blocksize_bits, | |
23193e51 | 759 | bh->b_data, sb->s_blocksize, |
316f4b9f MF |
760 | res_dir); |
761 | if (i == 1) { | |
762 | OCFS2_I(dir)->ip_dir_start_lookup = block; | |
763 | ret = bh; | |
764 | goto cleanup_and_exit; | |
765 | } else { | |
766 | brelse(bh); | |
767 | if (i < 0) | |
768 | goto cleanup_and_exit; | |
769 | } | |
770 | next: | |
771 | if (++block >= nblocks) | |
772 | block = 0; | |
773 | } while (block != start); | |
774 | ||
775 | /* | |
776 | * If the directory has grown while we were searching, then | |
777 | * search the last part of the directory before giving up. | |
778 | */ | |
779 | block = nblocks; | |
780 | nblocks = i_size_read(dir) >> sb->s_blocksize_bits; | |
781 | if (block < nblocks) { | |
782 | start = 0; | |
783 | goto restart; | |
784 | } | |
785 | ||
786 | cleanup_and_exit: | |
787 | /* Clean up the read-ahead blocks */ | |
788 | for (; ra_ptr < ra_max; ra_ptr++) | |
789 | brelse(bh_use[ra_ptr]); | |
790 | ||
791 | mlog_exit_ptr(ret); | |
792 | return ret; | |
793 | } | |
794 | ||
9b7895ef MF |
795 | static int ocfs2_dx_dir_lookup_rec(struct inode *inode, |
796 | struct ocfs2_extent_list *el, | |
797 | u32 major_hash, | |
798 | u32 *ret_cpos, | |
799 | u64 *ret_phys_blkno, | |
800 | unsigned int *ret_clen) | |
23193e51 | 801 | { |
9b7895ef MF |
802 | int ret = 0, i, found; |
803 | struct buffer_head *eb_bh = NULL; | |
804 | struct ocfs2_extent_block *eb; | |
805 | struct ocfs2_extent_rec *rec = NULL; | |
23193e51 | 806 | |
9b7895ef | 807 | if (el->l_tree_depth) { |
facdb77f JB |
808 | ret = ocfs2_find_leaf(INODE_CACHE(inode), el, major_hash, |
809 | &eb_bh); | |
9b7895ef MF |
810 | if (ret) { |
811 | mlog_errno(ret); | |
812 | goto out; | |
813 | } | |
23193e51 | 814 | |
9b7895ef MF |
815 | eb = (struct ocfs2_extent_block *) eb_bh->b_data; |
816 | el = &eb->h_list; | |
4a12ca3a | 817 | |
9b7895ef MF |
818 | if (el->l_tree_depth) { |
819 | ocfs2_error(inode->i_sb, | |
820 | "Inode %lu has non zero tree depth in " | |
821 | "btree tree block %llu\n", inode->i_ino, | |
822 | (unsigned long long)eb_bh->b_blocknr); | |
823 | ret = -EROFS; | |
824 | goto out; | |
825 | } | |
826 | } | |
827 | ||
828 | found = 0; | |
829 | for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) { | |
830 | rec = &el->l_recs[i]; | |
831 | ||
832 | if (le32_to_cpu(rec->e_cpos) <= major_hash) { | |
833 | found = 1; | |
834 | break; | |
835 | } | |
836 | } | |
837 | ||
838 | if (!found) { | |
839 | ocfs2_error(inode->i_sb, "Inode %lu has bad extent " | |
840 | "record (%u, %u, 0) in btree", inode->i_ino, | |
841 | le32_to_cpu(rec->e_cpos), | |
842 | ocfs2_rec_clusters(el, rec)); | |
843 | ret = -EROFS; | |
844 | goto out; | |
845 | } | |
846 | ||
847 | if (ret_phys_blkno) | |
848 | *ret_phys_blkno = le64_to_cpu(rec->e_blkno); | |
849 | if (ret_cpos) | |
850 | *ret_cpos = le32_to_cpu(rec->e_cpos); | |
851 | if (ret_clen) | |
852 | *ret_clen = le16_to_cpu(rec->e_leaf_clusters); | |
853 | ||
854 | out: | |
855 | brelse(eb_bh); | |
856 | return ret; | |
23193e51 MF |
857 | } |
858 | ||
5b6a3a2b | 859 | /* |
9b7895ef MF |
860 | * Returns the block index, from the start of the cluster which this |
861 | * hash belongs too. | |
5b6a3a2b | 862 | */ |
4ed8a6bb MF |
863 | static inline unsigned int __ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb, |
864 | u32 minor_hash) | |
38760e24 | 865 | { |
9b7895ef MF |
866 | return minor_hash & osb->osb_dx_mask; |
867 | } | |
5b6a3a2b | 868 | |
4ed8a6bb MF |
869 | static inline unsigned int ocfs2_dx_dir_hash_idx(struct ocfs2_super *osb, |
870 | struct ocfs2_dx_hinfo *hinfo) | |
871 | { | |
872 | return __ocfs2_dx_dir_hash_idx(osb, hinfo->minor_hash); | |
873 | } | |
874 | ||
9b7895ef MF |
875 | static int ocfs2_dx_dir_lookup(struct inode *inode, |
876 | struct ocfs2_extent_list *el, | |
877 | struct ocfs2_dx_hinfo *hinfo, | |
878 | u32 *ret_cpos, | |
879 | u64 *ret_phys_blkno) | |
880 | { | |
881 | int ret = 0; | |
882 | unsigned int cend, uninitialized_var(clen); | |
883 | u32 uninitialized_var(cpos); | |
884 | u64 uninitialized_var(blkno); | |
885 | u32 name_hash = hinfo->major_hash; | |
13723d00 | 886 | |
9b7895ef MF |
887 | ret = ocfs2_dx_dir_lookup_rec(inode, el, name_hash, &cpos, &blkno, |
888 | &clen); | |
38760e24 MF |
889 | if (ret) { |
890 | mlog_errno(ret); | |
891 | goto out; | |
892 | } | |
893 | ||
9b7895ef MF |
894 | cend = cpos + clen; |
895 | if (name_hash >= cend) { | |
896 | /* We want the last cluster */ | |
897 | blkno += ocfs2_clusters_to_blocks(inode->i_sb, clen - 1); | |
898 | cpos += clen - 1; | |
899 | } else { | |
900 | blkno += ocfs2_clusters_to_blocks(inode->i_sb, | |
901 | name_hash - cpos); | |
902 | cpos = name_hash; | |
903 | } | |
38760e24 | 904 | |
9b7895ef MF |
905 | /* |
906 | * We now have the cluster which should hold our entry. To | |
907 | * find the exact block from the start of the cluster to | |
908 | * search, we take the lower bits of the hash. | |
909 | */ | |
910 | blkno += ocfs2_dx_dir_hash_idx(OCFS2_SB(inode->i_sb), hinfo); | |
911 | ||
912 | if (ret_phys_blkno) | |
913 | *ret_phys_blkno = blkno; | |
914 | if (ret_cpos) | |
915 | *ret_cpos = cpos; | |
38760e24 MF |
916 | |
917 | out: | |
9b7895ef | 918 | |
38760e24 MF |
919 | return ret; |
920 | } | |
921 | ||
9b7895ef MF |
922 | static int ocfs2_dx_dir_search(const char *name, int namelen, |
923 | struct inode *dir, | |
4ed8a6bb | 924 | struct ocfs2_dx_root_block *dx_root, |
9b7895ef | 925 | struct ocfs2_dir_lookup_result *res) |
316f4b9f | 926 | { |
9b7895ef MF |
927 | int ret, i, found; |
928 | u64 uninitialized_var(phys); | |
929 | struct buffer_head *dx_leaf_bh = NULL; | |
930 | struct ocfs2_dx_leaf *dx_leaf; | |
931 | struct ocfs2_dx_entry *dx_entry = NULL; | |
932 | struct buffer_head *dir_ent_bh = NULL; | |
933 | struct ocfs2_dir_entry *dir_ent = NULL; | |
934 | struct ocfs2_dx_hinfo *hinfo = &res->dl_hinfo; | |
4ed8a6bb MF |
935 | struct ocfs2_extent_list *dr_el; |
936 | struct ocfs2_dx_entry_list *entry_list; | |
9b7895ef MF |
937 | |
938 | ocfs2_dx_dir_name_hash(dir, name, namelen, &res->dl_hinfo); | |
939 | ||
4ed8a6bb MF |
940 | if (ocfs2_dx_root_inline(dx_root)) { |
941 | entry_list = &dx_root->dr_entries; | |
942 | goto search; | |
943 | } | |
944 | ||
945 | dr_el = &dx_root->dr_list; | |
946 | ||
9b7895ef MF |
947 | ret = ocfs2_dx_dir_lookup(dir, dr_el, hinfo, NULL, &phys); |
948 | if (ret) { | |
949 | mlog_errno(ret); | |
950 | goto out; | |
951 | } | |
316f4b9f | 952 | |
9b7895ef MF |
953 | mlog(0, "Dir %llu: name: \"%.*s\", lookup of hash: %u.0x%x " |
954 | "returns: %llu\n", | |
955 | (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
956 | namelen, name, hinfo->major_hash, hinfo->minor_hash, | |
957 | (unsigned long long)phys); | |
316f4b9f | 958 | |
9b7895ef MF |
959 | ret = ocfs2_read_dx_leaf(dir, phys, &dx_leaf_bh); |
960 | if (ret) { | |
961 | mlog_errno(ret); | |
962 | goto out; | |
963 | } | |
13723d00 | 964 | |
9b7895ef MF |
965 | dx_leaf = (struct ocfs2_dx_leaf *) dx_leaf_bh->b_data; |
966 | ||
967 | mlog(0, "leaf info: num_used: %d, count: %d\n", | |
968 | le16_to_cpu(dx_leaf->dl_list.de_num_used), | |
969 | le16_to_cpu(dx_leaf->dl_list.de_count)); | |
970 | ||
4ed8a6bb MF |
971 | entry_list = &dx_leaf->dl_list; |
972 | ||
973 | search: | |
9b7895ef MF |
974 | /* |
975 | * Empty leaf is legal, so no need to check for that. | |
976 | */ | |
977 | found = 0; | |
4ed8a6bb MF |
978 | for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) { |
979 | dx_entry = &entry_list->de_entries[i]; | |
9b7895ef MF |
980 | |
981 | if (hinfo->major_hash != le32_to_cpu(dx_entry->dx_major_hash) | |
982 | || hinfo->minor_hash != le32_to_cpu(dx_entry->dx_minor_hash)) | |
983 | continue; | |
984 | ||
985 | /* | |
986 | * Search unindexed leaf block now. We're not | |
987 | * guaranteed to find anything. | |
988 | */ | |
989 | ret = ocfs2_read_dir_block_direct(dir, | |
990 | le64_to_cpu(dx_entry->dx_dirent_blk), | |
991 | &dir_ent_bh); | |
992 | if (ret) { | |
993 | mlog_errno(ret); | |
994 | goto out; | |
316f4b9f | 995 | } |
9b7895ef MF |
996 | |
997 | /* | |
998 | * XXX: We should check the unindexed block here, | |
999 | * before using it. | |
1000 | */ | |
1001 | ||
1002 | found = ocfs2_search_dirblock(dir_ent_bh, dir, name, namelen, | |
1003 | 0, dir_ent_bh->b_data, | |
1004 | dir->i_sb->s_blocksize, &dir_ent); | |
1005 | if (found == 1) | |
1006 | break; | |
1007 | ||
1008 | if (found == -1) { | |
1009 | /* This means we found a bad directory entry. */ | |
1010 | ret = -EIO; | |
1011 | mlog_errno(ret); | |
1012 | goto out; | |
1013 | } | |
1014 | ||
1015 | brelse(dir_ent_bh); | |
1016 | dir_ent_bh = NULL; | |
1017 | } | |
1018 | ||
1019 | if (found <= 0) { | |
1020 | ret = -ENOENT; | |
1021 | goto out; | |
1022 | } | |
1023 | ||
1024 | res->dl_leaf_bh = dir_ent_bh; | |
1025 | res->dl_entry = dir_ent; | |
1026 | res->dl_dx_leaf_bh = dx_leaf_bh; | |
1027 | res->dl_dx_entry = dx_entry; | |
1028 | ||
1029 | ret = 0; | |
1030 | out: | |
1031 | if (ret) { | |
1032 | brelse(dx_leaf_bh); | |
1033 | brelse(dir_ent_bh); | |
1034 | } | |
1035 | return ret; | |
1036 | } | |
1037 | ||
1038 | static int ocfs2_find_entry_dx(const char *name, int namelen, | |
1039 | struct inode *dir, | |
1040 | struct ocfs2_dir_lookup_result *lookup) | |
1041 | { | |
1042 | int ret; | |
1043 | struct buffer_head *di_bh = NULL; | |
1044 | struct ocfs2_dinode *di; | |
1045 | struct buffer_head *dx_root_bh = NULL; | |
1046 | struct ocfs2_dx_root_block *dx_root; | |
1047 | ||
1048 | ret = ocfs2_read_inode_block(dir, &di_bh); | |
1049 | if (ret) { | |
1050 | mlog_errno(ret); | |
1051 | goto out; | |
1052 | } | |
1053 | ||
1054 | di = (struct ocfs2_dinode *)di_bh->b_data; | |
1055 | ||
1056 | ret = ocfs2_read_dx_root(dir, di, &dx_root_bh); | |
1057 | if (ret) { | |
1058 | mlog_errno(ret); | |
1059 | goto out; | |
1060 | } | |
1061 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; | |
1062 | ||
4ed8a6bb | 1063 | ret = ocfs2_dx_dir_search(name, namelen, dir, dx_root, lookup); |
9b7895ef MF |
1064 | if (ret) { |
1065 | if (ret != -ENOENT) | |
1066 | mlog_errno(ret); | |
1067 | goto out; | |
1068 | } | |
1069 | ||
4ed8a6bb MF |
1070 | lookup->dl_dx_root_bh = dx_root_bh; |
1071 | dx_root_bh = NULL; | |
9b7895ef MF |
1072 | out: |
1073 | brelse(di_bh); | |
1074 | brelse(dx_root_bh); | |
1075 | return ret; | |
1076 | } | |
1077 | ||
1078 | /* | |
1079 | * Try to find an entry of the provided name within 'dir'. | |
1080 | * | |
1081 | * If nothing was found, -ENOENT is returned. Otherwise, zero is | |
1082 | * returned and the struct 'res' will contain information useful to | |
1083 | * other directory manipulation functions. | |
1084 | * | |
1085 | * Caller can NOT assume anything about the contents of the | |
1086 | * buffer_heads - they are passed back only so that it can be passed | |
1087 | * into any one of the manipulation functions (add entry, delete | |
1088 | * entry, etc). As an example, bh in the extent directory case is a | |
1089 | * data block, in the inline-data case it actually points to an inode, | |
1090 | * in the indexed directory case, multiple buffers are involved. | |
1091 | */ | |
1092 | int ocfs2_find_entry(const char *name, int namelen, | |
1093 | struct inode *dir, struct ocfs2_dir_lookup_result *lookup) | |
1094 | { | |
1095 | struct buffer_head *bh; | |
1096 | struct ocfs2_dir_entry *res_dir = NULL; | |
1097 | ||
1098 | if (ocfs2_dir_indexed(dir)) | |
1099 | return ocfs2_find_entry_dx(name, namelen, dir, lookup); | |
1100 | ||
1101 | /* | |
1102 | * The unindexed dir code only uses part of the lookup | |
1103 | * structure, so there's no reason to push it down further | |
1104 | * than this. | |
1105 | */ | |
1106 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | |
1107 | bh = ocfs2_find_entry_id(name, namelen, dir, &res_dir); | |
1108 | else | |
1109 | bh = ocfs2_find_entry_el(name, namelen, dir, &res_dir); | |
1110 | ||
1111 | if (bh == NULL) | |
1112 | return -ENOENT; | |
1113 | ||
1114 | lookup->dl_leaf_bh = bh; | |
1115 | lookup->dl_entry = res_dir; | |
1116 | return 0; | |
1117 | } | |
1118 | ||
1119 | /* | |
1120 | * Update inode number and type of a previously found directory entry. | |
1121 | */ | |
1122 | int ocfs2_update_entry(struct inode *dir, handle_t *handle, | |
1123 | struct ocfs2_dir_lookup_result *res, | |
1124 | struct inode *new_entry_inode) | |
1125 | { | |
1126 | int ret; | |
1127 | ocfs2_journal_access_func access = ocfs2_journal_access_db; | |
1128 | struct ocfs2_dir_entry *de = res->dl_entry; | |
1129 | struct buffer_head *de_bh = res->dl_leaf_bh; | |
1130 | ||
1131 | /* | |
1132 | * The same code works fine for both inline-data and extent | |
1133 | * based directories, so no need to split this up. The only | |
1134 | * difference is the journal_access function. | |
1135 | */ | |
1136 | ||
1137 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | |
1138 | access = ocfs2_journal_access_di; | |
1139 | ||
0cf2f763 JB |
1140 | ret = access(handle, INODE_CACHE(dir), de_bh, |
1141 | OCFS2_JOURNAL_ACCESS_WRITE); | |
9b7895ef MF |
1142 | if (ret) { |
1143 | mlog_errno(ret); | |
1144 | goto out; | |
1145 | } | |
1146 | ||
1147 | de->inode = cpu_to_le64(OCFS2_I(new_entry_inode)->ip_blkno); | |
1148 | ocfs2_set_de_type(de, new_entry_inode->i_mode); | |
1149 | ||
1150 | ocfs2_journal_dirty(handle, de_bh); | |
1151 | ||
1152 | out: | |
1153 | return ret; | |
1154 | } | |
1155 | ||
1156 | /* | |
1157 | * __ocfs2_delete_entry deletes a directory entry by merging it with the | |
1158 | * previous entry | |
1159 | */ | |
1160 | static int __ocfs2_delete_entry(handle_t *handle, struct inode *dir, | |
1161 | struct ocfs2_dir_entry *de_del, | |
1162 | struct buffer_head *bh, char *first_de, | |
1163 | unsigned int bytes) | |
1164 | { | |
1165 | struct ocfs2_dir_entry *de, *pde; | |
1166 | int i, status = -ENOENT; | |
1167 | ocfs2_journal_access_func access = ocfs2_journal_access_db; | |
1168 | ||
1169 | mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p)\n", handle, dir, de_del, bh); | |
1170 | ||
1171 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | |
1172 | access = ocfs2_journal_access_di; | |
1173 | ||
1174 | i = 0; | |
1175 | pde = NULL; | |
1176 | de = (struct ocfs2_dir_entry *) first_de; | |
1177 | while (i < bytes) { | |
1178 | if (!ocfs2_check_dir_entry(dir, de, bh, i)) { | |
1179 | status = -EIO; | |
1180 | mlog_errno(status); | |
1181 | goto bail; | |
1182 | } | |
1183 | if (de == de_del) { | |
0cf2f763 | 1184 | status = access(handle, INODE_CACHE(dir), bh, |
13723d00 | 1185 | OCFS2_JOURNAL_ACCESS_WRITE); |
316f4b9f MF |
1186 | if (status < 0) { |
1187 | status = -EIO; | |
1188 | mlog_errno(status); | |
1189 | goto bail; | |
1190 | } | |
1191 | if (pde) | |
0dd3256e MS |
1192 | le16_add_cpu(&pde->rec_len, |
1193 | le16_to_cpu(de->rec_len)); | |
316f4b9f MF |
1194 | else |
1195 | de->inode = 0; | |
1196 | dir->i_version++; | |
1197 | status = ocfs2_journal_dirty(handle, bh); | |
1198 | goto bail; | |
1199 | } | |
1200 | i += le16_to_cpu(de->rec_len); | |
1201 | pde = de; | |
1202 | de = (struct ocfs2_dir_entry *)((char *)de + le16_to_cpu(de->rec_len)); | |
1203 | } | |
1204 | bail: | |
1205 | mlog_exit(status); | |
1206 | return status; | |
1207 | } | |
1208 | ||
e7c17e43 MF |
1209 | static unsigned int ocfs2_figure_dirent_hole(struct ocfs2_dir_entry *de) |
1210 | { | |
1211 | unsigned int hole; | |
1212 | ||
1213 | if (le64_to_cpu(de->inode) == 0) | |
1214 | hole = le16_to_cpu(de->rec_len); | |
1215 | else | |
1216 | hole = le16_to_cpu(de->rec_len) - | |
1217 | OCFS2_DIR_REC_LEN(de->name_len); | |
1218 | ||
1219 | return hole; | |
1220 | } | |
1221 | ||
1222 | static int ocfs2_find_max_rec_len(struct super_block *sb, | |
1223 | struct buffer_head *dirblock_bh) | |
1224 | { | |
1225 | int size, this_hole, largest_hole = 0; | |
1226 | char *trailer, *de_buf, *limit, *start = dirblock_bh->b_data; | |
1227 | struct ocfs2_dir_entry *de; | |
1228 | ||
1229 | trailer = (char *)ocfs2_trailer_from_bh(dirblock_bh, sb); | |
1230 | size = ocfs2_dir_trailer_blk_off(sb); | |
1231 | limit = start + size; | |
1232 | de_buf = start; | |
1233 | de = (struct ocfs2_dir_entry *)de_buf; | |
1234 | do { | |
1235 | if (de_buf != trailer) { | |
1236 | this_hole = ocfs2_figure_dirent_hole(de); | |
1237 | if (this_hole > largest_hole) | |
1238 | largest_hole = this_hole; | |
1239 | } | |
1240 | ||
1241 | de_buf += le16_to_cpu(de->rec_len); | |
1242 | de = (struct ocfs2_dir_entry *)de_buf; | |
1243 | } while (de_buf < limit); | |
1244 | ||
1245 | if (largest_hole >= OCFS2_DIR_MIN_REC_LEN) | |
1246 | return largest_hole; | |
1247 | return 0; | |
1248 | } | |
1249 | ||
4ed8a6bb MF |
1250 | static void ocfs2_dx_list_remove_entry(struct ocfs2_dx_entry_list *entry_list, |
1251 | int index) | |
9b7895ef | 1252 | { |
4ed8a6bb | 1253 | int num_used = le16_to_cpu(entry_list->de_num_used); |
9b7895ef MF |
1254 | |
1255 | if (num_used == 1 || index == (num_used - 1)) | |
1256 | goto clear; | |
1257 | ||
4ed8a6bb MF |
1258 | memmove(&entry_list->de_entries[index], |
1259 | &entry_list->de_entries[index + 1], | |
9b7895ef MF |
1260 | (num_used - index - 1)*sizeof(struct ocfs2_dx_entry)); |
1261 | clear: | |
1262 | num_used--; | |
4ed8a6bb | 1263 | memset(&entry_list->de_entries[num_used], 0, |
9b7895ef | 1264 | sizeof(struct ocfs2_dx_entry)); |
4ed8a6bb | 1265 | entry_list->de_num_used = cpu_to_le16(num_used); |
9b7895ef MF |
1266 | } |
1267 | ||
1268 | static int ocfs2_delete_entry_dx(handle_t *handle, struct inode *dir, | |
1269 | struct ocfs2_dir_lookup_result *lookup) | |
1270 | { | |
e7c17e43 | 1271 | int ret, index, max_rec_len, add_to_free_list = 0; |
4ed8a6bb | 1272 | struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh; |
9b7895ef MF |
1273 | struct buffer_head *leaf_bh = lookup->dl_leaf_bh; |
1274 | struct ocfs2_dx_leaf *dx_leaf; | |
1275 | struct ocfs2_dx_entry *dx_entry = lookup->dl_dx_entry; | |
e7c17e43 | 1276 | struct ocfs2_dir_block_trailer *trailer; |
4ed8a6bb MF |
1277 | struct ocfs2_dx_root_block *dx_root; |
1278 | struct ocfs2_dx_entry_list *entry_list; | |
1279 | ||
e7c17e43 MF |
1280 | /* |
1281 | * This function gets a bit messy because we might have to | |
1282 | * modify the root block, regardless of whether the indexed | |
1283 | * entries are stored inline. | |
1284 | */ | |
1285 | ||
1286 | /* | |
1287 | * *Only* set 'entry_list' here, based on where we're looking | |
1288 | * for the indexed entries. Later, we might still want to | |
1289 | * journal both blocks, based on free list state. | |
1290 | */ | |
4ed8a6bb MF |
1291 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
1292 | if (ocfs2_dx_root_inline(dx_root)) { | |
1293 | entry_list = &dx_root->dr_entries; | |
1294 | } else { | |
1295 | dx_leaf = (struct ocfs2_dx_leaf *) lookup->dl_dx_leaf_bh->b_data; | |
1296 | entry_list = &dx_leaf->dl_list; | |
1297 | } | |
9b7895ef | 1298 | |
9b7895ef MF |
1299 | /* Neither of these are a disk corruption - that should have |
1300 | * been caught by lookup, before we got here. */ | |
4ed8a6bb MF |
1301 | BUG_ON(le16_to_cpu(entry_list->de_count) <= 0); |
1302 | BUG_ON(le16_to_cpu(entry_list->de_num_used) <= 0); | |
9b7895ef | 1303 | |
4ed8a6bb | 1304 | index = (char *)dx_entry - (char *)entry_list->de_entries; |
9b7895ef MF |
1305 | index /= sizeof(*dx_entry); |
1306 | ||
4ed8a6bb | 1307 | if (index >= le16_to_cpu(entry_list->de_num_used)) { |
9b7895ef | 1308 | mlog(ML_ERROR, "Dir %llu: Bad dx_entry ptr idx %d, (%p, %p)\n", |
4ed8a6bb MF |
1309 | (unsigned long long)OCFS2_I(dir)->ip_blkno, index, |
1310 | entry_list, dx_entry); | |
9b7895ef MF |
1311 | return -EIO; |
1312 | } | |
1313 | ||
e7c17e43 MF |
1314 | /* |
1315 | * We know that removal of this dirent will leave enough room | |
1316 | * for a new one, so add this block to the free list if it | |
1317 | * isn't already there. | |
1318 | */ | |
1319 | trailer = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb); | |
1320 | if (trailer->db_free_rec_len == 0) | |
1321 | add_to_free_list = 1; | |
1322 | ||
9b7895ef | 1323 | /* |
4ed8a6bb MF |
1324 | * Add the block holding our index into the journal before |
1325 | * removing the unindexed entry. If we get an error return | |
1326 | * from __ocfs2_delete_entry(), then it hasn't removed the | |
1327 | * entry yet. Likewise, successful return means we *must* | |
1328 | * remove the indexed entry. | |
1329 | * | |
e3a93c2d MF |
1330 | * We're also careful to journal the root tree block here as |
1331 | * the entry count needs to be updated. Also, we might be | |
1332 | * adding to the start of the free list. | |
9b7895ef | 1333 | */ |
0cf2f763 | 1334 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
e3a93c2d MF |
1335 | OCFS2_JOURNAL_ACCESS_WRITE); |
1336 | if (ret) { | |
1337 | mlog_errno(ret); | |
1338 | goto out; | |
e7c17e43 MF |
1339 | } |
1340 | ||
1341 | if (!ocfs2_dx_root_inline(dx_root)) { | |
0cf2f763 | 1342 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), |
4ed8a6bb MF |
1343 | lookup->dl_dx_leaf_bh, |
1344 | OCFS2_JOURNAL_ACCESS_WRITE); | |
1345 | if (ret) { | |
1346 | mlog_errno(ret); | |
1347 | goto out; | |
1348 | } | |
9b7895ef MF |
1349 | } |
1350 | ||
4ed8a6bb MF |
1351 | mlog(0, "Dir %llu: delete entry at index: %d\n", |
1352 | (unsigned long long)OCFS2_I(dir)->ip_blkno, index); | |
1353 | ||
9b7895ef MF |
1354 | ret = __ocfs2_delete_entry(handle, dir, lookup->dl_entry, |
1355 | leaf_bh, leaf_bh->b_data, leaf_bh->b_size); | |
1356 | if (ret) { | |
1357 | mlog_errno(ret); | |
1358 | goto out; | |
1359 | } | |
1360 | ||
e7c17e43 MF |
1361 | max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, leaf_bh); |
1362 | trailer->db_free_rec_len = cpu_to_le16(max_rec_len); | |
1363 | if (add_to_free_list) { | |
1364 | trailer->db_free_next = dx_root->dr_free_blk; | |
1365 | dx_root->dr_free_blk = cpu_to_le64(leaf_bh->b_blocknr); | |
1366 | ocfs2_journal_dirty(handle, dx_root_bh); | |
1367 | } | |
1368 | ||
1369 | /* leaf_bh was journal_accessed for us in __ocfs2_delete_entry */ | |
1370 | ocfs2_journal_dirty(handle, leaf_bh); | |
1371 | ||
e3a93c2d MF |
1372 | le32_add_cpu(&dx_root->dr_num_entries, -1); |
1373 | ocfs2_journal_dirty(handle, dx_root_bh); | |
1374 | ||
4ed8a6bb | 1375 | ocfs2_dx_list_remove_entry(entry_list, index); |
9b7895ef | 1376 | |
e3a93c2d | 1377 | if (!ocfs2_dx_root_inline(dx_root)) |
4ed8a6bb | 1378 | ocfs2_journal_dirty(handle, lookup->dl_dx_leaf_bh); |
9b7895ef MF |
1379 | |
1380 | out: | |
1381 | return ret; | |
1382 | } | |
1383 | ||
5b6a3a2b MF |
1384 | static inline int ocfs2_delete_entry_id(handle_t *handle, |
1385 | struct inode *dir, | |
1386 | struct ocfs2_dir_entry *de_del, | |
1387 | struct buffer_head *bh) | |
1388 | { | |
1389 | int ret; | |
1390 | struct buffer_head *di_bh = NULL; | |
1391 | struct ocfs2_dinode *di; | |
1392 | struct ocfs2_inline_data *data; | |
1393 | ||
b657c95c | 1394 | ret = ocfs2_read_inode_block(dir, &di_bh); |
5b6a3a2b MF |
1395 | if (ret) { |
1396 | mlog_errno(ret); | |
1397 | goto out; | |
1398 | } | |
1399 | ||
1400 | di = (struct ocfs2_dinode *)di_bh->b_data; | |
1401 | data = &di->id2.i_data; | |
1402 | ||
1403 | ret = __ocfs2_delete_entry(handle, dir, de_del, bh, data->id_data, | |
1404 | i_size_read(dir)); | |
1405 | ||
1406 | brelse(di_bh); | |
1407 | out: | |
1408 | return ret; | |
1409 | } | |
1410 | ||
1411 | static inline int ocfs2_delete_entry_el(handle_t *handle, | |
1412 | struct inode *dir, | |
1413 | struct ocfs2_dir_entry *de_del, | |
1414 | struct buffer_head *bh) | |
1415 | { | |
1416 | return __ocfs2_delete_entry(handle, dir, de_del, bh, bh->b_data, | |
1417 | bh->b_size); | |
1418 | } | |
1419 | ||
1420 | /* | |
9b7895ef MF |
1421 | * Delete a directory entry. Hide the details of directory |
1422 | * implementation from the caller. | |
5b6a3a2b MF |
1423 | */ |
1424 | int ocfs2_delete_entry(handle_t *handle, | |
1425 | struct inode *dir, | |
4a12ca3a | 1426 | struct ocfs2_dir_lookup_result *res) |
5b6a3a2b | 1427 | { |
9b7895ef MF |
1428 | if (ocfs2_dir_indexed(dir)) |
1429 | return ocfs2_delete_entry_dx(handle, dir, res); | |
1430 | ||
5b6a3a2b | 1431 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) |
4a12ca3a MF |
1432 | return ocfs2_delete_entry_id(handle, dir, res->dl_entry, |
1433 | res->dl_leaf_bh); | |
5b6a3a2b | 1434 | |
4a12ca3a MF |
1435 | return ocfs2_delete_entry_el(handle, dir, res->dl_entry, |
1436 | res->dl_leaf_bh); | |
5b6a3a2b MF |
1437 | } |
1438 | ||
8553cf4f MF |
1439 | /* |
1440 | * Check whether 'de' has enough room to hold an entry of | |
1441 | * 'new_rec_len' bytes. | |
1442 | */ | |
1443 | static inline int ocfs2_dirent_would_fit(struct ocfs2_dir_entry *de, | |
1444 | unsigned int new_rec_len) | |
1445 | { | |
1446 | unsigned int de_really_used; | |
1447 | ||
1448 | /* Check whether this is an empty record with enough space */ | |
1449 | if (le64_to_cpu(de->inode) == 0 && | |
1450 | le16_to_cpu(de->rec_len) >= new_rec_len) | |
1451 | return 1; | |
1452 | ||
1453 | /* | |
1454 | * Record might have free space at the end which we can | |
1455 | * use. | |
1456 | */ | |
1457 | de_really_used = OCFS2_DIR_REC_LEN(de->name_len); | |
1458 | if (le16_to_cpu(de->rec_len) >= (de_really_used + new_rec_len)) | |
1459 | return 1; | |
1460 | ||
1461 | return 0; | |
1462 | } | |
1463 | ||
9b7895ef MF |
1464 | static void ocfs2_dx_dir_leaf_insert_tail(struct ocfs2_dx_leaf *dx_leaf, |
1465 | struct ocfs2_dx_entry *dx_new_entry) | |
1466 | { | |
1467 | int i; | |
1468 | ||
1469 | i = le16_to_cpu(dx_leaf->dl_list.de_num_used); | |
1470 | dx_leaf->dl_list.de_entries[i] = *dx_new_entry; | |
1471 | ||
1472 | le16_add_cpu(&dx_leaf->dl_list.de_num_used, 1); | |
1473 | } | |
1474 | ||
4ed8a6bb MF |
1475 | static void ocfs2_dx_entry_list_insert(struct ocfs2_dx_entry_list *entry_list, |
1476 | struct ocfs2_dx_hinfo *hinfo, | |
1477 | u64 dirent_blk) | |
1478 | { | |
1479 | int i; | |
1480 | struct ocfs2_dx_entry *dx_entry; | |
1481 | ||
1482 | i = le16_to_cpu(entry_list->de_num_used); | |
1483 | dx_entry = &entry_list->de_entries[i]; | |
1484 | ||
1485 | memset(dx_entry, 0, sizeof(*dx_entry)); | |
1486 | dx_entry->dx_major_hash = cpu_to_le32(hinfo->major_hash); | |
1487 | dx_entry->dx_minor_hash = cpu_to_le32(hinfo->minor_hash); | |
1488 | dx_entry->dx_dirent_blk = cpu_to_le64(dirent_blk); | |
1489 | ||
1490 | le16_add_cpu(&entry_list->de_num_used, 1); | |
1491 | } | |
1492 | ||
9b7895ef MF |
1493 | static int __ocfs2_dx_dir_leaf_insert(struct inode *dir, handle_t *handle, |
1494 | struct ocfs2_dx_hinfo *hinfo, | |
1495 | u64 dirent_blk, | |
1496 | struct buffer_head *dx_leaf_bh) | |
1497 | { | |
4ed8a6bb | 1498 | int ret; |
9b7895ef MF |
1499 | struct ocfs2_dx_leaf *dx_leaf; |
1500 | ||
0cf2f763 | 1501 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh, |
9b7895ef MF |
1502 | OCFS2_JOURNAL_ACCESS_WRITE); |
1503 | if (ret) { | |
1504 | mlog_errno(ret); | |
1505 | goto out; | |
1506 | } | |
1507 | ||
1508 | dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data; | |
4ed8a6bb MF |
1509 | ocfs2_dx_entry_list_insert(&dx_leaf->dl_list, hinfo, dirent_blk); |
1510 | ocfs2_journal_dirty(handle, dx_leaf_bh); | |
9b7895ef | 1511 | |
4ed8a6bb MF |
1512 | out: |
1513 | return ret; | |
1514 | } | |
9b7895ef | 1515 | |
e3a93c2d MF |
1516 | static void ocfs2_dx_inline_root_insert(struct inode *dir, handle_t *handle, |
1517 | struct ocfs2_dx_hinfo *hinfo, | |
1518 | u64 dirent_blk, | |
1519 | struct ocfs2_dx_root_block *dx_root) | |
4ed8a6bb | 1520 | { |
e3a93c2d MF |
1521 | ocfs2_dx_entry_list_insert(&dx_root->dr_entries, hinfo, dirent_blk); |
1522 | } | |
1523 | ||
1524 | static int ocfs2_dx_dir_insert(struct inode *dir, handle_t *handle, | |
1525 | struct ocfs2_dir_lookup_result *lookup) | |
1526 | { | |
1527 | int ret = 0; | |
4ed8a6bb | 1528 | struct ocfs2_dx_root_block *dx_root; |
e3a93c2d | 1529 | struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh; |
9b7895ef | 1530 | |
0cf2f763 | 1531 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
4ed8a6bb MF |
1532 | OCFS2_JOURNAL_ACCESS_WRITE); |
1533 | if (ret) { | |
1534 | mlog_errno(ret); | |
1535 | goto out; | |
1536 | } | |
1537 | ||
e3a93c2d MF |
1538 | dx_root = (struct ocfs2_dx_root_block *)lookup->dl_dx_root_bh->b_data; |
1539 | if (ocfs2_dx_root_inline(dx_root)) { | |
1540 | ocfs2_dx_inline_root_insert(dir, handle, | |
1541 | &lookup->dl_hinfo, | |
1542 | lookup->dl_leaf_bh->b_blocknr, | |
1543 | dx_root); | |
1544 | } else { | |
1545 | ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &lookup->dl_hinfo, | |
1546 | lookup->dl_leaf_bh->b_blocknr, | |
1547 | lookup->dl_dx_leaf_bh); | |
1548 | if (ret) | |
1549 | goto out; | |
1550 | } | |
1551 | ||
1552 | le32_add_cpu(&dx_root->dr_num_entries, 1); | |
4ed8a6bb | 1553 | ocfs2_journal_dirty(handle, dx_root_bh); |
9b7895ef MF |
1554 | |
1555 | out: | |
1556 | return ret; | |
1557 | } | |
1558 | ||
e7c17e43 MF |
1559 | static void ocfs2_remove_block_from_free_list(struct inode *dir, |
1560 | handle_t *handle, | |
1561 | struct ocfs2_dir_lookup_result *lookup) | |
1562 | { | |
1563 | struct ocfs2_dir_block_trailer *trailer, *prev; | |
1564 | struct ocfs2_dx_root_block *dx_root; | |
1565 | struct buffer_head *bh; | |
1566 | ||
1567 | trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb); | |
1568 | ||
1569 | if (ocfs2_free_list_at_root(lookup)) { | |
1570 | bh = lookup->dl_dx_root_bh; | |
1571 | dx_root = (struct ocfs2_dx_root_block *)bh->b_data; | |
1572 | dx_root->dr_free_blk = trailer->db_free_next; | |
1573 | } else { | |
1574 | bh = lookup->dl_prev_leaf_bh; | |
1575 | prev = ocfs2_trailer_from_bh(bh, dir->i_sb); | |
1576 | prev->db_free_next = trailer->db_free_next; | |
1577 | } | |
1578 | ||
1579 | trailer->db_free_rec_len = cpu_to_le16(0); | |
1580 | trailer->db_free_next = cpu_to_le64(0); | |
1581 | ||
1582 | ocfs2_journal_dirty(handle, bh); | |
1583 | ocfs2_journal_dirty(handle, lookup->dl_leaf_bh); | |
1584 | } | |
1585 | ||
1586 | /* | |
1587 | * This expects that a journal write has been reserved on | |
1588 | * lookup->dl_prev_leaf_bh or lookup->dl_dx_root_bh | |
1589 | */ | |
1590 | static void ocfs2_recalc_free_list(struct inode *dir, handle_t *handle, | |
1591 | struct ocfs2_dir_lookup_result *lookup) | |
1592 | { | |
1593 | int max_rec_len; | |
1594 | struct ocfs2_dir_block_trailer *trailer; | |
1595 | ||
1596 | /* Walk dl_leaf_bh to figure out what the new free rec_len is. */ | |
1597 | max_rec_len = ocfs2_find_max_rec_len(dir->i_sb, lookup->dl_leaf_bh); | |
1598 | if (max_rec_len) { | |
1599 | /* | |
1600 | * There's still room in this block, so no need to remove it | |
1601 | * from the free list. In this case, we just want to update | |
1602 | * the rec len accounting. | |
1603 | */ | |
1604 | trailer = ocfs2_trailer_from_bh(lookup->dl_leaf_bh, dir->i_sb); | |
1605 | trailer->db_free_rec_len = cpu_to_le16(max_rec_len); | |
1606 | ocfs2_journal_dirty(handle, lookup->dl_leaf_bh); | |
1607 | } else { | |
1608 | ocfs2_remove_block_from_free_list(dir, handle, lookup); | |
1609 | } | |
1610 | } | |
1611 | ||
316f4b9f MF |
1612 | /* we don't always have a dentry for what we want to add, so people |
1613 | * like orphan dir can call this instead. | |
1614 | * | |
4a12ca3a MF |
1615 | * The lookup context must have been filled from |
1616 | * ocfs2_prepare_dir_for_insert. | |
316f4b9f MF |
1617 | */ |
1618 | int __ocfs2_add_entry(handle_t *handle, | |
1619 | struct inode *dir, | |
1620 | const char *name, int namelen, | |
1621 | struct inode *inode, u64 blkno, | |
1622 | struct buffer_head *parent_fe_bh, | |
4a12ca3a | 1623 | struct ocfs2_dir_lookup_result *lookup) |
316f4b9f MF |
1624 | { |
1625 | unsigned long offset; | |
1626 | unsigned short rec_len; | |
1627 | struct ocfs2_dir_entry *de, *de1; | |
5b6a3a2b MF |
1628 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)parent_fe_bh->b_data; |
1629 | struct super_block *sb = dir->i_sb; | |
316f4b9f | 1630 | int retval, status; |
5b6a3a2b | 1631 | unsigned int size = sb->s_blocksize; |
4a12ca3a | 1632 | struct buffer_head *insert_bh = lookup->dl_leaf_bh; |
5b6a3a2b | 1633 | char *data_start = insert_bh->b_data; |
316f4b9f MF |
1634 | |
1635 | mlog_entry_void(); | |
1636 | ||
316f4b9f MF |
1637 | if (!namelen) |
1638 | return -EINVAL; | |
1639 | ||
e7c17e43 MF |
1640 | if (ocfs2_dir_indexed(dir)) { |
1641 | struct buffer_head *bh; | |
1642 | ||
1643 | /* | |
1644 | * An indexed dir may require that we update the free space | |
1645 | * list. Reserve a write to the previous node in the list so | |
1646 | * that we don't fail later. | |
1647 | * | |
1648 | * XXX: This can be either a dx_root_block, or an unindexed | |
1649 | * directory tree leaf block. | |
1650 | */ | |
1651 | if (ocfs2_free_list_at_root(lookup)) { | |
1652 | bh = lookup->dl_dx_root_bh; | |
0cf2f763 JB |
1653 | retval = ocfs2_journal_access_dr(handle, |
1654 | INODE_CACHE(dir), bh, | |
e7c17e43 MF |
1655 | OCFS2_JOURNAL_ACCESS_WRITE); |
1656 | } else { | |
1657 | bh = lookup->dl_prev_leaf_bh; | |
0cf2f763 JB |
1658 | retval = ocfs2_journal_access_db(handle, |
1659 | INODE_CACHE(dir), bh, | |
e7c17e43 MF |
1660 | OCFS2_JOURNAL_ACCESS_WRITE); |
1661 | } | |
1662 | if (retval) { | |
1663 | mlog_errno(retval); | |
1664 | return retval; | |
1665 | } | |
1666 | } else if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { | |
5b6a3a2b MF |
1667 | data_start = di->id2.i_data.id_data; |
1668 | size = i_size_read(dir); | |
1669 | ||
1670 | BUG_ON(insert_bh != parent_fe_bh); | |
1671 | } | |
1672 | ||
316f4b9f MF |
1673 | rec_len = OCFS2_DIR_REC_LEN(namelen); |
1674 | offset = 0; | |
5b6a3a2b | 1675 | de = (struct ocfs2_dir_entry *) data_start; |
316f4b9f | 1676 | while (1) { |
5b6a3a2b MF |
1677 | BUG_ON((char *)de >= (size + data_start)); |
1678 | ||
316f4b9f MF |
1679 | /* These checks should've already been passed by the |
1680 | * prepare function, but I guess we can leave them | |
1681 | * here anyway. */ | |
1682 | if (!ocfs2_check_dir_entry(dir, de, insert_bh, offset)) { | |
1683 | retval = -ENOENT; | |
1684 | goto bail; | |
1685 | } | |
1686 | if (ocfs2_match(namelen, name, de)) { | |
1687 | retval = -EEXIST; | |
1688 | goto bail; | |
1689 | } | |
8553cf4f | 1690 | |
87d35a74 MF |
1691 | /* We're guaranteed that we should have space, so we |
1692 | * can't possibly have hit the trailer...right? */ | |
1693 | mlog_bug_on_msg(ocfs2_skip_dir_trailer(dir, de, offset, size), | |
1694 | "Hit dir trailer trying to insert %.*s " | |
1695 | "(namelen %d) into directory %llu. " | |
1696 | "offset is %lu, trailer offset is %d\n", | |
1697 | namelen, name, namelen, | |
1698 | (unsigned long long)parent_fe_bh->b_blocknr, | |
1699 | offset, ocfs2_dir_trailer_blk_off(dir->i_sb)); | |
1700 | ||
8553cf4f | 1701 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
316f4b9f MF |
1702 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; |
1703 | retval = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh); | |
1704 | if (retval < 0) { | |
1705 | mlog_errno(retval); | |
1706 | goto bail; | |
1707 | } | |
1708 | ||
13723d00 | 1709 | if (insert_bh == parent_fe_bh) |
0cf2f763 JB |
1710 | status = ocfs2_journal_access_di(handle, |
1711 | INODE_CACHE(dir), | |
13723d00 JB |
1712 | insert_bh, |
1713 | OCFS2_JOURNAL_ACCESS_WRITE); | |
9b7895ef | 1714 | else { |
0cf2f763 JB |
1715 | status = ocfs2_journal_access_db(handle, |
1716 | INODE_CACHE(dir), | |
13723d00 | 1717 | insert_bh, |
4ed8a6bb MF |
1718 | OCFS2_JOURNAL_ACCESS_WRITE); |
1719 | ||
9b7895ef | 1720 | if (ocfs2_dir_indexed(dir)) { |
4ed8a6bb MF |
1721 | status = ocfs2_dx_dir_insert(dir, |
1722 | handle, | |
1723 | lookup); | |
9b7895ef MF |
1724 | if (status) { |
1725 | mlog_errno(status); | |
1726 | goto bail; | |
1727 | } | |
1728 | } | |
1729 | } | |
1730 | ||
316f4b9f MF |
1731 | /* By now the buffer is marked for journaling */ |
1732 | offset += le16_to_cpu(de->rec_len); | |
1733 | if (le64_to_cpu(de->inode)) { | |
1734 | de1 = (struct ocfs2_dir_entry *)((char *) de + | |
1735 | OCFS2_DIR_REC_LEN(de->name_len)); | |
1736 | de1->rec_len = | |
1737 | cpu_to_le16(le16_to_cpu(de->rec_len) - | |
1738 | OCFS2_DIR_REC_LEN(de->name_len)); | |
1739 | de->rec_len = cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len)); | |
1740 | de = de1; | |
1741 | } | |
1742 | de->file_type = OCFS2_FT_UNKNOWN; | |
1743 | if (blkno) { | |
1744 | de->inode = cpu_to_le64(blkno); | |
1745 | ocfs2_set_de_type(de, inode->i_mode); | |
1746 | } else | |
1747 | de->inode = 0; | |
1748 | de->name_len = namelen; | |
1749 | memcpy(de->name, name, namelen); | |
1750 | ||
e7c17e43 MF |
1751 | if (ocfs2_dir_indexed(dir)) |
1752 | ocfs2_recalc_free_list(dir, handle, lookup); | |
1753 | ||
316f4b9f MF |
1754 | dir->i_version++; |
1755 | status = ocfs2_journal_dirty(handle, insert_bh); | |
1756 | retval = 0; | |
1757 | goto bail; | |
1758 | } | |
87d35a74 | 1759 | |
316f4b9f MF |
1760 | offset += le16_to_cpu(de->rec_len); |
1761 | de = (struct ocfs2_dir_entry *) ((char *) de + le16_to_cpu(de->rec_len)); | |
1762 | } | |
1763 | ||
1764 | /* when you think about it, the assert above should prevent us | |
1765 | * from ever getting here. */ | |
1766 | retval = -ENOSPC; | |
1767 | bail: | |
1768 | ||
1769 | mlog_exit(retval); | |
1770 | return retval; | |
1771 | } | |
1772 | ||
23193e51 | 1773 | static int ocfs2_dir_foreach_blk_id(struct inode *inode, |
2b47c361 | 1774 | u64 *f_version, |
23193e51 | 1775 | loff_t *f_pos, void *priv, |
e7b34019 | 1776 | filldir_t filldir, int *filldir_err) |
23193e51 MF |
1777 | { |
1778 | int ret, i, filldir_ret; | |
1779 | unsigned long offset = *f_pos; | |
1780 | struct buffer_head *di_bh = NULL; | |
1781 | struct ocfs2_dinode *di; | |
1782 | struct ocfs2_inline_data *data; | |
1783 | struct ocfs2_dir_entry *de; | |
1784 | ||
b657c95c | 1785 | ret = ocfs2_read_inode_block(inode, &di_bh); |
23193e51 MF |
1786 | if (ret) { |
1787 | mlog(ML_ERROR, "Unable to read inode block for dir %llu\n", | |
1788 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | |
1789 | goto out; | |
1790 | } | |
1791 | ||
1792 | di = (struct ocfs2_dinode *)di_bh->b_data; | |
1793 | data = &di->id2.i_data; | |
1794 | ||
1795 | while (*f_pos < i_size_read(inode)) { | |
1796 | revalidate: | |
1797 | /* If the dir block has changed since the last call to | |
1798 | * readdir(2), then we might be pointing to an invalid | |
1799 | * dirent right now. Scan from the start of the block | |
1800 | * to make sure. */ | |
1801 | if (*f_version != inode->i_version) { | |
1802 | for (i = 0; i < i_size_read(inode) && i < offset; ) { | |
1803 | de = (struct ocfs2_dir_entry *) | |
1804 | (data->id_data + i); | |
1805 | /* It's too expensive to do a full | |
1806 | * dirent test each time round this | |
1807 | * loop, but we do have to test at | |
1808 | * least that it is non-zero. A | |
1809 | * failure will be detected in the | |
1810 | * dirent test below. */ | |
1811 | if (le16_to_cpu(de->rec_len) < | |
1812 | OCFS2_DIR_REC_LEN(1)) | |
1813 | break; | |
1814 | i += le16_to_cpu(de->rec_len); | |
1815 | } | |
1816 | *f_pos = offset = i; | |
1817 | *f_version = inode->i_version; | |
1818 | } | |
1819 | ||
1820 | de = (struct ocfs2_dir_entry *) (data->id_data + *f_pos); | |
1821 | if (!ocfs2_check_dir_entry(inode, de, di_bh, *f_pos)) { | |
1822 | /* On error, skip the f_pos to the end. */ | |
1823 | *f_pos = i_size_read(inode); | |
1824 | goto out; | |
1825 | } | |
1826 | offset += le16_to_cpu(de->rec_len); | |
1827 | if (le64_to_cpu(de->inode)) { | |
1828 | /* We might block in the next section | |
1829 | * if the data destination is | |
1830 | * currently swapped out. So, use a | |
1831 | * version stamp to detect whether or | |
1832 | * not the directory has been modified | |
1833 | * during the copy operation. | |
1834 | */ | |
2b47c361 | 1835 | u64 version = *f_version; |
23193e51 MF |
1836 | unsigned char d_type = DT_UNKNOWN; |
1837 | ||
1838 | if (de->file_type < OCFS2_FT_MAX) | |
1839 | d_type = ocfs2_filetype_table[de->file_type]; | |
1840 | ||
1841 | filldir_ret = filldir(priv, de->name, | |
1842 | de->name_len, | |
1843 | *f_pos, | |
1844 | le64_to_cpu(de->inode), | |
1845 | d_type); | |
e7b34019 MF |
1846 | if (filldir_ret) { |
1847 | if (filldir_err) | |
1848 | *filldir_err = filldir_ret; | |
23193e51 | 1849 | break; |
e7b34019 | 1850 | } |
23193e51 MF |
1851 | if (version != *f_version) |
1852 | goto revalidate; | |
1853 | } | |
1854 | *f_pos += le16_to_cpu(de->rec_len); | |
1855 | } | |
1856 | ||
1857 | out: | |
1858 | brelse(di_bh); | |
1859 | ||
1860 | return 0; | |
1861 | } | |
1862 | ||
9b7895ef MF |
1863 | /* |
1864 | * NOTE: This function can be called against unindexed directories, | |
1865 | * and indexed ones. | |
1866 | */ | |
23193e51 | 1867 | static int ocfs2_dir_foreach_blk_el(struct inode *inode, |
2b47c361 | 1868 | u64 *f_version, |
23193e51 | 1869 | loff_t *f_pos, void *priv, |
e7b34019 | 1870 | filldir_t filldir, int *filldir_err) |
ccd979bd MF |
1871 | { |
1872 | int error = 0; | |
aa958874 MF |
1873 | unsigned long offset, blk, last_ra_blk = 0; |
1874 | int i, stored; | |
ccd979bd MF |
1875 | struct buffer_head * bh, * tmp; |
1876 | struct ocfs2_dir_entry * de; | |
ccd979bd | 1877 | struct super_block * sb = inode->i_sb; |
aa958874 | 1878 | unsigned int ra_sectors = 16; |
ccd979bd MF |
1879 | |
1880 | stored = 0; | |
1881 | bh = NULL; | |
1882 | ||
b8bc5f4f | 1883 | offset = (*f_pos) & (sb->s_blocksize - 1); |
ccd979bd | 1884 | |
b8bc5f4f MF |
1885 | while (!error && !stored && *f_pos < i_size_read(inode)) { |
1886 | blk = (*f_pos) >> sb->s_blocksize_bits; | |
a22305cc JB |
1887 | if (ocfs2_read_dir_block(inode, blk, &bh, 0)) { |
1888 | /* Skip the corrupt dirblock and keep trying */ | |
b8bc5f4f | 1889 | *f_pos += sb->s_blocksize - offset; |
ccd979bd MF |
1890 | continue; |
1891 | } | |
1892 | ||
aa958874 MF |
1893 | /* The idea here is to begin with 8k read-ahead and to stay |
1894 | * 4k ahead of our current position. | |
1895 | * | |
1896 | * TODO: Use the pagecache for this. We just need to | |
1897 | * make sure it's cluster-safe... */ | |
1898 | if (!last_ra_blk | |
1899 | || (((last_ra_blk - blk) << 9) <= (ra_sectors / 2))) { | |
1900 | for (i = ra_sectors >> (sb->s_blocksize_bits - 9); | |
ccd979bd | 1901 | i > 0; i--) { |
a22305cc JB |
1902 | tmp = NULL; |
1903 | if (!ocfs2_read_dir_block(inode, ++blk, &tmp, | |
1904 | OCFS2_BH_READAHEAD)) | |
1905 | brelse(tmp); | |
ccd979bd | 1906 | } |
aa958874 MF |
1907 | last_ra_blk = blk; |
1908 | ra_sectors = 8; | |
ccd979bd MF |
1909 | } |
1910 | ||
1911 | revalidate: | |
1912 | /* If the dir block has changed since the last call to | |
1913 | * readdir(2), then we might be pointing to an invalid | |
1914 | * dirent right now. Scan from the start of the block | |
1915 | * to make sure. */ | |
b8bc5f4f | 1916 | if (*f_version != inode->i_version) { |
ccd979bd MF |
1917 | for (i = 0; i < sb->s_blocksize && i < offset; ) { |
1918 | de = (struct ocfs2_dir_entry *) (bh->b_data + i); | |
1919 | /* It's too expensive to do a full | |
1920 | * dirent test each time round this | |
1921 | * loop, but we do have to test at | |
1922 | * least that it is non-zero. A | |
1923 | * failure will be detected in the | |
1924 | * dirent test below. */ | |
1925 | if (le16_to_cpu(de->rec_len) < | |
1926 | OCFS2_DIR_REC_LEN(1)) | |
1927 | break; | |
1928 | i += le16_to_cpu(de->rec_len); | |
1929 | } | |
1930 | offset = i; | |
b8bc5f4f | 1931 | *f_pos = ((*f_pos) & ~(sb->s_blocksize - 1)) |
ccd979bd | 1932 | | offset; |
b8bc5f4f | 1933 | *f_version = inode->i_version; |
ccd979bd MF |
1934 | } |
1935 | ||
b8bc5f4f | 1936 | while (!error && *f_pos < i_size_read(inode) |
ccd979bd MF |
1937 | && offset < sb->s_blocksize) { |
1938 | de = (struct ocfs2_dir_entry *) (bh->b_data + offset); | |
1939 | if (!ocfs2_check_dir_entry(inode, de, bh, offset)) { | |
1940 | /* On error, skip the f_pos to the | |
1941 | next block. */ | |
b8bc5f4f | 1942 | *f_pos = ((*f_pos) | (sb->s_blocksize - 1)) + 1; |
ccd979bd | 1943 | brelse(bh); |
b8bc5f4f | 1944 | goto out; |
ccd979bd MF |
1945 | } |
1946 | offset += le16_to_cpu(de->rec_len); | |
1947 | if (le64_to_cpu(de->inode)) { | |
1948 | /* We might block in the next section | |
1949 | * if the data destination is | |
1950 | * currently swapped out. So, use a | |
1951 | * version stamp to detect whether or | |
1952 | * not the directory has been modified | |
1953 | * during the copy operation. | |
1954 | */ | |
b8bc5f4f | 1955 | unsigned long version = *f_version; |
ccd979bd MF |
1956 | unsigned char d_type = DT_UNKNOWN; |
1957 | ||
1958 | if (de->file_type < OCFS2_FT_MAX) | |
1959 | d_type = ocfs2_filetype_table[de->file_type]; | |
b8bc5f4f | 1960 | error = filldir(priv, de->name, |
ccd979bd | 1961 | de->name_len, |
b8bc5f4f | 1962 | *f_pos, |
7e853679 | 1963 | le64_to_cpu(de->inode), |
ccd979bd | 1964 | d_type); |
e7b34019 MF |
1965 | if (error) { |
1966 | if (filldir_err) | |
1967 | *filldir_err = error; | |
ccd979bd | 1968 | break; |
e7b34019 | 1969 | } |
b8bc5f4f | 1970 | if (version != *f_version) |
ccd979bd MF |
1971 | goto revalidate; |
1972 | stored ++; | |
1973 | } | |
b8bc5f4f | 1974 | *f_pos += le16_to_cpu(de->rec_len); |
ccd979bd MF |
1975 | } |
1976 | offset = 0; | |
1977 | brelse(bh); | |
a22305cc | 1978 | bh = NULL; |
ccd979bd MF |
1979 | } |
1980 | ||
1981 | stored = 0; | |
b8bc5f4f MF |
1982 | out: |
1983 | return stored; | |
1984 | } | |
1985 | ||
2b47c361 | 1986 | static int ocfs2_dir_foreach_blk(struct inode *inode, u64 *f_version, |
e7b34019 MF |
1987 | loff_t *f_pos, void *priv, filldir_t filldir, |
1988 | int *filldir_err) | |
23193e51 MF |
1989 | { |
1990 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | |
1991 | return ocfs2_dir_foreach_blk_id(inode, f_version, f_pos, priv, | |
e7b34019 | 1992 | filldir, filldir_err); |
23193e51 | 1993 | |
e7b34019 MF |
1994 | return ocfs2_dir_foreach_blk_el(inode, f_version, f_pos, priv, filldir, |
1995 | filldir_err); | |
23193e51 MF |
1996 | } |
1997 | ||
5eae5b96 MF |
1998 | /* |
1999 | * This is intended to be called from inside other kernel functions, | |
2000 | * so we fake some arguments. | |
2001 | */ | |
2002 | int ocfs2_dir_foreach(struct inode *inode, loff_t *f_pos, void *priv, | |
2003 | filldir_t filldir) | |
2004 | { | |
e7b34019 | 2005 | int ret = 0, filldir_err = 0; |
2b47c361 | 2006 | u64 version = inode->i_version; |
5eae5b96 MF |
2007 | |
2008 | while (*f_pos < i_size_read(inode)) { | |
2009 | ret = ocfs2_dir_foreach_blk(inode, &version, f_pos, priv, | |
e7b34019 MF |
2010 | filldir, &filldir_err); |
2011 | if (ret || filldir_err) | |
5eae5b96 MF |
2012 | break; |
2013 | } | |
2014 | ||
e7b34019 MF |
2015 | if (ret > 0) |
2016 | ret = -EIO; | |
2017 | ||
5eae5b96 MF |
2018 | return 0; |
2019 | } | |
2020 | ||
b8bc5f4f MF |
2021 | /* |
2022 | * ocfs2_readdir() | |
2023 | * | |
2024 | */ | |
2025 | int ocfs2_readdir(struct file * filp, void * dirent, filldir_t filldir) | |
2026 | { | |
2027 | int error = 0; | |
2028 | struct inode *inode = filp->f_path.dentry->d_inode; | |
2029 | int lock_level = 0; | |
2030 | ||
2031 | mlog_entry("dirino=%llu\n", | |
2032 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | |
2033 | ||
e63aecb6 | 2034 | error = ocfs2_inode_lock_atime(inode, filp->f_vfsmnt, &lock_level); |
b8bc5f4f MF |
2035 | if (lock_level && error >= 0) { |
2036 | /* We release EX lock which used to update atime | |
2037 | * and get PR lock again to reduce contention | |
2038 | * on commonly accessed directories. */ | |
e63aecb6 | 2039 | ocfs2_inode_unlock(inode, 1); |
b8bc5f4f | 2040 | lock_level = 0; |
e63aecb6 | 2041 | error = ocfs2_inode_lock(inode, NULL, 0); |
b8bc5f4f MF |
2042 | } |
2043 | if (error < 0) { | |
2044 | if (error != -ENOENT) | |
2045 | mlog_errno(error); | |
2046 | /* we haven't got any yet, so propagate the error. */ | |
2047 | goto bail_nolock; | |
2048 | } | |
2049 | ||
2050 | error = ocfs2_dir_foreach_blk(inode, &filp->f_version, &filp->f_pos, | |
e7b34019 | 2051 | dirent, filldir, NULL); |
b8bc5f4f | 2052 | |
e63aecb6 | 2053 | ocfs2_inode_unlock(inode, lock_level); |
ccd979bd | 2054 | |
aa958874 | 2055 | bail_nolock: |
b8bc5f4f | 2056 | mlog_exit(error); |
ccd979bd | 2057 | |
b8bc5f4f | 2058 | return error; |
ccd979bd MF |
2059 | } |
2060 | ||
2061 | /* | |
1b1dcc1b | 2062 | * NOTE: this should always be called with parent dir i_mutex taken. |
ccd979bd MF |
2063 | */ |
2064 | int ocfs2_find_files_on_disk(const char *name, | |
2065 | int namelen, | |
2066 | u64 *blkno, | |
2067 | struct inode *inode, | |
4a12ca3a | 2068 | struct ocfs2_dir_lookup_result *lookup) |
ccd979bd MF |
2069 | { |
2070 | int status = -ENOENT; | |
ccd979bd | 2071 | |
4a12ca3a MF |
2072 | mlog(0, "name=%.*s, blkno=%p, inode=%llu\n", namelen, name, blkno, |
2073 | (unsigned long long)OCFS2_I(inode)->ip_blkno); | |
ccd979bd | 2074 | |
4a12ca3a MF |
2075 | status = ocfs2_find_entry(name, namelen, inode, lookup); |
2076 | if (status) | |
ccd979bd | 2077 | goto leave; |
ccd979bd | 2078 | |
4a12ca3a | 2079 | *blkno = le64_to_cpu(lookup->dl_entry->inode); |
ccd979bd MF |
2080 | |
2081 | status = 0; | |
2082 | leave: | |
ccd979bd | 2083 | |
ccd979bd MF |
2084 | return status; |
2085 | } | |
2086 | ||
be94d117 MF |
2087 | /* |
2088 | * Convenience function for callers which just want the block number | |
2089 | * mapped to a name and don't require the full dirent info, etc. | |
2090 | */ | |
2091 | int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name, | |
2092 | int namelen, u64 *blkno) | |
2093 | { | |
2094 | int ret; | |
4a12ca3a | 2095 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
be94d117 | 2096 | |
4a12ca3a MF |
2097 | ret = ocfs2_find_files_on_disk(name, namelen, blkno, dir, &lookup); |
2098 | ocfs2_free_dir_lookup_result(&lookup); | |
be94d117 MF |
2099 | |
2100 | return ret; | |
2101 | } | |
2102 | ||
ccd979bd MF |
2103 | /* Check for a name within a directory. |
2104 | * | |
2105 | * Return 0 if the name does not exist | |
2106 | * Return -EEXIST if the directory contains the name | |
2107 | * | |
1b1dcc1b | 2108 | * Callers should have i_mutex + a cluster lock on dir |
ccd979bd MF |
2109 | */ |
2110 | int ocfs2_check_dir_for_entry(struct inode *dir, | |
2111 | const char *name, | |
2112 | int namelen) | |
2113 | { | |
2114 | int ret; | |
4a12ca3a | 2115 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
ccd979bd | 2116 | |
b0697053 MF |
2117 | mlog_entry("dir %llu, name '%.*s'\n", |
2118 | (unsigned long long)OCFS2_I(dir)->ip_blkno, namelen, name); | |
ccd979bd MF |
2119 | |
2120 | ret = -EEXIST; | |
4a12ca3a | 2121 | if (ocfs2_find_entry(name, namelen, dir, &lookup) == 0) |
ccd979bd MF |
2122 | goto bail; |
2123 | ||
2124 | ret = 0; | |
2125 | bail: | |
4a12ca3a | 2126 | ocfs2_free_dir_lookup_result(&lookup); |
ccd979bd MF |
2127 | |
2128 | mlog_exit(ret); | |
2129 | return ret; | |
2130 | } | |
2131 | ||
0bfbbf62 MF |
2132 | struct ocfs2_empty_dir_priv { |
2133 | unsigned seen_dot; | |
2134 | unsigned seen_dot_dot; | |
2135 | unsigned seen_other; | |
e3a93c2d | 2136 | unsigned dx_dir; |
0bfbbf62 MF |
2137 | }; |
2138 | static int ocfs2_empty_dir_filldir(void *priv, const char *name, int name_len, | |
2139 | loff_t pos, u64 ino, unsigned type) | |
2140 | { | |
2141 | struct ocfs2_empty_dir_priv *p = priv; | |
2142 | ||
2143 | /* | |
2144 | * Check the positions of "." and ".." records to be sure | |
2145 | * they're in the correct place. | |
e3a93c2d MF |
2146 | * |
2147 | * Indexed directories don't need to proceed past the first | |
2148 | * two entries, so we end the scan after seeing '..'. Despite | |
2149 | * that, we allow the scan to proceed In the event that we | |
2150 | * have a corrupted indexed directory (no dot or dot dot | |
2151 | * entries). This allows us to double check for existing | |
2152 | * entries which might not have been found in the index. | |
0bfbbf62 MF |
2153 | */ |
2154 | if (name_len == 1 && !strncmp(".", name, 1) && pos == 0) { | |
2155 | p->seen_dot = 1; | |
2156 | return 0; | |
2157 | } | |
2158 | ||
2159 | if (name_len == 2 && !strncmp("..", name, 2) && | |
2160 | pos == OCFS2_DIR_REC_LEN(1)) { | |
2161 | p->seen_dot_dot = 1; | |
e3a93c2d MF |
2162 | |
2163 | if (p->dx_dir && p->seen_dot) | |
2164 | return 1; | |
2165 | ||
0bfbbf62 MF |
2166 | return 0; |
2167 | } | |
2168 | ||
2169 | p->seen_other = 1; | |
2170 | return 1; | |
2171 | } | |
e3a93c2d MF |
2172 | |
2173 | static int ocfs2_empty_dir_dx(struct inode *inode, | |
2174 | struct ocfs2_empty_dir_priv *priv) | |
2175 | { | |
2176 | int ret; | |
2177 | struct buffer_head *di_bh = NULL; | |
2178 | struct buffer_head *dx_root_bh = NULL; | |
2179 | struct ocfs2_dinode *di; | |
2180 | struct ocfs2_dx_root_block *dx_root; | |
2181 | ||
2182 | priv->dx_dir = 1; | |
2183 | ||
2184 | ret = ocfs2_read_inode_block(inode, &di_bh); | |
2185 | if (ret) { | |
2186 | mlog_errno(ret); | |
2187 | goto out; | |
2188 | } | |
2189 | di = (struct ocfs2_dinode *)di_bh->b_data; | |
2190 | ||
2191 | ret = ocfs2_read_dx_root(inode, di, &dx_root_bh); | |
2192 | if (ret) { | |
2193 | mlog_errno(ret); | |
2194 | goto out; | |
2195 | } | |
2196 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
2197 | ||
2198 | if (le32_to_cpu(dx_root->dr_num_entries) != 2) | |
2199 | priv->seen_other = 1; | |
2200 | ||
2201 | out: | |
2202 | brelse(di_bh); | |
2203 | brelse(dx_root_bh); | |
2204 | return ret; | |
2205 | } | |
2206 | ||
ccd979bd MF |
2207 | /* |
2208 | * routine to check that the specified directory is empty (for rmdir) | |
0bfbbf62 MF |
2209 | * |
2210 | * Returns 1 if dir is empty, zero otherwise. | |
9b7895ef | 2211 | * |
e3a93c2d | 2212 | * XXX: This is a performance problem for unindexed directories. |
ccd979bd MF |
2213 | */ |
2214 | int ocfs2_empty_dir(struct inode *inode) | |
2215 | { | |
0bfbbf62 MF |
2216 | int ret; |
2217 | loff_t start = 0; | |
2218 | struct ocfs2_empty_dir_priv priv; | |
ccd979bd | 2219 | |
0bfbbf62 | 2220 | memset(&priv, 0, sizeof(priv)); |
ccd979bd | 2221 | |
e3a93c2d MF |
2222 | if (ocfs2_dir_indexed(inode)) { |
2223 | ret = ocfs2_empty_dir_dx(inode, &priv); | |
2224 | if (ret) | |
2225 | mlog_errno(ret); | |
2226 | /* | |
2227 | * We still run ocfs2_dir_foreach to get the checks | |
2228 | * for "." and "..". | |
2229 | */ | |
2230 | } | |
2231 | ||
0bfbbf62 MF |
2232 | ret = ocfs2_dir_foreach(inode, &start, &priv, ocfs2_empty_dir_filldir); |
2233 | if (ret) | |
2234 | mlog_errno(ret); | |
2235 | ||
2236 | if (!priv.seen_dot || !priv.seen_dot_dot) { | |
2237 | mlog(ML_ERROR, "bad directory (dir #%llu) - no `.' or `..'\n", | |
b0697053 | 2238 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
0bfbbf62 MF |
2239 | /* |
2240 | * XXX: Is it really safe to allow an unlink to continue? | |
2241 | */ | |
ccd979bd MF |
2242 | return 1; |
2243 | } | |
0bfbbf62 MF |
2244 | |
2245 | return !priv.seen_other; | |
ccd979bd MF |
2246 | } |
2247 | ||
87d35a74 MF |
2248 | /* |
2249 | * Fills "." and ".." dirents in a new directory block. Returns dirent for | |
2250 | * "..", which might be used during creation of a directory with a trailing | |
2251 | * header. It is otherwise safe to ignore the return code. | |
2252 | */ | |
2253 | static struct ocfs2_dir_entry *ocfs2_fill_initial_dirents(struct inode *inode, | |
2254 | struct inode *parent, | |
2255 | char *start, | |
2256 | unsigned int size) | |
5b6a3a2b MF |
2257 | { |
2258 | struct ocfs2_dir_entry *de = (struct ocfs2_dir_entry *)start; | |
2259 | ||
2260 | de->inode = cpu_to_le64(OCFS2_I(inode)->ip_blkno); | |
2261 | de->name_len = 1; | |
2262 | de->rec_len = | |
2263 | cpu_to_le16(OCFS2_DIR_REC_LEN(de->name_len)); | |
2264 | strcpy(de->name, "."); | |
2265 | ocfs2_set_de_type(de, S_IFDIR); | |
2266 | ||
2267 | de = (struct ocfs2_dir_entry *) ((char *)de + le16_to_cpu(de->rec_len)); | |
2268 | de->inode = cpu_to_le64(OCFS2_I(parent)->ip_blkno); | |
2269 | de->rec_len = cpu_to_le16(size - OCFS2_DIR_REC_LEN(1)); | |
2270 | de->name_len = 2; | |
2271 | strcpy(de->name, ".."); | |
2272 | ocfs2_set_de_type(de, S_IFDIR); | |
87d35a74 MF |
2273 | |
2274 | return de; | |
5b6a3a2b MF |
2275 | } |
2276 | ||
2277 | /* | |
2278 | * This works together with code in ocfs2_mknod_locked() which sets | |
2279 | * the inline-data flag and initializes the inline-data section. | |
2280 | */ | |
2281 | static int ocfs2_fill_new_dir_id(struct ocfs2_super *osb, | |
2282 | handle_t *handle, | |
2283 | struct inode *parent, | |
2284 | struct inode *inode, | |
2285 | struct buffer_head *di_bh) | |
2286 | { | |
2287 | int ret; | |
2288 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
2289 | struct ocfs2_inline_data *data = &di->id2.i_data; | |
2290 | unsigned int size = le16_to_cpu(data->id_count); | |
2291 | ||
0cf2f763 | 2292 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh, |
13723d00 | 2293 | OCFS2_JOURNAL_ACCESS_WRITE); |
5b6a3a2b MF |
2294 | if (ret) { |
2295 | mlog_errno(ret); | |
2296 | goto out; | |
2297 | } | |
2298 | ||
2299 | ocfs2_fill_initial_dirents(inode, parent, data->id_data, size); | |
2300 | ||
2301 | ocfs2_journal_dirty(handle, di_bh); | |
2302 | if (ret) { | |
2303 | mlog_errno(ret); | |
2304 | goto out; | |
2305 | } | |
2306 | ||
2307 | i_size_write(inode, size); | |
2308 | inode->i_nlink = 2; | |
2309 | inode->i_blocks = ocfs2_inode_sector_count(inode); | |
2310 | ||
2311 | ret = ocfs2_mark_inode_dirty(handle, inode, di_bh); | |
2312 | if (ret < 0) | |
2313 | mlog_errno(ret); | |
2314 | ||
2315 | out: | |
2316 | return ret; | |
2317 | } | |
2318 | ||
2319 | static int ocfs2_fill_new_dir_el(struct ocfs2_super *osb, | |
2320 | handle_t *handle, | |
2321 | struct inode *parent, | |
2322 | struct inode *inode, | |
2323 | struct buffer_head *fe_bh, | |
9b7895ef MF |
2324 | struct ocfs2_alloc_context *data_ac, |
2325 | struct buffer_head **ret_new_bh) | |
316f4b9f MF |
2326 | { |
2327 | int status; | |
87d35a74 | 2328 | unsigned int size = osb->sb->s_blocksize; |
316f4b9f | 2329 | struct buffer_head *new_bh = NULL; |
87d35a74 | 2330 | struct ocfs2_dir_entry *de; |
316f4b9f MF |
2331 | |
2332 | mlog_entry_void(); | |
2333 | ||
e7c17e43 | 2334 | if (ocfs2_new_dir_wants_trailer(inode)) |
87d35a74 MF |
2335 | size = ocfs2_dir_trailer_blk_off(parent->i_sb); |
2336 | ||
316f4b9f MF |
2337 | status = ocfs2_do_extend_dir(osb->sb, handle, inode, fe_bh, |
2338 | data_ac, NULL, &new_bh); | |
2339 | if (status < 0) { | |
2340 | mlog_errno(status); | |
2341 | goto bail; | |
2342 | } | |
2343 | ||
8cb471e8 | 2344 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh); |
316f4b9f | 2345 | |
0cf2f763 | 2346 | status = ocfs2_journal_access_db(handle, INODE_CACHE(inode), new_bh, |
13723d00 | 2347 | OCFS2_JOURNAL_ACCESS_CREATE); |
316f4b9f MF |
2348 | if (status < 0) { |
2349 | mlog_errno(status); | |
2350 | goto bail; | |
2351 | } | |
2352 | memset(new_bh->b_data, 0, osb->sb->s_blocksize); | |
2353 | ||
87d35a74 | 2354 | de = ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data, size); |
e7c17e43 MF |
2355 | if (ocfs2_new_dir_wants_trailer(inode)) { |
2356 | int size = le16_to_cpu(de->rec_len); | |
2357 | ||
2358 | /* | |
2359 | * Figure out the size of the hole left over after | |
2360 | * insertion of '.' and '..'. The trailer wants this | |
2361 | * information. | |
2362 | */ | |
2363 | size -= OCFS2_DIR_REC_LEN(2); | |
2364 | size -= sizeof(struct ocfs2_dir_block_trailer); | |
2365 | ||
2366 | ocfs2_init_dir_trailer(inode, new_bh, size); | |
2367 | } | |
316f4b9f MF |
2368 | |
2369 | status = ocfs2_journal_dirty(handle, new_bh); | |
2370 | if (status < 0) { | |
2371 | mlog_errno(status); | |
2372 | goto bail; | |
2373 | } | |
2374 | ||
2375 | i_size_write(inode, inode->i_sb->s_blocksize); | |
2376 | inode->i_nlink = 2; | |
2377 | inode->i_blocks = ocfs2_inode_sector_count(inode); | |
2378 | status = ocfs2_mark_inode_dirty(handle, inode, fe_bh); | |
2379 | if (status < 0) { | |
2380 | mlog_errno(status); | |
2381 | goto bail; | |
2382 | } | |
2383 | ||
2384 | status = 0; | |
9b7895ef MF |
2385 | if (ret_new_bh) { |
2386 | *ret_new_bh = new_bh; | |
2387 | new_bh = NULL; | |
2388 | } | |
316f4b9f | 2389 | bail: |
a81cb88b | 2390 | brelse(new_bh); |
316f4b9f MF |
2391 | |
2392 | mlog_exit(status); | |
2393 | return status; | |
2394 | } | |
2395 | ||
9b7895ef MF |
2396 | static int ocfs2_dx_dir_attach_index(struct ocfs2_super *osb, |
2397 | handle_t *handle, struct inode *dir, | |
2398 | struct buffer_head *di_bh, | |
e7c17e43 | 2399 | struct buffer_head *dirdata_bh, |
9b7895ef | 2400 | struct ocfs2_alloc_context *meta_ac, |
e3a93c2d | 2401 | int dx_inline, u32 num_entries, |
9b7895ef | 2402 | struct buffer_head **ret_dx_root_bh) |
5b6a3a2b | 2403 | { |
9b7895ef MF |
2404 | int ret; |
2405 | struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data; | |
2406 | u16 dr_suballoc_bit; | |
2407 | u64 dr_blkno; | |
2408 | unsigned int num_bits; | |
2409 | struct buffer_head *dx_root_bh = NULL; | |
2410 | struct ocfs2_dx_root_block *dx_root; | |
e7c17e43 MF |
2411 | struct ocfs2_dir_block_trailer *trailer = |
2412 | ocfs2_trailer_from_bh(dirdata_bh, dir->i_sb); | |
9b7895ef MF |
2413 | |
2414 | ret = ocfs2_claim_metadata(osb, handle, meta_ac, 1, &dr_suballoc_bit, | |
2415 | &num_bits, &dr_blkno); | |
2416 | if (ret) { | |
2417 | mlog_errno(ret); | |
2418 | goto out; | |
2419 | } | |
5b6a3a2b | 2420 | |
9b7895ef MF |
2421 | mlog(0, "Dir %llu, attach new index block: %llu\n", |
2422 | (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
2423 | (unsigned long long)dr_blkno); | |
5b6a3a2b | 2424 | |
9b7895ef MF |
2425 | dx_root_bh = sb_getblk(osb->sb, dr_blkno); |
2426 | if (dx_root_bh == NULL) { | |
2427 | ret = -EIO; | |
2428 | goto out; | |
2429 | } | |
8cb471e8 | 2430 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dx_root_bh); |
87d35a74 | 2431 | |
0cf2f763 | 2432 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
9b7895ef MF |
2433 | OCFS2_JOURNAL_ACCESS_CREATE); |
2434 | if (ret < 0) { | |
2435 | mlog_errno(ret); | |
2436 | goto out; | |
2437 | } | |
87d35a74 | 2438 | |
9b7895ef MF |
2439 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
2440 | memset(dx_root, 0, osb->sb->s_blocksize); | |
2441 | strcpy(dx_root->dr_signature, OCFS2_DX_ROOT_SIGNATURE); | |
2442 | dx_root->dr_suballoc_slot = cpu_to_le16(osb->slot_num); | |
2443 | dx_root->dr_suballoc_bit = cpu_to_le16(dr_suballoc_bit); | |
2444 | dx_root->dr_fs_generation = cpu_to_le32(osb->fs_generation); | |
2445 | dx_root->dr_blkno = cpu_to_le64(dr_blkno); | |
2446 | dx_root->dr_dir_blkno = cpu_to_le64(OCFS2_I(dir)->ip_blkno); | |
e3a93c2d | 2447 | dx_root->dr_num_entries = cpu_to_le32(num_entries); |
e7c17e43 MF |
2448 | if (le16_to_cpu(trailer->db_free_rec_len)) |
2449 | dx_root->dr_free_blk = cpu_to_le64(dirdata_bh->b_blocknr); | |
2450 | else | |
2451 | dx_root->dr_free_blk = cpu_to_le64(0); | |
4ed8a6bb MF |
2452 | |
2453 | if (dx_inline) { | |
2454 | dx_root->dr_flags |= OCFS2_DX_FLAG_INLINE; | |
2455 | dx_root->dr_entries.de_count = | |
2456 | cpu_to_le16(ocfs2_dx_entries_per_root(osb->sb)); | |
2457 | } else { | |
2458 | dx_root->dr_list.l_count = | |
2459 | cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb)); | |
2460 | } | |
9b7895ef MF |
2461 | |
2462 | ret = ocfs2_journal_dirty(handle, dx_root_bh); | |
2463 | if (ret) | |
2464 | mlog_errno(ret); | |
5b6a3a2b | 2465 | |
0cf2f763 | 2466 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh, |
9b7895ef MF |
2467 | OCFS2_JOURNAL_ACCESS_CREATE); |
2468 | if (ret) { | |
2469 | mlog_errno(ret); | |
2470 | goto out; | |
2471 | } | |
2472 | ||
2473 | di->i_dx_root = cpu_to_le64(dr_blkno); | |
2474 | ||
2475 | OCFS2_I(dir)->ip_dyn_features |= OCFS2_INDEXED_DIR_FL; | |
2476 | di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features); | |
2477 | ||
2478 | ret = ocfs2_journal_dirty(handle, di_bh); | |
2479 | if (ret) | |
2480 | mlog_errno(ret); | |
2481 | ||
2482 | *ret_dx_root_bh = dx_root_bh; | |
2483 | dx_root_bh = NULL; | |
2484 | ||
2485 | out: | |
2486 | brelse(dx_root_bh); | |
2487 | return ret; | |
2488 | } | |
2489 | ||
2490 | static int ocfs2_dx_dir_format_cluster(struct ocfs2_super *osb, | |
2491 | handle_t *handle, struct inode *dir, | |
2492 | struct buffer_head **dx_leaves, | |
2493 | int num_dx_leaves, u64 start_blk) | |
2494 | { | |
2495 | int ret, i; | |
2496 | struct ocfs2_dx_leaf *dx_leaf; | |
2497 | struct buffer_head *bh; | |
2498 | ||
2499 | for (i = 0; i < num_dx_leaves; i++) { | |
2500 | bh = sb_getblk(osb->sb, start_blk + i); | |
2501 | if (bh == NULL) { | |
2502 | ret = -EIO; | |
2503 | goto out; | |
2504 | } | |
2505 | dx_leaves[i] = bh; | |
2506 | ||
8cb471e8 | 2507 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), bh); |
9b7895ef | 2508 | |
0cf2f763 | 2509 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), bh, |
9b7895ef MF |
2510 | OCFS2_JOURNAL_ACCESS_CREATE); |
2511 | if (ret < 0) { | |
2512 | mlog_errno(ret); | |
2513 | goto out; | |
2514 | } | |
2515 | ||
2516 | dx_leaf = (struct ocfs2_dx_leaf *) bh->b_data; | |
2517 | ||
2518 | memset(dx_leaf, 0, osb->sb->s_blocksize); | |
2519 | strcpy(dx_leaf->dl_signature, OCFS2_DX_LEAF_SIGNATURE); | |
2520 | dx_leaf->dl_fs_generation = cpu_to_le32(osb->fs_generation); | |
2521 | dx_leaf->dl_blkno = cpu_to_le64(bh->b_blocknr); | |
2522 | dx_leaf->dl_list.de_count = | |
2523 | cpu_to_le16(ocfs2_dx_entries_per_leaf(osb->sb)); | |
2524 | ||
2525 | mlog(0, | |
2526 | "Dir %llu, format dx_leaf: %llu, entry count: %u\n", | |
2527 | (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
2528 | (unsigned long long)bh->b_blocknr, | |
2529 | le16_to_cpu(dx_leaf->dl_list.de_count)); | |
2530 | ||
2531 | ocfs2_journal_dirty(handle, bh); | |
2532 | } | |
2533 | ||
2534 | ret = 0; | |
2535 | out: | |
2536 | return ret; | |
2537 | } | |
2538 | ||
2539 | /* | |
2540 | * Allocates and formats a new cluster for use in an indexed dir | |
2541 | * leaf. This version will not do the extent insert, so that it can be | |
2542 | * used by operations which need careful ordering. | |
2543 | */ | |
2544 | static int __ocfs2_dx_dir_new_cluster(struct inode *dir, | |
2545 | u32 cpos, handle_t *handle, | |
2546 | struct ocfs2_alloc_context *data_ac, | |
2547 | struct buffer_head **dx_leaves, | |
2548 | int num_dx_leaves, u64 *ret_phys_blkno) | |
2549 | { | |
2550 | int ret; | |
2551 | u32 phys, num; | |
2552 | u64 phys_blkno; | |
2553 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
2554 | ||
2555 | /* | |
2556 | * XXX: For create, this should claim cluster for the index | |
2557 | * *before* the unindexed insert so that we have a better | |
2558 | * chance of contiguousness as the directory grows in number | |
2559 | * of entries. | |
2560 | */ | |
2561 | ret = __ocfs2_claim_clusters(osb, handle, data_ac, 1, 1, &phys, &num); | |
2562 | if (ret) { | |
2563 | mlog_errno(ret); | |
2564 | goto out; | |
2565 | } | |
2566 | ||
2567 | /* | |
2568 | * Format the new cluster first. That way, we're inserting | |
2569 | * valid data. | |
2570 | */ | |
2571 | phys_blkno = ocfs2_clusters_to_blocks(osb->sb, phys); | |
2572 | ret = ocfs2_dx_dir_format_cluster(osb, handle, dir, dx_leaves, | |
2573 | num_dx_leaves, phys_blkno); | |
2574 | if (ret) { | |
2575 | mlog_errno(ret); | |
2576 | goto out; | |
2577 | } | |
2578 | ||
2579 | *ret_phys_blkno = phys_blkno; | |
2580 | out: | |
2581 | return ret; | |
2582 | } | |
2583 | ||
2584 | static int ocfs2_dx_dir_new_cluster(struct inode *dir, | |
2585 | struct ocfs2_extent_tree *et, | |
2586 | u32 cpos, handle_t *handle, | |
2587 | struct ocfs2_alloc_context *data_ac, | |
2588 | struct ocfs2_alloc_context *meta_ac, | |
2589 | struct buffer_head **dx_leaves, | |
2590 | int num_dx_leaves) | |
2591 | { | |
2592 | int ret; | |
2593 | u64 phys_blkno; | |
2594 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
2595 | ||
2596 | ret = __ocfs2_dx_dir_new_cluster(dir, cpos, handle, data_ac, dx_leaves, | |
2597 | num_dx_leaves, &phys_blkno); | |
2598 | if (ret) { | |
2599 | mlog_errno(ret); | |
2600 | goto out; | |
2601 | } | |
2602 | ||
2603 | ret = ocfs2_insert_extent(osb, handle, dir, et, cpos, phys_blkno, 1, 0, | |
2604 | meta_ac); | |
2605 | if (ret) | |
2606 | mlog_errno(ret); | |
2607 | out: | |
2608 | return ret; | |
2609 | } | |
2610 | ||
2611 | static struct buffer_head **ocfs2_dx_dir_kmalloc_leaves(struct super_block *sb, | |
2612 | int *ret_num_leaves) | |
2613 | { | |
2614 | int num_dx_leaves = ocfs2_clusters_to_blocks(sb, 1); | |
2615 | struct buffer_head **dx_leaves; | |
2616 | ||
2617 | dx_leaves = kcalloc(num_dx_leaves, sizeof(struct buffer_head *), | |
2618 | GFP_NOFS); | |
2619 | if (dx_leaves && ret_num_leaves) | |
2620 | *ret_num_leaves = num_dx_leaves; | |
2621 | ||
2622 | return dx_leaves; | |
2623 | } | |
2624 | ||
2625 | static int ocfs2_fill_new_dir_dx(struct ocfs2_super *osb, | |
2626 | handle_t *handle, | |
2627 | struct inode *parent, | |
2628 | struct inode *inode, | |
2629 | struct buffer_head *di_bh, | |
2630 | struct ocfs2_alloc_context *data_ac, | |
2631 | struct ocfs2_alloc_context *meta_ac) | |
2632 | { | |
4ed8a6bb | 2633 | int ret; |
9b7895ef MF |
2634 | struct buffer_head *leaf_bh = NULL; |
2635 | struct buffer_head *dx_root_bh = NULL; | |
9b7895ef | 2636 | struct ocfs2_dx_hinfo hinfo; |
4ed8a6bb MF |
2637 | struct ocfs2_dx_root_block *dx_root; |
2638 | struct ocfs2_dx_entry_list *entry_list; | |
9b7895ef MF |
2639 | |
2640 | /* | |
2641 | * Our strategy is to create the directory as though it were | |
2642 | * unindexed, then add the index block. This works with very | |
2643 | * little complication since the state of a new directory is a | |
2644 | * very well known quantity. | |
2645 | * | |
2646 | * Essentially, we have two dirents ("." and ".."), in the 1st | |
4ed8a6bb MF |
2647 | * block which need indexing. These are easily inserted into |
2648 | * the index block. | |
9b7895ef MF |
2649 | */ |
2650 | ||
2651 | ret = ocfs2_fill_new_dir_el(osb, handle, parent, inode, di_bh, | |
2652 | data_ac, &leaf_bh); | |
2653 | if (ret) { | |
2654 | mlog_errno(ret); | |
2655 | goto out; | |
2656 | } | |
2657 | ||
e7c17e43 | 2658 | ret = ocfs2_dx_dir_attach_index(osb, handle, inode, di_bh, leaf_bh, |
e3a93c2d | 2659 | meta_ac, 1, 2, &dx_root_bh); |
9b7895ef MF |
2660 | if (ret) { |
2661 | mlog_errno(ret); | |
2662 | goto out; | |
2663 | } | |
4ed8a6bb MF |
2664 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
2665 | entry_list = &dx_root->dr_entries; | |
9b7895ef | 2666 | |
4ed8a6bb | 2667 | /* Buffer has been journaled for us by ocfs2_dx_dir_attach_index */ |
e7c17e43 | 2668 | ocfs2_dx_dir_name_hash(inode, ".", 1, &hinfo); |
4ed8a6bb | 2669 | ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr); |
9b7895ef MF |
2670 | |
2671 | ocfs2_dx_dir_name_hash(inode, "..", 2, &hinfo); | |
4ed8a6bb | 2672 | ocfs2_dx_entry_list_insert(entry_list, &hinfo, leaf_bh->b_blocknr); |
9b7895ef MF |
2673 | |
2674 | out: | |
9b7895ef MF |
2675 | brelse(dx_root_bh); |
2676 | brelse(leaf_bh); | |
2677 | return ret; | |
2678 | } | |
2679 | ||
2680 | int ocfs2_fill_new_dir(struct ocfs2_super *osb, | |
2681 | handle_t *handle, | |
2682 | struct inode *parent, | |
2683 | struct inode *inode, | |
2684 | struct buffer_head *fe_bh, | |
2685 | struct ocfs2_alloc_context *data_ac, | |
2686 | struct ocfs2_alloc_context *meta_ac) | |
2687 | ||
2688 | { | |
2689 | BUG_ON(!ocfs2_supports_inline_data(osb) && data_ac == NULL); | |
2690 | ||
2691 | if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) | |
2692 | return ocfs2_fill_new_dir_id(osb, handle, parent, inode, fe_bh); | |
2693 | ||
2694 | if (ocfs2_supports_indexed_dirs(osb)) | |
2695 | return ocfs2_fill_new_dir_dx(osb, handle, parent, inode, fe_bh, | |
2696 | data_ac, meta_ac); | |
2697 | ||
2698 | return ocfs2_fill_new_dir_el(osb, handle, parent, inode, fe_bh, | |
2699 | data_ac, NULL); | |
2700 | } | |
2701 | ||
2702 | static int ocfs2_dx_dir_index_block(struct inode *dir, | |
2703 | handle_t *handle, | |
2704 | struct buffer_head **dx_leaves, | |
2705 | int num_dx_leaves, | |
e3a93c2d | 2706 | u32 *num_dx_entries, |
9b7895ef MF |
2707 | struct buffer_head *dirent_bh) |
2708 | { | |
0fba8137 | 2709 | int ret = 0, namelen, i; |
9b7895ef MF |
2710 | char *de_buf, *limit; |
2711 | struct ocfs2_dir_entry *de; | |
2712 | struct buffer_head *dx_leaf_bh; | |
2713 | struct ocfs2_dx_hinfo hinfo; | |
2714 | u64 dirent_blk = dirent_bh->b_blocknr; | |
2715 | ||
2716 | de_buf = dirent_bh->b_data; | |
2717 | limit = de_buf + dir->i_sb->s_blocksize; | |
2718 | ||
2719 | while (de_buf < limit) { | |
2720 | de = (struct ocfs2_dir_entry *)de_buf; | |
2721 | ||
2722 | namelen = de->name_len; | |
2723 | if (!namelen || !de->inode) | |
2724 | goto inc; | |
2725 | ||
2726 | ocfs2_dx_dir_name_hash(dir, de->name, namelen, &hinfo); | |
2727 | ||
2728 | i = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb), &hinfo); | |
2729 | dx_leaf_bh = dx_leaves[i]; | |
2730 | ||
2731 | ret = __ocfs2_dx_dir_leaf_insert(dir, handle, &hinfo, | |
2732 | dirent_blk, dx_leaf_bh); | |
2733 | if (ret) { | |
2734 | mlog_errno(ret); | |
2735 | goto out; | |
2736 | } | |
2737 | ||
e3a93c2d MF |
2738 | *num_dx_entries = *num_dx_entries + 1; |
2739 | ||
9b7895ef MF |
2740 | inc: |
2741 | de_buf += le16_to_cpu(de->rec_len); | |
2742 | } | |
2743 | ||
2744 | out: | |
2745 | return ret; | |
2746 | } | |
e7c17e43 MF |
2747 | |
2748 | /* | |
4ed8a6bb MF |
2749 | * XXX: This expects dx_root_bh to already be part of the transaction. |
2750 | */ | |
2751 | static void ocfs2_dx_dir_index_root_block(struct inode *dir, | |
2752 | struct buffer_head *dx_root_bh, | |
2753 | struct buffer_head *dirent_bh) | |
2754 | { | |
2755 | char *de_buf, *limit; | |
2756 | struct ocfs2_dx_root_block *dx_root; | |
2757 | struct ocfs2_dir_entry *de; | |
2758 | struct ocfs2_dx_hinfo hinfo; | |
2759 | u64 dirent_blk = dirent_bh->b_blocknr; | |
2760 | ||
2761 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
2762 | ||
2763 | de_buf = dirent_bh->b_data; | |
2764 | limit = de_buf + dir->i_sb->s_blocksize; | |
2765 | ||
2766 | while (de_buf < limit) { | |
2767 | de = (struct ocfs2_dir_entry *)de_buf; | |
2768 | ||
2769 | if (!de->name_len || !de->inode) | |
2770 | goto inc; | |
2771 | ||
2772 | ocfs2_dx_dir_name_hash(dir, de->name, de->name_len, &hinfo); | |
2773 | ||
2774 | mlog(0, | |
2775 | "dir: %llu, major: 0x%x minor: 0x%x, index: %u, name: %.*s\n", | |
2776 | (unsigned long long)dir->i_ino, hinfo.major_hash, | |
2777 | hinfo.minor_hash, | |
2778 | le16_to_cpu(dx_root->dr_entries.de_num_used), | |
2779 | de->name_len, de->name); | |
2780 | ||
2781 | ocfs2_dx_entry_list_insert(&dx_root->dr_entries, &hinfo, | |
2782 | dirent_blk); | |
e3a93c2d MF |
2783 | |
2784 | le32_add_cpu(&dx_root->dr_num_entries, 1); | |
4ed8a6bb MF |
2785 | inc: |
2786 | de_buf += le16_to_cpu(de->rec_len); | |
2787 | } | |
2788 | } | |
2789 | ||
2790 | /* | |
2791 | * Count the number of inline directory entries in di_bh and compare | |
2792 | * them against the number of entries we can hold in an inline dx root | |
2793 | * block. | |
2794 | */ | |
2795 | static int ocfs2_new_dx_should_be_inline(struct inode *dir, | |
2796 | struct buffer_head *di_bh) | |
2797 | { | |
2798 | int dirent_count = 0; | |
2799 | char *de_buf, *limit; | |
2800 | struct ocfs2_dir_entry *de; | |
2801 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
2802 | ||
2803 | de_buf = di->id2.i_data.id_data; | |
2804 | limit = de_buf + i_size_read(dir); | |
2805 | ||
2806 | while (de_buf < limit) { | |
2807 | de = (struct ocfs2_dir_entry *)de_buf; | |
2808 | ||
2809 | if (de->name_len && de->inode) | |
2810 | dirent_count++; | |
2811 | ||
2812 | de_buf += le16_to_cpu(de->rec_len); | |
2813 | } | |
2814 | ||
2815 | /* We are careful to leave room for one extra record. */ | |
2816 | return dirent_count < ocfs2_dx_entries_per_root(dir->i_sb); | |
2817 | } | |
9b7895ef MF |
2818 | |
2819 | /* | |
2820 | * Expand rec_len of the rightmost dirent in a directory block so that it | |
2821 | * contains the end of our valid space for dirents. We do this during | |
2822 | * expansion from an inline directory to one with extents. The first dir block | |
2823 | * in that case is taken from the inline data portion of the inode block. | |
2824 | * | |
e7c17e43 MF |
2825 | * This will also return the largest amount of contiguous space for a dirent |
2826 | * in the block. That value is *not* necessarily the last dirent, even after | |
2827 | * expansion. The directory indexing code wants this value for free space | |
2828 | * accounting. We do this here since we're already walking the entire dir | |
2829 | * block. | |
2830 | * | |
9b7895ef MF |
2831 | * We add the dir trailer if this filesystem wants it. |
2832 | */ | |
e7c17e43 MF |
2833 | static unsigned int ocfs2_expand_last_dirent(char *start, unsigned int old_size, |
2834 | struct inode *dir) | |
9b7895ef | 2835 | { |
e7c17e43 | 2836 | struct super_block *sb = dir->i_sb; |
9b7895ef MF |
2837 | struct ocfs2_dir_entry *de; |
2838 | struct ocfs2_dir_entry *prev_de; | |
2839 | char *de_buf, *limit; | |
2840 | unsigned int new_size = sb->s_blocksize; | |
e7c17e43 MF |
2841 | unsigned int bytes, this_hole; |
2842 | unsigned int largest_hole = 0; | |
9b7895ef | 2843 | |
e7c17e43 | 2844 | if (ocfs2_new_dir_wants_trailer(dir)) |
9b7895ef MF |
2845 | new_size = ocfs2_dir_trailer_blk_off(sb); |
2846 | ||
2847 | bytes = new_size - old_size; | |
2848 | ||
2849 | limit = start + old_size; | |
2850 | de_buf = start; | |
2851 | de = (struct ocfs2_dir_entry *)de_buf; | |
5b6a3a2b | 2852 | do { |
e7c17e43 MF |
2853 | this_hole = ocfs2_figure_dirent_hole(de); |
2854 | if (this_hole > largest_hole) | |
2855 | largest_hole = this_hole; | |
2856 | ||
5b6a3a2b MF |
2857 | prev_de = de; |
2858 | de_buf += le16_to_cpu(de->rec_len); | |
2859 | de = (struct ocfs2_dir_entry *)de_buf; | |
2860 | } while (de_buf < limit); | |
2861 | ||
2862 | le16_add_cpu(&prev_de->rec_len, bytes); | |
e7c17e43 MF |
2863 | |
2864 | /* We need to double check this after modification of the final | |
2865 | * dirent. */ | |
2866 | this_hole = ocfs2_figure_dirent_hole(prev_de); | |
2867 | if (this_hole > largest_hole) | |
2868 | largest_hole = this_hole; | |
2869 | ||
2870 | if (largest_hole >= OCFS2_DIR_MIN_REC_LEN) | |
2871 | return largest_hole; | |
2872 | return 0; | |
5b6a3a2b MF |
2873 | } |
2874 | ||
2875 | /* | |
2876 | * We allocate enough clusters to fulfill "blocks_wanted", but set | |
2877 | * i_size to exactly one block. Ocfs2_extend_dir() will handle the | |
2878 | * rest automatically for us. | |
2879 | * | |
2880 | * *first_block_bh is a pointer to the 1st data block allocated to the | |
2881 | * directory. | |
2882 | */ | |
2883 | static int ocfs2_expand_inline_dir(struct inode *dir, struct buffer_head *di_bh, | |
2884 | unsigned int blocks_wanted, | |
9b7895ef | 2885 | struct ocfs2_dir_lookup_result *lookup, |
5b6a3a2b MF |
2886 | struct buffer_head **first_block_bh) |
2887 | { | |
e3a93c2d | 2888 | u32 alloc, dx_alloc, bit_off, len, num_dx_entries = 0; |
5b6a3a2b | 2889 | struct super_block *sb = dir->i_sb; |
4ed8a6bb | 2890 | int ret, i, num_dx_leaves = 0, dx_inline = 0, |
9b7895ef MF |
2891 | credits = ocfs2_inline_to_extents_credits(sb); |
2892 | u64 dx_insert_blkno, blkno, | |
2893 | bytes = blocks_wanted << sb->s_blocksize_bits; | |
5b6a3a2b MF |
2894 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
2895 | struct ocfs2_inode_info *oi = OCFS2_I(dir); | |
2896 | struct ocfs2_alloc_context *data_ac; | |
9b7895ef | 2897 | struct ocfs2_alloc_context *meta_ac = NULL; |
5b6a3a2b | 2898 | struct buffer_head *dirdata_bh = NULL; |
9b7895ef MF |
2899 | struct buffer_head *dx_root_bh = NULL; |
2900 | struct buffer_head **dx_leaves = NULL; | |
5b6a3a2b MF |
2901 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
2902 | handle_t *handle; | |
f99b9b7c | 2903 | struct ocfs2_extent_tree et; |
9b7895ef MF |
2904 | struct ocfs2_extent_tree dx_et; |
2905 | int did_quota = 0, bytes_allocated = 0; | |
f99b9b7c | 2906 | |
8d6220d6 | 2907 | ocfs2_init_dinode_extent_tree(&et, dir, di_bh); |
5b6a3a2b MF |
2908 | |
2909 | alloc = ocfs2_clusters_for_bytes(sb, bytes); | |
9b7895ef MF |
2910 | dx_alloc = 0; |
2911 | ||
edd45c08 JK |
2912 | down_write(&oi->ip_alloc_sem); |
2913 | ||
9b7895ef | 2914 | if (ocfs2_supports_indexed_dirs(osb)) { |
9b7895ef MF |
2915 | credits += ocfs2_add_dir_index_credits(sb); |
2916 | ||
4ed8a6bb MF |
2917 | dx_inline = ocfs2_new_dx_should_be_inline(dir, di_bh); |
2918 | if (!dx_inline) { | |
2919 | /* Add one more cluster for an index leaf */ | |
2920 | dx_alloc++; | |
2921 | dx_leaves = ocfs2_dx_dir_kmalloc_leaves(sb, | |
2922 | &num_dx_leaves); | |
2923 | if (!dx_leaves) { | |
2924 | ret = -ENOMEM; | |
2925 | mlog_errno(ret); | |
2926 | goto out; | |
2927 | } | |
9b7895ef MF |
2928 | } |
2929 | ||
2930 | /* This gets us the dx_root */ | |
2931 | ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &meta_ac); | |
2932 | if (ret) { | |
2933 | mlog_errno(ret); | |
2934 | goto out; | |
2935 | } | |
2936 | } | |
5b6a3a2b MF |
2937 | |
2938 | /* | |
9b7895ef MF |
2939 | * We should never need more than 2 clusters for the unindexed |
2940 | * tree - maximum dirent size is far less than one block. In | |
2941 | * fact, the only time we'd need more than one cluster is if | |
5b6a3a2b MF |
2942 | * blocksize == clustersize and the dirent won't fit in the |
2943 | * extra space that the expansion to a single block gives. As | |
2944 | * of today, that only happens on 4k/4k file systems. | |
2945 | */ | |
2946 | BUG_ON(alloc > 2); | |
2947 | ||
035a5711 | 2948 | ret = ocfs2_reserve_clusters(osb, alloc + dx_alloc, &data_ac); |
5b6a3a2b MF |
2949 | if (ret) { |
2950 | mlog_errno(ret); | |
2951 | goto out; | |
2952 | } | |
2953 | ||
5b6a3a2b | 2954 | /* |
c78bad11 | 2955 | * Prepare for worst case allocation scenario of two separate |
9b7895ef | 2956 | * extents in the unindexed tree. |
5b6a3a2b MF |
2957 | */ |
2958 | if (alloc == 2) | |
2959 | credits += OCFS2_SUBALLOC_ALLOC; | |
2960 | ||
2961 | handle = ocfs2_start_trans(osb, credits); | |
2962 | if (IS_ERR(handle)) { | |
2963 | ret = PTR_ERR(handle); | |
2964 | mlog_errno(ret); | |
edd45c08 | 2965 | goto out; |
5b6a3a2b MF |
2966 | } |
2967 | ||
a90714c1 | 2968 | if (vfs_dq_alloc_space_nodirty(dir, |
9b7895ef MF |
2969 | ocfs2_clusters_to_bytes(osb->sb, |
2970 | alloc + dx_alloc))) { | |
a90714c1 JK |
2971 | ret = -EDQUOT; |
2972 | goto out_commit; | |
2973 | } | |
2974 | did_quota = 1; | |
9b7895ef | 2975 | |
4ed8a6bb | 2976 | if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) { |
9b7895ef MF |
2977 | /* |
2978 | * Allocate our index cluster first, to maximize the | |
2979 | * possibility that unindexed leaves grow | |
2980 | * contiguously. | |
2981 | */ | |
2982 | ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac, | |
2983 | dx_leaves, num_dx_leaves, | |
2984 | &dx_insert_blkno); | |
2985 | if (ret) { | |
2986 | mlog_errno(ret); | |
2987 | goto out_commit; | |
2988 | } | |
2989 | bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1); | |
2990 | } | |
2991 | ||
5b6a3a2b MF |
2992 | /* |
2993 | * Try to claim as many clusters as the bitmap can give though | |
2994 | * if we only get one now, that's enough to continue. The rest | |
2995 | * will be claimed after the conversion to extents. | |
2996 | */ | |
2997 | ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off, &len); | |
2998 | if (ret) { | |
2999 | mlog_errno(ret); | |
3000 | goto out_commit; | |
3001 | } | |
9b7895ef | 3002 | bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1); |
5b6a3a2b MF |
3003 | |
3004 | /* | |
3005 | * Operations are carefully ordered so that we set up the new | |
3006 | * data block first. The conversion from inline data to | |
3007 | * extents follows. | |
3008 | */ | |
3009 | blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off); | |
3010 | dirdata_bh = sb_getblk(sb, blkno); | |
3011 | if (!dirdata_bh) { | |
3012 | ret = -EIO; | |
3013 | mlog_errno(ret); | |
3014 | goto out_commit; | |
3015 | } | |
3016 | ||
8cb471e8 | 3017 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), dirdata_bh); |
5b6a3a2b | 3018 | |
0cf2f763 | 3019 | ret = ocfs2_journal_access_db(handle, INODE_CACHE(dir), dirdata_bh, |
13723d00 | 3020 | OCFS2_JOURNAL_ACCESS_CREATE); |
5b6a3a2b MF |
3021 | if (ret) { |
3022 | mlog_errno(ret); | |
3023 | goto out_commit; | |
3024 | } | |
3025 | ||
3026 | memcpy(dirdata_bh->b_data, di->id2.i_data.id_data, i_size_read(dir)); | |
3027 | memset(dirdata_bh->b_data + i_size_read(dir), 0, | |
3028 | sb->s_blocksize - i_size_read(dir)); | |
e7c17e43 MF |
3029 | i = ocfs2_expand_last_dirent(dirdata_bh->b_data, i_size_read(dir), dir); |
3030 | if (ocfs2_new_dir_wants_trailer(dir)) { | |
3031 | /* | |
3032 | * Prepare the dir trailer up front. It will otherwise look | |
3033 | * like a valid dirent. Even if inserting the index fails | |
3034 | * (unlikely), then all we'll have done is given first dir | |
3035 | * block a small amount of fragmentation. | |
3036 | */ | |
3037 | ocfs2_init_dir_trailer(dir, dirdata_bh, i); | |
3038 | } | |
5b6a3a2b MF |
3039 | |
3040 | ret = ocfs2_journal_dirty(handle, dirdata_bh); | |
3041 | if (ret) { | |
3042 | mlog_errno(ret); | |
3043 | goto out_commit; | |
3044 | } | |
3045 | ||
4ed8a6bb MF |
3046 | if (ocfs2_supports_indexed_dirs(osb) && !dx_inline) { |
3047 | /* | |
3048 | * Dx dirs with an external cluster need to do this up | |
3049 | * front. Inline dx root's get handled later, after | |
e3a93c2d MF |
3050 | * we've allocated our root block. We get passed back |
3051 | * a total number of items so that dr_num_entries can | |
3052 | * be correctly set once the dx_root has been | |
3053 | * allocated. | |
4ed8a6bb | 3054 | */ |
9b7895ef | 3055 | ret = ocfs2_dx_dir_index_block(dir, handle, dx_leaves, |
e3a93c2d MF |
3056 | num_dx_leaves, &num_dx_entries, |
3057 | dirdata_bh); | |
9b7895ef MF |
3058 | if (ret) { |
3059 | mlog_errno(ret); | |
3060 | goto out_commit; | |
3061 | } | |
3062 | } | |
3063 | ||
5b6a3a2b MF |
3064 | /* |
3065 | * Set extent, i_size, etc on the directory. After this, the | |
3066 | * inode should contain the same exact dirents as before and | |
3067 | * be fully accessible from system calls. | |
3068 | * | |
3069 | * We let the later dirent insert modify c/mtime - to the user | |
3070 | * the data hasn't changed. | |
3071 | */ | |
0cf2f763 | 3072 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh, |
13723d00 | 3073 | OCFS2_JOURNAL_ACCESS_CREATE); |
5b6a3a2b MF |
3074 | if (ret) { |
3075 | mlog_errno(ret); | |
3076 | goto out_commit; | |
3077 | } | |
3078 | ||
3079 | spin_lock(&oi->ip_lock); | |
3080 | oi->ip_dyn_features &= ~OCFS2_INLINE_DATA_FL; | |
3081 | di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features); | |
3082 | spin_unlock(&oi->ip_lock); | |
3083 | ||
3084 | ocfs2_dinode_new_extent_list(dir, di); | |
3085 | ||
3086 | i_size_write(dir, sb->s_blocksize); | |
3087 | dir->i_mtime = dir->i_ctime = CURRENT_TIME; | |
3088 | ||
3089 | di->i_size = cpu_to_le64(sb->s_blocksize); | |
3090 | di->i_ctime = di->i_mtime = cpu_to_le64(dir->i_ctime.tv_sec); | |
3091 | di->i_ctime_nsec = di->i_mtime_nsec = cpu_to_le32(dir->i_ctime.tv_nsec); | |
5b6a3a2b MF |
3092 | |
3093 | /* | |
3094 | * This should never fail as our extent list is empty and all | |
3095 | * related blocks have been journaled already. | |
3096 | */ | |
f99b9b7c JB |
3097 | ret = ocfs2_insert_extent(osb, handle, dir, &et, 0, blkno, len, |
3098 | 0, NULL); | |
5b6a3a2b MF |
3099 | if (ret) { |
3100 | mlog_errno(ret); | |
83cab533 | 3101 | goto out_commit; |
5b6a3a2b MF |
3102 | } |
3103 | ||
9780eb6c MF |
3104 | /* |
3105 | * Set i_blocks after the extent insert for the most up to | |
3106 | * date ip_clusters value. | |
3107 | */ | |
3108 | dir->i_blocks = ocfs2_inode_sector_count(dir); | |
3109 | ||
5b6a3a2b MF |
3110 | ret = ocfs2_journal_dirty(handle, di_bh); |
3111 | if (ret) { | |
3112 | mlog_errno(ret); | |
3113 | goto out_commit; | |
3114 | } | |
3115 | ||
9b7895ef MF |
3116 | if (ocfs2_supports_indexed_dirs(osb)) { |
3117 | ret = ocfs2_dx_dir_attach_index(osb, handle, dir, di_bh, | |
e7c17e43 | 3118 | dirdata_bh, meta_ac, dx_inline, |
e3a93c2d | 3119 | num_dx_entries, &dx_root_bh); |
9b7895ef MF |
3120 | if (ret) { |
3121 | mlog_errno(ret); | |
3122 | goto out_commit; | |
3123 | } | |
3124 | ||
4ed8a6bb MF |
3125 | if (dx_inline) { |
3126 | ocfs2_dx_dir_index_root_block(dir, dx_root_bh, | |
3127 | dirdata_bh); | |
3128 | } else { | |
3129 | ocfs2_init_dx_root_extent_tree(&dx_et, dir, dx_root_bh); | |
3130 | ret = ocfs2_insert_extent(osb, handle, dir, &dx_et, 0, | |
3131 | dx_insert_blkno, 1, 0, NULL); | |
3132 | if (ret) | |
3133 | mlog_errno(ret); | |
3134 | } | |
9b7895ef MF |
3135 | } |
3136 | ||
5b6a3a2b MF |
3137 | /* |
3138 | * We asked for two clusters, but only got one in the 1st | |
3139 | * pass. Claim the 2nd cluster as a separate extent. | |
3140 | */ | |
3141 | if (alloc > len) { | |
3142 | ret = ocfs2_claim_clusters(osb, handle, data_ac, 1, &bit_off, | |
3143 | &len); | |
3144 | if (ret) { | |
3145 | mlog_errno(ret); | |
3146 | goto out_commit; | |
3147 | } | |
3148 | blkno = ocfs2_clusters_to_blocks(dir->i_sb, bit_off); | |
3149 | ||
f99b9b7c JB |
3150 | ret = ocfs2_insert_extent(osb, handle, dir, &et, 1, |
3151 | blkno, len, 0, NULL); | |
5b6a3a2b MF |
3152 | if (ret) { |
3153 | mlog_errno(ret); | |
83cab533 | 3154 | goto out_commit; |
5b6a3a2b | 3155 | } |
9b7895ef | 3156 | bytes_allocated += ocfs2_clusters_to_bytes(dir->i_sb, 1); |
5b6a3a2b MF |
3157 | } |
3158 | ||
3159 | *first_block_bh = dirdata_bh; | |
3160 | dirdata_bh = NULL; | |
9b7895ef MF |
3161 | if (ocfs2_supports_indexed_dirs(osb)) { |
3162 | unsigned int off; | |
3163 | ||
4ed8a6bb MF |
3164 | if (!dx_inline) { |
3165 | /* | |
3166 | * We need to return the correct block within the | |
3167 | * cluster which should hold our entry. | |
3168 | */ | |
3169 | off = ocfs2_dx_dir_hash_idx(OCFS2_SB(dir->i_sb), | |
3170 | &lookup->dl_hinfo); | |
3171 | get_bh(dx_leaves[off]); | |
3172 | lookup->dl_dx_leaf_bh = dx_leaves[off]; | |
3173 | } | |
3174 | lookup->dl_dx_root_bh = dx_root_bh; | |
3175 | dx_root_bh = NULL; | |
9b7895ef | 3176 | } |
5b6a3a2b MF |
3177 | |
3178 | out_commit: | |
a90714c1 | 3179 | if (ret < 0 && did_quota) |
9b7895ef MF |
3180 | vfs_dq_free_space_nodirty(dir, bytes_allocated); |
3181 | ||
5b6a3a2b MF |
3182 | ocfs2_commit_trans(osb, handle); |
3183 | ||
5b6a3a2b | 3184 | out: |
edd45c08 | 3185 | up_write(&oi->ip_alloc_sem); |
5b6a3a2b MF |
3186 | if (data_ac) |
3187 | ocfs2_free_alloc_context(data_ac); | |
9b7895ef MF |
3188 | if (meta_ac) |
3189 | ocfs2_free_alloc_context(meta_ac); | |
3190 | ||
3191 | if (dx_leaves) { | |
3192 | for (i = 0; i < num_dx_leaves; i++) | |
3193 | brelse(dx_leaves[i]); | |
3194 | kfree(dx_leaves); | |
3195 | } | |
5b6a3a2b MF |
3196 | |
3197 | brelse(dirdata_bh); | |
9b7895ef | 3198 | brelse(dx_root_bh); |
5b6a3a2b MF |
3199 | |
3200 | return ret; | |
3201 | } | |
3202 | ||
ccd979bd | 3203 | /* returns a bh of the 1st new block in the allocation. */ |
316f4b9f MF |
3204 | static int ocfs2_do_extend_dir(struct super_block *sb, |
3205 | handle_t *handle, | |
3206 | struct inode *dir, | |
3207 | struct buffer_head *parent_fe_bh, | |
3208 | struct ocfs2_alloc_context *data_ac, | |
3209 | struct ocfs2_alloc_context *meta_ac, | |
3210 | struct buffer_head **new_bh) | |
ccd979bd MF |
3211 | { |
3212 | int status; | |
a90714c1 | 3213 | int extend, did_quota = 0; |
8110b073 | 3214 | u64 p_blkno, v_blkno; |
ccd979bd MF |
3215 | |
3216 | spin_lock(&OCFS2_I(dir)->ip_lock); | |
3217 | extend = (i_size_read(dir) == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)); | |
3218 | spin_unlock(&OCFS2_I(dir)->ip_lock); | |
3219 | ||
3220 | if (extend) { | |
dcd0538f MF |
3221 | u32 offset = OCFS2_I(dir)->ip_clusters; |
3222 | ||
a90714c1 JK |
3223 | if (vfs_dq_alloc_space_nodirty(dir, |
3224 | ocfs2_clusters_to_bytes(sb, 1))) { | |
3225 | status = -EDQUOT; | |
3226 | goto bail; | |
3227 | } | |
3228 | did_quota = 1; | |
3229 | ||
0eb8d47e TM |
3230 | status = ocfs2_add_inode_data(OCFS2_SB(sb), dir, &offset, |
3231 | 1, 0, parent_fe_bh, handle, | |
3232 | data_ac, meta_ac, NULL); | |
ccd979bd MF |
3233 | BUG_ON(status == -EAGAIN); |
3234 | if (status < 0) { | |
3235 | mlog_errno(status); | |
3236 | goto bail; | |
3237 | } | |
3238 | } | |
3239 | ||
8110b073 MF |
3240 | v_blkno = ocfs2_blocks_for_bytes(sb, i_size_read(dir)); |
3241 | status = ocfs2_extent_map_get_blocks(dir, v_blkno, &p_blkno, NULL, NULL); | |
ccd979bd MF |
3242 | if (status < 0) { |
3243 | mlog_errno(status); | |
3244 | goto bail; | |
3245 | } | |
3246 | ||
3247 | *new_bh = sb_getblk(sb, p_blkno); | |
3248 | if (!*new_bh) { | |
3249 | status = -EIO; | |
3250 | mlog_errno(status); | |
3251 | goto bail; | |
3252 | } | |
3253 | status = 0; | |
3254 | bail: | |
a90714c1 JK |
3255 | if (did_quota && status < 0) |
3256 | vfs_dq_free_space_nodirty(dir, ocfs2_clusters_to_bytes(sb, 1)); | |
ccd979bd MF |
3257 | mlog_exit(status); |
3258 | return status; | |
3259 | } | |
3260 | ||
5b6a3a2b MF |
3261 | /* |
3262 | * Assumes you already have a cluster lock on the directory. | |
3263 | * | |
3264 | * 'blocks_wanted' is only used if we have an inline directory which | |
3265 | * is to be turned into an extent based one. The size of the dirent to | |
3266 | * insert might be larger than the space gained by growing to just one | |
3267 | * block, so we may have to grow the inode by two blocks in that case. | |
e7c17e43 MF |
3268 | * |
3269 | * If the directory is already indexed, dx_root_bh must be provided. | |
5b6a3a2b | 3270 | */ |
ccd979bd MF |
3271 | static int ocfs2_extend_dir(struct ocfs2_super *osb, |
3272 | struct inode *dir, | |
3273 | struct buffer_head *parent_fe_bh, | |
5b6a3a2b | 3274 | unsigned int blocks_wanted, |
9b7895ef | 3275 | struct ocfs2_dir_lookup_result *lookup, |
ccd979bd MF |
3276 | struct buffer_head **new_de_bh) |
3277 | { | |
3278 | int status = 0; | |
ee19a779 | 3279 | int credits, num_free_extents, drop_alloc_sem = 0; |
ccd979bd MF |
3280 | loff_t dir_i_size; |
3281 | struct ocfs2_dinode *fe = (struct ocfs2_dinode *) parent_fe_bh->b_data; | |
811f933d | 3282 | struct ocfs2_extent_list *el = &fe->id2.i_list; |
ccd979bd MF |
3283 | struct ocfs2_alloc_context *data_ac = NULL; |
3284 | struct ocfs2_alloc_context *meta_ac = NULL; | |
1fabe148 | 3285 | handle_t *handle = NULL; |
ccd979bd MF |
3286 | struct buffer_head *new_bh = NULL; |
3287 | struct ocfs2_dir_entry * de; | |
3288 | struct super_block *sb = osb->sb; | |
f99b9b7c | 3289 | struct ocfs2_extent_tree et; |
e7c17e43 | 3290 | struct buffer_head *dx_root_bh = lookup->dl_dx_root_bh; |
ccd979bd MF |
3291 | |
3292 | mlog_entry_void(); | |
3293 | ||
5b6a3a2b | 3294 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
e7c17e43 MF |
3295 | /* |
3296 | * This would be a code error as an inline directory should | |
3297 | * never have an index root. | |
3298 | */ | |
3299 | BUG_ON(dx_root_bh); | |
3300 | ||
5b6a3a2b | 3301 | status = ocfs2_expand_inline_dir(dir, parent_fe_bh, |
9b7895ef MF |
3302 | blocks_wanted, lookup, |
3303 | &new_bh); | |
5b6a3a2b MF |
3304 | if (status) { |
3305 | mlog_errno(status); | |
3306 | goto bail; | |
3307 | } | |
3308 | ||
e7c17e43 MF |
3309 | /* Expansion from inline to an indexed directory will |
3310 | * have given us this. */ | |
3311 | dx_root_bh = lookup->dl_dx_root_bh; | |
3312 | ||
5b6a3a2b MF |
3313 | if (blocks_wanted == 1) { |
3314 | /* | |
3315 | * If the new dirent will fit inside the space | |
3316 | * created by pushing out to one block, then | |
3317 | * we can complete the operation | |
3318 | * here. Otherwise we have to expand i_size | |
3319 | * and format the 2nd block below. | |
3320 | */ | |
3321 | BUG_ON(new_bh == NULL); | |
3322 | goto bail_bh; | |
3323 | } | |
3324 | ||
3325 | /* | |
3326 | * Get rid of 'new_bh' - we want to format the 2nd | |
3327 | * data block and return that instead. | |
3328 | */ | |
3329 | brelse(new_bh); | |
3330 | new_bh = NULL; | |
3331 | ||
edd45c08 JK |
3332 | down_write(&OCFS2_I(dir)->ip_alloc_sem); |
3333 | drop_alloc_sem = 1; | |
5b6a3a2b MF |
3334 | dir_i_size = i_size_read(dir); |
3335 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; | |
3336 | goto do_extend; | |
3337 | } | |
3338 | ||
edd45c08 JK |
3339 | down_write(&OCFS2_I(dir)->ip_alloc_sem); |
3340 | drop_alloc_sem = 1; | |
ccd979bd | 3341 | dir_i_size = i_size_read(dir); |
b0697053 MF |
3342 | mlog(0, "extending dir %llu (i_size = %lld)\n", |
3343 | (unsigned long long)OCFS2_I(dir)->ip_blkno, dir_i_size); | |
ccd979bd | 3344 | |
ccd979bd MF |
3345 | /* dir->i_size is always block aligned. */ |
3346 | spin_lock(&OCFS2_I(dir)->ip_lock); | |
3347 | if (dir_i_size == ocfs2_clusters_to_bytes(sb, OCFS2_I(dir)->ip_clusters)) { | |
3348 | spin_unlock(&OCFS2_I(dir)->ip_lock); | |
8d6220d6 | 3349 | ocfs2_init_dinode_extent_tree(&et, dir, parent_fe_bh); |
3d03a305 | 3350 | num_free_extents = ocfs2_num_free_extents(osb, &et); |
ccd979bd MF |
3351 | if (num_free_extents < 0) { |
3352 | status = num_free_extents; | |
3353 | mlog_errno(status); | |
3354 | goto bail; | |
3355 | } | |
3356 | ||
3357 | if (!num_free_extents) { | |
811f933d | 3358 | status = ocfs2_reserve_new_metadata(osb, el, &meta_ac); |
ccd979bd MF |
3359 | if (status < 0) { |
3360 | if (status != -ENOSPC) | |
3361 | mlog_errno(status); | |
3362 | goto bail; | |
3363 | } | |
3364 | } | |
3365 | ||
da5cbf2f | 3366 | status = ocfs2_reserve_clusters(osb, 1, &data_ac); |
ccd979bd MF |
3367 | if (status < 0) { |
3368 | if (status != -ENOSPC) | |
3369 | mlog_errno(status); | |
3370 | goto bail; | |
3371 | } | |
3372 | ||
811f933d | 3373 | credits = ocfs2_calc_extend_credits(sb, el, 1); |
ccd979bd MF |
3374 | } else { |
3375 | spin_unlock(&OCFS2_I(dir)->ip_lock); | |
3376 | credits = OCFS2_SIMPLE_DIR_EXTEND_CREDITS; | |
3377 | } | |
3378 | ||
5b6a3a2b | 3379 | do_extend: |
e7c17e43 MF |
3380 | if (ocfs2_dir_indexed(dir)) |
3381 | credits++; /* For attaching the new dirent block to the | |
3382 | * dx_root */ | |
3383 | ||
65eff9cc | 3384 | handle = ocfs2_start_trans(osb, credits); |
ccd979bd MF |
3385 | if (IS_ERR(handle)) { |
3386 | status = PTR_ERR(handle); | |
3387 | handle = NULL; | |
3388 | mlog_errno(status); | |
3389 | goto bail; | |
3390 | } | |
3391 | ||
3392 | status = ocfs2_do_extend_dir(osb->sb, handle, dir, parent_fe_bh, | |
3393 | data_ac, meta_ac, &new_bh); | |
3394 | if (status < 0) { | |
3395 | mlog_errno(status); | |
3396 | goto bail; | |
3397 | } | |
3398 | ||
8cb471e8 | 3399 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(dir), new_bh); |
ccd979bd | 3400 | |
0cf2f763 | 3401 | status = ocfs2_journal_access_db(handle, INODE_CACHE(dir), new_bh, |
13723d00 | 3402 | OCFS2_JOURNAL_ACCESS_CREATE); |
ccd979bd MF |
3403 | if (status < 0) { |
3404 | mlog_errno(status); | |
3405 | goto bail; | |
3406 | } | |
3407 | memset(new_bh->b_data, 0, sb->s_blocksize); | |
87d35a74 | 3408 | |
ccd979bd MF |
3409 | de = (struct ocfs2_dir_entry *) new_bh->b_data; |
3410 | de->inode = 0; | |
e7c17e43 | 3411 | if (ocfs2_supports_dir_trailer(dir)) { |
87d35a74 | 3412 | de->rec_len = cpu_to_le16(ocfs2_dir_trailer_blk_off(sb)); |
e7c17e43 MF |
3413 | |
3414 | ocfs2_init_dir_trailer(dir, new_bh, le16_to_cpu(de->rec_len)); | |
3415 | ||
3416 | if (ocfs2_dir_indexed(dir)) { | |
3417 | status = ocfs2_dx_dir_link_trailer(dir, handle, | |
3418 | dx_root_bh, new_bh); | |
3419 | if (status) { | |
3420 | mlog_errno(status); | |
3421 | goto bail; | |
3422 | } | |
3423 | } | |
87d35a74 MF |
3424 | } else { |
3425 | de->rec_len = cpu_to_le16(sb->s_blocksize); | |
3426 | } | |
ccd979bd MF |
3427 | status = ocfs2_journal_dirty(handle, new_bh); |
3428 | if (status < 0) { | |
3429 | mlog_errno(status); | |
3430 | goto bail; | |
3431 | } | |
3432 | ||
3433 | dir_i_size += dir->i_sb->s_blocksize; | |
3434 | i_size_write(dir, dir_i_size); | |
8110b073 | 3435 | dir->i_blocks = ocfs2_inode_sector_count(dir); |
ccd979bd MF |
3436 | status = ocfs2_mark_inode_dirty(handle, dir, parent_fe_bh); |
3437 | if (status < 0) { | |
3438 | mlog_errno(status); | |
3439 | goto bail; | |
3440 | } | |
3441 | ||
5b6a3a2b | 3442 | bail_bh: |
ccd979bd MF |
3443 | *new_de_bh = new_bh; |
3444 | get_bh(*new_de_bh); | |
3445 | bail: | |
3446 | if (handle) | |
02dc1af4 | 3447 | ocfs2_commit_trans(osb, handle); |
edd45c08 JK |
3448 | if (drop_alloc_sem) |
3449 | up_write(&OCFS2_I(dir)->ip_alloc_sem); | |
ccd979bd MF |
3450 | |
3451 | if (data_ac) | |
3452 | ocfs2_free_alloc_context(data_ac); | |
3453 | if (meta_ac) | |
3454 | ocfs2_free_alloc_context(meta_ac); | |
3455 | ||
a81cb88b | 3456 | brelse(new_bh); |
ccd979bd MF |
3457 | |
3458 | mlog_exit(status); | |
3459 | return status; | |
3460 | } | |
3461 | ||
5b6a3a2b MF |
3462 | static int ocfs2_find_dir_space_id(struct inode *dir, struct buffer_head *di_bh, |
3463 | const char *name, int namelen, | |
3464 | struct buffer_head **ret_de_bh, | |
3465 | unsigned int *blocks_wanted) | |
ccd979bd | 3466 | { |
5b6a3a2b | 3467 | int ret; |
87d35a74 | 3468 | struct super_block *sb = dir->i_sb; |
5b6a3a2b MF |
3469 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
3470 | struct ocfs2_dir_entry *de, *last_de = NULL; | |
3471 | char *de_buf, *limit; | |
3472 | unsigned long offset = 0; | |
87d35a74 MF |
3473 | unsigned int rec_len, new_rec_len, free_space = dir->i_sb->s_blocksize; |
3474 | ||
3475 | /* | |
3476 | * This calculates how many free bytes we'd have in block zero, should | |
3477 | * this function force expansion to an extent tree. | |
3478 | */ | |
e7c17e43 | 3479 | if (ocfs2_new_dir_wants_trailer(dir)) |
87d35a74 MF |
3480 | free_space = ocfs2_dir_trailer_blk_off(sb) - i_size_read(dir); |
3481 | else | |
3482 | free_space = dir->i_sb->s_blocksize - i_size_read(dir); | |
5b6a3a2b MF |
3483 | |
3484 | de_buf = di->id2.i_data.id_data; | |
3485 | limit = de_buf + i_size_read(dir); | |
3486 | rec_len = OCFS2_DIR_REC_LEN(namelen); | |
ccd979bd | 3487 | |
5b6a3a2b MF |
3488 | while (de_buf < limit) { |
3489 | de = (struct ocfs2_dir_entry *)de_buf; | |
ccd979bd | 3490 | |
5b6a3a2b MF |
3491 | if (!ocfs2_check_dir_entry(dir, de, di_bh, offset)) { |
3492 | ret = -ENOENT; | |
3493 | goto out; | |
3494 | } | |
3495 | if (ocfs2_match(namelen, name, de)) { | |
3496 | ret = -EEXIST; | |
3497 | goto out; | |
3498 | } | |
87d35a74 MF |
3499 | /* |
3500 | * No need to check for a trailing dirent record here as | |
3501 | * they're not used for inline dirs. | |
3502 | */ | |
3503 | ||
5b6a3a2b MF |
3504 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
3505 | /* Ok, we found a spot. Return this bh and let | |
3506 | * the caller actually fill it in. */ | |
3507 | *ret_de_bh = di_bh; | |
3508 | get_bh(*ret_de_bh); | |
3509 | ret = 0; | |
3510 | goto out; | |
3511 | } | |
ccd979bd | 3512 | |
5b6a3a2b MF |
3513 | last_de = de; |
3514 | de_buf += le16_to_cpu(de->rec_len); | |
3515 | offset += le16_to_cpu(de->rec_len); | |
3516 | } | |
ccd979bd | 3517 | |
5b6a3a2b MF |
3518 | /* |
3519 | * We're going to require expansion of the directory - figure | |
3520 | * out how many blocks we'll need so that a place for the | |
3521 | * dirent can be found. | |
3522 | */ | |
3523 | *blocks_wanted = 1; | |
87d35a74 | 3524 | new_rec_len = le16_to_cpu(last_de->rec_len) + free_space; |
5b6a3a2b MF |
3525 | if (new_rec_len < (rec_len + OCFS2_DIR_REC_LEN(last_de->name_len))) |
3526 | *blocks_wanted = 2; | |
ccd979bd | 3527 | |
5b6a3a2b MF |
3528 | ret = -ENOSPC; |
3529 | out: | |
3530 | return ret; | |
3531 | } | |
3532 | ||
3533 | static int ocfs2_find_dir_space_el(struct inode *dir, const char *name, | |
3534 | int namelen, struct buffer_head **ret_de_bh) | |
3535 | { | |
3536 | unsigned long offset; | |
3537 | struct buffer_head *bh = NULL; | |
3538 | unsigned short rec_len; | |
3539 | struct ocfs2_dir_entry *de; | |
3540 | struct super_block *sb = dir->i_sb; | |
3541 | int status; | |
87d35a74 | 3542 | int blocksize = dir->i_sb->s_blocksize; |
ccd979bd | 3543 | |
a22305cc JB |
3544 | status = ocfs2_read_dir_block(dir, 0, &bh, 0); |
3545 | if (status) { | |
ccd979bd MF |
3546 | mlog_errno(status); |
3547 | goto bail; | |
3548 | } | |
3549 | ||
3550 | rec_len = OCFS2_DIR_REC_LEN(namelen); | |
3551 | offset = 0; | |
3552 | de = (struct ocfs2_dir_entry *) bh->b_data; | |
3553 | while (1) { | |
3554 | if ((char *)de >= sb->s_blocksize + bh->b_data) { | |
3555 | brelse(bh); | |
3556 | bh = NULL; | |
3557 | ||
3558 | if (i_size_read(dir) <= offset) { | |
5b6a3a2b MF |
3559 | /* |
3560 | * Caller will have to expand this | |
3561 | * directory. | |
3562 | */ | |
3563 | status = -ENOSPC; | |
ccd979bd MF |
3564 | goto bail; |
3565 | } | |
a22305cc JB |
3566 | status = ocfs2_read_dir_block(dir, |
3567 | offset >> sb->s_blocksize_bits, | |
3568 | &bh, 0); | |
3569 | if (status) { | |
ccd979bd MF |
3570 | mlog_errno(status); |
3571 | goto bail; | |
3572 | } | |
3573 | /* move to next block */ | |
3574 | de = (struct ocfs2_dir_entry *) bh->b_data; | |
3575 | } | |
3576 | if (!ocfs2_check_dir_entry(dir, de, bh, offset)) { | |
3577 | status = -ENOENT; | |
3578 | goto bail; | |
3579 | } | |
3580 | if (ocfs2_match(namelen, name, de)) { | |
3581 | status = -EEXIST; | |
3582 | goto bail; | |
3583 | } | |
87d35a74 MF |
3584 | |
3585 | if (ocfs2_skip_dir_trailer(dir, de, offset % blocksize, | |
3586 | blocksize)) | |
3587 | goto next; | |
3588 | ||
8553cf4f | 3589 | if (ocfs2_dirent_would_fit(de, rec_len)) { |
ccd979bd MF |
3590 | /* Ok, we found a spot. Return this bh and let |
3591 | * the caller actually fill it in. */ | |
3592 | *ret_de_bh = bh; | |
3593 | get_bh(*ret_de_bh); | |
3594 | status = 0; | |
3595 | goto bail; | |
3596 | } | |
87d35a74 | 3597 | next: |
ccd979bd MF |
3598 | offset += le16_to_cpu(de->rec_len); |
3599 | de = (struct ocfs2_dir_entry *)((char *) de + le16_to_cpu(de->rec_len)); | |
3600 | } | |
3601 | ||
3602 | status = 0; | |
3603 | bail: | |
a81cb88b | 3604 | brelse(bh); |
ccd979bd MF |
3605 | |
3606 | mlog_exit(status); | |
3607 | return status; | |
3608 | } | |
5b6a3a2b | 3609 | |
9b7895ef | 3610 | static int dx_leaf_sort_cmp(const void *a, const void *b) |
5b6a3a2b | 3611 | { |
9b7895ef MF |
3612 | const struct ocfs2_dx_entry *entry1 = a; |
3613 | const struct ocfs2_dx_entry *entry2 = b; | |
3614 | u32 major_hash1 = le32_to_cpu(entry1->dx_major_hash); | |
3615 | u32 major_hash2 = le32_to_cpu(entry2->dx_major_hash); | |
3616 | u32 minor_hash1 = le32_to_cpu(entry1->dx_minor_hash); | |
3617 | u32 minor_hash2 = le32_to_cpu(entry2->dx_minor_hash); | |
3618 | ||
3619 | if (major_hash1 > major_hash2) | |
3620 | return 1; | |
3621 | if (major_hash1 < major_hash2) | |
3622 | return -1; | |
3623 | ||
3624 | /* | |
3625 | * It is not strictly necessary to sort by minor | |
3626 | */ | |
3627 | if (minor_hash1 > minor_hash2) | |
3628 | return 1; | |
3629 | if (minor_hash1 < minor_hash2) | |
3630 | return -1; | |
3631 | return 0; | |
3632 | } | |
3633 | ||
3634 | static void dx_leaf_sort_swap(void *a, void *b, int size) | |
3635 | { | |
3636 | struct ocfs2_dx_entry *entry1 = a; | |
3637 | struct ocfs2_dx_entry *entry2 = b; | |
3638 | struct ocfs2_dx_entry tmp; | |
3639 | ||
3640 | BUG_ON(size != sizeof(*entry1)); | |
3641 | ||
3642 | tmp = *entry1; | |
3643 | *entry1 = *entry2; | |
3644 | *entry2 = tmp; | |
3645 | } | |
3646 | ||
3647 | static int ocfs2_dx_leaf_same_major(struct ocfs2_dx_leaf *dx_leaf) | |
3648 | { | |
3649 | struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list; | |
3650 | int i, num = le16_to_cpu(dl_list->de_num_used); | |
3651 | ||
3652 | for (i = 0; i < (num - 1); i++) { | |
3653 | if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) != | |
3654 | le32_to_cpu(dl_list->de_entries[i + 1].dx_major_hash)) | |
3655 | return 0; | |
3656 | } | |
3657 | ||
3658 | return 1; | |
3659 | } | |
3660 | ||
3661 | /* | |
3662 | * Find the optimal value to split this leaf on. This expects the leaf | |
3663 | * entries to be in sorted order. | |
3664 | * | |
3665 | * leaf_cpos is the cpos of the leaf we're splitting. insert_hash is | |
3666 | * the hash we want to insert. | |
3667 | * | |
3668 | * This function is only concerned with the major hash - that which | |
3669 | * determines which cluster an item belongs to. | |
3670 | */ | |
3671 | static int ocfs2_dx_dir_find_leaf_split(struct ocfs2_dx_leaf *dx_leaf, | |
3672 | u32 leaf_cpos, u32 insert_hash, | |
3673 | u32 *split_hash) | |
3674 | { | |
3675 | struct ocfs2_dx_entry_list *dl_list = &dx_leaf->dl_list; | |
3676 | int i, num_used = le16_to_cpu(dl_list->de_num_used); | |
3677 | int allsame; | |
3678 | ||
3679 | /* | |
3680 | * There's a couple rare, but nasty corner cases we have to | |
3681 | * check for here. All of them involve a leaf where all value | |
3682 | * have the same hash, which is what we look for first. | |
3683 | * | |
3684 | * Most of the time, all of the above is false, and we simply | |
3685 | * pick the median value for a split. | |
3686 | */ | |
3687 | allsame = ocfs2_dx_leaf_same_major(dx_leaf); | |
3688 | if (allsame) { | |
3689 | u32 val = le32_to_cpu(dl_list->de_entries[0].dx_major_hash); | |
3690 | ||
3691 | if (val == insert_hash) { | |
3692 | /* | |
3693 | * No matter where we would choose to split, | |
3694 | * the new entry would want to occupy the same | |
3695 | * block as these. Since there's no space left | |
3696 | * in their existing block, we know there | |
3697 | * won't be space after the split. | |
3698 | */ | |
3699 | return -ENOSPC; | |
3700 | } | |
3701 | ||
3702 | if (val == leaf_cpos) { | |
3703 | /* | |
3704 | * Because val is the same as leaf_cpos (which | |
3705 | * is the smallest value this leaf can have), | |
3706 | * yet is not equal to insert_hash, then we | |
3707 | * know that insert_hash *must* be larger than | |
3708 | * val (and leaf_cpos). At least cpos+1 in value. | |
3709 | * | |
3710 | * We also know then, that there cannot be an | |
3711 | * adjacent extent (otherwise we'd be looking | |
3712 | * at it). Choosing this value gives us a | |
3713 | * chance to get some contiguousness. | |
3714 | */ | |
3715 | *split_hash = leaf_cpos + 1; | |
3716 | return 0; | |
3717 | } | |
3718 | ||
3719 | if (val > insert_hash) { | |
3720 | /* | |
3721 | * val can not be the same as insert hash, and | |
3722 | * also must be larger than leaf_cpos. Also, | |
3723 | * we know that there can't be a leaf between | |
3724 | * cpos and val, otherwise the entries with | |
3725 | * hash 'val' would be there. | |
3726 | */ | |
3727 | *split_hash = val; | |
3728 | return 0; | |
3729 | } | |
3730 | ||
3731 | *split_hash = insert_hash; | |
3732 | return 0; | |
3733 | } | |
3734 | ||
3735 | /* | |
3736 | * Since the records are sorted and the checks above | |
3737 | * guaranteed that not all records in this block are the same, | |
3738 | * we simple travel forward, from the median, and pick the 1st | |
3739 | * record whose value is larger than leaf_cpos. | |
3740 | */ | |
3741 | for (i = (num_used / 2); i < num_used; i++) | |
3742 | if (le32_to_cpu(dl_list->de_entries[i].dx_major_hash) > | |
3743 | leaf_cpos) | |
3744 | break; | |
3745 | ||
3746 | BUG_ON(i == num_used); /* Should be impossible */ | |
3747 | *split_hash = le32_to_cpu(dl_list->de_entries[i].dx_major_hash); | |
3748 | return 0; | |
3749 | } | |
3750 | ||
3751 | /* | |
3752 | * Transfer all entries in orig_dx_leaves whose major hash is equal to or | |
3753 | * larger than split_hash into new_dx_leaves. We use a temporary | |
3754 | * buffer (tmp_dx_leaf) to make the changes to the original leaf blocks. | |
3755 | * | |
3756 | * Since the block offset inside a leaf (cluster) is a constant mask | |
3757 | * of minor_hash, we can optimize - an item at block offset X within | |
3758 | * the original cluster, will be at offset X within the new cluster. | |
3759 | */ | |
3760 | static void ocfs2_dx_dir_transfer_leaf(struct inode *dir, u32 split_hash, | |
3761 | handle_t *handle, | |
3762 | struct ocfs2_dx_leaf *tmp_dx_leaf, | |
3763 | struct buffer_head **orig_dx_leaves, | |
3764 | struct buffer_head **new_dx_leaves, | |
3765 | int num_dx_leaves) | |
3766 | { | |
3767 | int i, j, num_used; | |
3768 | u32 major_hash; | |
3769 | struct ocfs2_dx_leaf *orig_dx_leaf, *new_dx_leaf; | |
3770 | struct ocfs2_dx_entry_list *orig_list, *new_list, *tmp_list; | |
3771 | struct ocfs2_dx_entry *dx_entry; | |
3772 | ||
3773 | tmp_list = &tmp_dx_leaf->dl_list; | |
3774 | ||
3775 | for (i = 0; i < num_dx_leaves; i++) { | |
3776 | orig_dx_leaf = (struct ocfs2_dx_leaf *) orig_dx_leaves[i]->b_data; | |
3777 | orig_list = &orig_dx_leaf->dl_list; | |
3778 | new_dx_leaf = (struct ocfs2_dx_leaf *) new_dx_leaves[i]->b_data; | |
3779 | new_list = &new_dx_leaf->dl_list; | |
3780 | ||
3781 | num_used = le16_to_cpu(orig_list->de_num_used); | |
3782 | ||
3783 | memcpy(tmp_dx_leaf, orig_dx_leaf, dir->i_sb->s_blocksize); | |
3784 | tmp_list->de_num_used = cpu_to_le16(0); | |
3785 | memset(&tmp_list->de_entries, 0, sizeof(*dx_entry)*num_used); | |
3786 | ||
3787 | for (j = 0; j < num_used; j++) { | |
3788 | dx_entry = &orig_list->de_entries[j]; | |
3789 | major_hash = le32_to_cpu(dx_entry->dx_major_hash); | |
3790 | if (major_hash >= split_hash) | |
3791 | ocfs2_dx_dir_leaf_insert_tail(new_dx_leaf, | |
3792 | dx_entry); | |
3793 | else | |
3794 | ocfs2_dx_dir_leaf_insert_tail(tmp_dx_leaf, | |
3795 | dx_entry); | |
3796 | } | |
3797 | memcpy(orig_dx_leaf, tmp_dx_leaf, dir->i_sb->s_blocksize); | |
3798 | ||
3799 | ocfs2_journal_dirty(handle, orig_dx_leaves[i]); | |
3800 | ocfs2_journal_dirty(handle, new_dx_leaves[i]); | |
3801 | } | |
3802 | } | |
3803 | ||
3804 | static int ocfs2_dx_dir_rebalance_credits(struct ocfs2_super *osb, | |
3805 | struct ocfs2_dx_root_block *dx_root) | |
3806 | { | |
3807 | int credits = ocfs2_clusters_to_blocks(osb->sb, 2); | |
3808 | ||
3809 | credits += ocfs2_calc_extend_credits(osb->sb, &dx_root->dr_list, 1); | |
3810 | credits += ocfs2_quota_trans_credits(osb->sb); | |
3811 | return credits; | |
3812 | } | |
3813 | ||
3814 | /* | |
3815 | * Find the median value in dx_leaf_bh and allocate a new leaf to move | |
3816 | * half our entries into. | |
3817 | */ | |
3818 | static int ocfs2_dx_dir_rebalance(struct ocfs2_super *osb, struct inode *dir, | |
3819 | struct buffer_head *dx_root_bh, | |
3820 | struct buffer_head *dx_leaf_bh, | |
3821 | struct ocfs2_dx_hinfo *hinfo, u32 leaf_cpos, | |
3822 | u64 leaf_blkno) | |
3823 | { | |
3824 | struct ocfs2_dx_leaf *dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data; | |
3825 | int credits, ret, i, num_used, did_quota = 0; | |
3826 | u32 cpos, split_hash, insert_hash = hinfo->major_hash; | |
3827 | u64 orig_leaves_start; | |
3828 | int num_dx_leaves; | |
3829 | struct buffer_head **orig_dx_leaves = NULL; | |
3830 | struct buffer_head **new_dx_leaves = NULL; | |
3831 | struct ocfs2_alloc_context *data_ac = NULL, *meta_ac = NULL; | |
3832 | struct ocfs2_extent_tree et; | |
3833 | handle_t *handle = NULL; | |
3834 | struct ocfs2_dx_root_block *dx_root; | |
3835 | struct ocfs2_dx_leaf *tmp_dx_leaf = NULL; | |
3836 | ||
3837 | mlog(0, "DX Dir: %llu, rebalance leaf leaf_blkno: %llu insert: %u\n", | |
3838 | (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
3839 | (unsigned long long)leaf_blkno, insert_hash); | |
3840 | ||
3841 | ocfs2_init_dx_root_extent_tree(&et, dir, dx_root_bh); | |
3842 | ||
3843 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
3844 | /* | |
3845 | * XXX: This is a rather large limit. We should use a more | |
3846 | * realistic value. | |
3847 | */ | |
3848 | if (le32_to_cpu(dx_root->dr_clusters) == UINT_MAX) | |
3849 | return -ENOSPC; | |
3850 | ||
3851 | num_used = le16_to_cpu(dx_leaf->dl_list.de_num_used); | |
3852 | if (num_used < le16_to_cpu(dx_leaf->dl_list.de_count)) { | |
3853 | mlog(ML_ERROR, "DX Dir: %llu, Asked to rebalance empty leaf: " | |
3854 | "%llu, %d\n", (unsigned long long)OCFS2_I(dir)->ip_blkno, | |
3855 | (unsigned long long)leaf_blkno, num_used); | |
3856 | ret = -EIO; | |
3857 | goto out; | |
3858 | } | |
3859 | ||
3860 | orig_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves); | |
3861 | if (!orig_dx_leaves) { | |
3862 | ret = -ENOMEM; | |
3863 | mlog_errno(ret); | |
3864 | goto out; | |
3865 | } | |
3866 | ||
3867 | new_dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, NULL); | |
3868 | if (!new_dx_leaves) { | |
3869 | ret = -ENOMEM; | |
3870 | mlog_errno(ret); | |
3871 | goto out; | |
3872 | } | |
3873 | ||
3874 | ret = ocfs2_lock_allocators(dir, &et, 1, 0, &data_ac, &meta_ac); | |
3875 | if (ret) { | |
3876 | if (ret != -ENOSPC) | |
3877 | mlog_errno(ret); | |
3878 | goto out; | |
3879 | } | |
3880 | ||
3881 | credits = ocfs2_dx_dir_rebalance_credits(osb, dx_root); | |
3882 | handle = ocfs2_start_trans(osb, credits); | |
3883 | if (IS_ERR(handle)) { | |
3884 | ret = PTR_ERR(handle); | |
3885 | handle = NULL; | |
3886 | mlog_errno(ret); | |
3887 | goto out; | |
3888 | } | |
3889 | ||
3890 | if (vfs_dq_alloc_space_nodirty(dir, | |
3891 | ocfs2_clusters_to_bytes(dir->i_sb, 1))) { | |
3892 | ret = -EDQUOT; | |
3893 | goto out_commit; | |
3894 | } | |
3895 | did_quota = 1; | |
3896 | ||
0cf2f763 | 3897 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), dx_leaf_bh, |
9b7895ef MF |
3898 | OCFS2_JOURNAL_ACCESS_WRITE); |
3899 | if (ret) { | |
3900 | mlog_errno(ret); | |
3901 | goto out_commit; | |
3902 | } | |
3903 | ||
3904 | /* | |
3905 | * This block is changing anyway, so we can sort it in place. | |
3906 | */ | |
3907 | sort(dx_leaf->dl_list.de_entries, num_used, | |
3908 | sizeof(struct ocfs2_dx_entry), dx_leaf_sort_cmp, | |
3909 | dx_leaf_sort_swap); | |
3910 | ||
3911 | ret = ocfs2_journal_dirty(handle, dx_leaf_bh); | |
3912 | if (ret) { | |
3913 | mlog_errno(ret); | |
3914 | goto out_commit; | |
3915 | } | |
3916 | ||
3917 | ret = ocfs2_dx_dir_find_leaf_split(dx_leaf, leaf_cpos, insert_hash, | |
3918 | &split_hash); | |
3919 | if (ret) { | |
3920 | mlog_errno(ret); | |
3921 | goto out_commit; | |
3922 | } | |
3923 | ||
3924 | mlog(0, "Split leaf (%u) at %u, insert major hash is %u\n", | |
3925 | leaf_cpos, split_hash, insert_hash); | |
3926 | ||
3927 | /* | |
3928 | * We have to carefully order operations here. There are items | |
3929 | * which want to be in the new cluster before insert, but in | |
3930 | * order to put those items in the new cluster, we alter the | |
3931 | * old cluster. A failure to insert gets nasty. | |
3932 | * | |
3933 | * So, start by reserving writes to the old | |
3934 | * cluster. ocfs2_dx_dir_new_cluster will reserve writes on | |
3935 | * the new cluster for us, before inserting it. The insert | |
3936 | * won't happen if there's an error before that. Once the | |
3937 | * insert is done then, we can transfer from one leaf into the | |
3938 | * other without fear of hitting any error. | |
3939 | */ | |
3940 | ||
3941 | /* | |
3942 | * The leaf transfer wants some scratch space so that we don't | |
3943 | * wind up doing a bunch of expensive memmove(). | |
3944 | */ | |
3945 | tmp_dx_leaf = kmalloc(osb->sb->s_blocksize, GFP_NOFS); | |
3946 | if (!tmp_dx_leaf) { | |
3947 | ret = -ENOMEM; | |
3948 | mlog_errno(ret); | |
3949 | goto out_commit; | |
3950 | } | |
3951 | ||
1d46dc08 | 3952 | orig_leaves_start = ocfs2_block_to_cluster_start(dir->i_sb, leaf_blkno); |
9b7895ef MF |
3953 | ret = ocfs2_read_dx_leaves(dir, orig_leaves_start, num_dx_leaves, |
3954 | orig_dx_leaves); | |
3955 | if (ret) { | |
3956 | mlog_errno(ret); | |
3957 | goto out_commit; | |
3958 | } | |
3959 | ||
3960 | for (i = 0; i < num_dx_leaves; i++) { | |
0cf2f763 JB |
3961 | ret = ocfs2_journal_access_dl(handle, INODE_CACHE(dir), |
3962 | orig_dx_leaves[i], | |
9b7895ef MF |
3963 | OCFS2_JOURNAL_ACCESS_WRITE); |
3964 | if (ret) { | |
3965 | mlog_errno(ret); | |
3966 | goto out_commit; | |
3967 | } | |
3968 | } | |
3969 | ||
3970 | cpos = split_hash; | |
3971 | ret = ocfs2_dx_dir_new_cluster(dir, &et, cpos, handle, | |
3972 | data_ac, meta_ac, new_dx_leaves, | |
3973 | num_dx_leaves); | |
3974 | if (ret) { | |
3975 | mlog_errno(ret); | |
3976 | goto out_commit; | |
3977 | } | |
3978 | ||
3979 | ocfs2_dx_dir_transfer_leaf(dir, split_hash, handle, tmp_dx_leaf, | |
3980 | orig_dx_leaves, new_dx_leaves, num_dx_leaves); | |
3981 | ||
3982 | out_commit: | |
3983 | if (ret < 0 && did_quota) | |
3984 | vfs_dq_free_space_nodirty(dir, | |
3985 | ocfs2_clusters_to_bytes(dir->i_sb, 1)); | |
3986 | ||
3987 | ocfs2_commit_trans(osb, handle); | |
3988 | ||
3989 | out: | |
3990 | if (orig_dx_leaves || new_dx_leaves) { | |
3991 | for (i = 0; i < num_dx_leaves; i++) { | |
3992 | if (orig_dx_leaves) | |
3993 | brelse(orig_dx_leaves[i]); | |
3994 | if (new_dx_leaves) | |
3995 | brelse(new_dx_leaves[i]); | |
3996 | } | |
3997 | kfree(orig_dx_leaves); | |
3998 | kfree(new_dx_leaves); | |
3999 | } | |
4000 | ||
4001 | if (meta_ac) | |
4002 | ocfs2_free_alloc_context(meta_ac); | |
4003 | if (data_ac) | |
4004 | ocfs2_free_alloc_context(data_ac); | |
4005 | ||
4006 | kfree(tmp_dx_leaf); | |
4007 | return ret; | |
4008 | } | |
4009 | ||
e7c17e43 MF |
4010 | static int ocfs2_find_dir_space_dx(struct ocfs2_super *osb, struct inode *dir, |
4011 | struct buffer_head *di_bh, | |
4012 | struct buffer_head *dx_root_bh, | |
4013 | const char *name, int namelen, | |
4014 | struct ocfs2_dir_lookup_result *lookup) | |
4015 | { | |
4016 | int ret, rebalanced = 0; | |
4017 | struct ocfs2_dx_root_block *dx_root; | |
4018 | struct buffer_head *dx_leaf_bh = NULL; | |
4019 | struct ocfs2_dx_leaf *dx_leaf; | |
4020 | u64 blkno; | |
4021 | u32 leaf_cpos; | |
4022 | ||
4023 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
4024 | ||
4025 | restart_search: | |
4026 | ret = ocfs2_dx_dir_lookup(dir, &dx_root->dr_list, &lookup->dl_hinfo, | |
4027 | &leaf_cpos, &blkno); | |
4028 | if (ret) { | |
4029 | mlog_errno(ret); | |
4030 | goto out; | |
4031 | } | |
4032 | ||
4033 | ret = ocfs2_read_dx_leaf(dir, blkno, &dx_leaf_bh); | |
4034 | if (ret) { | |
4035 | mlog_errno(ret); | |
4036 | goto out; | |
4037 | } | |
4038 | ||
4039 | dx_leaf = (struct ocfs2_dx_leaf *)dx_leaf_bh->b_data; | |
4040 | ||
4041 | if (le16_to_cpu(dx_leaf->dl_list.de_num_used) >= | |
4042 | le16_to_cpu(dx_leaf->dl_list.de_count)) { | |
4043 | if (rebalanced) { | |
4044 | /* | |
4045 | * Rebalancing should have provided us with | |
4046 | * space in an appropriate leaf. | |
4047 | * | |
4048 | * XXX: Is this an abnormal condition then? | |
4049 | * Should we print a message here? | |
4050 | */ | |
4051 | ret = -ENOSPC; | |
4052 | goto out; | |
4053 | } | |
4054 | ||
4055 | ret = ocfs2_dx_dir_rebalance(osb, dir, dx_root_bh, dx_leaf_bh, | |
4056 | &lookup->dl_hinfo, leaf_cpos, | |
4057 | blkno); | |
4058 | if (ret) { | |
4059 | if (ret != -ENOSPC) | |
4060 | mlog_errno(ret); | |
4061 | goto out; | |
4062 | } | |
4063 | ||
4064 | /* | |
4065 | * Restart the lookup. The rebalance might have | |
4066 | * changed which block our item fits into. Mark our | |
4067 | * progress, so we only execute this once. | |
4068 | */ | |
4069 | brelse(dx_leaf_bh); | |
4070 | dx_leaf_bh = NULL; | |
4071 | rebalanced = 1; | |
4072 | goto restart_search; | |
4073 | } | |
4074 | ||
4075 | lookup->dl_dx_leaf_bh = dx_leaf_bh; | |
4076 | dx_leaf_bh = NULL; | |
4077 | ||
4078 | out: | |
4079 | brelse(dx_leaf_bh); | |
4080 | return ret; | |
4081 | } | |
4082 | ||
4083 | static int ocfs2_search_dx_free_list(struct inode *dir, | |
4084 | struct buffer_head *dx_root_bh, | |
4085 | int namelen, | |
4086 | struct ocfs2_dir_lookup_result *lookup) | |
4087 | { | |
4088 | int ret = -ENOSPC; | |
4089 | struct buffer_head *leaf_bh = NULL, *prev_leaf_bh = NULL; | |
4090 | struct ocfs2_dir_block_trailer *db; | |
4091 | u64 next_block; | |
4092 | int rec_len = OCFS2_DIR_REC_LEN(namelen); | |
4093 | struct ocfs2_dx_root_block *dx_root; | |
4094 | ||
4095 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
4096 | next_block = le64_to_cpu(dx_root->dr_free_blk); | |
4097 | ||
4098 | while (next_block) { | |
4099 | brelse(prev_leaf_bh); | |
4100 | prev_leaf_bh = leaf_bh; | |
4101 | leaf_bh = NULL; | |
4102 | ||
4103 | ret = ocfs2_read_dir_block_direct(dir, next_block, &leaf_bh); | |
4104 | if (ret) { | |
4105 | mlog_errno(ret); | |
4106 | goto out; | |
4107 | } | |
4108 | ||
4109 | db = ocfs2_trailer_from_bh(leaf_bh, dir->i_sb); | |
4110 | if (rec_len <= le16_to_cpu(db->db_free_rec_len)) { | |
4111 | lookup->dl_leaf_bh = leaf_bh; | |
4112 | lookup->dl_prev_leaf_bh = prev_leaf_bh; | |
4113 | leaf_bh = NULL; | |
4114 | prev_leaf_bh = NULL; | |
4115 | break; | |
4116 | } | |
4117 | ||
4118 | next_block = le64_to_cpu(db->db_free_next); | |
4119 | } | |
4120 | ||
4121 | if (!next_block) | |
4122 | ret = -ENOSPC; | |
4123 | ||
4124 | out: | |
4125 | ||
4126 | brelse(leaf_bh); | |
4127 | brelse(prev_leaf_bh); | |
4128 | return ret; | |
4129 | } | |
4130 | ||
4ed8a6bb MF |
4131 | static int ocfs2_expand_inline_dx_root(struct inode *dir, |
4132 | struct buffer_head *dx_root_bh) | |
4133 | { | |
4134 | int ret, num_dx_leaves, i, j, did_quota = 0; | |
4135 | struct buffer_head **dx_leaves = NULL; | |
4136 | struct ocfs2_extent_tree et; | |
4137 | u64 insert_blkno; | |
4138 | struct ocfs2_alloc_context *data_ac = NULL; | |
4139 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
4140 | handle_t *handle = NULL; | |
4141 | struct ocfs2_dx_root_block *dx_root; | |
4142 | struct ocfs2_dx_entry_list *entry_list; | |
4143 | struct ocfs2_dx_entry *dx_entry; | |
4144 | struct ocfs2_dx_leaf *target_leaf; | |
4145 | ||
4146 | ret = ocfs2_reserve_clusters(osb, 1, &data_ac); | |
4147 | if (ret) { | |
4148 | mlog_errno(ret); | |
4149 | goto out; | |
4150 | } | |
4151 | ||
4152 | dx_leaves = ocfs2_dx_dir_kmalloc_leaves(osb->sb, &num_dx_leaves); | |
4153 | if (!dx_leaves) { | |
4154 | ret = -ENOMEM; | |
4155 | mlog_errno(ret); | |
4156 | goto out; | |
4157 | } | |
4158 | ||
4159 | handle = ocfs2_start_trans(osb, ocfs2_calc_dxi_expand_credits(osb->sb)); | |
4160 | if (IS_ERR(handle)) { | |
4161 | ret = PTR_ERR(handle); | |
4162 | mlog_errno(ret); | |
4163 | goto out; | |
4164 | } | |
4165 | ||
4166 | if (vfs_dq_alloc_space_nodirty(dir, | |
4167 | ocfs2_clusters_to_bytes(osb->sb, 1))) { | |
4168 | ret = -EDQUOT; | |
4169 | goto out_commit; | |
4170 | } | |
4171 | did_quota = 1; | |
4172 | ||
4173 | /* | |
4174 | * We do this up front, before the allocation, so that a | |
4175 | * failure to add the dx_root_bh to the journal won't result | |
4176 | * us losing clusters. | |
4177 | */ | |
0cf2f763 | 4178 | ret = ocfs2_journal_access_dr(handle, INODE_CACHE(dir), dx_root_bh, |
4ed8a6bb MF |
4179 | OCFS2_JOURNAL_ACCESS_WRITE); |
4180 | if (ret) { | |
4181 | mlog_errno(ret); | |
4182 | goto out_commit; | |
4183 | } | |
4184 | ||
4185 | ret = __ocfs2_dx_dir_new_cluster(dir, 0, handle, data_ac, dx_leaves, | |
4186 | num_dx_leaves, &insert_blkno); | |
4187 | if (ret) { | |
4188 | mlog_errno(ret); | |
4189 | goto out_commit; | |
4190 | } | |
4191 | ||
4192 | /* | |
4193 | * Transfer the entries from our dx_root into the appropriate | |
4194 | * block | |
4195 | */ | |
4196 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; | |
4197 | entry_list = &dx_root->dr_entries; | |
4198 | ||
4199 | for (i = 0; i < le16_to_cpu(entry_list->de_num_used); i++) { | |
4200 | dx_entry = &entry_list->de_entries[i]; | |
4201 | ||
4202 | j = __ocfs2_dx_dir_hash_idx(osb, | |
4203 | le32_to_cpu(dx_entry->dx_minor_hash)); | |
4204 | target_leaf = (struct ocfs2_dx_leaf *)dx_leaves[j]->b_data; | |
4205 | ||
4206 | ocfs2_dx_dir_leaf_insert_tail(target_leaf, dx_entry); | |
4207 | ||
4208 | /* Each leaf has been passed to the journal already | |
4209 | * via __ocfs2_dx_dir_new_cluster() */ | |
4210 | } | |
4211 | ||
4212 | dx_root->dr_flags &= ~OCFS2_DX_FLAG_INLINE; | |
4213 | memset(&dx_root->dr_list, 0, osb->sb->s_blocksize - | |
4214 | offsetof(struct ocfs2_dx_root_block, dr_list)); | |
4215 | dx_root->dr_list.l_count = | |
4216 | cpu_to_le16(ocfs2_extent_recs_per_dx_root(osb->sb)); | |
4217 | ||
4218 | /* This should never fail considering we start with an empty | |
4219 | * dx_root. */ | |
4220 | ocfs2_init_dx_root_extent_tree(&et, dir, dx_root_bh); | |
4221 | ret = ocfs2_insert_extent(osb, handle, dir, &et, 0, | |
4222 | insert_blkno, 1, 0, NULL); | |
4223 | if (ret) | |
4224 | mlog_errno(ret); | |
4225 | did_quota = 0; | |
4226 | ||
4227 | ocfs2_journal_dirty(handle, dx_root_bh); | |
4228 | ||
4229 | out_commit: | |
4230 | if (ret < 0 && did_quota) | |
4231 | vfs_dq_free_space_nodirty(dir, | |
4232 | ocfs2_clusters_to_bytes(dir->i_sb, 1)); | |
4233 | ||
4234 | ocfs2_commit_trans(osb, handle); | |
4235 | ||
4236 | out: | |
4237 | if (data_ac) | |
4238 | ocfs2_free_alloc_context(data_ac); | |
4239 | ||
4240 | if (dx_leaves) { | |
4241 | for (i = 0; i < num_dx_leaves; i++) | |
4242 | brelse(dx_leaves[i]); | |
4243 | kfree(dx_leaves); | |
4244 | } | |
4245 | return ret; | |
4246 | } | |
4247 | ||
4248 | static int ocfs2_inline_dx_has_space(struct buffer_head *dx_root_bh) | |
4249 | { | |
4250 | struct ocfs2_dx_root_block *dx_root; | |
4251 | struct ocfs2_dx_entry_list *entry_list; | |
4252 | ||
4253 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; | |
4254 | entry_list = &dx_root->dr_entries; | |
4255 | ||
4256 | if (le16_to_cpu(entry_list->de_num_used) >= | |
4257 | le16_to_cpu(entry_list->de_count)) | |
4258 | return -ENOSPC; | |
4259 | ||
4260 | return 0; | |
4261 | } | |
4262 | ||
e7c17e43 MF |
4263 | static int ocfs2_prepare_dx_dir_for_insert(struct inode *dir, |
4264 | struct buffer_head *di_bh, | |
4265 | const char *name, | |
4266 | int namelen, | |
4267 | struct ocfs2_dir_lookup_result *lookup) | |
9b7895ef | 4268 | { |
e7c17e43 MF |
4269 | int ret, free_dx_root = 1; |
4270 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
9b7895ef | 4271 | struct buffer_head *dx_root_bh = NULL; |
e7c17e43 | 4272 | struct buffer_head *leaf_bh = NULL; |
9b7895ef | 4273 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; |
e7c17e43 | 4274 | struct ocfs2_dx_root_block *dx_root; |
9b7895ef MF |
4275 | |
4276 | ret = ocfs2_read_dx_root(dir, di, &dx_root_bh); | |
4277 | if (ret) { | |
4278 | mlog_errno(ret); | |
4279 | goto out; | |
4280 | } | |
4281 | ||
4282 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; | |
e3a93c2d MF |
4283 | if (le32_to_cpu(dx_root->dr_num_entries) == OCFS2_DX_ENTRIES_MAX) { |
4284 | ret = -ENOSPC; | |
4285 | mlog_errno(ret); | |
4286 | goto out; | |
4287 | } | |
4288 | ||
4ed8a6bb MF |
4289 | if (ocfs2_dx_root_inline(dx_root)) { |
4290 | ret = ocfs2_inline_dx_has_space(dx_root_bh); | |
4291 | ||
4292 | if (ret == 0) | |
4293 | goto search_el; | |
4294 | ||
4295 | /* | |
4296 | * We ran out of room in the root block. Expand it to | |
4297 | * an extent, then allow ocfs2_find_dir_space_dx to do | |
4298 | * the rest. | |
4299 | */ | |
4300 | ret = ocfs2_expand_inline_dx_root(dir, dx_root_bh); | |
4301 | if (ret) { | |
4302 | mlog_errno(ret); | |
4303 | goto out; | |
4304 | } | |
4305 | } | |
9b7895ef | 4306 | |
e7c17e43 MF |
4307 | /* |
4308 | * Insert preparation for an indexed directory is split into two | |
4309 | * steps. The call to find_dir_space_dx reserves room in the index for | |
4310 | * an additional item. If we run out of space there, it's a real error | |
4311 | * we can't continue on. | |
4312 | */ | |
4313 | ret = ocfs2_find_dir_space_dx(osb, dir, di_bh, dx_root_bh, name, | |
4314 | namelen, lookup); | |
9b7895ef MF |
4315 | if (ret) { |
4316 | mlog_errno(ret); | |
4317 | goto out; | |
4318 | } | |
4319 | ||
e7c17e43 MF |
4320 | search_el: |
4321 | /* | |
4322 | * Next, we need to find space in the unindexed tree. This call | |
4323 | * searches using the free space linked list. If the unindexed tree | |
4324 | * lacks sufficient space, we'll expand it below. The expansion code | |
4325 | * is smart enough to add any new blocks to the free space list. | |
4326 | */ | |
4327 | ret = ocfs2_search_dx_free_list(dir, dx_root_bh, namelen, lookup); | |
4328 | if (ret && ret != -ENOSPC) { | |
9b7895ef MF |
4329 | mlog_errno(ret); |
4330 | goto out; | |
4331 | } | |
4332 | ||
e7c17e43 MF |
4333 | /* Do this up here - ocfs2_extend_dir might need the dx_root */ |
4334 | lookup->dl_dx_root_bh = dx_root_bh; | |
4335 | free_dx_root = 0; | |
9b7895ef | 4336 | |
e7c17e43 MF |
4337 | if (ret == -ENOSPC) { |
4338 | ret = ocfs2_extend_dir(osb, dir, di_bh, 1, lookup, &leaf_bh); | |
9b7895ef | 4339 | |
9b7895ef | 4340 | if (ret) { |
e7c17e43 | 4341 | mlog_errno(ret); |
9b7895ef MF |
4342 | goto out; |
4343 | } | |
4344 | ||
4345 | /* | |
e7c17e43 MF |
4346 | * We make the assumption here that new leaf blocks are added |
4347 | * to the front of our free list. | |
9b7895ef | 4348 | */ |
e7c17e43 MF |
4349 | lookup->dl_prev_leaf_bh = NULL; |
4350 | lookup->dl_leaf_bh = leaf_bh; | |
9b7895ef MF |
4351 | } |
4352 | ||
9b7895ef | 4353 | out: |
e7c17e43 MF |
4354 | if (free_dx_root) |
4355 | brelse(dx_root_bh); | |
9b7895ef MF |
4356 | return ret; |
4357 | } | |
4358 | ||
4359 | /* | |
4360 | * Get a directory ready for insert. Any directory allocation required | |
4361 | * happens here. Success returns zero, and enough context in the dir | |
4362 | * lookup result that ocfs2_add_entry() will be able complete the task | |
4363 | * with minimal performance impact. | |
4364 | */ | |
4365 | int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb, | |
4366 | struct inode *dir, | |
4367 | struct buffer_head *parent_fe_bh, | |
4368 | const char *name, | |
4369 | int namelen, | |
4370 | struct ocfs2_dir_lookup_result *lookup) | |
4371 | { | |
4372 | int ret; | |
5b6a3a2b MF |
4373 | unsigned int blocks_wanted = 1; |
4374 | struct buffer_head *bh = NULL; | |
4375 | ||
4376 | mlog(0, "getting ready to insert namelen %d into dir %llu\n", | |
4377 | namelen, (unsigned long long)OCFS2_I(dir)->ip_blkno); | |
4378 | ||
5b6a3a2b MF |
4379 | if (!namelen) { |
4380 | ret = -EINVAL; | |
4381 | mlog_errno(ret); | |
4382 | goto out; | |
4383 | } | |
4384 | ||
9b7895ef MF |
4385 | /* |
4386 | * Do this up front to reduce confusion. | |
4387 | * | |
4388 | * The directory might start inline, then be turned into an | |
4389 | * indexed one, in which case we'd need to hash deep inside | |
4390 | * ocfs2_find_dir_space_id(). Since | |
4391 | * ocfs2_prepare_dx_dir_for_insert() also needs this hash | |
4392 | * done, there seems no point in spreading out the calls. We | |
4393 | * can optimize away the case where the file system doesn't | |
4394 | * support indexing. | |
4395 | */ | |
4396 | if (ocfs2_supports_indexed_dirs(osb)) | |
4397 | ocfs2_dx_dir_name_hash(dir, name, namelen, &lookup->dl_hinfo); | |
4398 | ||
4399 | if (ocfs2_dir_indexed(dir)) { | |
e7c17e43 MF |
4400 | ret = ocfs2_prepare_dx_dir_for_insert(dir, parent_fe_bh, |
4401 | name, namelen, lookup); | |
4402 | if (ret) | |
9b7895ef | 4403 | mlog_errno(ret); |
e7c17e43 | 4404 | goto out; |
9b7895ef MF |
4405 | } |
4406 | ||
5b6a3a2b MF |
4407 | if (OCFS2_I(dir)->ip_dyn_features & OCFS2_INLINE_DATA_FL) { |
4408 | ret = ocfs2_find_dir_space_id(dir, parent_fe_bh, name, | |
4409 | namelen, &bh, &blocks_wanted); | |
4410 | } else | |
4411 | ret = ocfs2_find_dir_space_el(dir, name, namelen, &bh); | |
4412 | ||
4413 | if (ret && ret != -ENOSPC) { | |
4414 | mlog_errno(ret); | |
4415 | goto out; | |
4416 | } | |
4417 | ||
4418 | if (ret == -ENOSPC) { | |
4419 | /* | |
4420 | * We have to expand the directory to add this name. | |
4421 | */ | |
4422 | BUG_ON(bh); | |
4423 | ||
4424 | ret = ocfs2_extend_dir(osb, dir, parent_fe_bh, blocks_wanted, | |
9b7895ef | 4425 | lookup, &bh); |
5b6a3a2b MF |
4426 | if (ret) { |
4427 | if (ret != -ENOSPC) | |
4428 | mlog_errno(ret); | |
4429 | goto out; | |
4430 | } | |
4431 | ||
4432 | BUG_ON(!bh); | |
4433 | } | |
4434 | ||
4a12ca3a | 4435 | lookup->dl_leaf_bh = bh; |
5b6a3a2b MF |
4436 | bh = NULL; |
4437 | out: | |
a81cb88b | 4438 | brelse(bh); |
5b6a3a2b MF |
4439 | return ret; |
4440 | } | |
9b7895ef MF |
4441 | |
4442 | static int ocfs2_dx_dir_remove_index(struct inode *dir, | |
4443 | struct buffer_head *di_bh, | |
4444 | struct buffer_head *dx_root_bh) | |
4445 | { | |
4446 | int ret; | |
4447 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
4448 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
4449 | struct ocfs2_dx_root_block *dx_root; | |
4450 | struct inode *dx_alloc_inode = NULL; | |
4451 | struct buffer_head *dx_alloc_bh = NULL; | |
4452 | handle_t *handle; | |
4453 | u64 blk; | |
4454 | u16 bit; | |
4455 | u64 bg_blkno; | |
4456 | ||
4457 | dx_root = (struct ocfs2_dx_root_block *) dx_root_bh->b_data; | |
4458 | ||
4459 | dx_alloc_inode = ocfs2_get_system_file_inode(osb, | |
4460 | EXTENT_ALLOC_SYSTEM_INODE, | |
4461 | le16_to_cpu(dx_root->dr_suballoc_slot)); | |
4462 | if (!dx_alloc_inode) { | |
4463 | ret = -ENOMEM; | |
4464 | mlog_errno(ret); | |
4465 | goto out; | |
4466 | } | |
4467 | mutex_lock(&dx_alloc_inode->i_mutex); | |
4468 | ||
4469 | ret = ocfs2_inode_lock(dx_alloc_inode, &dx_alloc_bh, 1); | |
4470 | if (ret) { | |
4471 | mlog_errno(ret); | |
4472 | goto out_mutex; | |
4473 | } | |
4474 | ||
4475 | handle = ocfs2_start_trans(osb, OCFS2_DX_ROOT_REMOVE_CREDITS); | |
4476 | if (IS_ERR(handle)) { | |
4477 | ret = PTR_ERR(handle); | |
4478 | mlog_errno(ret); | |
4479 | goto out_unlock; | |
4480 | } | |
4481 | ||
0cf2f763 | 4482 | ret = ocfs2_journal_access_di(handle, INODE_CACHE(dir), di_bh, |
9b7895ef MF |
4483 | OCFS2_JOURNAL_ACCESS_WRITE); |
4484 | if (ret) { | |
4485 | mlog_errno(ret); | |
4486 | goto out_commit; | |
4487 | } | |
4488 | ||
4489 | OCFS2_I(dir)->ip_dyn_features &= ~OCFS2_INDEXED_DIR_FL; | |
4490 | di->i_dyn_features = cpu_to_le16(OCFS2_I(dir)->ip_dyn_features); | |
4491 | di->i_dx_root = cpu_to_le64(0ULL); | |
4492 | ||
4493 | ocfs2_journal_dirty(handle, di_bh); | |
4494 | ||
4495 | blk = le64_to_cpu(dx_root->dr_blkno); | |
4496 | bit = le16_to_cpu(dx_root->dr_suballoc_bit); | |
4497 | bg_blkno = ocfs2_which_suballoc_group(blk, bit); | |
4498 | ret = ocfs2_free_suballoc_bits(handle, dx_alloc_inode, dx_alloc_bh, | |
4499 | bit, bg_blkno, 1); | |
4500 | if (ret) | |
4501 | mlog_errno(ret); | |
4502 | ||
4503 | out_commit: | |
4504 | ocfs2_commit_trans(osb, handle); | |
4505 | ||
4506 | out_unlock: | |
4507 | ocfs2_inode_unlock(dx_alloc_inode, 1); | |
4508 | ||
4509 | out_mutex: | |
4510 | mutex_unlock(&dx_alloc_inode->i_mutex); | |
4511 | brelse(dx_alloc_bh); | |
4512 | out: | |
4513 | iput(dx_alloc_inode); | |
4514 | return ret; | |
4515 | } | |
4516 | ||
4517 | int ocfs2_dx_dir_truncate(struct inode *dir, struct buffer_head *di_bh) | |
4518 | { | |
4519 | int ret; | |
4520 | unsigned int uninitialized_var(clen); | |
4521 | u32 major_hash = UINT_MAX, p_cpos, uninitialized_var(cpos); | |
4522 | u64 uninitialized_var(blkno); | |
4523 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); | |
4524 | struct buffer_head *dx_root_bh = NULL; | |
4525 | struct ocfs2_dx_root_block *dx_root; | |
4526 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; | |
4527 | struct ocfs2_cached_dealloc_ctxt dealloc; | |
4528 | struct ocfs2_extent_tree et; | |
4529 | ||
4530 | ocfs2_init_dealloc_ctxt(&dealloc); | |
4531 | ||
4532 | if (!ocfs2_dir_indexed(dir)) | |
4533 | return 0; | |
4534 | ||
4535 | ret = ocfs2_read_dx_root(dir, di, &dx_root_bh); | |
4536 | if (ret) { | |
4537 | mlog_errno(ret); | |
4538 | goto out; | |
4539 | } | |
4ed8a6bb | 4540 | dx_root = (struct ocfs2_dx_root_block *)dx_root_bh->b_data; |
9b7895ef | 4541 | |
4ed8a6bb MF |
4542 | if (ocfs2_dx_root_inline(dx_root)) |
4543 | goto remove_index; | |
9b7895ef | 4544 | |
4ed8a6bb | 4545 | ocfs2_init_dx_root_extent_tree(&et, dir, dx_root_bh); |
9b7895ef MF |
4546 | |
4547 | /* XXX: What if dr_clusters is too large? */ | |
4548 | while (le32_to_cpu(dx_root->dr_clusters)) { | |
4549 | ret = ocfs2_dx_dir_lookup_rec(dir, &dx_root->dr_list, | |
4550 | major_hash, &cpos, &blkno, &clen); | |
4551 | if (ret) { | |
4552 | mlog_errno(ret); | |
4553 | goto out; | |
4554 | } | |
4555 | ||
4556 | p_cpos = ocfs2_blocks_to_clusters(dir->i_sb, blkno); | |
4557 | ||
4558 | ret = ocfs2_remove_btree_range(dir, &et, cpos, p_cpos, clen, | |
4559 | &dealloc); | |
4560 | if (ret) { | |
4561 | mlog_errno(ret); | |
4562 | goto out; | |
4563 | } | |
4564 | ||
4565 | if (cpos == 0) | |
4566 | break; | |
4567 | ||
4568 | major_hash = cpos - 1; | |
4569 | } | |
4570 | ||
4ed8a6bb | 4571 | remove_index: |
9b7895ef MF |
4572 | ret = ocfs2_dx_dir_remove_index(dir, di_bh, dx_root_bh); |
4573 | if (ret) { | |
4574 | mlog_errno(ret); | |
4575 | goto out; | |
4576 | } | |
4577 | ||
8cb471e8 | 4578 | ocfs2_remove_from_cache(INODE_CACHE(dir), dx_root_bh); |
9b7895ef MF |
4579 | out: |
4580 | ocfs2_schedule_truncate_log_flush(osb, 1); | |
4581 | ocfs2_run_deallocs(osb, &dealloc); | |
4582 | ||
4583 | brelse(dx_root_bh); | |
4584 | return ret; | |
4585 | } |