]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/xfs/xfs_dir2_data.c
mac80211: assign bss_conf.bssid only once
[mirror_ubuntu-jammy-kernel.git] / fs / xfs / xfs_dir2_data.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
1da177e4
LT
21#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
da353b0d 24#include "xfs_ag.h"
1da177e4 25#include "xfs_mount.h"
a844f451 26#include "xfs_da_btree.h"
1da177e4 27#include "xfs_bmap_btree.h"
1da177e4
LT
28#include "xfs_dinode.h"
29#include "xfs_inode.h"
57926640
CH
30#include "xfs_dir2_format.h"
31#include "xfs_dir2_priv.h"
1da177e4
LT
32#include "xfs_error.h"
33
c2066e26
CH
34STATIC xfs_dir2_data_free_t *
35xfs_dir2_data_freefind(xfs_dir2_data_hdr_t *hdr, xfs_dir2_data_unused_t *dup);
36
1da177e4
LT
37/*
38 * Check the consistency of the data block.
39 * The input can also be a block-format directory.
82025d7f 40 * Return 0 is the buffer is good, otherwise an error.
1da177e4 41 */
82025d7f
DC
42int
43__xfs_dir2_data_check(
1d9025e5
DC
44 struct xfs_inode *dp, /* incore inode pointer */
45 struct xfs_buf *bp) /* data block's buffer */
1da177e4
LT
46{
47 xfs_dir2_dataptr_t addr; /* addr for leaf lookup */
48 xfs_dir2_data_free_t *bf; /* bestfree table */
49 xfs_dir2_block_tail_t *btp=NULL; /* block tail */
50 int count; /* count of entries found */
c2066e26 51 xfs_dir2_data_hdr_t *hdr; /* data block header */
1da177e4
LT
52 xfs_dir2_data_entry_t *dep; /* data entry */
53 xfs_dir2_data_free_t *dfp; /* bestfree entry */
54 xfs_dir2_data_unused_t *dup; /* unused entry */
55 char *endp; /* end of useful data */
56 int freeseen; /* mask of bestfrees seen */
57 xfs_dahash_t hash; /* hash of current name */
58 int i; /* leaf index */
59 int lastfree; /* last entry was unused */
60 xfs_dir2_leaf_entry_t *lep=NULL; /* block leaf entries */
61 xfs_mount_t *mp; /* filesystem mount point */
62 char *p; /* current data position */
63 int stale; /* count of stale leaves */
5163f95a 64 struct xfs_name name;
1da177e4 65
82025d7f 66 mp = bp->b_target->bt_mount;
1d9025e5 67 hdr = bp->b_addr;
c2066e26 68 bf = hdr->bestfree;
0ba9cd84 69 p = (char *)(hdr + 1);
c2066e26 70
82025d7f
DC
71 switch (hdr->magic) {
72 case cpu_to_be32(XFS_DIR2_BLOCK_MAGIC):
c2066e26 73 btp = xfs_dir2_block_tail_p(mp, hdr);
bbaaf538 74 lep = xfs_dir2_block_leaf_p(btp);
1da177e4 75 endp = (char *)lep;
82025d7f
DC
76 break;
77 case cpu_to_be32(XFS_DIR2_DATA_MAGIC):
c2066e26 78 endp = (char *)hdr + mp->m_dirblksize;
82025d7f
DC
79 break;
80 default:
81 XFS_ERROR_REPORT("Bad Magic", XFS_ERRLEVEL_LOW, mp);
82 return EFSCORRUPTED;
c2066e26
CH
83 }
84
1da177e4
LT
85 count = lastfree = freeseen = 0;
86 /*
87 * Account for zero bestfree entries.
88 */
89 if (!bf[0].length) {
82025d7f 90 XFS_WANT_CORRUPTED_RETURN(!bf[0].offset);
1da177e4
LT
91 freeseen |= 1 << 0;
92 }
93 if (!bf[1].length) {
82025d7f 94 XFS_WANT_CORRUPTED_RETURN(!bf[1].offset);
1da177e4
LT
95 freeseen |= 1 << 1;
96 }
97 if (!bf[2].length) {
82025d7f 98 XFS_WANT_CORRUPTED_RETURN(!bf[2].offset);
1da177e4
LT
99 freeseen |= 1 << 2;
100 }
82025d7f
DC
101
102 XFS_WANT_CORRUPTED_RETURN(be16_to_cpu(bf[0].length) >=
103 be16_to_cpu(bf[1].length));
104 XFS_WANT_CORRUPTED_RETURN(be16_to_cpu(bf[1].length) >=
105 be16_to_cpu(bf[2].length));
1da177e4
LT
106 /*
107 * Loop over the data/unused entries.
108 */
109 while (p < endp) {
110 dup = (xfs_dir2_data_unused_t *)p;
111 /*
112 * If it's unused, look for the space in the bestfree table.
113 * If we find it, account for that, else make sure it
114 * doesn't need to be there.
115 */
ad354eb3 116 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
82025d7f
DC
117 XFS_WANT_CORRUPTED_RETURN(lastfree == 0);
118 XFS_WANT_CORRUPTED_RETURN(
119 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)) ==
120 (char *)dup - (char *)hdr);
c2066e26 121 dfp = xfs_dir2_data_freefind(hdr, dup);
1da177e4
LT
122 if (dfp) {
123 i = (int)(dfp - bf);
82025d7f
DC
124 XFS_WANT_CORRUPTED_RETURN(
125 (freeseen & (1 << i)) == 0);
1da177e4 126 freeseen |= 1 << i;
70e73f59 127 } else {
82025d7f
DC
128 XFS_WANT_CORRUPTED_RETURN(
129 be16_to_cpu(dup->length) <=
130 be16_to_cpu(bf[2].length));
70e73f59 131 }
ad354eb3 132 p += be16_to_cpu(dup->length);
1da177e4
LT
133 lastfree = 1;
134 continue;
135 }
136 /*
137 * It's a real entry. Validate the fields.
138 * If this is a block directory then make sure it's
139 * in the leaf section of the block.
140 * The linear search is crude but this is DEBUG code.
141 */
142 dep = (xfs_dir2_data_entry_t *)p;
82025d7f
DC
143 XFS_WANT_CORRUPTED_RETURN(dep->namelen != 0);
144 XFS_WANT_CORRUPTED_RETURN(
145 !xfs_dir_ino_validate(mp, be64_to_cpu(dep->inumber)));
146 XFS_WANT_CORRUPTED_RETURN(
147 be16_to_cpu(*xfs_dir2_data_entry_tag_p(dep)) ==
148 (char *)dep - (char *)hdr);
1da177e4
LT
149 count++;
150 lastfree = 0;
69ef921b 151 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC)) {
bbaaf538 152 addr = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
1da177e4 153 (xfs_dir2_data_aoff_t)
c2066e26 154 ((char *)dep - (char *)hdr));
5163f95a
BN
155 name.name = dep->name;
156 name.len = dep->namelen;
157 hash = mp->m_dirnameops->hashname(&name);
e922fffa 158 for (i = 0; i < be32_to_cpu(btp->count); i++) {
3c1f9c15
NS
159 if (be32_to_cpu(lep[i].address) == addr &&
160 be32_to_cpu(lep[i].hashval) == hash)
1da177e4
LT
161 break;
162 }
82025d7f 163 XFS_WANT_CORRUPTED_RETURN(i < be32_to_cpu(btp->count));
1da177e4 164 }
bbaaf538 165 p += xfs_dir2_data_entsize(dep->namelen);
1da177e4
LT
166 }
167 /*
168 * Need to have seen all the entries and all the bestfree slots.
169 */
82025d7f 170 XFS_WANT_CORRUPTED_RETURN(freeseen == 7);
69ef921b 171 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC)) {
e922fffa 172 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) {
69ef921b
CH
173 if (lep[i].address ==
174 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
1da177e4
LT
175 stale++;
176 if (i > 0)
82025d7f
DC
177 XFS_WANT_CORRUPTED_RETURN(
178 be32_to_cpu(lep[i].hashval) >=
179 be32_to_cpu(lep[i - 1].hashval));
1da177e4 180 }
82025d7f
DC
181 XFS_WANT_CORRUPTED_RETURN(count ==
182 be32_to_cpu(btp->count) - be32_to_cpu(btp->stale));
183 XFS_WANT_CORRUPTED_RETURN(stale == be32_to_cpu(btp->stale));
1da177e4 184 }
82025d7f 185 return 0;
1da177e4 186}
1da177e4 187
b0f539de 188static void
e4813572
DC
189xfs_dir2_data_verify(
190 struct xfs_buf *bp)
191{
192 struct xfs_mount *mp = bp->b_target->bt_mount;
193 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
194 int block_ok = 0;
195
196 block_ok = hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC);
197 block_ok = block_ok && __xfs_dir2_data_check(NULL, bp) == 0;
198
199 if (!block_ok) {
200 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, hdr);
201 xfs_buf_ioerror(bp, EFSCORRUPTED);
202 }
612cfbfe
DC
203}
204
1813dd64
DC
205/*
206 * Readahead of the first block of the directory when it is opened is completely
207 * oblivious to the format of the directory. Hence we can either get a block
208 * format buffer or a data format buffer on readahead.
209 */
210static void
211xfs_dir2_data_reada_verify(
212 struct xfs_buf *bp)
213{
214 struct xfs_mount *mp = bp->b_target->bt_mount;
215 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
216
217 switch (hdr->magic) {
218 case cpu_to_be32(XFS_DIR2_BLOCK_MAGIC):
219 bp->b_ops = &xfs_dir2_block_buf_ops;
220 bp->b_ops->verify_read(bp);
221 return;
222 case cpu_to_be32(XFS_DIR2_DATA_MAGIC):
223 xfs_dir2_data_verify(bp);
224 return;
225 default:
226 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, hdr);
227 xfs_buf_ioerror(bp, EFSCORRUPTED);
228 break;
229 }
230}
231
232static void
233xfs_dir2_data_read_verify(
612cfbfe
DC
234 struct xfs_buf *bp)
235{
236 xfs_dir2_data_verify(bp);
237}
e4813572 238
b0f539de 239static void
1813dd64 240xfs_dir2_data_write_verify(
612cfbfe
DC
241 struct xfs_buf *bp)
242{
243 xfs_dir2_data_verify(bp);
e4813572
DC
244}
245
1813dd64
DC
246const struct xfs_buf_ops xfs_dir2_data_buf_ops = {
247 .verify_read = xfs_dir2_data_read_verify,
248 .verify_write = xfs_dir2_data_write_verify,
249};
250
251static const struct xfs_buf_ops xfs_dir2_data_reada_buf_ops = {
252 .verify_read = xfs_dir2_data_reada_verify,
253 .verify_write = xfs_dir2_data_write_verify,
254};
255
612cfbfe 256
e4813572
DC
257int
258xfs_dir2_data_read(
259 struct xfs_trans *tp,
260 struct xfs_inode *dp,
261 xfs_dablk_t bno,
262 xfs_daddr_t mapped_bno,
263 struct xfs_buf **bpp)
264{
265 return xfs_da_read_buf(tp, dp, bno, mapped_bno, bpp,
1813dd64 266 XFS_DATA_FORK, &xfs_dir2_data_buf_ops);
e4813572
DC
267}
268
da6958c8
DC
269int
270xfs_dir2_data_readahead(
271 struct xfs_trans *tp,
272 struct xfs_inode *dp,
273 xfs_dablk_t bno,
274 xfs_daddr_t mapped_bno)
275{
276 return xfs_da_reada_buf(tp, dp, bno, mapped_bno,
1813dd64 277 XFS_DATA_FORK, &xfs_dir2_data_reada_buf_ops);
da6958c8
DC
278}
279
1da177e4
LT
280/*
281 * Given a data block and an unused entry from that block,
282 * return the bestfree entry if any that corresponds to it.
283 */
c2066e26 284STATIC xfs_dir2_data_free_t *
1da177e4 285xfs_dir2_data_freefind(
c2066e26 286 xfs_dir2_data_hdr_t *hdr, /* data block */
1da177e4
LT
287 xfs_dir2_data_unused_t *dup) /* data unused entry */
288{
289 xfs_dir2_data_free_t *dfp; /* bestfree entry */
290 xfs_dir2_data_aoff_t off; /* offset value needed */
291#if defined(DEBUG) && defined(__KERNEL__)
292 int matched; /* matched the value */
293 int seenzero; /* saw a 0 bestfree entry */
294#endif
295
c2066e26 296 off = (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr);
1da177e4
LT
297#if defined(DEBUG) && defined(__KERNEL__)
298 /*
299 * Validate some consistency in the bestfree table.
300 * Check order, non-overlapping entries, and if we find the
301 * one we're looking for it has to be exact.
302 */
69ef921b
CH
303 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
304 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
c2066e26
CH
305 for (dfp = &hdr->bestfree[0], seenzero = matched = 0;
306 dfp < &hdr->bestfree[XFS_DIR2_DATA_FD_COUNT];
1da177e4
LT
307 dfp++) {
308 if (!dfp->offset) {
309 ASSERT(!dfp->length);
310 seenzero = 1;
311 continue;
312 }
313 ASSERT(seenzero == 0);
70e73f59 314 if (be16_to_cpu(dfp->offset) == off) {
1da177e4 315 matched = 1;
ad354eb3 316 ASSERT(dfp->length == dup->length);
70e73f59 317 } else if (off < be16_to_cpu(dfp->offset))
ad354eb3 318 ASSERT(off + be16_to_cpu(dup->length) <= be16_to_cpu(dfp->offset));
1da177e4 319 else
70e73f59 320 ASSERT(be16_to_cpu(dfp->offset) + be16_to_cpu(dfp->length) <= off);
ad354eb3 321 ASSERT(matched || be16_to_cpu(dfp->length) >= be16_to_cpu(dup->length));
c2066e26 322 if (dfp > &hdr->bestfree[0])
70e73f59 323 ASSERT(be16_to_cpu(dfp[-1].length) >= be16_to_cpu(dfp[0].length));
1da177e4
LT
324 }
325#endif
326 /*
327 * If this is smaller than the smallest bestfree entry,
328 * it can't be there since they're sorted.
329 */
ad354eb3 330 if (be16_to_cpu(dup->length) <
c2066e26 331 be16_to_cpu(hdr->bestfree[XFS_DIR2_DATA_FD_COUNT - 1].length))
1da177e4
LT
332 return NULL;
333 /*
334 * Look at the three bestfree entries for our guy.
335 */
c2066e26
CH
336 for (dfp = &hdr->bestfree[0];
337 dfp < &hdr->bestfree[XFS_DIR2_DATA_FD_COUNT];
1da177e4
LT
338 dfp++) {
339 if (!dfp->offset)
340 return NULL;
70e73f59 341 if (be16_to_cpu(dfp->offset) == off)
1da177e4
LT
342 return dfp;
343 }
344 /*
345 * Didn't find it. This only happens if there are duplicate lengths.
346 */
347 return NULL;
348}
349
350/*
351 * Insert an unused-space entry into the bestfree table.
352 */
353xfs_dir2_data_free_t * /* entry inserted */
354xfs_dir2_data_freeinsert(
c2066e26 355 xfs_dir2_data_hdr_t *hdr, /* data block pointer */
1da177e4
LT
356 xfs_dir2_data_unused_t *dup, /* unused space */
357 int *loghead) /* log the data header (out) */
358{
359 xfs_dir2_data_free_t *dfp; /* bestfree table pointer */
360 xfs_dir2_data_free_t new; /* new bestfree entry */
361
362#ifdef __KERNEL__
69ef921b
CH
363 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
364 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
1da177e4 365#endif
c2066e26 366 dfp = hdr->bestfree;
70e73f59 367 new.length = dup->length;
c2066e26
CH
368 new.offset = cpu_to_be16((char *)dup - (char *)hdr);
369
1da177e4
LT
370 /*
371 * Insert at position 0, 1, or 2; or not at all.
372 */
70e73f59 373 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[0].length)) {
1da177e4
LT
374 dfp[2] = dfp[1];
375 dfp[1] = dfp[0];
376 dfp[0] = new;
377 *loghead = 1;
378 return &dfp[0];
379 }
70e73f59 380 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[1].length)) {
1da177e4
LT
381 dfp[2] = dfp[1];
382 dfp[1] = new;
383 *loghead = 1;
384 return &dfp[1];
385 }
70e73f59 386 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[2].length)) {
1da177e4
LT
387 dfp[2] = new;
388 *loghead = 1;
389 return &dfp[2];
390 }
391 return NULL;
392}
393
394/*
395 * Remove a bestfree entry from the table.
396 */
ba0f32d4 397STATIC void
1da177e4 398xfs_dir2_data_freeremove(
c2066e26 399 xfs_dir2_data_hdr_t *hdr, /* data block header */
1da177e4
LT
400 xfs_dir2_data_free_t *dfp, /* bestfree entry pointer */
401 int *loghead) /* out: log data header */
402{
403#ifdef __KERNEL__
69ef921b
CH
404 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
405 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
1da177e4
LT
406#endif
407 /*
408 * It's the first entry, slide the next 2 up.
409 */
c2066e26
CH
410 if (dfp == &hdr->bestfree[0]) {
411 hdr->bestfree[0] = hdr->bestfree[1];
412 hdr->bestfree[1] = hdr->bestfree[2];
1da177e4
LT
413 }
414 /*
415 * It's the second entry, slide the 3rd entry up.
416 */
c2066e26
CH
417 else if (dfp == &hdr->bestfree[1])
418 hdr->bestfree[1] = hdr->bestfree[2];
1da177e4
LT
419 /*
420 * Must be the last entry.
421 */
422 else
c2066e26 423 ASSERT(dfp == &hdr->bestfree[2]);
1da177e4
LT
424 /*
425 * Clear the 3rd entry, must be zero now.
426 */
c2066e26
CH
427 hdr->bestfree[2].length = 0;
428 hdr->bestfree[2].offset = 0;
1da177e4
LT
429 *loghead = 1;
430}
431
432/*
433 * Given a data block, reconstruct its bestfree map.
434 */
435void
436xfs_dir2_data_freescan(
437 xfs_mount_t *mp, /* filesystem mount point */
c2066e26 438 xfs_dir2_data_hdr_t *hdr, /* data block header */
ef497f8a 439 int *loghead) /* out: log data header */
1da177e4
LT
440{
441 xfs_dir2_block_tail_t *btp; /* block tail */
442 xfs_dir2_data_entry_t *dep; /* active data entry */
443 xfs_dir2_data_unused_t *dup; /* unused data entry */
444 char *endp; /* end of block's data */
445 char *p; /* current entry pointer */
446
447#ifdef __KERNEL__
69ef921b
CH
448 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
449 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
1da177e4
LT
450#endif
451 /*
452 * Start by clearing the table.
453 */
c2066e26 454 memset(hdr->bestfree, 0, sizeof(hdr->bestfree));
1da177e4
LT
455 *loghead = 1;
456 /*
457 * Set up pointers.
458 */
0ba9cd84 459 p = (char *)(hdr + 1);
69ef921b 460 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC)) {
c2066e26 461 btp = xfs_dir2_block_tail_p(mp, hdr);
bbaaf538 462 endp = (char *)xfs_dir2_block_leaf_p(btp);
1da177e4 463 } else
c2066e26 464 endp = (char *)hdr + mp->m_dirblksize;
1da177e4
LT
465 /*
466 * Loop over the block's entries.
467 */
468 while (p < endp) {
469 dup = (xfs_dir2_data_unused_t *)p;
470 /*
471 * If it's a free entry, insert it.
472 */
ad354eb3 473 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
c2066e26 474 ASSERT((char *)dup - (char *)hdr ==
bbaaf538 475 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
c2066e26 476 xfs_dir2_data_freeinsert(hdr, dup, loghead);
ad354eb3 477 p += be16_to_cpu(dup->length);
1da177e4
LT
478 }
479 /*
480 * For active entries, check their tags and skip them.
481 */
482 else {
483 dep = (xfs_dir2_data_entry_t *)p;
c2066e26 484 ASSERT((char *)dep - (char *)hdr ==
bbaaf538
CH
485 be16_to_cpu(*xfs_dir2_data_entry_tag_p(dep)));
486 p += xfs_dir2_data_entsize(dep->namelen);
1da177e4
LT
487 }
488 }
489}
490
491/*
492 * Initialize a data block at the given block number in the directory.
493 * Give back the buffer for the created block.
494 */
495int /* error */
496xfs_dir2_data_init(
497 xfs_da_args_t *args, /* directory operation args */
498 xfs_dir2_db_t blkno, /* logical dir block number */
1d9025e5 499 struct xfs_buf **bpp) /* output block buffer */
1da177e4 500{
1d9025e5 501 struct xfs_buf *bp; /* block buffer */
c2066e26 502 xfs_dir2_data_hdr_t *hdr; /* data block header */
1da177e4
LT
503 xfs_inode_t *dp; /* incore directory inode */
504 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
505 int error; /* error return value */
506 int i; /* bestfree index */
507 xfs_mount_t *mp; /* filesystem mount point */
508 xfs_trans_t *tp; /* transaction pointer */
509 int t; /* temp */
510
511 dp = args->dp;
512 mp = dp->i_mount;
513 tp = args->trans;
514 /*
515 * Get the buffer set up for the block.
516 */
bbaaf538 517 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, blkno), -1, &bp,
1da177e4 518 XFS_DATA_FORK);
b0f539de 519 if (error)
1da177e4 520 return error;
1813dd64 521 bp->b_ops = &xfs_dir2_data_buf_ops;
c2066e26 522
1da177e4
LT
523 /*
524 * Initialize the header.
525 */
1d9025e5 526 hdr = bp->b_addr;
c2066e26
CH
527 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
528 hdr->bestfree[0].offset = cpu_to_be16(sizeof(*hdr));
1da177e4 529 for (i = 1; i < XFS_DIR2_DATA_FD_COUNT; i++) {
c2066e26
CH
530 hdr->bestfree[i].length = 0;
531 hdr->bestfree[i].offset = 0;
1da177e4 532 }
c2066e26 533
1da177e4
LT
534 /*
535 * Set up an unused entry for the block's body.
536 */
0ba9cd84 537 dup = (xfs_dir2_data_unused_t *)(hdr + 1);
ad354eb3 538 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1da177e4 539
c2066e26
CH
540 t = mp->m_dirblksize - (uint)sizeof(*hdr);
541 hdr->bestfree[0].length = cpu_to_be16(t);
ad354eb3 542 dup->length = cpu_to_be16(t);
c2066e26 543 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16((char *)dup - (char *)hdr);
1da177e4
LT
544 /*
545 * Log it and return it.
546 */
547 xfs_dir2_data_log_header(tp, bp);
548 xfs_dir2_data_log_unused(tp, bp, dup);
549 *bpp = bp;
550 return 0;
551}
552
553/*
554 * Log an active data entry from the block.
555 */
556void
557xfs_dir2_data_log_entry(
1d9025e5
DC
558 struct xfs_trans *tp,
559 struct xfs_buf *bp,
1da177e4
LT
560 xfs_dir2_data_entry_t *dep) /* data entry pointer */
561{
1d9025e5 562 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
1da177e4 563
69ef921b
CH
564 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
565 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
c2066e26 566
1d9025e5 567 xfs_trans_log_buf(tp, bp, (uint)((char *)dep - (char *)hdr),
bbaaf538 568 (uint)((char *)(xfs_dir2_data_entry_tag_p(dep) + 1) -
c2066e26 569 (char *)hdr - 1));
1da177e4
LT
570}
571
572/*
573 * Log a data block header.
574 */
575void
576xfs_dir2_data_log_header(
1d9025e5
DC
577 struct xfs_trans *tp,
578 struct xfs_buf *bp)
1da177e4 579{
1d9025e5 580 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
1da177e4 581
69ef921b
CH
582 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
583 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
c2066e26 584
1d9025e5 585 xfs_trans_log_buf(tp, bp, 0, sizeof(*hdr) - 1);
1da177e4
LT
586}
587
588/*
589 * Log a data unused entry.
590 */
591void
592xfs_dir2_data_log_unused(
1d9025e5
DC
593 struct xfs_trans *tp,
594 struct xfs_buf *bp,
1da177e4
LT
595 xfs_dir2_data_unused_t *dup) /* data unused pointer */
596{
1d9025e5 597 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
c2066e26 598
69ef921b
CH
599 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
600 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
1da177e4 601
1da177e4
LT
602 /*
603 * Log the first part of the unused entry.
604 */
1d9025e5 605 xfs_trans_log_buf(tp, bp, (uint)((char *)dup - (char *)hdr),
1da177e4 606 (uint)((char *)&dup->length + sizeof(dup->length) -
c2066e26 607 1 - (char *)hdr));
1da177e4
LT
608 /*
609 * Log the end (tag) of the unused entry.
610 */
1d9025e5 611 xfs_trans_log_buf(tp, bp,
c2066e26
CH
612 (uint)((char *)xfs_dir2_data_unused_tag_p(dup) - (char *)hdr),
613 (uint)((char *)xfs_dir2_data_unused_tag_p(dup) - (char *)hdr +
1da177e4
LT
614 sizeof(xfs_dir2_data_off_t) - 1));
615}
616
617/*
618 * Make a byte range in the data block unused.
619 * Its current contents are unimportant.
620 */
621void
622xfs_dir2_data_make_free(
1d9025e5
DC
623 struct xfs_trans *tp,
624 struct xfs_buf *bp,
1da177e4
LT
625 xfs_dir2_data_aoff_t offset, /* starting byte offset */
626 xfs_dir2_data_aoff_t len, /* length in bytes */
627 int *needlogp, /* out: log header */
628 int *needscanp) /* out: regen bestfree */
629{
c2066e26 630 xfs_dir2_data_hdr_t *hdr; /* data block pointer */
1da177e4
LT
631 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
632 char *endptr; /* end of data area */
633 xfs_mount_t *mp; /* filesystem mount point */
634 int needscan; /* need to regen bestfree */
635 xfs_dir2_data_unused_t *newdup; /* new unused entry */
636 xfs_dir2_data_unused_t *postdup; /* unused entry after us */
637 xfs_dir2_data_unused_t *prevdup; /* unused entry before us */
638
639 mp = tp->t_mountp;
1d9025e5 640 hdr = bp->b_addr;
c2066e26 641
1da177e4
LT
642 /*
643 * Figure out where the end of the data area is.
644 */
69ef921b 645 if (hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC))
c2066e26 646 endptr = (char *)hdr + mp->m_dirblksize;
1da177e4
LT
647 else {
648 xfs_dir2_block_tail_t *btp; /* block tail */
649
69ef921b 650 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
c2066e26 651 btp = xfs_dir2_block_tail_p(mp, hdr);
bbaaf538 652 endptr = (char *)xfs_dir2_block_leaf_p(btp);
1da177e4
LT
653 }
654 /*
655 * If this isn't the start of the block, then back up to
656 * the previous entry and see if it's free.
657 */
c2066e26 658 if (offset > sizeof(*hdr)) {
3d693c6e 659 __be16 *tagp; /* tag just before us */
1da177e4 660
c2066e26
CH
661 tagp = (__be16 *)((char *)hdr + offset) - 1;
662 prevdup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
ad354eb3 663 if (be16_to_cpu(prevdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
1da177e4
LT
664 prevdup = NULL;
665 } else
666 prevdup = NULL;
667 /*
668 * If this isn't the end of the block, see if the entry after
669 * us is free.
670 */
c2066e26 671 if ((char *)hdr + offset + len < endptr) {
1da177e4 672 postdup =
c2066e26 673 (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
ad354eb3 674 if (be16_to_cpu(postdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
1da177e4
LT
675 postdup = NULL;
676 } else
677 postdup = NULL;
678 ASSERT(*needscanp == 0);
679 needscan = 0;
680 /*
681 * Previous and following entries are both free,
682 * merge everything into a single free entry.
683 */
684 if (prevdup && postdup) {
685 xfs_dir2_data_free_t *dfp2; /* another bestfree pointer */
686
687 /*
688 * See if prevdup and/or postdup are in bestfree table.
689 */
c2066e26
CH
690 dfp = xfs_dir2_data_freefind(hdr, prevdup);
691 dfp2 = xfs_dir2_data_freefind(hdr, postdup);
1da177e4
LT
692 /*
693 * We need a rescan unless there are exactly 2 free entries
694 * namely our two. Then we know what's happening, otherwise
695 * since the third bestfree is there, there might be more
696 * entries.
697 */
c2066e26 698 needscan = (hdr->bestfree[2].length != 0);
1da177e4
LT
699 /*
700 * Fix up the new big freespace.
701 */
413d57c9 702 be16_add_cpu(&prevdup->length, len + be16_to_cpu(postdup->length));
bbaaf538 703 *xfs_dir2_data_unused_tag_p(prevdup) =
c2066e26 704 cpu_to_be16((char *)prevdup - (char *)hdr);
1da177e4
LT
705 xfs_dir2_data_log_unused(tp, bp, prevdup);
706 if (!needscan) {
707 /*
708 * Has to be the case that entries 0 and 1 are
709 * dfp and dfp2 (don't know which is which), and
710 * entry 2 is empty.
711 * Remove entry 1 first then entry 0.
712 */
713 ASSERT(dfp && dfp2);
c2066e26
CH
714 if (dfp == &hdr->bestfree[1]) {
715 dfp = &hdr->bestfree[0];
1da177e4 716 ASSERT(dfp2 == dfp);
c2066e26 717 dfp2 = &hdr->bestfree[1];
1da177e4 718 }
c2066e26
CH
719 xfs_dir2_data_freeremove(hdr, dfp2, needlogp);
720 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
1da177e4
LT
721 /*
722 * Now insert the new entry.
723 */
c2066e26
CH
724 dfp = xfs_dir2_data_freeinsert(hdr, prevdup, needlogp);
725 ASSERT(dfp == &hdr->bestfree[0]);
ad354eb3 726 ASSERT(dfp->length == prevdup->length);
1da177e4
LT
727 ASSERT(!dfp[1].length);
728 ASSERT(!dfp[2].length);
729 }
730 }
731 /*
732 * The entry before us is free, merge with it.
733 */
734 else if (prevdup) {
c2066e26 735 dfp = xfs_dir2_data_freefind(hdr, prevdup);
413d57c9 736 be16_add_cpu(&prevdup->length, len);
bbaaf538 737 *xfs_dir2_data_unused_tag_p(prevdup) =
c2066e26 738 cpu_to_be16((char *)prevdup - (char *)hdr);
1da177e4
LT
739 xfs_dir2_data_log_unused(tp, bp, prevdup);
740 /*
741 * If the previous entry was in the table, the new entry
742 * is longer, so it will be in the table too. Remove
743 * the old one and add the new one.
744 */
745 if (dfp) {
c2066e26
CH
746 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
747 xfs_dir2_data_freeinsert(hdr, prevdup, needlogp);
1da177e4
LT
748 }
749 /*
750 * Otherwise we need a scan if the new entry is big enough.
751 */
70e73f59 752 else {
ad354eb3 753 needscan = be16_to_cpu(prevdup->length) >
c2066e26 754 be16_to_cpu(hdr->bestfree[2].length);
70e73f59 755 }
1da177e4
LT
756 }
757 /*
758 * The following entry is free, merge with it.
759 */
760 else if (postdup) {
c2066e26
CH
761 dfp = xfs_dir2_data_freefind(hdr, postdup);
762 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
ad354eb3
NS
763 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
764 newdup->length = cpu_to_be16(len + be16_to_cpu(postdup->length));
bbaaf538 765 *xfs_dir2_data_unused_tag_p(newdup) =
c2066e26 766 cpu_to_be16((char *)newdup - (char *)hdr);
1da177e4
LT
767 xfs_dir2_data_log_unused(tp, bp, newdup);
768 /*
769 * If the following entry was in the table, the new entry
770 * is longer, so it will be in the table too. Remove
771 * the old one and add the new one.
772 */
773 if (dfp) {
c2066e26
CH
774 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
775 xfs_dir2_data_freeinsert(hdr, newdup, needlogp);
1da177e4
LT
776 }
777 /*
778 * Otherwise we need a scan if the new entry is big enough.
779 */
70e73f59 780 else {
ad354eb3 781 needscan = be16_to_cpu(newdup->length) >
c2066e26 782 be16_to_cpu(hdr->bestfree[2].length);
70e73f59 783 }
1da177e4
LT
784 }
785 /*
786 * Neither neighbor is free. Make a new entry.
787 */
788 else {
c2066e26 789 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
ad354eb3
NS
790 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
791 newdup->length = cpu_to_be16(len);
bbaaf538 792 *xfs_dir2_data_unused_tag_p(newdup) =
c2066e26 793 cpu_to_be16((char *)newdup - (char *)hdr);
1da177e4 794 xfs_dir2_data_log_unused(tp, bp, newdup);
c2066e26 795 xfs_dir2_data_freeinsert(hdr, newdup, needlogp);
1da177e4
LT
796 }
797 *needscanp = needscan;
798}
799
800/*
801 * Take a byte range out of an existing unused space and make it un-free.
802 */
803void
804xfs_dir2_data_use_free(
1d9025e5
DC
805 struct xfs_trans *tp,
806 struct xfs_buf *bp,
1da177e4
LT
807 xfs_dir2_data_unused_t *dup, /* unused entry */
808 xfs_dir2_data_aoff_t offset, /* starting offset to use */
809 xfs_dir2_data_aoff_t len, /* length to use */
810 int *needlogp, /* out: need to log header */
811 int *needscanp) /* out: need regen bestfree */
812{
c2066e26 813 xfs_dir2_data_hdr_t *hdr; /* data block header */
1da177e4
LT
814 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
815 int matchback; /* matches end of freespace */
816 int matchfront; /* matches start of freespace */
817 int needscan; /* need to regen bestfree */
818 xfs_dir2_data_unused_t *newdup; /* new unused entry */
819 xfs_dir2_data_unused_t *newdup2; /* another new unused entry */
820 int oldlen; /* old unused entry's length */
821
1d9025e5 822 hdr = bp->b_addr;
69ef921b
CH
823 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
824 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC));
ad354eb3 825 ASSERT(be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG);
c2066e26
CH
826 ASSERT(offset >= (char *)dup - (char *)hdr);
827 ASSERT(offset + len <= (char *)dup + be16_to_cpu(dup->length) - (char *)hdr);
828 ASSERT((char *)dup - (char *)hdr == be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
1da177e4
LT
829 /*
830 * Look up the entry in the bestfree table.
831 */
c2066e26 832 dfp = xfs_dir2_data_freefind(hdr, dup);
ad354eb3 833 oldlen = be16_to_cpu(dup->length);
c2066e26 834 ASSERT(dfp || oldlen <= be16_to_cpu(hdr->bestfree[2].length));
1da177e4
LT
835 /*
836 * Check for alignment with front and back of the entry.
837 */
c2066e26
CH
838 matchfront = (char *)dup - (char *)hdr == offset;
839 matchback = (char *)dup + oldlen - (char *)hdr == offset + len;
1da177e4
LT
840 ASSERT(*needscanp == 0);
841 needscan = 0;
842 /*
843 * If we matched it exactly we just need to get rid of it from
844 * the bestfree table.
845 */
846 if (matchfront && matchback) {
847 if (dfp) {
c2066e26 848 needscan = (hdr->bestfree[2].offset != 0);
1da177e4 849 if (!needscan)
c2066e26 850 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
1da177e4
LT
851 }
852 }
853 /*
854 * We match the first part of the entry.
855 * Make a new entry with the remaining freespace.
856 */
857 else if (matchfront) {
c2066e26 858 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
ad354eb3
NS
859 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
860 newdup->length = cpu_to_be16(oldlen - len);
bbaaf538 861 *xfs_dir2_data_unused_tag_p(newdup) =
c2066e26 862 cpu_to_be16((char *)newdup - (char *)hdr);
1da177e4
LT
863 xfs_dir2_data_log_unused(tp, bp, newdup);
864 /*
865 * If it was in the table, remove it and add the new one.
866 */
867 if (dfp) {
c2066e26
CH
868 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
869 dfp = xfs_dir2_data_freeinsert(hdr, newdup, needlogp);
1da177e4 870 ASSERT(dfp != NULL);
ad354eb3 871 ASSERT(dfp->length == newdup->length);
c2066e26 872 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)hdr);
1da177e4
LT
873 /*
874 * If we got inserted at the last slot,
875 * that means we don't know if there was a better
876 * choice for the last slot, or not. Rescan.
877 */
c2066e26 878 needscan = dfp == &hdr->bestfree[2];
1da177e4
LT
879 }
880 }
881 /*
882 * We match the last part of the entry.
883 * Trim the allocated space off the tail of the entry.
884 */
885 else if (matchback) {
886 newdup = dup;
c2066e26 887 newdup->length = cpu_to_be16(((char *)hdr + offset) - (char *)newdup);
bbaaf538 888 *xfs_dir2_data_unused_tag_p(newdup) =
c2066e26 889 cpu_to_be16((char *)newdup - (char *)hdr);
1da177e4
LT
890 xfs_dir2_data_log_unused(tp, bp, newdup);
891 /*
892 * If it was in the table, remove it and add the new one.
893 */
894 if (dfp) {
c2066e26
CH
895 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
896 dfp = xfs_dir2_data_freeinsert(hdr, newdup, needlogp);
1da177e4 897 ASSERT(dfp != NULL);
ad354eb3 898 ASSERT(dfp->length == newdup->length);
c2066e26 899 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)hdr);
1da177e4
LT
900 /*
901 * If we got inserted at the last slot,
902 * that means we don't know if there was a better
903 * choice for the last slot, or not. Rescan.
904 */
c2066e26 905 needscan = dfp == &hdr->bestfree[2];
1da177e4
LT
906 }
907 }
908 /*
909 * Poking out the middle of an entry.
910 * Make two new entries.
911 */
912 else {
913 newdup = dup;
c2066e26 914 newdup->length = cpu_to_be16(((char *)hdr + offset) - (char *)newdup);
bbaaf538 915 *xfs_dir2_data_unused_tag_p(newdup) =
c2066e26 916 cpu_to_be16((char *)newdup - (char *)hdr);
1da177e4 917 xfs_dir2_data_log_unused(tp, bp, newdup);
c2066e26 918 newdup2 = (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
ad354eb3
NS
919 newdup2->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
920 newdup2->length = cpu_to_be16(oldlen - len - be16_to_cpu(newdup->length));
bbaaf538 921 *xfs_dir2_data_unused_tag_p(newdup2) =
c2066e26 922 cpu_to_be16((char *)newdup2 - (char *)hdr);
1da177e4
LT
923 xfs_dir2_data_log_unused(tp, bp, newdup2);
924 /*
925 * If the old entry was in the table, we need to scan
926 * if the 3rd entry was valid, since these entries
927 * are smaller than the old one.
928 * If we don't need to scan that means there were 1 or 2
929 * entries in the table, and removing the old and adding
930 * the 2 new will work.
931 */
932 if (dfp) {
c2066e26 933 needscan = (hdr->bestfree[2].length != 0);
1da177e4 934 if (!needscan) {
c2066e26
CH
935 xfs_dir2_data_freeremove(hdr, dfp, needlogp);
936 xfs_dir2_data_freeinsert(hdr, newdup, needlogp);
937 xfs_dir2_data_freeinsert(hdr, newdup2,
938 needlogp);
1da177e4
LT
939 }
940 }
941 }
942 *needscanp = needscan;
943}