]>
Commit | Line | Data |
---|---|---|
0b61f8a4 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 | 2 | /* |
7b718769 | 3 | * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc. |
24df33b4 | 4 | * Copyright (c) 2013 Red Hat, Inc. |
7b718769 | 5 | * All Rights Reserved. |
1da177e4 | 6 | */ |
1da177e4 | 7 | #include "xfs.h" |
a844f451 | 8 | #include "xfs_fs.h" |
a4fbe6ab | 9 | #include "xfs_format.h" |
239880ef DC |
10 | #include "xfs_log_format.h" |
11 | #include "xfs_trans_resv.h" | |
1da177e4 | 12 | #include "xfs_mount.h" |
57062787 | 13 | #include "xfs_da_format.h" |
a844f451 | 14 | #include "xfs_da_btree.h" |
1da177e4 LT |
15 | #include "xfs_inode.h" |
16 | #include "xfs_bmap.h" | |
2b9ab5ab | 17 | #include "xfs_dir2.h" |
57926640 | 18 | #include "xfs_dir2_priv.h" |
1da177e4 | 19 | #include "xfs_error.h" |
0b1b213f | 20 | #include "xfs_trace.h" |
239880ef | 21 | #include "xfs_trans.h" |
24df33b4 DC |
22 | #include "xfs_buf_item.h" |
23 | #include "xfs_cksum.h" | |
a45086e2 | 24 | #include "xfs_log.h" |
1da177e4 LT |
25 | |
26 | /* | |
27 | * Local function declarations. | |
28 | */ | |
1d9025e5 DC |
29 | static int xfs_dir2_leaf_lookup_int(xfs_da_args_t *args, struct xfs_buf **lbpp, |
30 | int *indexp, struct xfs_buf **dbpp); | |
bc85178a DC |
31 | static void xfs_dir3_leaf_log_bests(struct xfs_da_args *args, |
32 | struct xfs_buf *bp, int first, int last); | |
33 | static void xfs_dir3_leaf_log_tail(struct xfs_da_args *args, | |
34 | struct xfs_buf *bp); | |
ba0f32d4 | 35 | |
24df33b4 DC |
36 | /* |
37 | * Check the internal consistency of a leaf1 block. | |
38 | * Pop an assert if something is wrong. | |
39 | */ | |
40 | #ifdef DEBUG | |
a6a781a5 | 41 | static xfs_failaddr_t |
24df33b4 | 42 | xfs_dir3_leaf1_check( |
4141956a | 43 | struct xfs_inode *dp, |
24df33b4 DC |
44 | struct xfs_buf *bp) |
45 | { | |
46 | struct xfs_dir2_leaf *leaf = bp->b_addr; | |
47 | struct xfs_dir3_icleaf_hdr leafhdr; | |
48 | ||
01ba43b8 | 49 | dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
24df33b4 DC |
50 | |
51 | if (leafhdr.magic == XFS_DIR3_LEAF1_MAGIC) { | |
52 | struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr; | |
53 | if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn) | |
a6a781a5 | 54 | return __this_address; |
24df33b4 | 55 | } else if (leafhdr.magic != XFS_DIR2_LEAF1_MAGIC) |
a6a781a5 | 56 | return __this_address; |
24df33b4 | 57 | |
4141956a | 58 | return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf); |
24df33b4 | 59 | } |
a6a781a5 DW |
60 | |
61 | static inline void | |
62 | xfs_dir3_leaf_check( | |
63 | struct xfs_inode *dp, | |
64 | struct xfs_buf *bp) | |
65 | { | |
66 | xfs_failaddr_t fa; | |
67 | ||
68 | fa = xfs_dir3_leaf1_check(dp, bp); | |
69 | if (!fa) | |
70 | return; | |
71 | xfs_corruption_error(__func__, XFS_ERRLEVEL_LOW, dp->i_mount, | |
2551a530 DW |
72 | bp->b_addr, BBTOB(bp->b_length), __FILE__, __LINE__, |
73 | fa); | |
a6a781a5 DW |
74 | ASSERT(0); |
75 | } | |
24df33b4 | 76 | #else |
4141956a | 77 | #define xfs_dir3_leaf_check(dp, bp) |
24df33b4 DC |
78 | #endif |
79 | ||
a6a781a5 | 80 | xfs_failaddr_t |
24df33b4 DC |
81 | xfs_dir3_leaf_check_int( |
82 | struct xfs_mount *mp, | |
4141956a | 83 | struct xfs_inode *dp, |
24df33b4 DC |
84 | struct xfs_dir3_icleaf_hdr *hdr, |
85 | struct xfs_dir2_leaf *leaf) | |
86 | { | |
87 | struct xfs_dir2_leaf_entry *ents; | |
88 | xfs_dir2_leaf_tail_t *ltp; | |
89 | int stale; | |
90 | int i; | |
4141956a | 91 | const struct xfs_dir_ops *ops; |
01ba43b8 | 92 | struct xfs_dir3_icleaf_hdr leafhdr; |
8f66193c | 93 | struct xfs_da_geometry *geo = mp->m_dir_geo; |
24df33b4 | 94 | |
4141956a DC |
95 | /* |
96 | * we can be passed a null dp here from a verifier, so we need to go the | |
97 | * hard way to get them. | |
98 | */ | |
99 | ops = xfs_dir_get_ops(mp, dp); | |
100 | ||
01ba43b8 DC |
101 | if (!hdr) { |
102 | ops->leaf_hdr_from_disk(&leafhdr, leaf); | |
103 | hdr = &leafhdr; | |
104 | } | |
105 | ||
4141956a | 106 | ents = ops->leaf_ents_p(leaf); |
8f66193c | 107 | ltp = xfs_dir2_leaf_tail_p(geo, leaf); |
24df33b4 DC |
108 | |
109 | /* | |
110 | * XXX (dgc): This value is not restrictive enough. | |
111 | * Should factor in the size of the bests table as well. | |
112 | * We can deduce a value for that from di_size. | |
113 | */ | |
8f66193c | 114 | if (hdr->count > ops->leaf_max_ents(geo)) |
a6a781a5 | 115 | return __this_address; |
24df33b4 DC |
116 | |
117 | /* Leaves and bests don't overlap in leaf format. */ | |
118 | if ((hdr->magic == XFS_DIR2_LEAF1_MAGIC || | |
119 | hdr->magic == XFS_DIR3_LEAF1_MAGIC) && | |
120 | (char *)&ents[hdr->count] > (char *)xfs_dir2_leaf_bests_p(ltp)) | |
a6a781a5 | 121 | return __this_address; |
24df33b4 DC |
122 | |
123 | /* Check hash value order, count stale entries. */ | |
124 | for (i = stale = 0; i < hdr->count; i++) { | |
125 | if (i + 1 < hdr->count) { | |
126 | if (be32_to_cpu(ents[i].hashval) > | |
127 | be32_to_cpu(ents[i + 1].hashval)) | |
a6a781a5 | 128 | return __this_address; |
24df33b4 DC |
129 | } |
130 | if (ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) | |
131 | stale++; | |
132 | } | |
133 | if (hdr->stale != stale) | |
a6a781a5 DW |
134 | return __this_address; |
135 | return NULL; | |
24df33b4 DC |
136 | } |
137 | ||
0f295a21 DC |
138 | /* |
139 | * We verify the magic numbers before decoding the leaf header so that on debug | |
140 | * kernels we don't get assertion failures in xfs_dir3_leaf_hdr_from_disk() due | |
141 | * to incorrect magic numbers. | |
142 | */ | |
a6a781a5 | 143 | static xfs_failaddr_t |
24df33b4 | 144 | xfs_dir3_leaf_verify( |
09f42019 | 145 | struct xfs_buf *bp) |
24df33b4 DC |
146 | { |
147 | struct xfs_mount *mp = bp->b_target->bt_mount; | |
148 | struct xfs_dir2_leaf *leaf = bp->b_addr; | |
8764f983 | 149 | xfs_failaddr_t fa; |
24df33b4 | 150 | |
8764f983 BF |
151 | fa = xfs_da3_blkinfo_verify(bp, bp->b_addr); |
152 | if (fa) | |
153 | return fa; | |
0f295a21 | 154 | |
01ba43b8 | 155 | return xfs_dir3_leaf_check_int(mp, NULL, NULL, leaf); |
24df33b4 DC |
156 | } |
157 | ||
158 | static void | |
09f42019 BF |
159 | xfs_dir3_leaf_read_verify( |
160 | struct xfs_buf *bp) | |
24df33b4 DC |
161 | { |
162 | struct xfs_mount *mp = bp->b_target->bt_mount; | |
bc1a09b8 | 163 | xfs_failaddr_t fa; |
24df33b4 | 164 | |
ce5028cf ES |
165 | if (xfs_sb_version_hascrc(&mp->m_sb) && |
166 | !xfs_buf_verify_cksum(bp, XFS_DIR3_LEAF_CRC_OFF)) | |
bc1a09b8 DW |
167 | xfs_verifier_error(bp, -EFSBADCRC, __this_address); |
168 | else { | |
09f42019 | 169 | fa = xfs_dir3_leaf_verify(bp); |
bc1a09b8 DW |
170 | if (fa) |
171 | xfs_verifier_error(bp, -EFSCORRUPTED, fa); | |
172 | } | |
24df33b4 DC |
173 | } |
174 | ||
175 | static void | |
09f42019 BF |
176 | xfs_dir3_leaf_write_verify( |
177 | struct xfs_buf *bp) | |
e6f7667c DC |
178 | { |
179 | struct xfs_mount *mp = bp->b_target->bt_mount; | |
fb1755a6 | 180 | struct xfs_buf_log_item *bip = bp->b_log_item; |
24df33b4 | 181 | struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr; |
bc1a09b8 | 182 | xfs_failaddr_t fa; |
e6f7667c | 183 | |
09f42019 | 184 | fa = xfs_dir3_leaf_verify(bp); |
bc1a09b8 DW |
185 | if (fa) { |
186 | xfs_verifier_error(bp, -EFSCORRUPTED, fa); | |
24df33b4 | 187 | return; |
e6f7667c | 188 | } |
24df33b4 DC |
189 | |
190 | if (!xfs_sb_version_hascrc(&mp->m_sb)) | |
191 | return; | |
192 | ||
193 | if (bip) | |
194 | hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn); | |
195 | ||
f1dbcd7e | 196 | xfs_buf_update_cksum(bp, XFS_DIR3_LEAF_CRC_OFF); |
612cfbfe | 197 | } |
e6f7667c | 198 | |
d75afeb3 | 199 | const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = { |
233135b7 | 200 | .name = "xfs_dir3_leaf1", |
15baadf7 DW |
201 | .magic16 = { cpu_to_be16(XFS_DIR2_LEAF1_MAGIC), |
202 | cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) }, | |
09f42019 BF |
203 | .verify_read = xfs_dir3_leaf_read_verify, |
204 | .verify_write = xfs_dir3_leaf_write_verify, | |
205 | .verify_struct = xfs_dir3_leaf_verify, | |
1813dd64 DC |
206 | }; |
207 | ||
24df33b4 | 208 | const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = { |
233135b7 | 209 | .name = "xfs_dir3_leafn", |
15baadf7 DW |
210 | .magic16 = { cpu_to_be16(XFS_DIR2_LEAFN_MAGIC), |
211 | cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) }, | |
09f42019 BF |
212 | .verify_read = xfs_dir3_leaf_read_verify, |
213 | .verify_write = xfs_dir3_leaf_write_verify, | |
214 | .verify_struct = xfs_dir3_leaf_verify, | |
1813dd64 DC |
215 | }; |
216 | ||
26788097 | 217 | int |
24df33b4 | 218 | xfs_dir3_leaf_read( |
e6f7667c DC |
219 | struct xfs_trans *tp, |
220 | struct xfs_inode *dp, | |
221 | xfs_dablk_t fbno, | |
222 | xfs_daddr_t mappedbno, | |
223 | struct xfs_buf **bpp) | |
224 | { | |
d75afeb3 DC |
225 | int err; |
226 | ||
227 | err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp, | |
24df33b4 | 228 | XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops); |
cd87d867 | 229 | if (!err && tp && *bpp) |
61fe135c | 230 | xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF); |
d75afeb3 | 231 | return err; |
e6f7667c DC |
232 | } |
233 | ||
234 | int | |
24df33b4 | 235 | xfs_dir3_leafn_read( |
e6f7667c DC |
236 | struct xfs_trans *tp, |
237 | struct xfs_inode *dp, | |
238 | xfs_dablk_t fbno, | |
239 | xfs_daddr_t mappedbno, | |
240 | struct xfs_buf **bpp) | |
241 | { | |
d75afeb3 DC |
242 | int err; |
243 | ||
244 | err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp, | |
24df33b4 | 245 | XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops); |
cd87d867 | 246 | if (!err && tp && *bpp) |
61fe135c | 247 | xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF); |
d75afeb3 | 248 | return err; |
24df33b4 DC |
249 | } |
250 | ||
251 | /* | |
252 | * Initialize a new leaf block, leaf1 or leafn magic accepted. | |
253 | */ | |
254 | static void | |
255 | xfs_dir3_leaf_init( | |
256 | struct xfs_mount *mp, | |
d75afeb3 | 257 | struct xfs_trans *tp, |
24df33b4 DC |
258 | struct xfs_buf *bp, |
259 | xfs_ino_t owner, | |
c8ce540d | 260 | uint16_t type) |
24df33b4 DC |
261 | { |
262 | struct xfs_dir2_leaf *leaf = bp->b_addr; | |
263 | ||
264 | ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC); | |
265 | ||
266 | if (xfs_sb_version_hascrc(&mp->m_sb)) { | |
267 | struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr; | |
268 | ||
269 | memset(leaf3, 0, sizeof(*leaf3)); | |
270 | ||
271 | leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC) | |
272 | ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) | |
273 | : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC); | |
274 | leaf3->info.blkno = cpu_to_be64(bp->b_bn); | |
275 | leaf3->info.owner = cpu_to_be64(owner); | |
ce748eaa | 276 | uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_meta_uuid); |
24df33b4 DC |
277 | } else { |
278 | memset(leaf, 0, sizeof(*leaf)); | |
279 | leaf->hdr.info.magic = cpu_to_be16(type); | |
280 | } | |
281 | ||
282 | /* | |
283 | * If it's a leaf-format directory initialize the tail. | |
284 | * Caller is responsible for initialising the bests table. | |
285 | */ | |
286 | if (type == XFS_DIR2_LEAF1_MAGIC) { | |
287 | struct xfs_dir2_leaf_tail *ltp; | |
288 | ||
8f66193c | 289 | ltp = xfs_dir2_leaf_tail_p(mp->m_dir_geo, leaf); |
24df33b4 DC |
290 | ltp->bestcount = 0; |
291 | bp->b_ops = &xfs_dir3_leaf1_buf_ops; | |
61fe135c | 292 | xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF); |
d75afeb3 | 293 | } else { |
24df33b4 | 294 | bp->b_ops = &xfs_dir3_leafn_buf_ops; |
61fe135c | 295 | xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF); |
d75afeb3 | 296 | } |
24df33b4 DC |
297 | } |
298 | ||
299 | int | |
300 | xfs_dir3_leaf_get_buf( | |
301 | xfs_da_args_t *args, | |
302 | xfs_dir2_db_t bno, | |
303 | struct xfs_buf **bpp, | |
c8ce540d | 304 | uint16_t magic) |
24df33b4 DC |
305 | { |
306 | struct xfs_inode *dp = args->dp; | |
307 | struct xfs_trans *tp = args->trans; | |
308 | struct xfs_mount *mp = dp->i_mount; | |
309 | struct xfs_buf *bp; | |
310 | int error; | |
311 | ||
312 | ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC); | |
30028030 DC |
313 | ASSERT(bno >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET) && |
314 | bno < xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET)); | |
24df33b4 | 315 | |
2998ab1d DC |
316 | error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, bno), |
317 | -1, &bp, XFS_DATA_FORK); | |
24df33b4 DC |
318 | if (error) |
319 | return error; | |
320 | ||
d75afeb3 | 321 | xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic); |
bc85178a | 322 | xfs_dir3_leaf_log_header(args, bp); |
24df33b4 | 323 | if (magic == XFS_DIR2_LEAF1_MAGIC) |
bc85178a | 324 | xfs_dir3_leaf_log_tail(args, bp); |
24df33b4 DC |
325 | *bpp = bp; |
326 | return 0; | |
e6f7667c | 327 | } |
1da177e4 LT |
328 | |
329 | /* | |
330 | * Convert a block form directory to a leaf form directory. | |
331 | */ | |
332 | int /* error */ | |
333 | xfs_dir2_block_to_leaf( | |
334 | xfs_da_args_t *args, /* operation arguments */ | |
1d9025e5 | 335 | struct xfs_buf *dbp) /* input block's buffer */ |
1da177e4 | 336 | { |
68b3a102 | 337 | __be16 *bestsp; /* leaf's bestsp entries */ |
1da177e4 | 338 | xfs_dablk_t blkno; /* leaf block's bno */ |
4f6ae1a4 | 339 | xfs_dir2_data_hdr_t *hdr; /* block header */ |
1da177e4 LT |
340 | xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */ |
341 | xfs_dir2_block_tail_t *btp; /* block's tail */ | |
342 | xfs_inode_t *dp; /* incore directory inode */ | |
343 | int error; /* error return code */ | |
1d9025e5 | 344 | struct xfs_buf *lbp; /* leaf block's buffer */ |
1da177e4 LT |
345 | xfs_dir2_db_t ldb; /* leaf block's bno */ |
346 | xfs_dir2_leaf_t *leaf; /* leaf structure */ | |
347 | xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */ | |
1da177e4 LT |
348 | int needlog; /* need to log block header */ |
349 | int needscan; /* need to rescan bestfree */ | |
350 | xfs_trans_t *tp; /* transaction pointer */ | |
33363fee | 351 | struct xfs_dir2_data_free *bf; |
24df33b4 DC |
352 | struct xfs_dir2_leaf_entry *ents; |
353 | struct xfs_dir3_icleaf_hdr leafhdr; | |
1da177e4 | 354 | |
0b1b213f CH |
355 | trace_xfs_dir2_block_to_leaf(args); |
356 | ||
1da177e4 | 357 | dp = args->dp; |
1da177e4 LT |
358 | tp = args->trans; |
359 | /* | |
360 | * Add the leaf block to the inode. | |
361 | * This interface will only put blocks in the leaf/node range. | |
362 | * Since that's empty now, we'll get the root (block 0 in range). | |
363 | */ | |
364 | if ((error = xfs_da_grow_inode(args, &blkno))) { | |
365 | return error; | |
366 | } | |
2998ab1d | 367 | ldb = xfs_dir2_da_to_db(args->geo, blkno); |
30028030 | 368 | ASSERT(ldb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET)); |
1da177e4 LT |
369 | /* |
370 | * Initialize the leaf block, get a buffer for it. | |
371 | */ | |
24df33b4 DC |
372 | error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC); |
373 | if (error) | |
1da177e4 | 374 | return error; |
24df33b4 | 375 | |
1d9025e5 DC |
376 | leaf = lbp->b_addr; |
377 | hdr = dbp->b_addr; | |
33363fee | 378 | xfs_dir3_data_check(dp, dbp); |
8f66193c | 379 | btp = xfs_dir2_block_tail_p(args->geo, hdr); |
bbaaf538 | 380 | blp = xfs_dir2_block_leaf_p(btp); |
2ca98774 | 381 | bf = dp->d_ops->data_bestfree_p(hdr); |
4141956a | 382 | ents = dp->d_ops->leaf_ents_p(leaf); |
24df33b4 | 383 | |
1da177e4 LT |
384 | /* |
385 | * Set the counts in the leaf header. | |
386 | */ | |
01ba43b8 | 387 | dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
24df33b4 DC |
388 | leafhdr.count = be32_to_cpu(btp->count); |
389 | leafhdr.stale = be32_to_cpu(btp->stale); | |
01ba43b8 | 390 | dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr); |
bc85178a | 391 | xfs_dir3_leaf_log_header(args, lbp); |
24df33b4 | 392 | |
1da177e4 LT |
393 | /* |
394 | * Could compact these but I think we always do the conversion | |
395 | * after squeezing out stale entries. | |
396 | */ | |
24df33b4 | 397 | memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t)); |
bc85178a | 398 | xfs_dir3_leaf_log_ents(args, lbp, 0, leafhdr.count - 1); |
1da177e4 LT |
399 | needscan = 0; |
400 | needlog = 1; | |
401 | /* | |
402 | * Make the space formerly occupied by the leaf entries and block | |
403 | * tail be free. | |
404 | */ | |
bc85178a | 405 | xfs_dir2_data_make_free(args, dbp, |
4f6ae1a4 | 406 | (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr), |
8f66193c | 407 | (xfs_dir2_data_aoff_t)((char *)hdr + args->geo->blksize - |
1da177e4 LT |
408 | (char *)blp), |
409 | &needlog, &needscan); | |
410 | /* | |
411 | * Fix up the block header, make it a data block. | |
412 | */ | |
33363fee | 413 | dbp->b_ops = &xfs_dir3_data_buf_ops; |
61fe135c | 414 | xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF); |
33363fee DC |
415 | if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC)) |
416 | hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC); | |
417 | else | |
418 | hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC); | |
419 | ||
1da177e4 | 420 | if (needscan) |
9d23fc85 | 421 | xfs_dir2_data_freescan(dp, hdr, &needlog); |
1da177e4 LT |
422 | /* |
423 | * Set up leaf tail and bests table. | |
424 | */ | |
8f66193c | 425 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
afbcb3f9 | 426 | ltp->bestcount = cpu_to_be32(1); |
bbaaf538 | 427 | bestsp = xfs_dir2_leaf_bests_p(ltp); |
f5f3d9b0 | 428 | bestsp[0] = bf[0].length; |
1da177e4 LT |
429 | /* |
430 | * Log the data header and leaf bests table. | |
431 | */ | |
432 | if (needlog) | |
bc85178a | 433 | xfs_dir2_data_log_header(args, dbp); |
4141956a | 434 | xfs_dir3_leaf_check(dp, lbp); |
33363fee | 435 | xfs_dir3_data_check(dp, dbp); |
bc85178a | 436 | xfs_dir3_leaf_log_bests(args, lbp, 0, 0); |
1da177e4 LT |
437 | return 0; |
438 | } | |
439 | ||
a230a1df | 440 | STATIC void |
24df33b4 DC |
441 | xfs_dir3_leaf_find_stale( |
442 | struct xfs_dir3_icleaf_hdr *leafhdr, | |
443 | struct xfs_dir2_leaf_entry *ents, | |
a230a1df CH |
444 | int index, |
445 | int *lowstale, | |
446 | int *highstale) | |
447 | { | |
448 | /* | |
449 | * Find the first stale entry before our index, if any. | |
450 | */ | |
451 | for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) { | |
24df33b4 | 452 | if (ents[*lowstale].address == |
a230a1df CH |
453 | cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) |
454 | break; | |
455 | } | |
456 | ||
457 | /* | |
458 | * Find the first stale entry at or after our index, if any. | |
459 | * Stop if the result would require moving more entries than using | |
460 | * lowstale. | |
461 | */ | |
24df33b4 DC |
462 | for (*highstale = index; *highstale < leafhdr->count; ++*highstale) { |
463 | if (ents[*highstale].address == | |
a230a1df CH |
464 | cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) |
465 | break; | |
466 | if (*lowstale >= 0 && index - *lowstale <= *highstale - index) | |
467 | break; | |
468 | } | |
469 | } | |
470 | ||
4fb44c82 | 471 | struct xfs_dir2_leaf_entry * |
24df33b4 DC |
472 | xfs_dir3_leaf_find_entry( |
473 | struct xfs_dir3_icleaf_hdr *leafhdr, | |
474 | struct xfs_dir2_leaf_entry *ents, | |
4fb44c82 CH |
475 | int index, /* leaf table position */ |
476 | int compact, /* need to compact leaves */ | |
477 | int lowstale, /* index of prev stale leaf */ | |
478 | int highstale, /* index of next stale leaf */ | |
479 | int *lfloglow, /* low leaf logging index */ | |
480 | int *lfloghigh) /* high leaf logging index */ | |
481 | { | |
24df33b4 | 482 | if (!leafhdr->stale) { |
4fb44c82 CH |
483 | xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */ |
484 | ||
485 | /* | |
486 | * Now we need to make room to insert the leaf entry. | |
487 | * | |
488 | * If there are no stale entries, just insert a hole at index. | |
489 | */ | |
24df33b4 DC |
490 | lep = &ents[index]; |
491 | if (index < leafhdr->count) | |
4fb44c82 | 492 | memmove(lep + 1, lep, |
24df33b4 | 493 | (leafhdr->count - index) * sizeof(*lep)); |
4fb44c82 CH |
494 | |
495 | /* | |
496 | * Record low and high logging indices for the leaf. | |
497 | */ | |
498 | *lfloglow = index; | |
24df33b4 | 499 | *lfloghigh = leafhdr->count++; |
4fb44c82 CH |
500 | return lep; |
501 | } | |
502 | ||
503 | /* | |
504 | * There are stale entries. | |
505 | * | |
506 | * We will use one of them for the new entry. It's probably not at | |
507 | * the right location, so we'll have to shift some up or down first. | |
508 | * | |
509 | * If we didn't compact before, we need to find the nearest stale | |
510 | * entries before and after our insertion point. | |
511 | */ | |
a230a1df | 512 | if (compact == 0) |
24df33b4 DC |
513 | xfs_dir3_leaf_find_stale(leafhdr, ents, index, |
514 | &lowstale, &highstale); | |
4fb44c82 CH |
515 | |
516 | /* | |
517 | * If the low one is better, use it. | |
518 | */ | |
519 | if (lowstale >= 0 && | |
24df33b4 | 520 | (highstale == leafhdr->count || |
4fb44c82 CH |
521 | index - lowstale - 1 < highstale - index)) { |
522 | ASSERT(index - lowstale - 1 >= 0); | |
24df33b4 | 523 | ASSERT(ents[lowstale].address == |
69ef921b | 524 | cpu_to_be32(XFS_DIR2_NULL_DATAPTR)); |
4fb44c82 CH |
525 | |
526 | /* | |
527 | * Copy entries up to cover the stale entry and make room | |
528 | * for the new entry. | |
529 | */ | |
530 | if (index - lowstale - 1 > 0) { | |
24df33b4 | 531 | memmove(&ents[lowstale], &ents[lowstale + 1], |
4fb44c82 | 532 | (index - lowstale - 1) * |
24df33b4 | 533 | sizeof(xfs_dir2_leaf_entry_t)); |
4fb44c82 | 534 | } |
9bb54cb5 DC |
535 | *lfloglow = min(lowstale, *lfloglow); |
536 | *lfloghigh = max(index - 1, *lfloghigh); | |
24df33b4 DC |
537 | leafhdr->stale--; |
538 | return &ents[index - 1]; | |
4fb44c82 CH |
539 | } |
540 | ||
541 | /* | |
542 | * The high one is better, so use that one. | |
543 | */ | |
544 | ASSERT(highstale - index >= 0); | |
24df33b4 | 545 | ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)); |
4fb44c82 CH |
546 | |
547 | /* | |
548 | * Copy entries down to cover the stale entry and make room for the | |
549 | * new entry. | |
550 | */ | |
551 | if (highstale - index > 0) { | |
24df33b4 | 552 | memmove(&ents[index + 1], &ents[index], |
4fb44c82 CH |
553 | (highstale - index) * sizeof(xfs_dir2_leaf_entry_t)); |
554 | } | |
9bb54cb5 DC |
555 | *lfloglow = min(index, *lfloglow); |
556 | *lfloghigh = max(highstale, *lfloghigh); | |
24df33b4 DC |
557 | leafhdr->stale--; |
558 | return &ents[index]; | |
4fb44c82 CH |
559 | } |
560 | ||
1da177e4 LT |
561 | /* |
562 | * Add an entry to a leaf form directory. | |
563 | */ | |
564 | int /* error */ | |
565 | xfs_dir2_leaf_addname( | |
6ef50fe9 | 566 | struct xfs_da_args *args) /* operation arguments */ |
1da177e4 | 567 | { |
6ef50fe9 DW |
568 | struct xfs_dir3_icleaf_hdr leafhdr; |
569 | struct xfs_trans *tp = args->trans; | |
68b3a102 | 570 | __be16 *bestsp; /* freespace table in leaf */ |
6ef50fe9 | 571 | __be16 *tagp; /* end of data entry */ |
1d9025e5 | 572 | struct xfs_buf *dbp; /* data block buffer */ |
6ef50fe9 DW |
573 | struct xfs_buf *lbp; /* leaf's buffer */ |
574 | struct xfs_dir2_leaf *leaf; /* leaf structure */ | |
575 | struct xfs_inode *dp = args->dp; /* incore directory inode */ | |
576 | struct xfs_dir2_data_hdr *hdr; /* data block header */ | |
577 | struct xfs_dir2_data_entry *dep; /* data block entry */ | |
578 | struct xfs_dir2_leaf_entry *lep; /* leaf entry table pointer */ | |
579 | struct xfs_dir2_leaf_entry *ents; | |
580 | struct xfs_dir2_data_unused *dup; /* data unused entry */ | |
581 | struct xfs_dir2_leaf_tail *ltp; /* leaf tail pointer */ | |
582 | struct xfs_dir2_data_free *bf; /* bestfree table */ | |
583 | int compact; /* need to compact leaves */ | |
1da177e4 LT |
584 | int error; /* error return value */ |
585 | int grown; /* allocated new data block */ | |
f51fac68 | 586 | int highstale = 0; /* index of next stale leaf */ |
1da177e4 LT |
587 | int i; /* temporary, index */ |
588 | int index; /* leaf table position */ | |
1da177e4 | 589 | int length; /* length of new entry */ |
1da177e4 LT |
590 | int lfloglow; /* low leaf logging index */ |
591 | int lfloghigh; /* high leaf logging index */ | |
f51fac68 | 592 | int lowstale = 0; /* index of prev stale leaf */ |
1da177e4 LT |
593 | int needbytes; /* leaf block bytes needed */ |
594 | int needlog; /* need to log data header */ | |
595 | int needscan; /* need to rescan data free */ | |
1da177e4 LT |
596 | xfs_dir2_db_t use_block; /* data block number */ |
597 | ||
0b1b213f CH |
598 | trace_xfs_dir2_leaf_addname(args); |
599 | ||
7dda6e86 | 600 | error = xfs_dir3_leaf_read(tp, dp, args->geo->leafblk, -1, &lbp); |
4bb20a83 | 601 | if (error) |
1da177e4 | 602 | return error; |
e6f7667c | 603 | |
1da177e4 LT |
604 | /* |
605 | * Look up the entry by hash value and name. | |
606 | * We know it's not there, our caller has already done a lookup. | |
607 | * So the index is of the entry to insert in front of. | |
608 | * But if there are dup hash values the index is of the first of those. | |
609 | */ | |
610 | index = xfs_dir2_leaf_search_hash(args, lbp); | |
1d9025e5 | 611 | leaf = lbp->b_addr; |
8f66193c | 612 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
4141956a | 613 | ents = dp->d_ops->leaf_ents_p(leaf); |
01ba43b8 | 614 | dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
bbaaf538 | 615 | bestsp = xfs_dir2_leaf_bests_p(ltp); |
9d23fc85 | 616 | length = dp->d_ops->data_entsize(args->namelen); |
24df33b4 | 617 | |
1da177e4 LT |
618 | /* |
619 | * See if there are any entries with the same hash value | |
620 | * and space in their block for the new entry. | |
621 | * This is good because it puts multiple same-hash value entries | |
622 | * in a data block, improving the lookup of those entries. | |
623 | */ | |
24df33b4 DC |
624 | for (use_block = -1, lep = &ents[index]; |
625 | index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval; | |
1da177e4 | 626 | index++, lep++) { |
3c1f9c15 | 627 | if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR) |
1da177e4 | 628 | continue; |
30028030 | 629 | i = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address)); |
afbcb3f9 | 630 | ASSERT(i < be32_to_cpu(ltp->bestcount)); |
69ef921b | 631 | ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF)); |
68b3a102 | 632 | if (be16_to_cpu(bestsp[i]) >= length) { |
1da177e4 LT |
633 | use_block = i; |
634 | break; | |
635 | } | |
636 | } | |
637 | /* | |
638 | * Didn't find a block yet, linear search all the data blocks. | |
639 | */ | |
640 | if (use_block == -1) { | |
afbcb3f9 | 641 | for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) { |
1da177e4 LT |
642 | /* |
643 | * Remember a block we see that's missing. | |
644 | */ | |
69ef921b CH |
645 | if (bestsp[i] == cpu_to_be16(NULLDATAOFF) && |
646 | use_block == -1) | |
1da177e4 | 647 | use_block = i; |
68b3a102 | 648 | else if (be16_to_cpu(bestsp[i]) >= length) { |
1da177e4 LT |
649 | use_block = i; |
650 | break; | |
651 | } | |
652 | } | |
653 | } | |
654 | /* | |
655 | * How many bytes do we need in the leaf block? | |
656 | */ | |
2282396d | 657 | needbytes = 0; |
24df33b4 | 658 | if (!leafhdr.stale) |
2282396d CH |
659 | needbytes += sizeof(xfs_dir2_leaf_entry_t); |
660 | if (use_block == -1) | |
661 | needbytes += sizeof(xfs_dir2_data_off_t); | |
662 | ||
1da177e4 LT |
663 | /* |
664 | * Now kill use_block if it refers to a missing block, so we | |
665 | * can use it as an indication of allocation needed. | |
666 | */ | |
69ef921b | 667 | if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF)) |
1da177e4 LT |
668 | use_block = -1; |
669 | /* | |
670 | * If we don't have enough free bytes but we can make enough | |
671 | * by compacting out stale entries, we'll do that. | |
672 | */ | |
24df33b4 DC |
673 | if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes && |
674 | leafhdr.stale > 1) | |
1da177e4 | 675 | compact = 1; |
24df33b4 | 676 | |
1da177e4 LT |
677 | /* |
678 | * Otherwise if we don't have enough free bytes we need to | |
679 | * convert to node form. | |
680 | */ | |
24df33b4 | 681 | else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) { |
1da177e4 LT |
682 | /* |
683 | * Just checking or no space reservation, give up. | |
684 | */ | |
6a178100 BN |
685 | if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || |
686 | args->total == 0) { | |
1d9025e5 | 687 | xfs_trans_brelse(tp, lbp); |
2451337d | 688 | return -ENOSPC; |
1da177e4 LT |
689 | } |
690 | /* | |
691 | * Convert to node form. | |
692 | */ | |
693 | error = xfs_dir2_leaf_to_node(args, lbp); | |
1da177e4 LT |
694 | if (error) |
695 | return error; | |
696 | /* | |
697 | * Then add the new entry. | |
698 | */ | |
699 | return xfs_dir2_node_addname(args); | |
700 | } | |
701 | /* | |
702 | * Otherwise it will fit without compaction. | |
703 | */ | |
704 | else | |
705 | compact = 0; | |
706 | /* | |
707 | * If just checking, then it will fit unless we needed to allocate | |
708 | * a new data block. | |
709 | */ | |
6a178100 | 710 | if (args->op_flags & XFS_DA_OP_JUSTCHECK) { |
1d9025e5 | 711 | xfs_trans_brelse(tp, lbp); |
2451337d | 712 | return use_block == -1 ? -ENOSPC : 0; |
1da177e4 LT |
713 | } |
714 | /* | |
715 | * If no allocations are allowed, return now before we've | |
716 | * changed anything. | |
717 | */ | |
718 | if (args->total == 0 && use_block == -1) { | |
1d9025e5 | 719 | xfs_trans_brelse(tp, lbp); |
2451337d | 720 | return -ENOSPC; |
1da177e4 LT |
721 | } |
722 | /* | |
723 | * Need to compact the leaf entries, removing stale ones. | |
724 | * Leave one stale entry behind - the one closest to our | |
725 | * insertion index - and we'll shift that one to our insertion | |
726 | * point later. | |
727 | */ | |
728 | if (compact) { | |
24df33b4 DC |
729 | xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale, |
730 | &highstale, &lfloglow, &lfloghigh); | |
1da177e4 LT |
731 | } |
732 | /* | |
733 | * There are stale entries, so we'll need log-low and log-high | |
734 | * impossibly bad values later. | |
735 | */ | |
24df33b4 DC |
736 | else if (leafhdr.stale) { |
737 | lfloglow = leafhdr.count; | |
1da177e4 LT |
738 | lfloghigh = -1; |
739 | } | |
740 | /* | |
741 | * If there was no data block space found, we need to allocate | |
742 | * a new one. | |
743 | */ | |
744 | if (use_block == -1) { | |
745 | /* | |
746 | * Add the new data block. | |
747 | */ | |
748 | if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, | |
749 | &use_block))) { | |
1d9025e5 | 750 | xfs_trans_brelse(tp, lbp); |
1da177e4 LT |
751 | return error; |
752 | } | |
753 | /* | |
754 | * Initialize the block. | |
755 | */ | |
f5f3d9b0 | 756 | if ((error = xfs_dir3_data_init(args, use_block, &dbp))) { |
1d9025e5 | 757 | xfs_trans_brelse(tp, lbp); |
1da177e4 LT |
758 | return error; |
759 | } | |
760 | /* | |
761 | * If we're adding a new data block on the end we need to | |
762 | * extend the bests table. Copy it up one entry. | |
763 | */ | |
afbcb3f9 | 764 | if (use_block >= be32_to_cpu(ltp->bestcount)) { |
1da177e4 LT |
765 | bestsp--; |
766 | memmove(&bestsp[0], &bestsp[1], | |
afbcb3f9 | 767 | be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0])); |
413d57c9 | 768 | be32_add_cpu(<p->bestcount, 1); |
bc85178a DC |
769 | xfs_dir3_leaf_log_tail(args, lbp); |
770 | xfs_dir3_leaf_log_bests(args, lbp, 0, | |
771 | be32_to_cpu(ltp->bestcount) - 1); | |
1da177e4 LT |
772 | } |
773 | /* | |
774 | * If we're filling in a previously empty block just log it. | |
775 | */ | |
776 | else | |
bc85178a | 777 | xfs_dir3_leaf_log_bests(args, lbp, use_block, use_block); |
1d9025e5 | 778 | hdr = dbp->b_addr; |
2ca98774 | 779 | bf = dp->d_ops->data_bestfree_p(hdr); |
33363fee | 780 | bestsp[use_block] = bf[0].length; |
1da177e4 | 781 | grown = 1; |
e4813572 DC |
782 | } else { |
783 | /* | |
784 | * Already had space in some data block. | |
785 | * Just read that one in. | |
786 | */ | |
33363fee | 787 | error = xfs_dir3_data_read(tp, dp, |
2998ab1d DC |
788 | xfs_dir2_db_to_da(args->geo, use_block), |
789 | -1, &dbp); | |
4bb20a83 | 790 | if (error) { |
1d9025e5 | 791 | xfs_trans_brelse(tp, lbp); |
1da177e4 LT |
792 | return error; |
793 | } | |
1d9025e5 | 794 | hdr = dbp->b_addr; |
2ca98774 | 795 | bf = dp->d_ops->data_bestfree_p(hdr); |
1da177e4 LT |
796 | grown = 0; |
797 | } | |
1da177e4 LT |
798 | /* |
799 | * Point to the biggest freespace in our data block. | |
800 | */ | |
801 | dup = (xfs_dir2_data_unused_t *) | |
33363fee | 802 | ((char *)hdr + be16_to_cpu(bf[0].offset)); |
1da177e4 LT |
803 | needscan = needlog = 0; |
804 | /* | |
805 | * Mark the initial part of our freespace in use for the new entry. | |
806 | */ | |
6915ef35 DW |
807 | error = xfs_dir2_data_use_free(args, dbp, dup, |
808 | (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), | |
809 | length, &needlog, &needscan); | |
810 | if (error) { | |
811 | xfs_trans_brelse(tp, lbp); | |
812 | return error; | |
813 | } | |
1da177e4 LT |
814 | /* |
815 | * Initialize our new entry (at last). | |
816 | */ | |
817 | dep = (xfs_dir2_data_entry_t *)dup; | |
ff9901c1 | 818 | dep->inumber = cpu_to_be64(args->inumber); |
1da177e4 LT |
819 | dep->namelen = args->namelen; |
820 | memcpy(dep->name, args->name, dep->namelen); | |
9d23fc85 DC |
821 | dp->d_ops->data_put_ftype(dep, args->filetype); |
822 | tagp = dp->d_ops->data_entry_tag_p(dep); | |
c2066e26 | 823 | *tagp = cpu_to_be16((char *)dep - (char *)hdr); |
1da177e4 LT |
824 | /* |
825 | * Need to scan fix up the bestfree table. | |
826 | */ | |
827 | if (needscan) | |
9d23fc85 | 828 | xfs_dir2_data_freescan(dp, hdr, &needlog); |
1da177e4 LT |
829 | /* |
830 | * Need to log the data block's header. | |
831 | */ | |
832 | if (needlog) | |
bc85178a DC |
833 | xfs_dir2_data_log_header(args, dbp); |
834 | xfs_dir2_data_log_entry(args, dbp, dep); | |
1da177e4 LT |
835 | /* |
836 | * If the bests table needs to be changed, do it. | |
837 | * Log the change unless we've already done that. | |
838 | */ | |
33363fee DC |
839 | if (be16_to_cpu(bestsp[use_block]) != be16_to_cpu(bf[0].length)) { |
840 | bestsp[use_block] = bf[0].length; | |
1da177e4 | 841 | if (!grown) |
bc85178a | 842 | xfs_dir3_leaf_log_bests(args, lbp, use_block, use_block); |
1da177e4 | 843 | } |
4fb44c82 | 844 | |
24df33b4 | 845 | lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale, |
4fb44c82 CH |
846 | highstale, &lfloglow, &lfloghigh); |
847 | ||
1da177e4 LT |
848 | /* |
849 | * Fill in the new leaf entry. | |
850 | */ | |
3c1f9c15 | 851 | lep->hashval = cpu_to_be32(args->hashval); |
30028030 DC |
852 | lep->address = cpu_to_be32( |
853 | xfs_dir2_db_off_to_dataptr(args->geo, use_block, | |
3d693c6e | 854 | be16_to_cpu(*tagp))); |
1da177e4 LT |
855 | /* |
856 | * Log the leaf fields and give up the buffers. | |
857 | */ | |
01ba43b8 | 858 | dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr); |
bc85178a DC |
859 | xfs_dir3_leaf_log_header(args, lbp); |
860 | xfs_dir3_leaf_log_ents(args, lbp, lfloglow, lfloghigh); | |
4141956a | 861 | xfs_dir3_leaf_check(dp, lbp); |
33363fee | 862 | xfs_dir3_data_check(dp, dbp); |
1da177e4 LT |
863 | return 0; |
864 | } | |
865 | ||
1da177e4 LT |
866 | /* |
867 | * Compact out any stale entries in the leaf. | |
868 | * Log the header and changed leaf entries, if any. | |
869 | */ | |
870 | void | |
24df33b4 | 871 | xfs_dir3_leaf_compact( |
1da177e4 | 872 | xfs_da_args_t *args, /* operation arguments */ |
24df33b4 | 873 | struct xfs_dir3_icleaf_hdr *leafhdr, |
1d9025e5 | 874 | struct xfs_buf *bp) /* leaf buffer */ |
1da177e4 LT |
875 | { |
876 | int from; /* source leaf index */ | |
877 | xfs_dir2_leaf_t *leaf; /* leaf structure */ | |
878 | int loglow; /* first leaf entry to log */ | |
879 | int to; /* target leaf index */ | |
24df33b4 | 880 | struct xfs_dir2_leaf_entry *ents; |
01ba43b8 | 881 | struct xfs_inode *dp = args->dp; |
1da177e4 | 882 | |
1d9025e5 | 883 | leaf = bp->b_addr; |
24df33b4 | 884 | if (!leafhdr->stale) |
1da177e4 | 885 | return; |
24df33b4 | 886 | |
1da177e4 LT |
887 | /* |
888 | * Compress out the stale entries in place. | |
889 | */ | |
01ba43b8 | 890 | ents = dp->d_ops->leaf_ents_p(leaf); |
24df33b4 DC |
891 | for (from = to = 0, loglow = -1; from < leafhdr->count; from++) { |
892 | if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) | |
1da177e4 LT |
893 | continue; |
894 | /* | |
895 | * Only actually copy the entries that are different. | |
896 | */ | |
897 | if (from > to) { | |
898 | if (loglow == -1) | |
899 | loglow = to; | |
24df33b4 | 900 | ents[to] = ents[from]; |
1da177e4 LT |
901 | } |
902 | to++; | |
903 | } | |
904 | /* | |
905 | * Update and log the header, log the leaf entries. | |
906 | */ | |
24df33b4 DC |
907 | ASSERT(leafhdr->stale == from - to); |
908 | leafhdr->count -= leafhdr->stale; | |
909 | leafhdr->stale = 0; | |
910 | ||
01ba43b8 | 911 | dp->d_ops->leaf_hdr_to_disk(leaf, leafhdr); |
bc85178a | 912 | xfs_dir3_leaf_log_header(args, bp); |
1da177e4 | 913 | if (loglow != -1) |
bc85178a | 914 | xfs_dir3_leaf_log_ents(args, bp, loglow, to - 1); |
1da177e4 LT |
915 | } |
916 | ||
917 | /* | |
918 | * Compact the leaf entries, removing stale ones. | |
919 | * Leave one stale entry behind - the one closest to our | |
920 | * insertion index - and the caller will shift that one to our insertion | |
921 | * point later. | |
922 | * Return new insertion index, where the remaining stale entry is, | |
923 | * and leaf logging indices. | |
924 | */ | |
925 | void | |
24df33b4 DC |
926 | xfs_dir3_leaf_compact_x1( |
927 | struct xfs_dir3_icleaf_hdr *leafhdr, | |
928 | struct xfs_dir2_leaf_entry *ents, | |
1da177e4 LT |
929 | int *indexp, /* insertion index */ |
930 | int *lowstalep, /* out: stale entry before us */ | |
931 | int *highstalep, /* out: stale entry after us */ | |
932 | int *lowlogp, /* out: low log index */ | |
933 | int *highlogp) /* out: high log index */ | |
934 | { | |
935 | int from; /* source copy index */ | |
936 | int highstale; /* stale entry at/after index */ | |
937 | int index; /* insertion index */ | |
938 | int keepstale; /* source index of kept stale */ | |
1da177e4 LT |
939 | int lowstale; /* stale entry before index */ |
940 | int newindex=0; /* new insertion index */ | |
941 | int to; /* destination copy index */ | |
942 | ||
24df33b4 | 943 | ASSERT(leafhdr->stale > 1); |
1da177e4 | 944 | index = *indexp; |
a230a1df | 945 | |
24df33b4 | 946 | xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale); |
a230a1df | 947 | |
1da177e4 LT |
948 | /* |
949 | * Pick the better of lowstale and highstale. | |
950 | */ | |
951 | if (lowstale >= 0 && | |
24df33b4 | 952 | (highstale == leafhdr->count || |
1da177e4 LT |
953 | index - lowstale <= highstale - index)) |
954 | keepstale = lowstale; | |
955 | else | |
956 | keepstale = highstale; | |
957 | /* | |
958 | * Copy the entries in place, removing all the stale entries | |
959 | * except keepstale. | |
960 | */ | |
24df33b4 | 961 | for (from = to = 0; from < leafhdr->count; from++) { |
1da177e4 LT |
962 | /* |
963 | * Notice the new value of index. | |
964 | */ | |
965 | if (index == from) | |
966 | newindex = to; | |
967 | if (from != keepstale && | |
24df33b4 | 968 | ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) { |
1da177e4 LT |
969 | if (from == to) |
970 | *lowlogp = to; | |
971 | continue; | |
972 | } | |
973 | /* | |
974 | * Record the new keepstale value for the insertion. | |
975 | */ | |
976 | if (from == keepstale) | |
977 | lowstale = highstale = to; | |
978 | /* | |
979 | * Copy only the entries that have moved. | |
980 | */ | |
981 | if (from > to) | |
24df33b4 | 982 | ents[to] = ents[from]; |
1da177e4 LT |
983 | to++; |
984 | } | |
985 | ASSERT(from > to); | |
986 | /* | |
987 | * If the insertion point was past the last entry, | |
988 | * set the new insertion point accordingly. | |
989 | */ | |
990 | if (index == from) | |
991 | newindex = to; | |
992 | *indexp = newindex; | |
993 | /* | |
994 | * Adjust the leaf header values. | |
995 | */ | |
24df33b4 DC |
996 | leafhdr->count -= from - to; |
997 | leafhdr->stale = 1; | |
1da177e4 LT |
998 | /* |
999 | * Remember the low/high stale value only in the "right" | |
1000 | * direction. | |
1001 | */ | |
1002 | if (lowstale >= newindex) | |
1003 | lowstale = -1; | |
1004 | else | |
24df33b4 DC |
1005 | highstale = leafhdr->count; |
1006 | *highlogp = leafhdr->count - 1; | |
1da177e4 LT |
1007 | *lowstalep = lowstale; |
1008 | *highstalep = highstale; | |
1009 | } | |
1010 | ||
1da177e4 LT |
1011 | /* |
1012 | * Log the bests entries indicated from a leaf1 block. | |
1013 | */ | |
ba0f32d4 | 1014 | static void |
24df33b4 | 1015 | xfs_dir3_leaf_log_bests( |
bc85178a | 1016 | struct xfs_da_args *args, |
1d9025e5 | 1017 | struct xfs_buf *bp, /* leaf buffer */ |
1da177e4 LT |
1018 | int first, /* first entry to log */ |
1019 | int last) /* last entry to log */ | |
1020 | { | |
68b3a102 NS |
1021 | __be16 *firstb; /* pointer to first entry */ |
1022 | __be16 *lastb; /* pointer to last entry */ | |
24df33b4 | 1023 | struct xfs_dir2_leaf *leaf = bp->b_addr; |
1da177e4 LT |
1024 | xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */ |
1025 | ||
24df33b4 DC |
1026 | ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) || |
1027 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)); | |
1028 | ||
bc85178a | 1029 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
bbaaf538 CH |
1030 | firstb = xfs_dir2_leaf_bests_p(ltp) + first; |
1031 | lastb = xfs_dir2_leaf_bests_p(ltp) + last; | |
bc85178a DC |
1032 | xfs_trans_log_buf(args->trans, bp, |
1033 | (uint)((char *)firstb - (char *)leaf), | |
1da177e4 LT |
1034 | (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1)); |
1035 | } | |
1036 | ||
1037 | /* | |
1038 | * Log the leaf entries indicated from a leaf1 or leafn block. | |
1039 | */ | |
1040 | void | |
24df33b4 | 1041 | xfs_dir3_leaf_log_ents( |
bc85178a | 1042 | struct xfs_da_args *args, |
4141956a DC |
1043 | struct xfs_buf *bp, |
1044 | int first, | |
1045 | int last) | |
1da177e4 LT |
1046 | { |
1047 | xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */ | |
1048 | xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */ | |
24df33b4 DC |
1049 | struct xfs_dir2_leaf *leaf = bp->b_addr; |
1050 | struct xfs_dir2_leaf_entry *ents; | |
1da177e4 | 1051 | |
69ef921b | 1052 | ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) || |
24df33b4 DC |
1053 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) || |
1054 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) || | |
1055 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)); | |
1056 | ||
bc85178a | 1057 | ents = args->dp->d_ops->leaf_ents_p(leaf); |
24df33b4 DC |
1058 | firstlep = &ents[first]; |
1059 | lastlep = &ents[last]; | |
bc85178a DC |
1060 | xfs_trans_log_buf(args->trans, bp, |
1061 | (uint)((char *)firstlep - (char *)leaf), | |
1da177e4 LT |
1062 | (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1)); |
1063 | } | |
1064 | ||
1065 | /* | |
1066 | * Log the header of the leaf1 or leafn block. | |
1067 | */ | |
1068 | void | |
24df33b4 | 1069 | xfs_dir3_leaf_log_header( |
bc85178a | 1070 | struct xfs_da_args *args, |
1d9025e5 | 1071 | struct xfs_buf *bp) |
1da177e4 | 1072 | { |
24df33b4 | 1073 | struct xfs_dir2_leaf *leaf = bp->b_addr; |
1da177e4 | 1074 | |
69ef921b | 1075 | ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) || |
24df33b4 DC |
1076 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) || |
1077 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) || | |
1078 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)); | |
1079 | ||
bc85178a DC |
1080 | xfs_trans_log_buf(args->trans, bp, |
1081 | (uint)((char *)&leaf->hdr - (char *)leaf), | |
1082 | args->dp->d_ops->leaf_hdr_size - 1); | |
1da177e4 LT |
1083 | } |
1084 | ||
1085 | /* | |
1086 | * Log the tail of the leaf1 block. | |
1087 | */ | |
ba0f32d4 | 1088 | STATIC void |
24df33b4 | 1089 | xfs_dir3_leaf_log_tail( |
bc85178a | 1090 | struct xfs_da_args *args, |
1d9025e5 | 1091 | struct xfs_buf *bp) |
1da177e4 | 1092 | { |
24df33b4 | 1093 | struct xfs_dir2_leaf *leaf = bp->b_addr; |
1da177e4 | 1094 | xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */ |
24df33b4 DC |
1095 | |
1096 | ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) || | |
1097 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) || | |
1098 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) || | |
1099 | leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)); | |
1da177e4 | 1100 | |
bc85178a DC |
1101 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
1102 | xfs_trans_log_buf(args->trans, bp, (uint)((char *)ltp - (char *)leaf), | |
1103 | (uint)(args->geo->blksize - 1)); | |
1da177e4 LT |
1104 | } |
1105 | ||
1106 | /* | |
1107 | * Look up the entry referred to by args in the leaf format directory. | |
1108 | * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which | |
1109 | * is also used by the node-format code. | |
1110 | */ | |
1111 | int | |
1112 | xfs_dir2_leaf_lookup( | |
1113 | xfs_da_args_t *args) /* operation arguments */ | |
1114 | { | |
1d9025e5 | 1115 | struct xfs_buf *dbp; /* data block buffer */ |
1da177e4 LT |
1116 | xfs_dir2_data_entry_t *dep; /* data block entry */ |
1117 | xfs_inode_t *dp; /* incore directory inode */ | |
1118 | int error; /* error return code */ | |
1119 | int index; /* found entry index */ | |
1d9025e5 | 1120 | struct xfs_buf *lbp; /* leaf buffer */ |
1da177e4 LT |
1121 | xfs_dir2_leaf_t *leaf; /* leaf structure */ |
1122 | xfs_dir2_leaf_entry_t *lep; /* leaf entry */ | |
1123 | xfs_trans_t *tp; /* transaction pointer */ | |
24df33b4 | 1124 | struct xfs_dir2_leaf_entry *ents; |
1da177e4 | 1125 | |
0b1b213f CH |
1126 | trace_xfs_dir2_leaf_lookup(args); |
1127 | ||
1da177e4 LT |
1128 | /* |
1129 | * Look up name in the leaf block, returning both buffers and index. | |
1130 | */ | |
1131 | if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) { | |
1132 | return error; | |
1133 | } | |
1134 | tp = args->trans; | |
1135 | dp = args->dp; | |
4141956a | 1136 | xfs_dir3_leaf_check(dp, lbp); |
1d9025e5 | 1137 | leaf = lbp->b_addr; |
4141956a | 1138 | ents = dp->d_ops->leaf_ents_p(leaf); |
1da177e4 LT |
1139 | /* |
1140 | * Get to the leaf entry and contained data entry address. | |
1141 | */ | |
24df33b4 DC |
1142 | lep = &ents[index]; |
1143 | ||
1da177e4 LT |
1144 | /* |
1145 | * Point to the data entry. | |
1146 | */ | |
1147 | dep = (xfs_dir2_data_entry_t *) | |
1d9025e5 | 1148 | ((char *)dbp->b_addr + |
30028030 | 1149 | xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address))); |
1da177e4 | 1150 | /* |
384f3ced | 1151 | * Return the found inode number & CI name if appropriate |
1da177e4 | 1152 | */ |
ff9901c1 | 1153 | args->inumber = be64_to_cpu(dep->inumber); |
9d23fc85 | 1154 | args->filetype = dp->d_ops->data_get_ftype(dep); |
384f3ced | 1155 | error = xfs_dir_cilookup_result(args, dep->name, dep->namelen); |
1d9025e5 DC |
1156 | xfs_trans_brelse(tp, dbp); |
1157 | xfs_trans_brelse(tp, lbp); | |
b474c7ae | 1158 | return error; |
1da177e4 LT |
1159 | } |
1160 | ||
1161 | /* | |
1162 | * Look up name/hash in the leaf block. | |
1163 | * Fill in indexp with the found index, and dbpp with the data buffer. | |
1164 | * If not found dbpp will be NULL, and ENOENT comes back. | |
1165 | * lbpp will always be filled in with the leaf buffer unless there's an error. | |
1166 | */ | |
1167 | static int /* error */ | |
1168 | xfs_dir2_leaf_lookup_int( | |
1169 | xfs_da_args_t *args, /* operation arguments */ | |
1d9025e5 | 1170 | struct xfs_buf **lbpp, /* out: leaf buffer */ |
1da177e4 | 1171 | int *indexp, /* out: index in leaf block */ |
1d9025e5 | 1172 | struct xfs_buf **dbpp) /* out: data buffer */ |
1da177e4 | 1173 | { |
07fe4dd4 | 1174 | xfs_dir2_db_t curdb = -1; /* current data block number */ |
1d9025e5 | 1175 | struct xfs_buf *dbp = NULL; /* data buffer */ |
1da177e4 LT |
1176 | xfs_dir2_data_entry_t *dep; /* data entry */ |
1177 | xfs_inode_t *dp; /* incore directory inode */ | |
1178 | int error; /* error return code */ | |
1179 | int index; /* index in leaf block */ | |
1d9025e5 | 1180 | struct xfs_buf *lbp; /* leaf buffer */ |
1da177e4 LT |
1181 | xfs_dir2_leaf_entry_t *lep; /* leaf entry */ |
1182 | xfs_dir2_leaf_t *leaf; /* leaf structure */ | |
1183 | xfs_mount_t *mp; /* filesystem mount point */ | |
1184 | xfs_dir2_db_t newdb; /* new data block number */ | |
1185 | xfs_trans_t *tp; /* transaction pointer */ | |
07fe4dd4 | 1186 | xfs_dir2_db_t cidb = -1; /* case match data block no. */ |
5163f95a | 1187 | enum xfs_dacmp cmp; /* name compare result */ |
24df33b4 DC |
1188 | struct xfs_dir2_leaf_entry *ents; |
1189 | struct xfs_dir3_icleaf_hdr leafhdr; | |
1da177e4 LT |
1190 | |
1191 | dp = args->dp; | |
1192 | tp = args->trans; | |
1193 | mp = dp->i_mount; | |
e6f7667c | 1194 | |
7dda6e86 | 1195 | error = xfs_dir3_leaf_read(tp, dp, args->geo->leafblk, -1, &lbp); |
07fe4dd4 | 1196 | if (error) |
1da177e4 | 1197 | return error; |
e6f7667c | 1198 | |
1da177e4 | 1199 | *lbpp = lbp; |
1d9025e5 | 1200 | leaf = lbp->b_addr; |
4141956a DC |
1201 | xfs_dir3_leaf_check(dp, lbp); |
1202 | ents = dp->d_ops->leaf_ents_p(leaf); | |
01ba43b8 | 1203 | dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
24df33b4 | 1204 | |
1da177e4 LT |
1205 | /* |
1206 | * Look for the first leaf entry with our hash value. | |
1207 | */ | |
1208 | index = xfs_dir2_leaf_search_hash(args, lbp); | |
1209 | /* | |
1210 | * Loop over all the entries with the right hash value | |
1211 | * looking to match the name. | |
1212 | */ | |
24df33b4 DC |
1213 | for (lep = &ents[index]; |
1214 | index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval; | |
1215 | lep++, index++) { | |
1da177e4 LT |
1216 | /* |
1217 | * Skip over stale leaf entries. | |
1218 | */ | |
3c1f9c15 | 1219 | if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR) |
1da177e4 LT |
1220 | continue; |
1221 | /* | |
1222 | * Get the new data block number. | |
1223 | */ | |
30028030 DC |
1224 | newdb = xfs_dir2_dataptr_to_db(args->geo, |
1225 | be32_to_cpu(lep->address)); | |
1da177e4 LT |
1226 | /* |
1227 | * If it's not the same as the old data block number, | |
1228 | * need to pitch the old one and read the new one. | |
1229 | */ | |
1230 | if (newdb != curdb) { | |
07fe4dd4 | 1231 | if (dbp) |
1d9025e5 | 1232 | xfs_trans_brelse(tp, dbp); |
33363fee | 1233 | error = xfs_dir3_data_read(tp, dp, |
2998ab1d DC |
1234 | xfs_dir2_db_to_da(args->geo, newdb), |
1235 | -1, &dbp); | |
5163f95a | 1236 | if (error) { |
1d9025e5 | 1237 | xfs_trans_brelse(tp, lbp); |
1da177e4 LT |
1238 | return error; |
1239 | } | |
1da177e4 LT |
1240 | curdb = newdb; |
1241 | } | |
1242 | /* | |
1243 | * Point to the data entry. | |
1244 | */ | |
1d9025e5 | 1245 | dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr + |
30028030 DC |
1246 | xfs_dir2_dataptr_to_off(args->geo, |
1247 | be32_to_cpu(lep->address))); | |
1da177e4 | 1248 | /* |
5163f95a BN |
1249 | * Compare name and if it's an exact match, return the index |
1250 | * and buffer. If it's the first case-insensitive match, store | |
1251 | * the index and buffer and continue looking for an exact match. | |
1da177e4 | 1252 | */ |
5163f95a BN |
1253 | cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen); |
1254 | if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) { | |
1255 | args->cmpresult = cmp; | |
1da177e4 | 1256 | *indexp = index; |
07fe4dd4 | 1257 | /* case exact match: return the current buffer. */ |
5163f95a | 1258 | if (cmp == XFS_CMP_EXACT) { |
5163f95a BN |
1259 | *dbpp = dbp; |
1260 | return 0; | |
1261 | } | |
07fe4dd4 | 1262 | cidb = curdb; |
1da177e4 LT |
1263 | } |
1264 | } | |
6a178100 | 1265 | ASSERT(args->op_flags & XFS_DA_OP_OKNOENT); |
5163f95a | 1266 | /* |
07fe4dd4 BN |
1267 | * Here, we can only be doing a lookup (not a rename or remove). |
1268 | * If a case-insensitive match was found earlier, re-read the | |
1269 | * appropriate data block if required and return it. | |
5163f95a BN |
1270 | */ |
1271 | if (args->cmpresult == XFS_CMP_CASE) { | |
07fe4dd4 BN |
1272 | ASSERT(cidb != -1); |
1273 | if (cidb != curdb) { | |
1d9025e5 | 1274 | xfs_trans_brelse(tp, dbp); |
33363fee | 1275 | error = xfs_dir3_data_read(tp, dp, |
2998ab1d DC |
1276 | xfs_dir2_db_to_da(args->geo, cidb), |
1277 | -1, &dbp); | |
07fe4dd4 | 1278 | if (error) { |
1d9025e5 | 1279 | xfs_trans_brelse(tp, lbp); |
07fe4dd4 BN |
1280 | return error; |
1281 | } | |
1282 | } | |
1283 | *dbpp = dbp; | |
5163f95a BN |
1284 | return 0; |
1285 | } | |
1da177e4 | 1286 | /* |
2451337d | 1287 | * No match found, return -ENOENT. |
1da177e4 | 1288 | */ |
07fe4dd4 | 1289 | ASSERT(cidb == -1); |
1da177e4 | 1290 | if (dbp) |
1d9025e5 DC |
1291 | xfs_trans_brelse(tp, dbp); |
1292 | xfs_trans_brelse(tp, lbp); | |
2451337d | 1293 | return -ENOENT; |
1da177e4 LT |
1294 | } |
1295 | ||
1296 | /* | |
1297 | * Remove an entry from a leaf format directory. | |
1298 | */ | |
1299 | int /* error */ | |
1300 | xfs_dir2_leaf_removename( | |
1301 | xfs_da_args_t *args) /* operation arguments */ | |
1302 | { | |
68b3a102 | 1303 | __be16 *bestsp; /* leaf block best freespace */ |
c2066e26 | 1304 | xfs_dir2_data_hdr_t *hdr; /* data block header */ |
1da177e4 | 1305 | xfs_dir2_db_t db; /* data block number */ |
1d9025e5 | 1306 | struct xfs_buf *dbp; /* data block buffer */ |
1da177e4 LT |
1307 | xfs_dir2_data_entry_t *dep; /* data entry structure */ |
1308 | xfs_inode_t *dp; /* incore directory inode */ | |
1309 | int error; /* error return code */ | |
1310 | xfs_dir2_db_t i; /* temporary data block # */ | |
1311 | int index; /* index into leaf entries */ | |
1d9025e5 | 1312 | struct xfs_buf *lbp; /* leaf buffer */ |
1da177e4 LT |
1313 | xfs_dir2_leaf_t *leaf; /* leaf structure */ |
1314 | xfs_dir2_leaf_entry_t *lep; /* leaf entry */ | |
1315 | xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */ | |
1da177e4 LT |
1316 | int needlog; /* need to log data header */ |
1317 | int needscan; /* need to rescan data frees */ | |
1318 | xfs_dir2_data_off_t oldbest; /* old value of best free */ | |
33363fee | 1319 | struct xfs_dir2_data_free *bf; /* bestfree table */ |
24df33b4 DC |
1320 | struct xfs_dir2_leaf_entry *ents; |
1321 | struct xfs_dir3_icleaf_hdr leafhdr; | |
1da177e4 | 1322 | |
0b1b213f CH |
1323 | trace_xfs_dir2_leaf_removename(args); |
1324 | ||
1da177e4 LT |
1325 | /* |
1326 | * Lookup the leaf entry, get the leaf and data blocks read in. | |
1327 | */ | |
1328 | if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) { | |
1329 | return error; | |
1330 | } | |
1331 | dp = args->dp; | |
1d9025e5 DC |
1332 | leaf = lbp->b_addr; |
1333 | hdr = dbp->b_addr; | |
33363fee | 1334 | xfs_dir3_data_check(dp, dbp); |
2ca98774 | 1335 | bf = dp->d_ops->data_bestfree_p(hdr); |
01ba43b8 | 1336 | dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
4141956a | 1337 | ents = dp->d_ops->leaf_ents_p(leaf); |
1da177e4 LT |
1338 | /* |
1339 | * Point to the leaf entry, use that to point to the data entry. | |
1340 | */ | |
24df33b4 | 1341 | lep = &ents[index]; |
30028030 DC |
1342 | db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address)); |
1343 | dep = (xfs_dir2_data_entry_t *)((char *)hdr + | |
1344 | xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address))); | |
1da177e4 | 1345 | needscan = needlog = 0; |
33363fee | 1346 | oldbest = be16_to_cpu(bf[0].length); |
8f66193c | 1347 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
bbaaf538 | 1348 | bestsp = xfs_dir2_leaf_bests_p(ltp); |
3f883f5b DW |
1349 | if (be16_to_cpu(bestsp[db]) != oldbest) |
1350 | return -EFSCORRUPTED; | |
1da177e4 LT |
1351 | /* |
1352 | * Mark the former data entry unused. | |
1353 | */ | |
bc85178a | 1354 | xfs_dir2_data_make_free(args, dbp, |
c2066e26 | 1355 | (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr), |
9d23fc85 | 1356 | dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan); |
1da177e4 LT |
1357 | /* |
1358 | * We just mark the leaf entry stale by putting a null in it. | |
1359 | */ | |
24df33b4 | 1360 | leafhdr.stale++; |
01ba43b8 | 1361 | dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr); |
bc85178a | 1362 | xfs_dir3_leaf_log_header(args, lbp); |
24df33b4 | 1363 | |
3c1f9c15 | 1364 | lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR); |
bc85178a | 1365 | xfs_dir3_leaf_log_ents(args, lbp, index, index); |
24df33b4 | 1366 | |
1da177e4 LT |
1367 | /* |
1368 | * Scan the freespace in the data block again if necessary, | |
1369 | * log the data block header if necessary. | |
1370 | */ | |
1371 | if (needscan) | |
9d23fc85 | 1372 | xfs_dir2_data_freescan(dp, hdr, &needlog); |
1da177e4 | 1373 | if (needlog) |
bc85178a | 1374 | xfs_dir2_data_log_header(args, dbp); |
1da177e4 LT |
1375 | /* |
1376 | * If the longest freespace in the data block has changed, | |
1377 | * put the new value in the bests table and log that. | |
1378 | */ | |
33363fee DC |
1379 | if (be16_to_cpu(bf[0].length) != oldbest) { |
1380 | bestsp[db] = bf[0].length; | |
bc85178a | 1381 | xfs_dir3_leaf_log_bests(args, lbp, db, db); |
1da177e4 | 1382 | } |
33363fee | 1383 | xfs_dir3_data_check(dp, dbp); |
1da177e4 LT |
1384 | /* |
1385 | * If the data block is now empty then get rid of the data block. | |
1386 | */ | |
33363fee | 1387 | if (be16_to_cpu(bf[0].length) == |
8f66193c | 1388 | args->geo->blksize - dp->d_ops->data_entry_offset) { |
7dda6e86 | 1389 | ASSERT(db != args->geo->datablk); |
1da177e4 LT |
1390 | if ((error = xfs_dir2_shrink_inode(args, db, dbp))) { |
1391 | /* | |
1392 | * Nope, can't get rid of it because it caused | |
1393 | * allocation of a bmap btree block to do so. | |
1394 | * Just go on, returning success, leaving the | |
1395 | * empty block in place. | |
1396 | */ | |
2451337d | 1397 | if (error == -ENOSPC && args->total == 0) |
1da177e4 | 1398 | error = 0; |
4141956a | 1399 | xfs_dir3_leaf_check(dp, lbp); |
1da177e4 LT |
1400 | return error; |
1401 | } | |
1402 | dbp = NULL; | |
1403 | /* | |
1404 | * If this is the last data block then compact the | |
1405 | * bests table by getting rid of entries. | |
1406 | */ | |
afbcb3f9 | 1407 | if (db == be32_to_cpu(ltp->bestcount) - 1) { |
1da177e4 LT |
1408 | /* |
1409 | * Look for the last active entry (i). | |
1410 | */ | |
1411 | for (i = db - 1; i > 0; i--) { | |
69ef921b | 1412 | if (bestsp[i] != cpu_to_be16(NULLDATAOFF)) |
1da177e4 LT |
1413 | break; |
1414 | } | |
1415 | /* | |
1416 | * Copy the table down so inactive entries at the | |
1417 | * end are removed. | |
1418 | */ | |
1419 | memmove(&bestsp[db - i], bestsp, | |
afbcb3f9 | 1420 | (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp)); |
413d57c9 | 1421 | be32_add_cpu(<p->bestcount, -(db - i)); |
bc85178a DC |
1422 | xfs_dir3_leaf_log_tail(args, lbp); |
1423 | xfs_dir3_leaf_log_bests(args, lbp, 0, | |
1424 | be32_to_cpu(ltp->bestcount) - 1); | |
1da177e4 | 1425 | } else |
68b3a102 | 1426 | bestsp[db] = cpu_to_be16(NULLDATAOFF); |
1da177e4 LT |
1427 | } |
1428 | /* | |
1429 | * If the data block was not the first one, drop it. | |
1430 | */ | |
7dda6e86 | 1431 | else if (db != args->geo->datablk) |
1da177e4 | 1432 | dbp = NULL; |
1d9025e5 | 1433 | |
4141956a | 1434 | xfs_dir3_leaf_check(dp, lbp); |
1da177e4 LT |
1435 | /* |
1436 | * See if we can convert to block form. | |
1437 | */ | |
1438 | return xfs_dir2_leaf_to_block(args, lbp, dbp); | |
1439 | } | |
1440 | ||
1441 | /* | |
1442 | * Replace the inode number in a leaf format directory entry. | |
1443 | */ | |
1444 | int /* error */ | |
1445 | xfs_dir2_leaf_replace( | |
1446 | xfs_da_args_t *args) /* operation arguments */ | |
1447 | { | |
1d9025e5 | 1448 | struct xfs_buf *dbp; /* data block buffer */ |
1da177e4 LT |
1449 | xfs_dir2_data_entry_t *dep; /* data block entry */ |
1450 | xfs_inode_t *dp; /* incore directory inode */ | |
1451 | int error; /* error return code */ | |
1452 | int index; /* index of leaf entry */ | |
1d9025e5 | 1453 | struct xfs_buf *lbp; /* leaf buffer */ |
1da177e4 LT |
1454 | xfs_dir2_leaf_t *leaf; /* leaf structure */ |
1455 | xfs_dir2_leaf_entry_t *lep; /* leaf entry */ | |
1456 | xfs_trans_t *tp; /* transaction pointer */ | |
24df33b4 | 1457 | struct xfs_dir2_leaf_entry *ents; |
1da177e4 | 1458 | |
0b1b213f CH |
1459 | trace_xfs_dir2_leaf_replace(args); |
1460 | ||
1da177e4 LT |
1461 | /* |
1462 | * Look up the entry. | |
1463 | */ | |
1464 | if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) { | |
1465 | return error; | |
1466 | } | |
1467 | dp = args->dp; | |
1d9025e5 | 1468 | leaf = lbp->b_addr; |
4141956a | 1469 | ents = dp->d_ops->leaf_ents_p(leaf); |
1da177e4 LT |
1470 | /* |
1471 | * Point to the leaf entry, get data address from it. | |
1472 | */ | |
24df33b4 | 1473 | lep = &ents[index]; |
1da177e4 LT |
1474 | /* |
1475 | * Point to the data entry. | |
1476 | */ | |
1477 | dep = (xfs_dir2_data_entry_t *) | |
1d9025e5 | 1478 | ((char *)dbp->b_addr + |
30028030 | 1479 | xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address))); |
ff9901c1 | 1480 | ASSERT(args->inumber != be64_to_cpu(dep->inumber)); |
1da177e4 LT |
1481 | /* |
1482 | * Put the new inode number in, log it. | |
1483 | */ | |
ff9901c1 | 1484 | dep->inumber = cpu_to_be64(args->inumber); |
9d23fc85 | 1485 | dp->d_ops->data_put_ftype(dep, args->filetype); |
1da177e4 | 1486 | tp = args->trans; |
bc85178a | 1487 | xfs_dir2_data_log_entry(args, dbp, dep); |
4141956a | 1488 | xfs_dir3_leaf_check(dp, lbp); |
1d9025e5 | 1489 | xfs_trans_brelse(tp, lbp); |
1da177e4 LT |
1490 | return 0; |
1491 | } | |
1492 | ||
1493 | /* | |
1494 | * Return index in the leaf block (lbp) which is either the first | |
1495 | * one with this hash value, or if there are none, the insert point | |
1496 | * for that hash value. | |
1497 | */ | |
1498 | int /* index value */ | |
1499 | xfs_dir2_leaf_search_hash( | |
1500 | xfs_da_args_t *args, /* operation arguments */ | |
1d9025e5 | 1501 | struct xfs_buf *lbp) /* leaf buffer */ |
1da177e4 LT |
1502 | { |
1503 | xfs_dahash_t hash=0; /* hash from this entry */ | |
1504 | xfs_dahash_t hashwant; /* hash value looking for */ | |
1505 | int high; /* high leaf index */ | |
1506 | int low; /* low leaf index */ | |
1507 | xfs_dir2_leaf_t *leaf; /* leaf structure */ | |
1508 | xfs_dir2_leaf_entry_t *lep; /* leaf entry */ | |
1509 | int mid=0; /* current leaf index */ | |
24df33b4 DC |
1510 | struct xfs_dir2_leaf_entry *ents; |
1511 | struct xfs_dir3_icleaf_hdr leafhdr; | |
1da177e4 | 1512 | |
1d9025e5 | 1513 | leaf = lbp->b_addr; |
4141956a | 1514 | ents = args->dp->d_ops->leaf_ents_p(leaf); |
01ba43b8 | 1515 | args->dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
24df33b4 | 1516 | |
1da177e4 LT |
1517 | /* |
1518 | * Note, the table cannot be empty, so we have to go through the loop. | |
1519 | * Binary search the leaf entries looking for our hash value. | |
1520 | */ | |
24df33b4 | 1521 | for (lep = ents, low = 0, high = leafhdr.count - 1, |
1da177e4 LT |
1522 | hashwant = args->hashval; |
1523 | low <= high; ) { | |
1524 | mid = (low + high) >> 1; | |
3c1f9c15 | 1525 | if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant) |
1da177e4 LT |
1526 | break; |
1527 | if (hash < hashwant) | |
1528 | low = mid + 1; | |
1529 | else | |
1530 | high = mid - 1; | |
1531 | } | |
1532 | /* | |
1533 | * Found one, back up through all the equal hash values. | |
1534 | */ | |
1535 | if (hash == hashwant) { | |
3c1f9c15 | 1536 | while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) { |
1da177e4 LT |
1537 | mid--; |
1538 | } | |
1539 | } | |
1540 | /* | |
1541 | * Need to point to an entry higher than ours. | |
1542 | */ | |
1543 | else if (hash < hashwant) | |
1544 | mid++; | |
1545 | return mid; | |
1546 | } | |
1547 | ||
1548 | /* | |
1549 | * Trim off a trailing data block. We know it's empty since the leaf | |
1550 | * freespace table says so. | |
1551 | */ | |
1552 | int /* error */ | |
1553 | xfs_dir2_leaf_trim_data( | |
1554 | xfs_da_args_t *args, /* operation arguments */ | |
1d9025e5 | 1555 | struct xfs_buf *lbp, /* leaf buffer */ |
1da177e4 LT |
1556 | xfs_dir2_db_t db) /* data block number */ |
1557 | { | |
68b3a102 | 1558 | __be16 *bestsp; /* leaf bests table */ |
1d9025e5 | 1559 | struct xfs_buf *dbp; /* data block buffer */ |
1da177e4 LT |
1560 | xfs_inode_t *dp; /* incore directory inode */ |
1561 | int error; /* error return value */ | |
1562 | xfs_dir2_leaf_t *leaf; /* leaf structure */ | |
1563 | xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */ | |
1da177e4 LT |
1564 | xfs_trans_t *tp; /* transaction pointer */ |
1565 | ||
1566 | dp = args->dp; | |
1da177e4 LT |
1567 | tp = args->trans; |
1568 | /* | |
1569 | * Read the offending data block. We need its buffer. | |
1570 | */ | |
2998ab1d DC |
1571 | error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(args->geo, db), |
1572 | -1, &dbp); | |
4bb20a83 | 1573 | if (error) |
1da177e4 | 1574 | return error; |
1da177e4 | 1575 | |
1d9025e5 | 1576 | leaf = lbp->b_addr; |
8f66193c | 1577 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
c2066e26 CH |
1578 | |
1579 | #ifdef DEBUG | |
1580 | { | |
1d9025e5 | 1581 | struct xfs_dir2_data_hdr *hdr = dbp->b_addr; |
2ca98774 | 1582 | struct xfs_dir2_data_free *bf = dp->d_ops->data_bestfree_p(hdr); |
c2066e26 | 1583 | |
33363fee DC |
1584 | ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) || |
1585 | hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC)); | |
1586 | ASSERT(be16_to_cpu(bf[0].length) == | |
8f66193c | 1587 | args->geo->blksize - dp->d_ops->data_entry_offset); |
afbcb3f9 | 1588 | ASSERT(db == be32_to_cpu(ltp->bestcount) - 1); |
c2066e26 CH |
1589 | } |
1590 | #endif | |
1591 | ||
1da177e4 LT |
1592 | /* |
1593 | * Get rid of the data block. | |
1594 | */ | |
1595 | if ((error = xfs_dir2_shrink_inode(args, db, dbp))) { | |
2451337d | 1596 | ASSERT(error != -ENOSPC); |
1d9025e5 | 1597 | xfs_trans_brelse(tp, dbp); |
1da177e4 LT |
1598 | return error; |
1599 | } | |
1600 | /* | |
1601 | * Eliminate the last bests entry from the table. | |
1602 | */ | |
bbaaf538 | 1603 | bestsp = xfs_dir2_leaf_bests_p(ltp); |
413d57c9 | 1604 | be32_add_cpu(<p->bestcount, -1); |
afbcb3f9 | 1605 | memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp)); |
bc85178a DC |
1606 | xfs_dir3_leaf_log_tail(args, lbp); |
1607 | xfs_dir3_leaf_log_bests(args, lbp, 0, be32_to_cpu(ltp->bestcount) - 1); | |
1da177e4 LT |
1608 | return 0; |
1609 | } | |
1610 | ||
2282396d | 1611 | static inline size_t |
24df33b4 DC |
1612 | xfs_dir3_leaf_size( |
1613 | struct xfs_dir3_icleaf_hdr *hdr, | |
2282396d CH |
1614 | int counts) |
1615 | { | |
24df33b4 DC |
1616 | int entries; |
1617 | int hdrsize; | |
1618 | ||
1619 | entries = hdr->count - hdr->stale; | |
1620 | if (hdr->magic == XFS_DIR2_LEAF1_MAGIC || | |
1621 | hdr->magic == XFS_DIR2_LEAFN_MAGIC) | |
1622 | hdrsize = sizeof(struct xfs_dir2_leaf_hdr); | |
1623 | else | |
1624 | hdrsize = sizeof(struct xfs_dir3_leaf_hdr); | |
2282396d | 1625 | |
24df33b4 DC |
1626 | return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t) |
1627 | + counts * sizeof(xfs_dir2_data_off_t) | |
1628 | + sizeof(xfs_dir2_leaf_tail_t); | |
2282396d CH |
1629 | } |
1630 | ||
1da177e4 LT |
1631 | /* |
1632 | * Convert node form directory to leaf form directory. | |
1633 | * The root of the node form dir needs to already be a LEAFN block. | |
1634 | * Just return if we can't do anything. | |
1635 | */ | |
1636 | int /* error */ | |
1637 | xfs_dir2_node_to_leaf( | |
1638 | xfs_da_state_t *state) /* directory operation state */ | |
1639 | { | |
1640 | xfs_da_args_t *args; /* operation arguments */ | |
1641 | xfs_inode_t *dp; /* incore directory inode */ | |
1642 | int error; /* error return code */ | |
1d9025e5 | 1643 | struct xfs_buf *fbp; /* buffer for freespace block */ |
1da177e4 LT |
1644 | xfs_fileoff_t fo; /* freespace file offset */ |
1645 | xfs_dir2_free_t *free; /* freespace structure */ | |
1d9025e5 | 1646 | struct xfs_buf *lbp; /* buffer for leaf block */ |
1da177e4 LT |
1647 | xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */ |
1648 | xfs_dir2_leaf_t *leaf; /* leaf structure */ | |
1649 | xfs_mount_t *mp; /* filesystem mount point */ | |
1650 | int rval; /* successful free trim? */ | |
1651 | xfs_trans_t *tp; /* transaction pointer */ | |
24df33b4 | 1652 | struct xfs_dir3_icleaf_hdr leafhdr; |
cbc8adf8 | 1653 | struct xfs_dir3_icfree_hdr freehdr; |
1da177e4 LT |
1654 | |
1655 | /* | |
1656 | * There's more than a leaf level in the btree, so there must | |
1657 | * be multiple leafn blocks. Give up. | |
1658 | */ | |
1659 | if (state->path.active > 1) | |
1660 | return 0; | |
1661 | args = state->args; | |
0b1b213f CH |
1662 | |
1663 | trace_xfs_dir2_node_to_leaf(args); | |
1664 | ||
1da177e4 LT |
1665 | mp = state->mp; |
1666 | dp = args->dp; | |
1667 | tp = args->trans; | |
1668 | /* | |
1669 | * Get the last offset in the file. | |
1670 | */ | |
7fb2cd4d | 1671 | if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK))) { |
1da177e4 LT |
1672 | return error; |
1673 | } | |
d6cf1305 | 1674 | fo -= args->geo->fsbcount; |
1da177e4 LT |
1675 | /* |
1676 | * If there are freespace blocks other than the first one, | |
1677 | * take this opportunity to remove trailing empty freespace blocks | |
1678 | * that may have been left behind during no-space-reservation | |
1679 | * operations. | |
1680 | */ | |
7dda6e86 | 1681 | while (fo > args->geo->freeblk) { |
1da177e4 LT |
1682 | if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) { |
1683 | return error; | |
1684 | } | |
1685 | if (rval) | |
d6cf1305 | 1686 | fo -= args->geo->fsbcount; |
1da177e4 LT |
1687 | else |
1688 | return 0; | |
1689 | } | |
1690 | /* | |
1691 | * Now find the block just before the freespace block. | |
1692 | */ | |
1693 | if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) { | |
1694 | return error; | |
1695 | } | |
1696 | /* | |
1697 | * If it's not the single leaf block, give up. | |
1698 | */ | |
8f66193c | 1699 | if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + args->geo->blksize) |
1da177e4 LT |
1700 | return 0; |
1701 | lbp = state->path.blk[0].bp; | |
1d9025e5 | 1702 | leaf = lbp->b_addr; |
01ba43b8 | 1703 | dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf); |
24df33b4 DC |
1704 | |
1705 | ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC || | |
1706 | leafhdr.magic == XFS_DIR3_LEAFN_MAGIC); | |
1707 | ||
1da177e4 LT |
1708 | /* |
1709 | * Read the freespace block. | |
1710 | */ | |
7dda6e86 | 1711 | error = xfs_dir2_free_read(tp, dp, args->geo->freeblk, &fbp); |
4bb20a83 | 1712 | if (error) |
1da177e4 | 1713 | return error; |
1d9025e5 | 1714 | free = fbp->b_addr; |
01ba43b8 | 1715 | dp->d_ops->free_hdr_from_disk(&freehdr, free); |
cbc8adf8 DC |
1716 | |
1717 | ASSERT(!freehdr.firstdb); | |
2282396d | 1718 | |
1da177e4 LT |
1719 | /* |
1720 | * Now see if the leafn and free data will fit in a leaf1. | |
1721 | * If not, release the buffer and give up. | |
1722 | */ | |
8f66193c | 1723 | if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > args->geo->blksize) { |
1d9025e5 | 1724 | xfs_trans_brelse(tp, fbp); |
1da177e4 LT |
1725 | return 0; |
1726 | } | |
2282396d | 1727 | |
1da177e4 LT |
1728 | /* |
1729 | * If the leaf has any stale entries in it, compress them out. | |
1da177e4 | 1730 | */ |
24df33b4 DC |
1731 | if (leafhdr.stale) |
1732 | xfs_dir3_leaf_compact(args, &leafhdr, lbp); | |
b0f539de | 1733 | |
24df33b4 | 1734 | lbp->b_ops = &xfs_dir3_leaf1_buf_ops; |
61fe135c | 1735 | xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF); |
24df33b4 DC |
1736 | leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC) |
1737 | ? XFS_DIR2_LEAF1_MAGIC | |
1738 | : XFS_DIR3_LEAF1_MAGIC; | |
b0f539de | 1739 | |
1da177e4 LT |
1740 | /* |
1741 | * Set up the leaf tail from the freespace block. | |
1742 | */ | |
8f66193c | 1743 | ltp = xfs_dir2_leaf_tail_p(args->geo, leaf); |
cbc8adf8 | 1744 | ltp->bestcount = cpu_to_be32(freehdr.nvalid); |
24df33b4 | 1745 | |
1da177e4 LT |
1746 | /* |
1747 | * Set up the leaf bests table. | |
1748 | */ | |
24dd0f54 | 1749 | memcpy(xfs_dir2_leaf_bests_p(ltp), dp->d_ops->free_bests_p(free), |
cbc8adf8 | 1750 | freehdr.nvalid * sizeof(xfs_dir2_data_off_t)); |
24df33b4 | 1751 | |
01ba43b8 | 1752 | dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr); |
bc85178a DC |
1753 | xfs_dir3_leaf_log_header(args, lbp); |
1754 | xfs_dir3_leaf_log_bests(args, lbp, 0, be32_to_cpu(ltp->bestcount) - 1); | |
1755 | xfs_dir3_leaf_log_tail(args, lbp); | |
4141956a | 1756 | xfs_dir3_leaf_check(dp, lbp); |
24df33b4 | 1757 | |
1da177e4 LT |
1758 | /* |
1759 | * Get rid of the freespace block. | |
1760 | */ | |
8c44a285 | 1761 | error = xfs_dir2_shrink_inode(args, |
30028030 DC |
1762 | xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET), |
1763 | fbp); | |
1da177e4 LT |
1764 | if (error) { |
1765 | /* | |
1766 | * This can't fail here because it can only happen when | |
1767 | * punching out the middle of an extent, and this is an | |
1768 | * isolated block. | |
1769 | */ | |
2451337d | 1770 | ASSERT(error != -ENOSPC); |
1da177e4 LT |
1771 | return error; |
1772 | } | |
1773 | fbp = NULL; | |
1774 | /* | |
1775 | * Now see if we can convert the single-leaf directory | |
1776 | * down to a block form directory. | |
1777 | * This routine always kills the dabuf for the leaf, so | |
1778 | * eliminate it from the path. | |
1779 | */ | |
1780 | error = xfs_dir2_leaf_to_block(args, lbp, NULL); | |
1781 | state->path.blk[0].bp = NULL; | |
1782 | return error; | |
1783 | } |