blob: 70acff4ee1739860a4ed8a311aa8ff2f2b33aafe [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_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100030#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020031#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Dave Chinner33363fe2013-04-03 16:11:22 +110034#include "xfs_buf_item.h"
35#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/*
38 * Check the consistency of the data block.
39 * The input can also be a block-format directory.
Dave Chinner82025d72012-11-12 22:54:12 +110040 * Return 0 is the buffer is good, otherwise an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Dave Chinner82025d72012-11-12 22:54:12 +110042int
Dave Chinner33363fe2013-04-03 16:11:22 +110043__xfs_dir3_data_check(
Dave Chinner1d9025e2012-06-22 18:50:14 +100044 struct xfs_inode *dp, /* incore inode pointer */
45 struct xfs_buf *bp) /* data block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
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 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +020051 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 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 */
Barry Naujok5163f952008-05-21 16:41:01 +100064 struct xfs_name name;
Dave Chinner9d23fc82013-10-29 22:11:48 +110065 const struct xfs_dir_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Dave Chinner82025d72012-11-12 22:54:12 +110067 mp = bp->b_target->bt_mount;
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):
Christoph Hellwigc2066e22011-07-08 14:35:38 +020081 btp = xfs_dir2_block_tail_p(mp, 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 */
92 XFS_WANT_CORRUPTED_RETURN(be32_to_cpu(btp->count) <
93 ((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):
Christoph Hellwigc2066e22011-07-08 14:35:38 +020097 endp = (char *)hdr + mp->m_dirblksize;
Dave Chinner82025d72012-11-12 22:54:12 +110098 break;
99 default:
100 XFS_ERROR_REPORT("Bad Magic", XFS_ERRLEVEL_LOW, mp);
101 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) {
Dave Chinner82025d72012-11-12 22:54:12 +1100110 XFS_WANT_CORRUPTED_RETURN(!bf[0].offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 freeseen |= 1 << 0;
112 }
113 if (!bf[1].length) {
Dave Chinner82025d72012-11-12 22:54:12 +1100114 XFS_WANT_CORRUPTED_RETURN(!bf[1].offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 freeseen |= 1 << 1;
116 }
117 if (!bf[2].length) {
Dave Chinner82025d72012-11-12 22:54:12 +1100118 XFS_WANT_CORRUPTED_RETURN(!bf[2].offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 freeseen |= 1 << 2;
120 }
Dave Chinner82025d72012-11-12 22:54:12 +1100121
122 XFS_WANT_CORRUPTED_RETURN(be16_to_cpu(bf[0].length) >=
123 be16_to_cpu(bf[1].length));
124 XFS_WANT_CORRUPTED_RETURN(be16_to_cpu(bf[1].length) >=
125 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) {
Dave Chinner82025d72012-11-12 22:54:12 +1100137 XFS_WANT_CORRUPTED_RETURN(lastfree == 0);
138 XFS_WANT_CORRUPTED_RETURN(
139 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);
Dave Chinner82025d72012-11-12 22:54:12 +1100144 XFS_WANT_CORRUPTED_RETURN(
145 (freeseen & (1 << i)) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 freeseen |= 1 << i;
Nathan Scott70e73f52006-03-17 17:26:52 +1100147 } else {
Dave Chinner82025d72012-11-12 22:54:12 +1100148 XFS_WANT_CORRUPTED_RETURN(
149 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;
Dave Chinner82025d72012-11-12 22:54:12 +1100163 XFS_WANT_CORRUPTED_RETURN(dep->namelen != 0);
164 XFS_WANT_CORRUPTED_RETURN(
165 !xfs_dir_ino_validate(mp, be64_to_cpu(dep->inumber)));
166 XFS_WANT_CORRUPTED_RETURN(
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);
Dave Chinner1c55cec2013-08-12 20:50:10 +1000169 XFS_WANT_CORRUPTED_RETURN(
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)) {
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000175 addr = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 (xfs_dir2_data_aoff_t)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200177 ((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 }
Dave Chinner82025d72012-11-12 22:54:12 +1100186 XFS_WANT_CORRUPTED_RETURN(i < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100188 p += ops->data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190 /*
191 * Need to have seen all the entries and all the bestfree slots.
192 */
Dave Chinner82025d72012-11-12 22:54:12 +1100193 XFS_WANT_CORRUPTED_RETURN(freeseen == 7);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100194 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
195 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
Nathan Scotte922fff2006-03-17 17:27:56 +1100196 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200197 if (lep[i].address ==
198 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 stale++;
200 if (i > 0)
Dave Chinner82025d72012-11-12 22:54:12 +1100201 XFS_WANT_CORRUPTED_RETURN(
202 be32_to_cpu(lep[i].hashval) >=
203 be32_to_cpu(lep[i - 1].hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Dave Chinner82025d72012-11-12 22:54:12 +1100205 XFS_WANT_CORRUPTED_RETURN(count ==
206 be32_to_cpu(btp->count) - be32_to_cpu(btp->stale));
207 XFS_WANT_CORRUPTED_RETURN(stale == be32_to_cpu(btp->stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Dave Chinner82025d72012-11-12 22:54:12 +1100209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Dave Chinner33363fe2013-04-03 16:11:22 +1100212static bool
213xfs_dir3_data_verify(
Dave Chinnere4813572012-11-12 22:54:14 +1100214 struct xfs_buf *bp)
215{
216 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner33363fe2013-04-03 16:11:22 +1100217 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Dave Chinnere4813572012-11-12 22:54:14 +1100218
Dave Chinner33363fe2013-04-03 16:11:22 +1100219 if (xfs_sb_version_hascrc(&mp->m_sb)) {
220 if (hdr3->magic != cpu_to_be32(XFS_DIR3_DATA_MAGIC))
221 return false;
222 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
223 return false;
224 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
225 return false;
226 } else {
227 if (hdr3->magic != cpu_to_be32(XFS_DIR2_DATA_MAGIC))
228 return false;
Dave Chinnere4813572012-11-12 22:54:14 +1100229 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100230 if (__xfs_dir3_data_check(NULL, bp))
231 return false;
232 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100233}
Dave Chinnere4813572012-11-12 22:54:14 +1100234
Dave Chinner1813dd62012-11-14 17:54:40 +1100235/*
236 * Readahead of the first block of the directory when it is opened is completely
237 * oblivious to the format of the directory. Hence we can either get a block
238 * format buffer or a data format buffer on readahead.
239 */
240static void
Dave Chinner33363fe2013-04-03 16:11:22 +1100241xfs_dir3_data_reada_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100242 struct xfs_buf *bp)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100243{
Dave Chinner1813dd62012-11-14 17:54:40 +1100244 struct xfs_mount *mp = bp->b_target->bt_mount;
245 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:
258 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, hdr);
259 xfs_buf_ioerror(bp, EFSCORRUPTED);
260 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
270 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
271 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
272 XFS_DIR3_DATA_CRC_OFF)) ||
273 !xfs_dir3_data_verify(bp)) {
274 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
275 xfs_buf_ioerror(bp, EFSCORRUPTED);
276 }
Dave Chinnere4813572012-11-12 22:54:14 +1100277}
278
Dave Chinner1813dd62012-11-14 17:54:40 +1100279static void
Dave Chinner33363fe2013-04-03 16:11:22 +1100280xfs_dir3_data_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100281 struct xfs_buf *bp)
282{
Dave Chinner33363fe2013-04-03 16:11:22 +1100283 struct xfs_mount *mp = bp->b_target->bt_mount;
284 struct xfs_buf_log_item *bip = bp->b_fspriv;
285 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
286
287 if (!xfs_dir3_data_verify(bp)) {
288 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
289 xfs_buf_ioerror(bp, EFSCORRUPTED);
290 return;
291 }
292
293 if (!xfs_sb_version_hascrc(&mp->m_sb))
294 return;
295
296 if (bip)
297 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
298
299 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_DATA_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100300}
301
Dave Chinner33363fe2013-04-03 16:11:22 +1100302const struct xfs_buf_ops xfs_dir3_data_buf_ops = {
303 .verify_read = xfs_dir3_data_read_verify,
304 .verify_write = xfs_dir3_data_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100305};
306
Dave Chinner33363fe2013-04-03 16:11:22 +1100307static const struct xfs_buf_ops xfs_dir3_data_reada_buf_ops = {
308 .verify_read = xfs_dir3_data_reada_verify,
309 .verify_write = xfs_dir3_data_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100310};
311
Dave Chinner612cfbf2012-11-14 17:52:32 +1100312
Dave Chinnere4813572012-11-12 22:54:14 +1100313int
Dave Chinner33363fe2013-04-03 16:11:22 +1100314xfs_dir3_data_read(
Dave Chinnere4813572012-11-12 22:54:14 +1100315 struct xfs_trans *tp,
316 struct xfs_inode *dp,
317 xfs_dablk_t bno,
318 xfs_daddr_t mapped_bno,
319 struct xfs_buf **bpp)
320{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100321 int err;
322
323 err = xfs_da_read_buf(tp, dp, bno, mapped_bno, bpp,
Dave Chinner33363fe2013-04-03 16:11:22 +1100324 XFS_DATA_FORK, &xfs_dir3_data_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100325 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100326 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100327 return err;
Dave Chinnere4813572012-11-12 22:54:14 +1100328}
329
Dave Chinnerda6958c2012-11-12 22:54:18 +1100330int
Dave Chinner33363fe2013-04-03 16:11:22 +1100331xfs_dir3_data_readahead(
Dave Chinnerda6958c2012-11-12 22:54:18 +1100332 struct xfs_trans *tp,
333 struct xfs_inode *dp,
334 xfs_dablk_t bno,
335 xfs_daddr_t mapped_bno)
336{
337 return xfs_da_reada_buf(tp, 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 */
513
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200514 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100515 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100516 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
517 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /*
520 * Start by clearing the table.
521 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100522 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100523 memset(bf, 0, sizeof(*bf) * XFS_DIR2_DATA_FD_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 *loghead = 1;
525 /*
526 * Set up pointers.
527 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100528 p = (char *)dp->d_ops->data_entry_p(hdr);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100529 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
530 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC)) {
Dave Chinner9d23fc82013-10-29 22:11:48 +1100531 btp = xfs_dir2_block_tail_p(dp->i_mount, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000532 endp = (char *)xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 } else
Dave Chinner9d23fc82013-10-29 22:11:48 +1100534 endp = (char *)hdr + dp->i_mount->m_dirblksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /*
536 * Loop over the block's entries.
537 */
538 while (p < endp) {
539 dup = (xfs_dir2_data_unused_t *)p;
540 /*
541 * If it's a free entry, insert it.
542 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100543 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200544 ASSERT((char *)dup - (char *)hdr ==
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000545 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
Dave Chinner2ca98772013-10-29 22:11:49 +1100546 xfs_dir2_data_freeinsert(hdr, bf, dup, loghead);
Nathan Scottad354eb2006-03-17 17:27:37 +1100547 p += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 /*
550 * For active entries, check their tags and skip them.
551 */
552 else {
553 dep = (xfs_dir2_data_entry_t *)p;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200554 ASSERT((char *)dep - (char *)hdr ==
Dave Chinner9d23fc82013-10-29 22:11:48 +1100555 be16_to_cpu(*dp->d_ops->data_entry_tag_p(dep)));
556 p += dp->d_ops->data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 }
559}
560
561/*
562 * Initialize a data block at the given block number in the directory.
563 * Give back the buffer for the created block.
564 */
565int /* error */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100566xfs_dir3_data_init(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 xfs_da_args_t *args, /* directory operation args */
568 xfs_dir2_db_t blkno, /* logical dir block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000569 struct xfs_buf **bpp) /* output block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000571 struct xfs_buf *bp; /* block buffer */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200572 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 xfs_inode_t *dp; /* incore directory inode */
574 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100575 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int error; /* error return value */
577 int i; /* bestfree index */
578 xfs_mount_t *mp; /* filesystem mount point */
579 xfs_trans_t *tp; /* transaction pointer */
580 int t; /* temp */
581
582 dp = args->dp;
583 mp = dp->i_mount;
584 tp = args->trans;
585 /*
586 * Get the buffer set up for the block.
587 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000588 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, blkno), -1, &bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 XFS_DATA_FORK);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100590 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return error;
Dave Chinner33363fe2013-04-03 16:11:22 +1100592 bp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100593 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_DATA_BUF);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /*
596 * Initialize the header.
597 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000598 hdr = bp->b_addr;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100599 if (xfs_sb_version_hascrc(&mp->m_sb)) {
600 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
601
602 memset(hdr3, 0, sizeof(*hdr3));
603 hdr3->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
604 hdr3->blkno = cpu_to_be64(bp->b_bn);
605 hdr3->owner = cpu_to_be64(dp->i_ino);
606 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
607
608 } else
609 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
610
Dave Chinner2ca98772013-10-29 22:11:49 +1100611 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100612 bf[0].offset = cpu_to_be16(dp->d_ops->data_entry_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 for (i = 1; i < XFS_DIR2_DATA_FD_COUNT; i++) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100614 bf[i].length = 0;
615 bf[i].offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /*
619 * Set up an unused entry for the block's body.
620 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100621 dup = dp->d_ops->data_unused_p(hdr);
Nathan Scottad354eb2006-03-17 17:27:37 +1100622 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100624 t = mp->m_dirblksize - (uint)dp->d_ops->data_entry_offset;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100625 bf[0].length = cpu_to_be16(t);
Nathan Scottad354eb2006-03-17 17:27:37 +1100626 dup->length = cpu_to_be16(t);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200627 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16((char *)dup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 /*
629 * Log it and return it.
630 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100631 xfs_dir2_data_log_header(tp, dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 xfs_dir2_data_log_unused(tp, bp, dup);
633 *bpp = bp;
634 return 0;
635}
636
637/*
638 * Log an active data entry from the block.
639 */
640void
641xfs_dir2_data_log_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000642 struct xfs_trans *tp,
Dave Chinner9d23fc82013-10-29 22:11:48 +1100643 struct xfs_inode *dp,
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 Chinner1d9025e2012-06-22 18:50:14 +1000654 xfs_trans_log_buf(tp, bp, (uint)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +1100655 (uint)((char *)(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 Chinner1d9025e2012-06-22 18:50:14 +1000664 struct xfs_trans *tp,
Dave Chinner2ca98772013-10-29 22:11:49 +1100665 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000666 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Dave Chinner2ca98772013-10-29 22:11:49 +1100668#ifdef DEBUG
669 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200671 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100672 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100673 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
674 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Dave Chinner2ca98772013-10-29 22:11:49 +1100675#endif
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200676
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100677 xfs_trans_log_buf(tp, bp, 0, 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 Chinner1d9025e2012-06-22 18:50:14 +1000685 struct xfs_trans *tp,
686 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 Chinner1d9025e2012-06-22 18:50:14 +1000699 xfs_trans_log_buf(tp, 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 Chinner1d9025e2012-06-22 18:50:14 +1000705 xfs_trans_log_buf(tp, 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 Chinner1d9025e2012-06-22 18:50:14 +1000717 struct xfs_trans *tp,
Dave Chinner2ca98772013-10-29 22:11:49 +1100718 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000719 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 xfs_dir2_data_aoff_t offset, /* starting byte offset */
721 xfs_dir2_data_aoff_t len, /* length in bytes */
722 int *needlogp, /* out: log header */
723 int *needscanp) /* out: regen bestfree */
724{
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200725 xfs_dir2_data_hdr_t *hdr; /* data block pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
727 char *endptr; /* end of data area */
728 xfs_mount_t *mp; /* filesystem mount point */
729 int needscan; /* need to regen bestfree */
730 xfs_dir2_data_unused_t *newdup; /* new unused entry */
731 xfs_dir2_data_unused_t *postdup; /* unused entry after us */
732 xfs_dir2_data_unused_t *prevdup; /* unused entry before us */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100733 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 mp = tp->t_mountp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000736 hdr = bp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * Figure out where the end of the data area is.
740 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100741 if (hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
742 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC))
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200743 endptr = (char *)hdr + mp->m_dirblksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 else {
745 xfs_dir2_block_tail_t *btp; /* block tail */
746
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100747 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
748 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200749 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000750 endptr = (char *)xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
752 /*
753 * If this isn't the start of the block, then back up to
754 * the previous entry and see if it's free.
755 */
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100756 if (offset > dp->d_ops->data_entry_offset) {
Nathan Scott3d693c62006-03-17 17:28:27 +1100757 __be16 *tagp; /* tag just before us */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200759 tagp = (__be16 *)((char *)hdr + offset) - 1;
760 prevdup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Nathan Scottad354eb2006-03-17 17:27:37 +1100761 if (be16_to_cpu(prevdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 prevdup = NULL;
763 } else
764 prevdup = NULL;
765 /*
766 * If this isn't the end of the block, see if the entry after
767 * us is free.
768 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200769 if ((char *)hdr + offset + len < endptr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 postdup =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200771 (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
Nathan Scottad354eb2006-03-17 17:27:37 +1100772 if (be16_to_cpu(postdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 postdup = NULL;
774 } else
775 postdup = NULL;
776 ASSERT(*needscanp == 0);
777 needscan = 0;
778 /*
779 * Previous and following entries are both free,
780 * merge everything into a single free entry.
781 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100782 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (prevdup && postdup) {
784 xfs_dir2_data_free_t *dfp2; /* another bestfree pointer */
785
786 /*
787 * See if prevdup and/or postdup are in bestfree table.
788 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100789 dfp = xfs_dir2_data_freefind(hdr, bf, prevdup);
790 dfp2 = xfs_dir2_data_freefind(hdr, bf, postdup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /*
792 * We need a rescan unless there are exactly 2 free entries
793 * namely our two. Then we know what's happening, otherwise
794 * since the third bestfree is there, there might be more
795 * entries.
796 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100797 needscan = (bf[2].length != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /*
799 * Fix up the new big freespace.
800 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800801 be16_add_cpu(&prevdup->length, len + be16_to_cpu(postdup->length));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000802 *xfs_dir2_data_unused_tag_p(prevdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200803 cpu_to_be16((char *)prevdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 xfs_dir2_data_log_unused(tp, bp, prevdup);
805 if (!needscan) {
806 /*
807 * Has to be the case that entries 0 and 1 are
808 * dfp and dfp2 (don't know which is which), and
809 * entry 2 is empty.
810 * Remove entry 1 first then entry 0.
811 */
812 ASSERT(dfp && dfp2);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100813 if (dfp == &bf[1]) {
814 dfp = &bf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 ASSERT(dfp2 == dfp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100816 dfp2 = &bf[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Dave Chinner2ca98772013-10-29 22:11:49 +1100818 xfs_dir2_data_freeremove(hdr, bf, dfp2, needlogp);
819 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /*
821 * Now insert the new entry.
822 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100823 dfp = xfs_dir2_data_freeinsert(hdr, bf, prevdup,
824 needlogp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100825 ASSERT(dfp == &bf[0]);
Nathan Scottad354eb2006-03-17 17:27:37 +1100826 ASSERT(dfp->length == prevdup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 ASSERT(!dfp[1].length);
828 ASSERT(!dfp[2].length);
829 }
830 }
831 /*
832 * The entry before us is free, merge with it.
833 */
834 else if (prevdup) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100835 dfp = xfs_dir2_data_freefind(hdr, bf, prevdup);
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800836 be16_add_cpu(&prevdup->length, len);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000837 *xfs_dir2_data_unused_tag_p(prevdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200838 cpu_to_be16((char *)prevdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 xfs_dir2_data_log_unused(tp, bp, prevdup);
840 /*
841 * If the previous entry was in the table, the new entry
842 * is longer, so it will be in the table too. Remove
843 * the old one and add the new one.
844 */
845 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100846 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
847 xfs_dir2_data_freeinsert(hdr, bf, prevdup, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849 /*
850 * Otherwise we need a scan if the new entry is big enough.
851 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100852 else {
Nathan Scottad354eb2006-03-17 17:27:37 +1100853 needscan = be16_to_cpu(prevdup->length) >
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100854 be16_to_cpu(bf[2].length);
Nathan Scott70e73f52006-03-17 17:26:52 +1100855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 /*
858 * The following entry is free, merge with it.
859 */
860 else if (postdup) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100861 dfp = xfs_dir2_data_freefind(hdr, bf, postdup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200862 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +1100863 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
864 newdup->length = cpu_to_be16(len + be16_to_cpu(postdup->length));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000865 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200866 cpu_to_be16((char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 xfs_dir2_data_log_unused(tp, bp, newdup);
868 /*
869 * If the following entry was in the table, the new entry
870 * is longer, so it will be in the table too. Remove
871 * the old one and add the new one.
872 */
873 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100874 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
875 xfs_dir2_data_freeinsert(hdr, bf, newdup, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 /*
878 * Otherwise we need a scan if the new entry is big enough.
879 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100880 else {
Nathan Scottad354eb2006-03-17 17:27:37 +1100881 needscan = be16_to_cpu(newdup->length) >
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100882 be16_to_cpu(bf[2].length);
Nathan Scott70e73f52006-03-17 17:26:52 +1100883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
885 /*
886 * Neither neighbor is free. Make a new entry.
887 */
888 else {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200889 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +1100890 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
891 newdup->length = cpu_to_be16(len);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000892 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200893 cpu_to_be16((char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 xfs_dir2_data_log_unused(tp, bp, newdup);
Dave Chinner2ca98772013-10-29 22:11:49 +1100895 xfs_dir2_data_freeinsert(hdr, bf, newdup, needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897 *needscanp = needscan;
898}
899
900/*
901 * Take a byte range out of an existing unused space and make it un-free.
902 */
903void
904xfs_dir2_data_use_free(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000905 struct xfs_trans *tp,
Dave Chinner2ca98772013-10-29 22:11:49 +1100906 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000907 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 xfs_dir2_data_unused_t *dup, /* unused entry */
909 xfs_dir2_data_aoff_t offset, /* starting offset to use */
910 xfs_dir2_data_aoff_t len, /* length to use */
911 int *needlogp, /* out: need to log header */
912 int *needscanp) /* out: need regen bestfree */
913{
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200914 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
916 int matchback; /* matches end of freespace */
917 int matchfront; /* matches start of freespace */
918 int needscan; /* need to regen bestfree */
919 xfs_dir2_data_unused_t *newdup; /* new unused entry */
920 xfs_dir2_data_unused_t *newdup2; /* another new unused entry */
921 int oldlen; /* old unused entry's length */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100922 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Dave Chinner1d9025e2012-06-22 18:50:14 +1000924 hdr = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200925 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
Dave Chinner33363fe2013-04-03 16:11:22 +1100926 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100927 hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC) ||
928 hdr->magic == cpu_to_be32(XFS_DIR3_BLOCK_MAGIC));
Nathan Scottad354eb2006-03-17 17:27:37 +1100929 ASSERT(be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200930 ASSERT(offset >= (char *)dup - (char *)hdr);
931 ASSERT(offset + len <= (char *)dup + be16_to_cpu(dup->length) - (char *)hdr);
932 ASSERT((char *)dup - (char *)hdr == be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /*
934 * Look up the entry in the bestfree table.
935 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100936 oldlen = be16_to_cpu(dup->length);
Dave Chinner2ca98772013-10-29 22:11:49 +1100937 bf = dp->d_ops->data_bestfree_p(hdr);
938 dfp = xfs_dir2_data_freefind(hdr, bf, dup);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100939 ASSERT(dfp || oldlen <= be16_to_cpu(bf[2].length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
941 * Check for alignment with front and back of the entry.
942 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200943 matchfront = (char *)dup - (char *)hdr == offset;
944 matchback = (char *)dup + oldlen - (char *)hdr == offset + len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 ASSERT(*needscanp == 0);
946 needscan = 0;
947 /*
948 * If we matched it exactly we just need to get rid of it from
949 * the bestfree table.
950 */
951 if (matchfront && matchback) {
952 if (dfp) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100953 needscan = (bf[2].offset != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (!needscan)
Dave Chinner2ca98772013-10-29 22:11:49 +1100955 xfs_dir2_data_freeremove(hdr, bf, dfp,
956 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958 }
959 /*
960 * We match the first part of the entry.
961 * Make a new entry with the remaining freespace.
962 */
963 else if (matchfront) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200964 newdup = (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
Nathan Scottad354eb2006-03-17 17:27:37 +1100965 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
966 newdup->length = cpu_to_be16(oldlen - len);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000967 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200968 cpu_to_be16((char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 xfs_dir2_data_log_unused(tp, bp, newdup);
970 /*
971 * If it was in the table, remove it and add the new one.
972 */
973 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +1100974 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
975 dfp = xfs_dir2_data_freeinsert(hdr, bf, newdup,
976 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ASSERT(dfp != NULL);
Nathan Scottad354eb2006-03-17 17:27:37 +1100978 ASSERT(dfp->length == newdup->length);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200979 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /*
981 * If we got inserted at the last slot,
982 * that means we don't know if there was a better
983 * choice for the last slot, or not. Rescan.
984 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100985 needscan = dfp == &bf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 }
988 /*
989 * We match the last part of the entry.
990 * Trim the allocated space off the tail of the entry.
991 */
992 else if (matchback) {
993 newdup = dup;
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200994 newdup->length = cpu_to_be16(((char *)hdr + offset) - (char *)newdup);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000995 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200996 cpu_to_be16((char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 xfs_dir2_data_log_unused(tp, bp, newdup);
998 /*
999 * If it was in the table, remove it and add the new one.
1000 */
1001 if (dfp) {
Dave Chinner2ca98772013-10-29 22:11:49 +11001002 xfs_dir2_data_freeremove(hdr, bf, dfp, needlogp);
1003 dfp = xfs_dir2_data_freeinsert(hdr, bf, newdup,
1004 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 ASSERT(dfp != NULL);
Nathan Scottad354eb2006-03-17 17:27:37 +11001006 ASSERT(dfp->length == newdup->length);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001007 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * If we got inserted at the last slot,
1010 * that means we don't know if there was a better
1011 * choice for the last slot, or not. Rescan.
1012 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001013 needscan = dfp == &bf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015 }
1016 /*
1017 * Poking out the middle of an entry.
1018 * Make two new entries.
1019 */
1020 else {
1021 newdup = dup;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001022 newdup->length = cpu_to_be16(((char *)hdr + offset) - (char *)newdup);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001023 *xfs_dir2_data_unused_tag_p(newdup) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001024 cpu_to_be16((char *)newdup - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 xfs_dir2_data_log_unused(tp, bp, newdup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001026 newdup2 = (xfs_dir2_data_unused_t *)((char *)hdr + offset + len);
Nathan Scottad354eb2006-03-17 17:27:37 +11001027 newdup2->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1028 newdup2->length = cpu_to_be16(oldlen - len - be16_to_cpu(newdup->length));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001029 *xfs_dir2_data_unused_tag_p(newdup2) =
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001030 cpu_to_be16((char *)newdup2 - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 xfs_dir2_data_log_unused(tp, bp, newdup2);
1032 /*
1033 * If the old entry was in the table, we need to scan
1034 * if the 3rd entry was valid, since these entries
1035 * are smaller than the old one.
1036 * If we don't need to scan that means there were 1 or 2
1037 * entries in the table, and removing the old and adding
1038 * the 2 new will work.
1039 */
1040 if (dfp) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001041 needscan = (bf[2].length != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (!needscan) {
Dave Chinner2ca98772013-10-29 22:11:49 +11001043 xfs_dir2_data_freeremove(hdr, bf, dfp,
1044 needlogp);
1045 xfs_dir2_data_freeinsert(hdr, bf, newdup,
1046 needlogp);
1047 xfs_dir2_data_freeinsert(hdr, bf, newdup2,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001048 needlogp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050 }
1051 }
1052 *needscanp = needscan;
1053}