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