blob: e93ca8f054f404245b2927b93cdf486387b432c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_inode_item.h"
Dave Chinner8d2a5e62012-03-07 04:50:19 +000031#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020032#include "xfs_dir2_format.h"
33#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
38 * Local function prototypes.
39 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100040static void xfs_dir2_block_log_leaf(xfs_trans_t *tp, struct xfs_buf *bp,
41 int first, int last);
42static void xfs_dir2_block_log_tail(xfs_trans_t *tp, struct xfs_buf *bp);
43static int xfs_dir2_block_lookup_int(xfs_da_args_t *args, struct xfs_buf **bpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 int *entno);
45static int xfs_dir2_block_sort(const void *a, const void *b);
46
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100047static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
48
49/*
50 * One-time startup routine called from xfs_init().
51 */
52void
53xfs_dir_startup(void)
54{
Dave Chinner4a24cb72010-01-20 10:48:05 +110055 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
56 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100057}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * Add an entry to a block directory.
61 */
62int /* error */
63xfs_dir2_block_addname(
64 xfs_da_args_t *args) /* directory op arguments */
65{
66 xfs_dir2_data_free_t *bf; /* bestfree table in block */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +020067 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +100069 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 xfs_dir2_block_tail_t *btp; /* block tail */
71 int compact; /* need to compact leaf ents */
72 xfs_dir2_data_entry_t *dep; /* block data entry */
73 xfs_inode_t *dp; /* directory inode */
74 xfs_dir2_data_unused_t *dup; /* block unused entry */
75 int error; /* error return value */
76 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
77 xfs_dahash_t hash; /* hash value of found entry */
78 int high; /* high index for binary srch */
79 int highstale; /* high stale index */
80 int lfloghigh=0; /* last final leaf to log */
81 int lfloglow=0; /* first final leaf to log */
82 int len; /* length of the new entry */
83 int low; /* low index for binary srch */
84 int lowstale; /* low stale index */
85 int mid=0; /* midpoint for binary srch */
86 xfs_mount_t *mp; /* filesystem mount point */
87 int needlog; /* need to log header */
88 int needscan; /* need to rescan freespace */
Nathan Scott3d693c62006-03-17 17:28:27 +110089 __be16 *tagp; /* pointer to tag value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 xfs_trans_t *tp; /* transaction structure */
91
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000092 trace_xfs_dir2_block_addname(args);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 dp = args->dp;
95 tp = args->trans;
96 mp = dp->i_mount;
97 /*
98 * Read the (one and only) directory block into dabuf bp.
99 */
100 if ((error =
101 xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, &bp, XFS_DATA_FORK))) {
102 return error;
103 }
104 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000105 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 /*
107 * Check the magic number, corrupted if wrong.
108 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200109 if (unlikely(hdr->magic != cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 XFS_CORRUPTION_ERROR("xfs_dir2_block_addname",
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200111 XFS_ERRLEVEL_LOW, mp, hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000112 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return XFS_ERROR(EFSCORRUPTED);
114 }
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000115 len = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /*
117 * Set up pointers to parts of the block.
118 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200119 bf = hdr->bestfree;
120 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000121 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 /*
123 * No stale entries? Need space for entry and new leaf.
124 */
125 if (!btp->stale) {
126 /*
127 * Tag just before the first leaf entry.
128 */
Nathan Scott3d693c62006-03-17 17:28:27 +1100129 tagp = (__be16 *)blp - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /*
131 * Data object just before the first leaf entry.
132 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200133 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /*
135 * If it's not free then can't do this add without cleaning up:
136 * the space before the first leaf entry needs to be free so it
137 * can be expanded to hold the pointer to the new entry.
138 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100139 if (be16_to_cpu(enddup->freetag) != XFS_DIR2_DATA_FREE_TAG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 dup = enddup = NULL;
141 /*
142 * Check out the biggest freespace and see if it's the same one.
143 */
144 else {
145 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200146 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (dup == enddup) {
148 /*
149 * It is the biggest freespace, is it too small
150 * to hold the new leaf too?
151 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100152 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /*
154 * Yes, we use the second-largest
155 * entry instead if it works.
156 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100157 if (be16_to_cpu(bf[1].length) >= len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200159 ((char *)hdr +
Nathan Scott70e73f52006-03-17 17:26:52 +1100160 be16_to_cpu(bf[1].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 else
162 dup = NULL;
163 }
164 } else {
165 /*
166 * Not the same free entry,
167 * just check its length.
168 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100169 if (be16_to_cpu(dup->length) < len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 dup = NULL;
171 }
172 }
173 }
174 compact = 0;
175 }
176 /*
177 * If there are stale entries we'll use one for the leaf.
178 * Is the biggest entry enough to avoid compaction?
179 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100180 else if (be16_to_cpu(bf[0].length) >= len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200182 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 compact = 0;
184 }
185 /*
186 * Will need to compact to make this work.
187 */
188 else {
189 /*
190 * Tag just before the first leaf entry.
191 */
Nathan Scott3d693c62006-03-17 17:28:27 +1100192 tagp = (__be16 *)blp - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /*
194 * Data object just before the first leaf entry.
195 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200196 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /*
198 * If it's not free then the data will go where the
199 * leaf data starts now, if it works at all.
200 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100201 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
Nathan Scotte922fff2006-03-17 17:27:56 +1100202 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 (uint)sizeof(*blp) < len)
204 dup = NULL;
Nathan Scotte922fff2006-03-17 17:27:56 +1100205 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 dup = NULL;
207 else
208 dup = (xfs_dir2_data_unused_t *)blp;
209 compact = 1;
210 }
211 /*
212 * If this isn't a real add, we're done with the buffer.
213 */
Barry Naujok6a178102008-05-21 16:42:05 +1000214 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000215 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 /*
217 * If we don't have space for the new entry & leaf ...
218 */
219 if (!dup) {
220 /*
221 * Not trying to actually do anything, or don't have
222 * a space reservation: return no-space.
223 */
Barry Naujok6a178102008-05-21 16:42:05 +1000224 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return XFS_ERROR(ENOSPC);
226 /*
227 * Convert to the next larger format.
228 * Then add the new entry in that format.
229 */
230 error = xfs_dir2_block_to_leaf(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (error)
232 return error;
233 return xfs_dir2_leaf_addname(args);
234 }
235 /*
236 * Just checking, and it would work, so say so.
237 */
Barry Naujok6a178102008-05-21 16:42:05 +1000238 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240 needlog = needscan = 0;
241 /*
242 * If need to compact the leaf entries, do it now.
243 * Leave the highest-numbered stale entry stale.
244 * XXX should be the one closest to mid but mid is not yet computed.
245 */
246 if (compact) {
247 int fromidx; /* source leaf index */
248 int toidx; /* target leaf index */
249
Nathan Scotte922fff2006-03-17 17:27:56 +1100250 for (fromidx = toidx = be32_to_cpu(btp->count) - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 highstale = lfloghigh = -1;
252 fromidx >= 0;
253 fromidx--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200254 if (blp[fromidx].address ==
255 cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (highstale == -1)
257 highstale = toidx;
258 else {
259 if (lfloghigh == -1)
260 lfloghigh = toidx;
261 continue;
262 }
263 }
264 if (fromidx < toidx)
265 blp[toidx] = blp[fromidx];
266 toidx--;
267 }
Nathan Scotte922fff2006-03-17 17:27:56 +1100268 lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
269 lfloghigh -= be32_to_cpu(btp->stale) - 1;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800270 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 xfs_dir2_data_make_free(tp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200272 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
Nathan Scotte922fff2006-03-17 17:27:56 +1100273 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 &needlog, &needscan);
Nathan Scotte922fff2006-03-17 17:27:56 +1100275 blp += be32_to_cpu(btp->stale) - 1;
276 btp->stale = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
278 * If we now need to rebuild the bestfree map, do so.
279 * This needs to happen before the next call to use_free.
280 */
281 if (needscan) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200282 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 needscan = 0;
284 }
285 }
286 /*
287 * Set leaf logging boundaries to impossible state.
288 * For the no-stale case they're set explicitly.
289 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100290 else if (btp->stale) {
291 lfloglow = be32_to_cpu(btp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 lfloghigh = -1;
293 }
294 /*
295 * Find the slot that's first lower than our hash value, -1 if none.
296 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100297 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100299 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 break;
301 if (hash < args->hashval)
302 low = mid + 1;
303 else
304 high = mid - 1;
305 }
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100306 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 mid--;
308 }
309 /*
310 * No stale entries, will use enddup space to hold new leaf.
311 */
312 if (!btp->stale) {
313 /*
314 * Mark the space needed for the new leaf entry, now in use.
315 */
316 xfs_dir2_data_use_free(tp, bp, enddup,
317 (xfs_dir2_data_aoff_t)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200318 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 sizeof(*blp)),
320 (xfs_dir2_data_aoff_t)sizeof(*blp),
321 &needlog, &needscan);
322 /*
323 * Update the tail (entry count).
324 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800325 be32_add_cpu(&btp->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*
327 * If we now need to rebuild the bestfree map, do so.
328 * This needs to happen before the next call to use_free.
329 */
330 if (needscan) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200331 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 needscan = 0;
333 }
334 /*
335 * Adjust pointer to the first leaf entry, we're about to move
336 * the table up one to open up space for the new leaf entry.
337 * Then adjust our index to match.
338 */
339 blp--;
340 mid++;
341 if (mid)
342 memmove(blp, &blp[1], mid * sizeof(*blp));
343 lfloglow = 0;
344 lfloghigh = mid;
345 }
346 /*
347 * Use a stale leaf for our new entry.
348 */
349 else {
350 for (lowstale = mid;
351 lowstale >= 0 &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200352 blp[lowstale].address !=
353 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 lowstale--)
355 continue;
356 for (highstale = mid + 1;
Nathan Scotte922fff2006-03-17 17:27:56 +1100357 highstale < be32_to_cpu(btp->count) &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200358 blp[highstale].address !=
359 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 (lowstale < 0 || mid - lowstale > highstale - mid);
361 highstale++)
362 continue;
363 /*
364 * Move entries toward the low-numbered stale entry.
365 */
366 if (lowstale >= 0 &&
Nathan Scotte922fff2006-03-17 17:27:56 +1100367 (highstale == be32_to_cpu(btp->count) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 mid - lowstale <= highstale - mid)) {
369 if (mid - lowstale)
370 memmove(&blp[lowstale], &blp[lowstale + 1],
371 (mid - lowstale) * sizeof(*blp));
372 lfloglow = MIN(lowstale, lfloglow);
373 lfloghigh = MAX(mid, lfloghigh);
374 }
375 /*
376 * Move entries toward the high-numbered stale entry.
377 */
378 else {
Nathan Scotte922fff2006-03-17 17:27:56 +1100379 ASSERT(highstale < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 mid++;
381 if (highstale - mid)
382 memmove(&blp[mid + 1], &blp[mid],
383 (highstale - mid) * sizeof(*blp));
384 lfloglow = MIN(mid, lfloglow);
385 lfloghigh = MAX(highstale, lfloghigh);
386 }
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800387 be32_add_cpu(&btp->stale, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 /*
390 * Point to the new data entry.
391 */
392 dep = (xfs_dir2_data_entry_t *)dup;
393 /*
394 * Fill in the leaf entry.
395 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100396 blp[mid].hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000397 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200398 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
400 /*
401 * Mark space for the data entry used.
402 */
403 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200404 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
406 /*
407 * Create the new data entry.
408 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000409 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 dep->namelen = args->namelen;
411 memcpy(dep->name, args->name, args->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000412 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200413 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 /*
415 * Clean up the bestfree array and log the header, tail, and entry.
416 */
417 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200418 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (needlog)
420 xfs_dir2_data_log_header(tp, bp);
421 xfs_dir2_block_log_tail(tp, bp);
422 xfs_dir2_data_log_entry(tp, bp, dep);
423 xfs_dir2_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
427/*
428 * Readdir for block directories.
429 */
430int /* error */
431xfs_dir2_block_getdents(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 xfs_inode_t *dp, /* incore inode */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000433 void *dirent,
434 xfs_off_t *offset,
435 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200437 xfs_dir2_data_hdr_t *hdr; /* block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000438 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfs_dir2_block_tail_t *btp; /* block tail */
440 xfs_dir2_data_entry_t *dep; /* block data entry */
441 xfs_dir2_data_unused_t *dup; /* block unused entry */
442 char *endptr; /* end of the data entries */
443 int error; /* error return value */
444 xfs_mount_t *mp; /* filesystem mount point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 char *ptr; /* current data entry */
446 int wantoff; /* starting block offset */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000447 xfs_off_t cook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 mp = dp->i_mount;
450 /*
451 * If the block number in the offset is out of range, we're done.
452 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000453 if (xfs_dir2_dataptr_to_db(mp, *offset) > mp->m_dirdatablk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
455 }
456 /*
457 * Can't read the block, give up, else get dabuf in bp.
458 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000459 error = xfs_da_read_buf(NULL, dp, mp->m_dirdatablk, -1,
460 &bp, XFS_DATA_FORK);
461 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return error;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 ASSERT(bp != NULL);
465 /*
466 * Extract the byte offset we start at from the seek pointer.
467 * We'll skip entries before this.
468 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000469 wantoff = xfs_dir2_dataptr_to_off(mp, *offset);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000470 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 xfs_dir2_data_check(dp, bp);
472 /*
473 * Set up values for the loop.
474 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200475 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwiga64b0412011-07-08 14:35:32 +0200476 ptr = (char *)(hdr + 1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000477 endptr = (char *)xfs_dir2_block_leaf_p(btp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /*
480 * Loop over the data portion of the block.
481 * Each object is a real entry (dep) or an unused one (dup).
482 */
483 while (ptr < endptr) {
484 dup = (xfs_dir2_data_unused_t *)ptr;
485 /*
486 * Unused, skip it.
487 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100488 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
489 ptr += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 continue;
491 }
492
493 dep = (xfs_dir2_data_entry_t *)ptr;
494
495 /*
496 * Bump pointer for the next iteration.
497 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000498 ptr += xfs_dir2_data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 /*
500 * The entry is before the desired starting point, skip it.
501 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200502 if ((char *)dep - (char *)hdr < wantoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000505 cook = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200506 (char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /*
509 * If it didn't fit, set the final offset to here & return.
510 */
Dave Chinner4a24cb72010-01-20 10:48:05 +1100511 if (filldir(dirent, (char *)dep->name, dep->namelen,
512 cook & 0x7fffffff, be64_to_cpu(dep->inumber),
513 DT_UNKNOWN)) {
Christoph Hellwig15440312009-01-08 14:00:00 -0500514 *offset = cook & 0x7fffffff;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000515 xfs_trans_brelse(NULL, bp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 }
519
520 /*
521 * Reached the end of the block.
Nathan Scottc41564b2006-03-29 08:55:14 +1000522 * Set the offset to a non-existent block 1 and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 */
Christoph Hellwig15440312009-01-08 14:00:00 -0500524 *offset = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk + 1, 0) &
525 0x7fffffff;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000526 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return 0;
528}
529
530/*
531 * Log leaf entries from the block.
532 */
533static void
534xfs_dir2_block_log_leaf(
535 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000536 struct xfs_buf *bp, /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 int first, /* index of first logged leaf */
538 int last) /* index of last logged leaf */
539{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000540 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200541 xfs_dir2_leaf_entry_t *blp;
542 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200544 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000545 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000546 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200547 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550/*
551 * Log the block tail.
552 */
553static void
554xfs_dir2_block_log_tail(
555 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000556 struct xfs_buf *bp) /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000558 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200559 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200561 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000562 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200563 (uint)((char *)(btp + 1) - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566/*
567 * Look up an entry in the block. This is the external routine,
568 * xfs_dir2_block_lookup_int does the real work.
569 */
570int /* error */
571xfs_dir2_block_lookup(
572 xfs_da_args_t *args) /* dir lookup arguments */
573{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200574 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000576 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 xfs_dir2_block_tail_t *btp; /* block tail */
578 xfs_dir2_data_entry_t *dep; /* block data entry */
579 xfs_inode_t *dp; /* incore inode */
580 int ent; /* entry index */
581 int error; /* error return value */
582 xfs_mount_t *mp; /* filesystem mount point */
583
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000584 trace_xfs_dir2_block_lookup(args);
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /*
587 * Get the buffer, look up the entry.
588 * If not found (ENOENT) then return, have no buffer.
589 */
590 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
591 return error;
592 dp = args->dp;
593 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000594 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 xfs_dir2_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200596 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000597 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /*
599 * Get the offset from the leaf entry, to point to the data.
600 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200601 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
Barry Naujok384f3ce2008-05-21 16:58:22 +1000602 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000604 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000606 args->inumber = be64_to_cpu(dep->inumber);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000607 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000608 xfs_trans_brelse(args->trans, bp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000609 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
612/*
613 * Internal block lookup routine.
614 */
615static int /* error */
616xfs_dir2_block_lookup_int(
617 xfs_da_args_t *args, /* dir lookup arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000618 struct xfs_buf **bpp, /* returned block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int *entno) /* returned entry number */
620{
621 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200622 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000624 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 xfs_dir2_block_tail_t *btp; /* block tail */
626 xfs_dir2_data_entry_t *dep; /* block data entry */
627 xfs_inode_t *dp; /* incore inode */
628 int error; /* error return value */
629 xfs_dahash_t hash; /* found hash value */
630 int high; /* binary search high index */
631 int low; /* binary search low index */
632 int mid; /* binary search current idx */
633 xfs_mount_t *mp; /* filesystem mount point */
634 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000635 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 dp = args->dp;
638 tp = args->trans;
639 mp = dp->i_mount;
640 /*
641 * Read the buffer, return error if we can't get it.
642 */
643 if ((error =
644 xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, &bp, XFS_DATA_FORK))) {
645 return error;
646 }
647 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000648 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 xfs_dir2_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200650 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000651 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 /*
653 * Loop doing a binary search for our hash value.
654 * Find our entry, ENOENT if it's not there.
655 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100656 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 ASSERT(low <= high);
658 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100659 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 break;
661 if (hash < args->hashval)
662 low = mid + 1;
663 else
664 high = mid - 1;
665 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000666 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000667 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return XFS_ERROR(ENOENT);
669 }
670 }
671 /*
672 * Back up to the first one with the right hash value.
673 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100674 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 mid--;
676 }
677 /*
678 * Now loop forward through all the entries with the
679 * right hash value looking for our name.
680 */
681 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100682 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 continue;
684 /*
685 * Get pointer to the entry from the leaf.
686 */
687 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200688 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000690 * Compare name and if it's an exact match, return the index
691 * and buffer. If it's the first case-insensitive match, store
692 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
Barry Naujok5163f952008-05-21 16:41:01 +1000694 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
695 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
696 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 *bpp = bp;
698 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000699 if (cmp == XFS_CMP_EXACT)
700 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Barry Naujok5163f952008-05-21 16:41:01 +1000702 } while (++mid < be32_to_cpu(btp->count) &&
703 be32_to_cpu(blp[mid].hashval) == hash);
704
Barry Naujok6a178102008-05-21 16:42:05 +1000705 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000706 /*
707 * Here, we can only be doing a lookup (not a rename or replace).
708 * If a case-insensitive match was found earlier, return success.
709 */
710 if (args->cmpresult == XFS_CMP_CASE)
711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /*
713 * No match, release the buffer and return ENOENT.
714 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000715 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return XFS_ERROR(ENOENT);
717}
718
719/*
720 * Remove an entry from a block format directory.
721 * If that makes the block small enough to fit in shortform, transform it.
722 */
723int /* error */
724xfs_dir2_block_removename(
725 xfs_da_args_t *args) /* directory operation args */
726{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200727 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000729 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 xfs_dir2_block_tail_t *btp; /* block tail */
731 xfs_dir2_data_entry_t *dep; /* block data entry */
732 xfs_inode_t *dp; /* incore inode */
733 int ent; /* block leaf entry index */
734 int error; /* error return value */
735 xfs_mount_t *mp; /* filesystem mount point */
736 int needlog; /* need to log block header */
737 int needscan; /* need to fixup bestfree */
738 xfs_dir2_sf_hdr_t sfh; /* shortform header */
739 int size; /* shortform size */
740 xfs_trans_t *tp; /* transaction pointer */
741
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000742 trace_xfs_dir2_block_removename(args);
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * Look up the entry in the block. Gets the buffer and entry index.
746 * It will always be there, the vnodeops level does a lookup first.
747 */
748 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
749 return error;
750 }
751 dp = args->dp;
752 tp = args->trans;
753 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000754 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200755 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000756 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 /*
758 * Point to the data entry using the leaf entry.
759 */
760 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200761 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /*
763 * Mark the data entry's space free.
764 */
765 needlog = needscan = 0;
766 xfs_dir2_data_make_free(tp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200767 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000768 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /*
770 * Fix up the block tail.
771 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800772 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 xfs_dir2_block_log_tail(tp, bp);
774 /*
775 * Remove the leaf entry by marking it stale.
776 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100777 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
779 /*
780 * Fix up bestfree, log the header if necessary.
781 */
782 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200783 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (needlog)
785 xfs_dir2_data_log_header(tp, bp);
786 xfs_dir2_data_check(dp, bp);
787 /*
788 * See if the size as a shortform is good enough.
789 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200790 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000791 if (size > XFS_IFORK_DSIZE(dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /*
795 * If it works, do the conversion.
796 */
797 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
798}
799
800/*
801 * Replace an entry in a V2 block directory.
802 * Change the inode number to the new value.
803 */
804int /* error */
805xfs_dir2_block_replace(
806 xfs_da_args_t *args) /* directory operation args */
807{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200808 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000810 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 xfs_dir2_block_tail_t *btp; /* block tail */
812 xfs_dir2_data_entry_t *dep; /* block data entry */
813 xfs_inode_t *dp; /* incore inode */
814 int ent; /* leaf entry index */
815 int error; /* error return value */
816 xfs_mount_t *mp; /* filesystem mount point */
817
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000818 trace_xfs_dir2_block_replace(args);
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /*
821 * Lookup the entry in the directory. Get buffer and entry index.
822 * This will always succeed since the caller has already done a lookup.
823 */
824 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
825 return error;
826 }
827 dp = args->dp;
828 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000829 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200830 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000831 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
833 * Point to the data entry we need to change.
834 */
835 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200836 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000837 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /*
839 * Change the inode number to the new value.
840 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000841 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 xfs_dir2_data_log_entry(args->trans, bp, dep);
843 xfs_dir2_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return 0;
845}
846
847/*
848 * Qsort comparison routine for the block leaf entries.
849 */
850static int /* sort order */
851xfs_dir2_block_sort(
852 const void *a, /* first leaf entry */
853 const void *b) /* second leaf entry */
854{
855 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
856 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
857
858 la = a;
859 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100860 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
861 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
864/*
865 * Convert a V2 leaf directory to a V2 block directory if possible.
866 */
867int /* error */
868xfs_dir2_leaf_to_block(
869 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000870 struct xfs_buf *lbp, /* leaf buffer */
871 struct xfs_buf *dbp) /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Nathan Scott68b3a102006-03-17 17:27:19 +1100873 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200874 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 xfs_dir2_block_tail_t *btp; /* block tail */
876 xfs_inode_t *dp; /* incore directory inode */
877 xfs_dir2_data_unused_t *dup; /* unused data entry */
878 int error; /* error return value */
879 int from; /* leaf from index */
880 xfs_dir2_leaf_t *leaf; /* leaf structure */
881 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
882 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
883 xfs_mount_t *mp; /* file system mount point */
884 int needlog; /* need to log data header */
885 int needscan; /* need to scan for bestfree */
886 xfs_dir2_sf_hdr_t sfh; /* shortform header */
887 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +1100888 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 int to; /* block/leaf to index */
890 xfs_trans_t *tp; /* transaction pointer */
891
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000892 trace_xfs_dir2_leaf_to_block(args);
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 dp = args->dp;
895 tp = args->trans;
896 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000897 leaf = lbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200898 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000899 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /*
901 * If there are data blocks other than the first one, take this
902 * opportunity to remove trailing empty data blocks that may have
903 * been left behind during no-space-reservation operations.
904 * These will show up in the leaf bests table.
905 */
906 while (dp->i_d.di_size > mp->m_dirblksize) {
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000907 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100908 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200909 mp->m_dirblksize - (uint)sizeof(*hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if ((error =
911 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100912 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000913 return error;
914 } else
915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917 /*
918 * Read the data block if we don't already have it, give up if it fails.
919 */
920 if (dbp == NULL &&
921 (error = xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, &dbp,
922 XFS_DATA_FORK))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000923 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000925 hdr = dbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200926 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /*
928 * Size of the "leaf" area in the block.
929 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200930 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Nathan Scotta818e5d2006-03-17 17:28:07 +1100931 (uint)sizeof(*lep) * (be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /*
933 * Look at the last data entry.
934 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200935 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
936 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /*
938 * If it's not free or is too short we can't do it.
939 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100940 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
Dave Chinner1d9025e2012-06-22 18:50:14 +1000941 be16_to_cpu(dup->length) < size)
942 return 0;
943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /*
945 * Start converting it to block form.
946 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200947 hdr->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 needlog = 1;
949 needscan = 0;
950 /*
951 * Use up the space at the end of the block (blp/btp).
952 */
953 xfs_dir2_data_use_free(tp, dbp, dup, mp->m_dirblksize - size, size,
954 &needlog, &needscan);
955 /*
956 * Initialize the block tail.
957 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200958 btp = xfs_dir2_block_tail_p(mp, hdr);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100959 btp->count = cpu_to_be32(be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 btp->stale = 0;
961 xfs_dir2_block_log_tail(tp, dbp);
962 /*
963 * Initialize the block leaf area. We compact out stale entries.
964 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000965 lep = xfs_dir2_block_leaf_p(btp);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100966 for (from = to = 0; from < be16_to_cpu(leaf->hdr.count); from++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200967 if (leaf->ents[from].address ==
968 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 continue;
970 lep[to++] = leaf->ents[from];
971 }
Nathan Scotte922fff2006-03-17 17:27:56 +1100972 ASSERT(to == be32_to_cpu(btp->count));
973 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /*
975 * Scan the bestfree if we need it and log the data block header.
976 */
977 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200978 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (needlog)
980 xfs_dir2_data_log_header(tp, dbp);
981 /*
982 * Pitch the old leaf block.
983 */
984 error = xfs_da_shrink_inode(args, mp->m_dirleafblk, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000985 if (error)
986 return error;
987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 /*
989 * Now see if the resulting block can be shrunken to shortform.
990 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200991 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000992 if (size > XFS_IFORK_DSIZE(dp))
993 return 0;
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998/*
999 * Convert the shortform directory to block form.
1000 */
1001int /* error */
1002xfs_dir2_sf_to_block(
1003 xfs_da_args_t *args) /* operation arguments */
1004{
1005 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001006 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001008 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1011 xfs_inode_t *dp; /* incore directory inode */
1012 int dummy; /* trash */
1013 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1014 int endoffset; /* end of data objects */
1015 int error; /* error return value */
1016 int i; /* index */
1017 xfs_mount_t *mp; /* filesystem mount point */
1018 int needlog; /* need to log block header */
1019 int needscan; /* need to scan block freespc */
1020 int newoffset; /* offset from current entry */
1021 int offset; /* target block offset */
1022 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001023 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1024 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001025 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001027 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001029 trace_xfs_dir2_sf_to_block(args);
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 dp = args->dp;
1032 tp = args->trans;
1033 mp = dp->i_mount;
1034 ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
1035 /*
1036 * Bomb out if the shortform directory is way too short.
1037 */
1038 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1039 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1040 return XFS_ERROR(EIO);
1041 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001042
1043 oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
1046 ASSERT(dp->i_df.if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001047 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001050 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 * Then pitch the incore inode data so we can make extents.
1052 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001053 sfp = kmem_alloc(dp->i_df.if_bytes, KM_SLEEP);
1054 memcpy(sfp, oldsfp, dp->i_df.if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001056 xfs_idata_realloc(dp, -dp->i_df.if_bytes, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 dp->i_d.di_size = 0;
1058 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * Add block 0 to the inode.
1062 */
1063 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1064 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001065 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return error;
1067 }
1068 /*
1069 * Initialize the data block.
1070 */
1071 error = xfs_dir2_data_init(args, blkno, &bp);
1072 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001073 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return error;
1075 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001076 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001077 hdr->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /*
1079 * Compute size of block "tail" area.
1080 */
1081 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001082 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 /*
1084 * The whole thing is initialized to free by the init routine.
1085 * Say we're using the leaf and tail area.
1086 */
Christoph Hellwiga64b0412011-07-08 14:35:32 +02001087 dup = (xfs_dir2_data_unused_t *)(hdr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 needlog = needscan = 0;
1089 xfs_dir2_data_use_free(tp, bp, dup, mp->m_dirblksize - i, i, &needlog,
1090 &needscan);
1091 ASSERT(needscan == 0);
1092 /*
1093 * Fill in the tail.
1094 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001095 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001096 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001098 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001099 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 /*
1101 * Remove the freespace, we'll manage it.
1102 */
1103 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001104 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001105 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 /*
1107 * Create entry for .
1108 */
1109 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001110 ((char *)hdr + XFS_DIR2_DATA_DOT_OFFSET);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001111 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 dep->namelen = 1;
1113 dep->name[0] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001114 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001115 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001117 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001118 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001119 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /*
1121 * Create entry for ..
1122 */
1123 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001124 ((char *)hdr + XFS_DIR2_DATA_DOTDOT_OFFSET);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001125 dep->inumber = cpu_to_be64(xfs_dir2_sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 dep->namelen = 2;
1127 dep->name[0] = dep->name[1] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001128 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001129 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001131 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001132 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001133 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 offset = XFS_DIR2_DATA_FIRST_OFFSET;
1135 /*
1136 * Loop over existing entries, stuff them in.
1137 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001138 i = 0;
1139 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 sfep = NULL;
1141 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001142 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 /*
1144 * Need to preserve the existing offset values in the sf directory.
1145 * Insert holes (unused entries) where necessary.
1146 */
1147 while (offset < endoffset) {
1148 /*
1149 * sfep is null when we reach the end of the list.
1150 */
1151 if (sfep == NULL)
1152 newoffset = endoffset;
1153 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001154 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /*
1156 * There should be a hole here, make one.
1157 */
1158 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001159 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001160 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1161 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001162 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001163 ((char *)dup - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 xfs_dir2_data_log_unused(tp, bp, dup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001165 xfs_dir2_data_freeinsert(hdr, dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001166 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 continue;
1168 }
1169 /*
1170 * Copy a real entry.
1171 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001172 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001173 dep->inumber = cpu_to_be64(xfs_dir2_sfe_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 dep->namelen = sfep->namelen;
1175 memcpy(dep->name, sfep->name, dep->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001176 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001177 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 xfs_dir2_data_log_entry(tp, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001179 name.name = sfep->name;
1180 name.len = sfep->namelen;
1181 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1182 hashname(&name));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001183 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001184 (char *)dep - (char *)hdr));
1185 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001186 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 sfep = NULL;
1188 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001189 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001192 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 /*
1194 * Sort the leaf entries by hash value.
1195 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001196 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /*
1198 * Log the leaf entry area and tail.
1199 * Already logged the header in data_init, ignore needlog.
1200 */
1201 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001202 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 xfs_dir2_block_log_tail(tp, bp);
1204 xfs_dir2_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return 0;
1206}