blob: de1ea16f57485ccc03143196eb2aced9147aed5b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110025#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100028#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020029#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_error.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans.h"
Dave Chinner33363fe2013-04-03 16:11:22 +110032#include "xfs_buf_item.h"
33#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
36 * Check the consistency of the data block.
37 * The input can also be a block-format directory.
Dave Chinner82025d72012-11-12 22:54:12 +110038 * Return 0 is the buffer is good, otherwise an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
Dave Chinner82025d72012-11-12 22:54:12 +110040int
Dave Chinner33363fe2013-04-03 16:11:22 +110041__xfs_dir3_data_check(
Dave Chinner1d9025e2012-06-22 18:50:14 +100042 struct xfs_inode *dp, /* incore inode pointer */
43 struct xfs_buf *bp) /* data block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 xfs_dir2_dataptr_t addr; /* addr for leaf lookup */
46 xfs_dir2_data_free_t *bf; /* bestfree table */
47 xfs_dir2_block_tail_t *btp=NULL; /* block tail */
48 int count; /* count of entries found */
Christoph Hellwigc2066e22011-07-08 14:35:38 +020049 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 xfs_dir2_data_entry_t *dep; /* data entry */
51 xfs_dir2_data_free_t *dfp; /* bestfree entry */
52 xfs_dir2_data_unused_t *dup; /* unused entry */
53 char *endp; /* end of useful data */
54 int freeseen; /* mask of bestfrees seen */
55 xfs_dahash_t hash; /* hash of current name */
56 int i; /* leaf index */
57 int lastfree; /* last entry was unused */
58 xfs_dir2_leaf_entry_t *lep=NULL; /* block leaf entries */
59 xfs_mount_t *mp; /* filesystem mount point */
60 char *p; /* current data position */
61 int stale; /* count of stale leaves */
Barry Naujok5163f952008-05-21 16:41:01 +100062 struct xfs_name name;
Dave Chinner9d23fc82013-10-29 22:11:48 +110063 const struct xfs_dir_ops *ops;
Dave Chinner7dda6e82014-06-06 15:11:18 +100064 struct xfs_da_geometry *geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Dave Chinner82025d72012-11-12 22:54:12 +110066 mp = bp->b_target->bt_mount;
Dave Chinner7dda6e82014-06-06 15:11:18 +100067 geo = mp->m_dir_geo;
Christoph Hellwigc2066e22011-07-08 14:35:38 +020068
Dave Chinner9d23fc82013-10-29 22:11:48 +110069 /*
Dave Chinner41419562013-10-29 22:11:50 +110070 * We can be passed a null dp here from a verifier, so we need to go the
71 * hard way to get them.
Dave Chinner9d23fc82013-10-29 22:11:48 +110072 */
Dave Chinner41419562013-10-29 22:11:50 +110073 ops = xfs_dir_get_ops(mp, dp);
Dave Chinner9d23fc82013-10-29 22:11:48 +110074
Dave Chinnera6293622013-10-29 22:11:56 +110075 hdr = bp->b_addr;
76 p = (char *)ops->data_entry_p(hdr);
77
Dave Chinner82025d72012-11-12 22:54:12 +110078 switch (hdr->magic) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110079 case cpu_to_be32(XFS_DIR3_BLOCK_MAGIC):
Dave Chinner82025d72012-11-12 22:54:12 +110080 case cpu_to_be32(XFS_DIR2_BLOCK_MAGIC):
Dave Chinner8f661932014-06-06 15:15:59 +100081 btp = xfs_dir2_block_tail_p(geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +100082 lep = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 endp = (char *)lep;
Dave Chinnera6293622013-10-29 22:11:56 +110084
85 /*
86 * The number of leaf entries is limited by the size of the
87 * block and the amount of space used by the data entries.
88 * We don't know how much space is used by the data entries yet,
89 * so just ensure that the count falls somewhere inside the
90 * block right now.
91 */
Eric Sandeen5fb5aee2015-02-23 22:39:13 +110092 XFS_WANT_CORRUPTED_RETURN(mp, be32_to_cpu(btp->count) <
Dave Chinnera6293622013-10-29 22:11:56 +110093 ((char *)btp - p) / sizeof(struct xfs_dir2_leaf_entry));
Dave Chinner82025d72012-11-12 22:54:12 +110094 break;
Dave Chinner33363fe2013-04-03 16:11:22 +110095 case cpu_to_be32(XFS_DIR3_DATA_MAGIC):
Dave Chinner82025d72012-11-12 22:54:12 +110096 case cpu_to_be32(XFS_DIR2_DATA_MAGIC):
Dave Chinner8f661932014-06-06 15:15:59 +100097 endp = (char *)hdr + geo->blksize;
Dave Chinner82025d72012-11-12 22:54:12 +110098 break;
99 default:
100 XFS_ERROR_REPORT("Bad Magic", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000101 return -EFSCORRUPTED;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200102 }
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 /*
105 * Account for zero bestfree entries.
106 */
Dave Chinnera6293622013-10-29 22:11:56 +1100107 bf = ops->data_bestfree_p(hdr);
108 count = lastfree = freeseen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (!bf[0].length) {
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100110 XFS_WANT_CORRUPTED_RETURN(mp, !bf[0].offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 freeseen |= 1 << 0;
112 }
113 if (!bf[1].length) {
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100114 XFS_WANT_CORRUPTED_RETURN(mp, !bf[1].offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 freeseen |= 1 << 1;
116 }
117 if (!bf[2].length) {
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100118 XFS_WANT_CORRUPTED_RETURN(mp, !bf[2].offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 freeseen |= 1 << 2;
120 }
Dave Chinner82025d72012-11-12 22:54:12 +1100121
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100122 XFS_WANT_CORRUPTED_RETURN(mp, be16_to_cpu(bf[0].length) >=
Dave Chinner82025d72012-11-12 22:54:12 +1100123 be16_to_cpu(bf[1].length));
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100124 XFS_WANT_CORRUPTED_RETURN(mp, be16_to_cpu(bf[1].length) >=
Dave Chinner82025d72012-11-12 22:54:12 +1100125 be16_to_cpu(bf[2].length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /*
127 * Loop over the data/unused entries.
128 */
129 while (p < endp) {
130 dup = (xfs_dir2_data_unused_t *)p;
131 /*
132 * If it's unused, look for the space in the bestfree table.
133 * If we find it, account for that, else make sure it
134 * doesn't need to be there.
135 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100136 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100137 XFS_WANT_CORRUPTED_RETURN(mp, lastfree == 0);
138 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner82025d72012-11-12 22:54:12 +1100139 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)) ==
140 (char *)dup - (char *)hdr);
Dave Chinner2ca98772013-10-29 22:11:49 +1100141 dfp = xfs_dir2_data_freefind(hdr, bf, dup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (dfp) {
143 i = (int)(dfp - bf);
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100144 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner82025d72012-11-12 22:54:12 +1100145 (freeseen & (1 << i)) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 freeseen |= 1 << i;
Nathan Scott70e73f52006-03-17 17:26:52 +1100147 } else {
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100148 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner82025d72012-11-12 22:54:12 +1100149 be16_to_cpu(dup->length) <=
150 be16_to_cpu(bf[2].length));
Nathan Scott70e73f52006-03-17 17:26:52 +1100151 }
Nathan Scottad354eb2006-03-17 17:27:37 +1100152 p += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 lastfree = 1;
154 continue;
155 }
156 /*
157 * It's a real entry. Validate the fields.
158 * If this is a block directory then make sure it's
159 * in the leaf section of the block.
160 * The linear search is crude but this is DEBUG code.
161 */
162 dep = (xfs_dir2_data_entry_t *)p;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100163 XFS_WANT_CORRUPTED_RETURN(mp, dep->namelen != 0);
164 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner82025d72012-11-12 22:54:12 +1100165 !xfs_dir_ino_validate(mp, be64_to_cpu(dep->inumber)));
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100166 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner9d23fc82013-10-29 22:11:48 +1100167 be16_to_cpu(*ops->data_entry_tag_p(dep)) ==
Dave Chinner82025d72012-11-12 22:54:12 +1100168 (char *)dep - (char *)hdr);
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100169 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner9d23fc82013-10-29 22:11:48 +1100170 ops->data_get_ftype(dep) < XFS_DIR3_FT_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 count++;
172 lastfree = 0;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100173 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
174 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
Dave Chinner7dda6e82014-06-06 15:11:18 +1000175 addr = xfs_dir2_db_off_to_dataptr(geo, geo->datablk,
176 (xfs_dir2_data_aoff_t)
177 ((char *)dep - (char *)hdr));
Barry Naujok5163f952008-05-21 16:41:01 +1000178 name.name = dep->name;
179 name.len = dep->namelen;
180 hash = mp->m_dirnameops->hashname(&name);
Nathan Scotte922fff2006-03-17 17:27:56 +1100181 for (i = 0; i < be32_to_cpu(btp->count); i++) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100182 if (be32_to_cpu(lep[i].address) == addr &&
183 be32_to_cpu(lep[i].hashval) == hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 break;
185 }
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100186 XFS_WANT_CORRUPTED_RETURN(mp,
187 i < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100189 p += ops->data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191 /*
192 * Need to have seen all the entries and all the bestfree slots.
193 */
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100194 XFS_WANT_CORRUPTED_RETURN(mp, freeseen == 7);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100195 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
196 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
Nathan Scotte922fff2006-03-17 17:27:56 +1100197 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200198 if (lep[i].address ==
199 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 stale++;
201 if (i > 0)
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100202 XFS_WANT_CORRUPTED_RETURN(mp,
Dave Chinner82025d72012-11-12 22:54:12 +1100203 be32_to_cpu(lep[i].hashval) >=
204 be32_to_cpu(lep[i - 1].hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100206 XFS_WANT_CORRUPTED_RETURN(mp, count ==
Dave Chinner82025d72012-11-12 22:54:12 +1100207 be32_to_cpu(btp->count) - be32_to_cpu(btp->stale));
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100208 XFS_WANT_CORRUPTED_RETURN(mp, stale == be32_to_cpu(btp->stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Dave Chinner82025d72012-11-12 22:54:12 +1100210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Dave Chinner33363fe2013-04-03 16:11:22 +1100213static bool
214xfs_dir3_data_verify(
Dave Chinnere4813572012-11-12 22:54:14 +1100215 struct xfs_buf *bp)
216{
217 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner33363fe2013-04-03 16:11:22 +1100218 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Dave Chinnere4813572012-11-12 22:54:14 +1100219
Dave Chinner33363fe2013-04-03 16:11:22 +1100220 if (xfs_sb_version_hascrc(&mp->m_sb)) {
221 if (hdr3->magic != cpu_to_be32(XFS_DIR3_DATA_MAGIC))
222 return false;
223 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
224 return false;
225 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
226 return false;
227 } else {
228 if (hdr3->magic != cpu_to_be32(XFS_DIR2_DATA_MAGIC))
229 return false;
Dave Chinnere4813572012-11-12 22:54:14 +1100230 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100231 if (__xfs_dir3_data_check(NULL, bp))
232 return false;
233 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100234}
Dave Chinnere4813572012-11-12 22:54:14 +1100235
Dave Chinner1813dd62012-11-14 17:54:40 +1100236/*
237 * Readahead of the first block of the directory when it is opened is completely
238 * oblivious to the format of the directory. Hence we can either get a block
239 * format buffer or a data format buffer on readahead.
240 */
241static void
Dave Chinner33363fe2013-04-03 16:11:22 +1100242xfs_dir3_data_reada_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100243 struct xfs_buf *bp)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100244{
Dave Chinner1813dd62012-11-14 17:54:40 +1100245 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
246
247 switch (hdr->magic) {
248 case cpu_to_be32(XFS_DIR2_BLOCK_MAGIC):
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100249 case cpu_to_be32(XFS_DIR3_BLOCK_MAGIC):
250 bp->b_ops = &xfs_dir3_block_buf_ops;
Dave Chinner1813dd62012-11-14 17:54:40 +1100251 bp->b_ops->verify_read(bp);
252 return;
253 case cpu_to_be32(XFS_DIR2_DATA_MAGIC):
Dave Chinner33363fe2013-04-03 16:11:22 +1100254 case cpu_to_be32(XFS_DIR3_DATA_MAGIC):
255 xfs_dir3_data_verify(bp);
Dave Chinner1813dd62012-11-14 17:54:40 +1100256 return;
257 default:
Dave Chinner24513372014-06-25 14:58:08 +1000258 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100259 xfs_verifier_error(bp);
Dave Chinner1813dd62012-11-14 17:54:40 +1100260 break;
261 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100262}
263
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100264static void
Dave Chinner33363fe2013-04-03 16:11:22 +1100265xfs_dir3_data_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100266 struct xfs_buf *bp)
267{
Dave Chinner33363fe2013-04-03 16:11:22 +1100268 struct xfs_mount *mp = bp->b_target->bt_mount;
269
Eric Sandeence5028c2014-02-27 15:23:10 +1100270 if (xfs_sb_version_hascrc(&mp->m_sb) &&
271 !xfs_buf_verify_cksum(bp, XFS_DIR3_DATA_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000272 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100273 else if (!xfs_dir3_data_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000274 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100275
276 if (bp->b_error)
277 xfs_verifier_error(bp);
Dave Chinnere4813572012-11-12 22:54:14 +1100278}
279
Dave Chinner1813dd62012-11-14 17:54:40 +1100280static void
Dave Chinner33363fe2013-04-03 16:11:22 +1100281xfs_dir3_data_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100282 struct xfs_buf *bp)
283{
Dave Chinner33363fe2013-04-03 16:11:22 +1100284 struct xfs_mount *mp = bp->b_target->bt_mount;
285 struct xfs_buf_log_item *bip = bp->b_fspriv;
286 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
287
288 if (!xfs_dir3_data_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000289 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100290 xfs_verifier_error(bp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100291 return;
292 }
293
294 if (!xfs_sb_version_hascrc(&mp->m_sb))
295 return;
296
297 if (bip)
298 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
299
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100300 xfs_buf_update_cksum(bp, XFS_DIR3_DATA_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100301}
302
Dave Chinner33363fe2013-04-03 16:11:22 +1100303const struct xfs_buf_ops xfs_dir3_data_buf_ops = {
304 .verify_read = xfs_dir3_data_read_verify,
305 .verify_write = xfs_dir3_data_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100306};
307
Dave Chinner33363fe2013-04-03 16:11:22 +1100308static const struct xfs_buf_ops xfs_dir3_data_reada_buf_ops = {
309 .verify_read = xfs_dir3_data_reada_verify,
310 .verify_write = xfs_dir3_data_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100311};
312
Dave Chinner612cfbf2012-11-14 17:52:32 +1100313
Dave Chinnere4813572012-11-12 22:54:14 +1100314int
Dave Chinner33363fe2013-04-03 16:11:22 +1100315xfs_dir3_data_read(
Dave Chinnere4813572012-11-12 22:54:14 +1100316 struct xfs_trans *tp,
317 struct xfs_inode *dp,
318 xfs_dablk_t bno,
319 xfs_daddr_t mapped_bno,
320 struct xfs_buf **bpp)
321{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100322 int err;
323
324 err = xfs_da_read_buf(tp, dp, bno, mapped_bno, bpp,
Dave Chinner33363fe2013-04-03 16:11:22 +1100325 XFS_DATA_FORK, &xfs_dir3_data_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100326 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100327 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100328 return err;
Dave Chinnere4813572012-11-12 22:54:14 +1100329}
330
Dave Chinnerda6958c2012-11-12 22:54:18 +1100331int
Dave Chinner33363fe2013-04-03 16:11:22 +1100332xfs_dir3_data_readahead(
Dave Chinnerda6958c2012-11-12 22:54:18 +1100333 struct xfs_inode *dp,
334 xfs_dablk_t bno,
335 xfs_daddr_t mapped_bno)
336{
Eric Sandeen9df2dd02014-04-14 19:01:59 +1000337 return xfs_da_reada_buf(dp, bno, mapped_bno,
Dave Chinner33363fe2013-04-03 16:11:22 +1100338 XFS_DATA_FORK, &xfs_dir3_data_reada_buf_ops);
Dave Chinnerda6958c2012-11-12 22:54:18 +1100339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/*
342 * Given a data block and an unused entry from that block,
343 * return the bestfree entry if any that corresponds to it.
344 */
Dave Chinner2b9ab5a2013-08-12 20:49:37 +1000345xfs_dir2_data_free_t *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346xfs_dir2_data_freefind(
Dave Chinner2ca98772013-10-29 22:11:49 +1100347 struct xfs_dir2_data_hdr *hdr, /* data block header */
348 struct xfs_dir2_data_free *bf, /* bestfree table pointer */
349 struct xfs_dir2_data_unused *dup) /* unused space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 xfs_dir2_data_free_t *dfp; /* bestfree entry */
352 xfs_dir2_data_aoff_t off; /* offset value needed */
Dave Chinnerb49a0c12013-08-12 20:49:51 +1000353#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int matched; /* matched the value */
355 int seenzero; /* saw a 0 bestfree entry */
356#endif
357
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200358 off = (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100359
Dave Chinnerb49a0c12013-08-12 20:49:51 +1000360#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /*
362 * Validate some consistency in the bestfree table.
363 * Check order, non-overlapping entries, and if we find the
364 * one we're looking for it has to be exact.
365 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200366 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100367 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100368 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
369 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
370 for (dfp = &bf[0], seenzero = matched = 0;
371 dfp < &bf[XFS_DIR2_DATA_FD_COUNT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 dfp++) {
373 if (!dfp->offset) {
374 ASSERT(!dfp->length);
375 seenzero = 1;
376 continue;
377 }
378 ASSERT(seenzero == 0);
Nathan Scott70e73f52006-03-17 17:26:52 +1100379 if (be16_to_cpu(dfp->offset) == off) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 matched = 1;
Nathan Scottad354eb2006-03-17 17:27:37 +1100381 ASSERT(dfp->length == dup->length);
Nathan Scott70e73f52006-03-17 17:26:52 +1100382 } else if (off < be16_to_cpu(dfp->offset))
Nathan Scottad354eb2006-03-17 17:27:37 +1100383 ASSERT(off + be16_to_cpu(dup->length) <= be16_to_cpu(dfp->offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 else
Nathan Scott70e73f52006-03-17 17:26:52 +1100385 ASSERT(be16_to_cpu(dfp->offset) + be16_to_cpu(dfp->length) <= off);
Nathan Scottad354eb2006-03-17 17:27:37 +1100386 ASSERT(matched || be16_to_cpu(dfp->length) >= be16_to_cpu(dup->length));
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100387 if (dfp > &bf[0])
Nathan Scott70e73f52006-03-17 17:26:52 +1100388 ASSERT(be16_to_cpu(dfp[-1].length) >= be16_to_cpu(dfp[0].length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390#endif
391 /*
392 * If this is smaller than the smallest bestfree entry,
393 * it can't be there since they're sorted.
394 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100395 if (be16_to_cpu(dup->length) <
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100396 be16_to_cpu(bf[XFS_DIR2_DATA_FD_COUNT - 1].length))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return NULL;
398 /*
399 * Look at the three bestfree entries for our guy.
400 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100401 for (dfp = &bf[0]; dfp < &bf[XFS_DIR2_DATA_FD_COUNT]; dfp++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!dfp->offset)
403 return NULL;
Nathan Scott70e73f52006-03-17 17:26:52 +1100404 if (be16_to_cpu(dfp->offset) == off)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return dfp;
406 }
407 /*
408 * Didn't find it. This only happens if there are duplicate lengths.
409 */
410 return NULL;
411}
412
413/*
414 * Insert an unused-space entry into the bestfree table.
415 */
416xfs_dir2_data_free_t * /* entry inserted */
417xfs_dir2_data_freeinsert(
Dave Chinner2ca98772013-10-29 22:11:49 +1100418 struct xfs_dir2_data_hdr *hdr, /* data block pointer */
419 struct xfs_dir2_data_free *dfp, /* bestfree table pointer */
420 struct xfs_dir2_data_unused *dup, /* unused space */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int *loghead) /* log the data header (out) */
422{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 xfs_dir2_data_free_t new; /* new bestfree entry */
424
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200425 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100426 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
427 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
428 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
429
Nathan Scott70e73f52006-03-17 17:26:52 +1100430 new.length = dup->length;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200431 new.offset = cpu_to_be16((char *)dup - (char *)hdr);
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /*
434 * Insert at position 0, 1, or 2; or not at all.
435 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100436 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 dfp[2] = dfp[1];
438 dfp[1] = dfp[0];
439 dfp[0] = new;
440 *loghead = 1;
441 return &dfp[0];
442 }
Nathan Scott70e73f52006-03-17 17:26:52 +1100443 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[1].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 dfp[2] = dfp[1];
445 dfp[1] = new;
446 *loghead = 1;
447 return &dfp[1];
448 }
Nathan Scott70e73f52006-03-17 17:26:52 +1100449 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[2].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 dfp[2] = new;
451 *loghead = 1;
452 return &dfp[2];
453 }
454 return NULL;
455}
456
457/*
458 * Remove a bestfree entry from the table.
459 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000460STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461xfs_dir2_data_freeremove(
Dave Chinner2ca98772013-10-29 22:11:49 +1100462 struct xfs_dir2_data_hdr *hdr, /* data block header */
463 struct xfs_dir2_data_free *bf, /* bestfree table pointer */
464 struct xfs_dir2_data_free *dfp, /* bestfree entry pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 int *loghead) /* out: log data header */
466{
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100467
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200468 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100469 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
470 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
471 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /*
474 * It's the first entry, slide the next 2 up.
475 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100476 if (dfp == &bf[0]) {
477 bf[0] = bf[1];
478 bf[1] = bf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 /*
481 * It's the second entry, slide the 3rd entry up.
482 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100483 else if (dfp == &bf[1])
484 bf[1] = bf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /*
486 * Must be the last entry.
487 */
488 else
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100489 ASSERT(dfp == &bf[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /*
491 * Clear the 3rd entry, must be zero now.
492 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100493 bf[2].length = 0;
494 bf[2].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 *loghead = 1;
496}
497
498/*
499 * Given a data block, reconstruct its bestfree map.
500 */
501void
502xfs_dir2_data_freescan(
Dave Chinner9d23fc82013-10-29 22:11:48 +1100503 struct xfs_inode *dp,
504 struct xfs_dir2_data_hdr *hdr,
505 int *loghead)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 xfs_dir2_block_tail_t *btp; /* block tail */
508 xfs_dir2_data_entry_t *dep; /* active data entry */
509 xfs_dir2_data_unused_t *dup; /* unused data entry */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100510 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 char *endp; /* end of block's data */
512 char *p; /* current entry pointer */
Dave Chinner8f661932014-06-06 15:15:59 +1000513 struct xfs_da_geometry *geo = dp->i_mount->m_dir_geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200515 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100516 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100517 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
518 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /*
521 * Start by clearing the table.
522 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100523 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100524 memset(bf, 0, sizeof(*bf) * XFS_DIR2_DATA_FD_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 *loghead = 1;
526 /*
527 * Set up pointers.
528 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100529 p = (char *)dp->d_ops->data_entry_p(hdr);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100530 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
531 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
Dave Chinner8f661932014-06-06 15:15:59 +1000532 btp = xfs_dir2_block_tail_p(geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000533 endp = (char *)xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 } else
Dave Chinner8f661932014-06-06 15:15:59 +1000535 endp = (char *)hdr + geo->blksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /*
537 * Loop over the block's entries.
538 */
539 while (p < endp) {
540 dup = (xfs_dir2_data_unused_t *)p;
541 /*
542 * If it's a free entry, insert it.
543 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100544 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200545 ASSERT((char *)dup - (char *)hdr ==
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000546 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
Dave Chinner2ca98772013-10-29 22:11:49 +1100547 xfs_dir2_data_freeinsert(hdr, bf, dup, loghead);
Nathan Scottad354eb2006-03-17 17:27:37 +1100548 p += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550 /*
551 * For active entries, check their tags and skip them.
552 */
553 else {
554 dep = (xfs_dir2_data_entry_t *)p;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200555 ASSERT((char *)dep - (char *)hdr ==
Dave Chinner9d23fc82013-10-29 22:11:48 +1100556 be16_to_cpu(*dp->d_ops->data_entry_tag_p(dep)));
557 p += dp->d_ops->data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 }
560}
561
562/*
563 * Initialize a data block at the given block number in the directory.
564 * Give back the buffer for the created block.
565 */
566int /* error */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100567xfs_dir3_data_init(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 xfs_da_args_t *args, /* directory operation args */
569 xfs_dir2_db_t blkno, /* logical dir block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000570 struct xfs_buf **bpp) /* output block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000572 struct xfs_buf *bp; /* block buffer */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200573 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 xfs_inode_t *dp; /* incore directory inode */
575 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100576 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 int error; /* error return value */
578 int i; /* bestfree index */
579 xfs_mount_t *mp; /* filesystem mount point */
580 xfs_trans_t *tp; /* transaction pointer */
581 int t; /* temp */
582
583 dp = args->dp;
584 mp = dp->i_mount;
585 tp = args->trans;
586 /*
587 * Get the buffer set up for the block.
588 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000589 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, blkno),
590 -1, &bp, XFS_DATA_FORK);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100591 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return error;
Dave Chinner33363fe2013-04-03 16:11:22 +1100593 bp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100594 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_DATA_BUF);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /*
597 * Initialize the header.
598 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000599 hdr = bp->b_addr;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100600 if (xfs_sb_version_hascrc(&mp->m_sb)) {
601 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
602
603 memset(hdr3, 0, sizeof(*hdr3));
604 hdr3->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
605 hdr3->blkno = cpu_to_be64(bp->b_bn);
606 hdr3->owner = cpu_to_be64(dp->i_ino);
607 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
608
609 } else
610 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
611
Dave Chinner2ca98772013-10-29 22:11:49 +1100612 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100613 bf[0].offset = cpu_to_be16(dp->d_ops->data_entry_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 for (i = 1; i < XFS_DIR2_DATA_FD_COUNT; i++) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100615 bf[i].length = 0;
616 bf[i].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * Set up an unused entry for the block's body.
621 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100622 dup = dp->d_ops->data_unused_p(hdr);
Nathan Scottad354eb2006-03-17 17:27:37 +1100623 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Dave Chinner8f661932014-06-06 15:15:59 +1000625 t = args->geo->blksize - (uint)dp->d_ops->data_entry_offset;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100626 bf[0].length = cpu_to_be16(t);
Nathan Scottad354eb2006-03-17 17:27:37 +1100627 dup->length = cpu_to_be16(t);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200628 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16((char *)dup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
630 * Log it and return it.
631 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000632 xfs_dir2_data_log_header(args, bp);
633 xfs_dir2_data_log_unused(args, bp, dup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 *bpp = bp;
635 return 0;
636}
637
638/*
639 * Log an active data entry from the block.
640 */
641void
642xfs_dir2_data_log_entry(
Dave Chinnerbc851782014-06-06 15:20:54 +1000643 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000644 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 xfs_dir2_data_entry_t *dep) /* data entry pointer */
646{
Dave Chinner0cb97762013-08-12 20:50:09 +1000647 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200649 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100650 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100651 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
652 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200653
Dave Chinnerbc851782014-06-06 15:20:54 +1000654 xfs_trans_log_buf(args->trans, bp, (uint)((char *)dep - (char *)hdr),
655 (uint)((char *)(args->dp->d_ops->data_entry_tag_p(dep) + 1) -
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200656 (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659/*
660 * Log a data block header.
661 */
662void
663xfs_dir2_data_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +1000664 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000665 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Dave Chinner2ca98772013-10-29 22:11:49 +1100667#ifdef DEBUG
668 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200670 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100671 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100672 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
673 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Dave Chinner2ca98772013-10-29 22:11:49 +1100674#endif
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200675
Dave Chinnerbc851782014-06-06 15:20:54 +1000676 xfs_trans_log_buf(args->trans, bp, 0,
677 args->dp->d_ops->data_entry_offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680/*
681 * Log a data unused entry.
682 */
683void
684xfs_dir2_data_log_unused(
Dave Chinnerbc851782014-06-06 15:20:54 +1000685 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000686 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 xfs_dir2_data_unused_t *dup) /* data unused pointer */
688{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000689 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200691 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100692 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100693 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
694 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /*
697 * Log the first part of the unused entry.
698 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000699 xfs_trans_log_buf(args->trans, bp, (uint)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 (uint)((char *)&dup->length + sizeof(dup->length) -
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200701 1 - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /*
703 * Log the end (tag) of the unused entry.
704 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000705 xfs_trans_log_buf(args->trans, bp,
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200706 (uint)((char *)xfs_dir2_data_unused_tag_p(dup) - (char *)hdr),
707 (uint)((char *)xfs_dir2_data_unused_tag_p(dup) - (char *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 sizeof(xfs_dir2_data_off_t) - 1));
709}
710
711/*
712 * Make a byte range in the data block unused.
713 * Its current contents are unimportant.
714 */
715void
716xfs_dir2_data_make_free(
Dave Chinnerbc851782014-06-06 15:20:54 +1000717 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000718 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 xfs_dir2_data_aoff_t offset, /* starting byte offset */
720 xfs_dir2_data_aoff_t len, /* length in bytes */
721 int *needlogp, /* out: log header */
722 int *needscanp) /* out: regen bestfree */
723{
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200724 xfs_dir2_data_hdr_t *hdr; /* data block pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
726 char *endptr; /* end of data area */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 int needscan; /* need to regen bestfree */
728 xfs_dir2_data_unused_t *newdup; /* new unused entry */
729 xfs_dir2_data_unused_t *postdup; /* unused entry after us */
730 xfs_dir2_data_unused_t *prevdup; /* unused entry before us */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100731 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Dave Chinner1d9025e2012-06-22 18:50:14 +1000733 hdr = bp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /*
736 * Figure out where the end of the data area is.
737 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100738 if (hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
739 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC))
Dave Chinnerbc851782014-06-06 15:20:54 +1000740 endptr = (char *)hdr + args->geo->blksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 else {
742 xfs_dir2_block_tail_t *btp; /* block tail */
743
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100744 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
745 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Dave Chinnerbc851782014-06-06 15:20:54 +1000746 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000747 endptr = (char *)xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749 /*
750 * If this isn't the start of the block, then back up to
751 * the previous entry and see if it's free.
752 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000753 if (offset > args->dp->d_ops->data_entry_offset) {
Nathan Scott3d693c62006-03-17 17:28:27 +1100754 __be16 *tagp; /* tag just before us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200756 tagp = (__be16 *)((char *)hdr + offset) - 1;
757 prevdup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Nathan Scottad354eb2006-03-17 17:27:37 +1100758 if (be16_to_cpu(prevdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 prevdup = NULL;
760 } else
761 prevdup = NULL;
762 /*
763 * If this isn't the end of the block, see if the entry after
764 * us is free.
765 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200766 if ((char *)hdr + offset + len < endptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 postdup =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200768 (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
Nathan Scottad354eb2006-03-17 17:27:37 +1100769 if (be16_to_cpu(postdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 postdup = NULL;
771 } else
772 postdup = NULL;
773 ASSERT(*needscanp == 0);
774 needscan = 0;
775 /*
776 * Previous and following entries are both free,
777 * merge everything into a single free entry.
778 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000779 bf = args->dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (prevdup && postdup) {
781 xfs_dir2_data_free_t *dfp2; /* another bestfree pointer */
782
783 /*
784 * See if prevdup and/or postdup are in bestfree table.
785 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100786 dfp = xfs_dir2_data_freefind(hdr, bf, prevdup);
787 dfp2 = xfs_dir2_data_freefind(hdr, bf, postdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /*
789 * We need a rescan unless there are exactly 2 free entries
790 * namely our two. Then we know what's happening, otherwise
791 * since the third bestfree is there, there might be more
792 * entries.
793 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100794 needscan = (bf[2].length != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /*
796 * Fix up the new big freespace.
797 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800798 be16_add_cpu(&prevdup->length, len + be16_to_cpu(postdup->length));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000799 *xfs_dir2_data_unused_tag_p(prevdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200800 cpu_to_be16((char *)prevdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000801 xfs_dir2_data_log_unused(args, bp, prevdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (!needscan) {
803 /*
804 * Has to be the case that entries 0 and 1 are
805 * dfp and dfp2 (don't know which is which), and
806 * entry 2 is empty.
807 * Remove entry 1 first then entry 0.
808 */
809 ASSERT(dfp && dfp2);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100810 if (dfp == &bf[1]) {
811 dfp = &bf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 ASSERT(dfp2 == dfp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100813 dfp2 = &bf[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
Dave Chinner2ca98772013-10-29 22:11:49 +1100815 xfs_dir2_data_freeremove(hdr, bf, dfp2, needlogp);
816 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /*
818 * Now insert the new entry.
819 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100820 dfp = xfs_dir2_data_freeinsert(hdr, bf, prevdup,
821 needlogp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100822 ASSERT(dfp == &bf[0]);
Nathan Scottad354eb2006-03-17 17:27:37 +1100823 ASSERT(dfp->length == prevdup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 ASSERT(!dfp[1].length);
825 ASSERT(!dfp[2].length);
826 }
827 }
828 /*
829 * The entry before us is free, merge with it.
830 */
831 else if (prevdup) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100832 dfp = xfs_dir2_data_freefind(hdr, bf, prevdup);
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800833 be16_add_cpu(&prevdup->length, len);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000834 *xfs_dir2_data_unused_tag_p(prevdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200835 cpu_to_be16((char *)prevdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000836 xfs_dir2_data_log_unused(args, bp, prevdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /*
838 * If the previous entry was in the table, the new entry
839 * is longer, so it will be in the table too. Remove
840 * the old one and add the new one.
841 */
842 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100843 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
844 xfs_dir2_data_freeinsert(hdr, bf, prevdup, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 /*
847 * Otherwise we need a scan if the new entry is big enough.
848 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100849 else {
Nathan Scottad354eb2006-03-17 17:27:37 +1100850 needscan = be16_to_cpu(prevdup->length) >
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100851 be16_to_cpu(bf[2].length);
Nathan Scott70e73f52006-03-17 17:26:52 +1100852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854 /*
855 * The following entry is free, merge with it.
856 */
857 else if (postdup) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100858 dfp = xfs_dir2_data_freefind(hdr, bf, postdup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200859 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +1100860 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
861 newdup->length = cpu_to_be16(len + be16_to_cpu(postdup->length));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000862 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200863 cpu_to_be16((char *)newdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000864 xfs_dir2_data_log_unused(args, bp, newdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /*
866 * If the following entry was in the table, the new entry
867 * is longer, so it will be in the table too. Remove
868 * the old one and add the new one.
869 */
870 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100871 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
872 xfs_dir2_data_freeinsert(hdr, bf, newdup, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874 /*
875 * Otherwise we need a scan if the new entry is big enough.
876 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100877 else {
Nathan Scottad354eb2006-03-17 17:27:37 +1100878 needscan = be16_to_cpu(newdup->length) >
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100879 be16_to_cpu(bf[2].length);
Nathan Scott70e73f52006-03-17 17:26:52 +1100880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 /*
883 * Neither neighbor is free. Make a new entry.
884 */
885 else {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200886 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +1100887 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
888 newdup->length = cpu_to_be16(len);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000889 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200890 cpu_to_be16((char *)newdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000891 xfs_dir2_data_log_unused(args, bp, newdup);
Dave Chinner2ca98772013-10-29 22:11:49 +1100892 xfs_dir2_data_freeinsert(hdr, bf, newdup, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894 *needscanp = needscan;
895}
896
897/*
898 * Take a byte range out of an existing unused space and make it un-free.
899 */
900void
901xfs_dir2_data_use_free(
Dave Chinnerbc851782014-06-06 15:20:54 +1000902 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000903 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 xfs_dir2_data_unused_t *dup, /* unused entry */
905 xfs_dir2_data_aoff_t offset, /* starting offset to use */
906 xfs_dir2_data_aoff_t len, /* length to use */
907 int *needlogp, /* out: need to log header */
908 int *needscanp) /* out: need regen bestfree */
909{
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200910 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
912 int matchback; /* matches end of freespace */
913 int matchfront; /* matches start of freespace */
914 int needscan; /* need to regen bestfree */
915 xfs_dir2_data_unused_t *newdup; /* new unused entry */
916 xfs_dir2_data_unused_t *newdup2; /* another new unused entry */
917 int oldlen; /* old unused entry's length */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100918 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Dave Chinner1d9025e2012-06-22 18:50:14 +1000920 hdr = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200921 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100922 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100923 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
924 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Nathan Scottad354eb2006-03-17 17:27:37 +1100925 ASSERT(be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200926 ASSERT(offset >= (char *)dup - (char *)hdr);
927 ASSERT(offset + len <= (char *)dup + be16_to_cpu(dup->length) - (char *)hdr);
928 ASSERT((char *)dup - (char *)hdr == be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /*
930 * Look up the entry in the bestfree table.
931 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100932 oldlen = be16_to_cpu(dup->length);
Dave Chinnerbc851782014-06-06 15:20:54 +1000933 bf = args->dp->d_ops->data_bestfree_p(hdr);
Dave Chinner2ca98772013-10-29 22:11:49 +1100934 dfp = xfs_dir2_data_freefind(hdr, bf, dup);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100935 ASSERT(dfp || oldlen <= be16_to_cpu(bf[2].length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /*
937 * Check for alignment with front and back of the entry.
938 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200939 matchfront = (char *)dup - (char *)hdr == offset;
940 matchback = (char *)dup + oldlen - (char *)hdr == offset + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 ASSERT(*needscanp == 0);
942 needscan = 0;
943 /*
944 * If we matched it exactly we just need to get rid of it from
945 * the bestfree table.
946 */
947 if (matchfront && matchback) {
948 if (dfp) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100949 needscan = (bf[2].offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (!needscan)
Dave Chinner2ca98772013-10-29 22:11:49 +1100951 xfs_dir2_data_freeremove(hdr, bf, dfp,
952 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954 }
955 /*
956 * We match the first part of the entry.
957 * Make a new entry with the remaining freespace.
958 */
959 else if (matchfront) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200960 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
Nathan Scottad354eb2006-03-17 17:27:37 +1100961 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
962 newdup->length = cpu_to_be16(oldlen - len);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000963 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200964 cpu_to_be16((char *)newdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000965 xfs_dir2_data_log_unused(args, bp, newdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 /*
967 * If it was in the table, remove it and add the new one.
968 */
969 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100970 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
971 dfp = xfs_dir2_data_freeinsert(hdr, bf, newdup,
972 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 ASSERT(dfp != NULL);
Nathan Scottad354eb2006-03-17 17:27:37 +1100974 ASSERT(dfp->length == newdup->length);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200975 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /*
977 * If we got inserted at the last slot,
978 * that means we don't know if there was a better
979 * choice for the last slot, or not. Rescan.
980 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100981 needscan = dfp == &bf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 }
983 }
984 /*
985 * We match the last part of the entry.
986 * Trim the allocated space off the tail of the entry.
987 */
988 else if (matchback) {
989 newdup = dup;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200990 newdup->length = cpu_to_be16(((char *)hdr + offset) - (char *)newdup);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000991 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200992 cpu_to_be16((char *)newdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000993 xfs_dir2_data_log_unused(args, bp, newdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /*
995 * If it was in the table, remove it and add the new one.
996 */
997 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100998 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
999 dfp = xfs_dir2_data_freeinsert(hdr, bf, newdup,
1000 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 ASSERT(dfp != NULL);
Nathan Scottad354eb2006-03-17 17:27:37 +11001002 ASSERT(dfp->length == newdup->length);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001003 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 /*
1005 * If we got inserted at the last slot,
1006 * that means we don't know if there was a better
1007 * choice for the last slot, or not. Rescan.
1008 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001009 needscan = dfp == &bf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011 }
1012 /*
1013 * Poking out the middle of an entry.
1014 * Make two new entries.
1015 */
1016 else {
1017 newdup = dup;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001018 newdup->length = cpu_to_be16(((char *)hdr + offset) - (char *)newdup);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001019 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001020 cpu_to_be16((char *)newdup - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001021 xfs_dir2_data_log_unused(args, bp, newdup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001022 newdup2 = (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
Nathan Scottad354eb2006-03-17 17:27:37 +11001023 newdup2->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1024 newdup2->length = cpu_to_be16(oldlen - len - be16_to_cpu(newdup->length));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001025 *xfs_dir2_data_unused_tag_p(newdup2) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001026 cpu_to_be16((char *)newdup2 - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001027 xfs_dir2_data_log_unused(args, bp, newdup2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /*
1029 * If the old entry was in the table, we need to scan
1030 * if the 3rd entry was valid, since these entries
1031 * are smaller than the old one.
1032 * If we don't need to scan that means there were 1 or 2
1033 * entries in the table, and removing the old and adding
1034 * the 2 new will work.
1035 */
1036 if (dfp) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001037 needscan = (bf[2].length != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (!needscan) {
Dave Chinner2ca98772013-10-29 22:11:49 +11001039 xfs_dir2_data_freeremove(hdr, bf, dfp,
1040 needlogp);
1041 xfs_dir2_data_freeinsert(hdr, bf, newdup,
1042 needlogp);
1043 xfs_dir2_data_freeinsert(hdr, bf, newdup2,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001044 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046 }
1047 }
1048 *needscanp = needscan;
1049}