blob: d3b63aefd01dbf46f7ec473bd2b01570096a7d0e [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"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#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"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_inode_item.h"
Dave Chinner8d2a5e62012-03-07 04:50:19 +000032#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020033#include "xfs_dir2_format.h"
34#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000036#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Local function prototypes.
40 */
41static void xfs_dir2_block_log_leaf(xfs_trans_t *tp, xfs_dabuf_t *bp, int first,
42 int last);
43static void xfs_dir2_block_log_tail(xfs_trans_t *tp, xfs_dabuf_t *bp);
44static int xfs_dir2_block_lookup_int(xfs_da_args_t *args, xfs_dabuf_t **bpp,
45 int *entno);
46static int xfs_dir2_block_sort(const void *a, const void *b);
47
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100048static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
49
50/*
51 * One-time startup routine called from xfs_init().
52 */
53void
54xfs_dir_startup(void)
55{
Dave Chinner4a24cb72010-01-20 10:48:05 +110056 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
57 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100058}
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
61 * Add an entry to a block directory.
62 */
63int /* error */
64xfs_dir2_block_addname(
65 xfs_da_args_t *args) /* directory op arguments */
66{
67 xfs_dir2_data_free_t *bf; /* bestfree table in block */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +020068 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
70 xfs_dabuf_t *bp; /* buffer for block */
71 xfs_dir2_block_tail_t *btp; /* block tail */
72 int compact; /* need to compact leaf ents */
73 xfs_dir2_data_entry_t *dep; /* block data entry */
74 xfs_inode_t *dp; /* directory inode */
75 xfs_dir2_data_unused_t *dup; /* block unused entry */
76 int error; /* error return value */
77 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
78 xfs_dahash_t hash; /* hash value of found entry */
79 int high; /* high index for binary srch */
80 int highstale; /* high stale index */
81 int lfloghigh=0; /* last final leaf to log */
82 int lfloglow=0; /* first final leaf to log */
83 int len; /* length of the new entry */
84 int low; /* low index for binary srch */
85 int lowstale; /* low stale index */
86 int mid=0; /* midpoint for binary srch */
87 xfs_mount_t *mp; /* filesystem mount point */
88 int needlog; /* need to log header */
89 int needscan; /* need to rescan freespace */
Nathan Scott3d693c62006-03-17 17:28:27 +110090 __be16 *tagp; /* pointer to tag value */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 xfs_trans_t *tp; /* transaction structure */
92
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000093 trace_xfs_dir2_block_addname(args);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 dp = args->dp;
96 tp = args->trans;
97 mp = dp->i_mount;
98 /*
99 * Read the (one and only) directory block into dabuf bp.
100 */
101 if ((error =
102 xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, &bp, XFS_DATA_FORK))) {
103 return error;
104 }
105 ASSERT(bp != NULL);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200106 hdr = bp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /*
108 * Check the magic number, corrupted if wrong.
109 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200110 if (unlikely(hdr->magic != cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 XFS_CORRUPTION_ERROR("xfs_dir2_block_addname",
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200112 XFS_ERRLEVEL_LOW, mp, hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 xfs_da_brelse(tp, bp);
114 return XFS_ERROR(EFSCORRUPTED);
115 }
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000116 len = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /*
118 * Set up pointers to parts of the block.
119 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200120 bf = hdr->bestfree;
121 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000122 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /*
124 * No stale entries? Need space for entry and new leaf.
125 */
126 if (!btp->stale) {
127 /*
128 * Tag just before the first leaf entry.
129 */
Nathan Scott3d693c62006-03-17 17:28:27 +1100130 tagp = (__be16 *)blp - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /*
132 * Data object just before the first leaf entry.
133 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200134 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /*
136 * If it's not free then can't do this add without cleaning up:
137 * the space before the first leaf entry needs to be free so it
138 * can be expanded to hold the pointer to the new entry.
139 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100140 if (be16_to_cpu(enddup->freetag) != XFS_DIR2_DATA_FREE_TAG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 dup = enddup = NULL;
142 /*
143 * Check out the biggest freespace and see if it's the same one.
144 */
145 else {
146 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200147 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (dup == enddup) {
149 /*
150 * It is the biggest freespace, is it too small
151 * to hold the new leaf too?
152 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100153 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /*
155 * Yes, we use the second-largest
156 * entry instead if it works.
157 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100158 if (be16_to_cpu(bf[1].length) >= len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200160 ((char *)hdr +
Nathan Scott70e73f52006-03-17 17:26:52 +1100161 be16_to_cpu(bf[1].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 else
163 dup = NULL;
164 }
165 } else {
166 /*
167 * Not the same free entry,
168 * just check its length.
169 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100170 if (be16_to_cpu(dup->length) < len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 dup = NULL;
172 }
173 }
174 }
175 compact = 0;
176 }
177 /*
178 * If there are stale entries we'll use one for the leaf.
179 * Is the biggest entry enough to avoid compaction?
180 */
Nathan Scott70e73f52006-03-17 17:26:52 +1100181 else if (be16_to_cpu(bf[0].length) >= len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200183 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 compact = 0;
185 }
186 /*
187 * Will need to compact to make this work.
188 */
189 else {
190 /*
191 * Tag just before the first leaf entry.
192 */
Nathan Scott3d693c62006-03-17 17:28:27 +1100193 tagp = (__be16 *)blp - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 /*
195 * Data object just before the first leaf entry.
196 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200197 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /*
199 * If it's not free then the data will go where the
200 * leaf data starts now, if it works at all.
201 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100202 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
Nathan Scotte922fff2006-03-17 17:27:56 +1100203 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 (uint)sizeof(*blp) < len)
205 dup = NULL;
Nathan Scotte922fff2006-03-17 17:27:56 +1100206 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 dup = NULL;
208 else
209 dup = (xfs_dir2_data_unused_t *)blp;
210 compact = 1;
211 }
212 /*
213 * If this isn't a real add, we're done with the buffer.
214 */
Barry Naujok6a178102008-05-21 16:42:05 +1000215 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 xfs_da_brelse(tp, bp);
217 /*
218 * If we don't have space for the new entry & leaf ...
219 */
220 if (!dup) {
221 /*
222 * Not trying to actually do anything, or don't have
223 * a space reservation: return no-space.
224 */
Barry Naujok6a178102008-05-21 16:42:05 +1000225 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return XFS_ERROR(ENOSPC);
227 /*
228 * Convert to the next larger format.
229 * Then add the new entry in that format.
230 */
231 error = xfs_dir2_block_to_leaf(args, bp);
232 xfs_da_buf_done(bp);
233 if (error)
234 return error;
235 return xfs_dir2_leaf_addname(args);
236 }
237 /*
238 * Just checking, and it would work, so say so.
239 */
Barry Naujok6a178102008-05-21 16:42:05 +1000240 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242 needlog = needscan = 0;
243 /*
244 * If need to compact the leaf entries, do it now.
245 * Leave the highest-numbered stale entry stale.
246 * XXX should be the one closest to mid but mid is not yet computed.
247 */
248 if (compact) {
249 int fromidx; /* source leaf index */
250 int toidx; /* target leaf index */
251
Nathan Scotte922fff2006-03-17 17:27:56 +1100252 for (fromidx = toidx = be32_to_cpu(btp->count) - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 highstale = lfloghigh = -1;
254 fromidx >= 0;
255 fromidx--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200256 if (blp[fromidx].address ==
257 cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (highstale == -1)
259 highstale = toidx;
260 else {
261 if (lfloghigh == -1)
262 lfloghigh = toidx;
263 continue;
264 }
265 }
266 if (fromidx < toidx)
267 blp[toidx] = blp[fromidx];
268 toidx--;
269 }
Nathan Scotte922fff2006-03-17 17:27:56 +1100270 lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
271 lfloghigh -= be32_to_cpu(btp->stale) - 1;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800272 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 xfs_dir2_data_make_free(tp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200274 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
Nathan Scotte922fff2006-03-17 17:27:56 +1100275 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 &needlog, &needscan);
Nathan Scotte922fff2006-03-17 17:27:56 +1100277 blp += be32_to_cpu(btp->stale) - 1;
278 btp->stale = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /*
280 * If we now need to rebuild the bestfree map, do so.
281 * This needs to happen before the next call to use_free.
282 */
283 if (needscan) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200284 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 needscan = 0;
286 }
287 }
288 /*
289 * Set leaf logging boundaries to impossible state.
290 * For the no-stale case they're set explicitly.
291 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100292 else if (btp->stale) {
293 lfloglow = be32_to_cpu(btp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 lfloghigh = -1;
295 }
296 /*
297 * Find the slot that's first lower than our hash value, -1 if none.
298 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100299 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100301 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303 if (hash < args->hashval)
304 low = mid + 1;
305 else
306 high = mid - 1;
307 }
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100308 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 mid--;
310 }
311 /*
312 * No stale entries, will use enddup space to hold new leaf.
313 */
314 if (!btp->stale) {
315 /*
316 * Mark the space needed for the new leaf entry, now in use.
317 */
318 xfs_dir2_data_use_free(tp, bp, enddup,
319 (xfs_dir2_data_aoff_t)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200320 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 sizeof(*blp)),
322 (xfs_dir2_data_aoff_t)sizeof(*blp),
323 &needlog, &needscan);
324 /*
325 * Update the tail (entry count).
326 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800327 be32_add_cpu(&btp->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /*
329 * If we now need to rebuild the bestfree map, do so.
330 * This needs to happen before the next call to use_free.
331 */
332 if (needscan) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200333 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 needscan = 0;
335 }
336 /*
337 * Adjust pointer to the first leaf entry, we're about to move
338 * the table up one to open up space for the new leaf entry.
339 * Then adjust our index to match.
340 */
341 blp--;
342 mid++;
343 if (mid)
344 memmove(blp, &blp[1], mid * sizeof(*blp));
345 lfloglow = 0;
346 lfloghigh = mid;
347 }
348 /*
349 * Use a stale leaf for our new entry.
350 */
351 else {
352 for (lowstale = mid;
353 lowstale >= 0 &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200354 blp[lowstale].address !=
355 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 lowstale--)
357 continue;
358 for (highstale = mid + 1;
Nathan Scotte922fff2006-03-17 17:27:56 +1100359 highstale < be32_to_cpu(btp->count) &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200360 blp[highstale].address !=
361 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 (lowstale < 0 || mid - lowstale > highstale - mid);
363 highstale++)
364 continue;
365 /*
366 * Move entries toward the low-numbered stale entry.
367 */
368 if (lowstale >= 0 &&
Nathan Scotte922fff2006-03-17 17:27:56 +1100369 (highstale == be32_to_cpu(btp->count) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 mid - lowstale <= highstale - mid)) {
371 if (mid - lowstale)
372 memmove(&blp[lowstale], &blp[lowstale + 1],
373 (mid - lowstale) * sizeof(*blp));
374 lfloglow = MIN(lowstale, lfloglow);
375 lfloghigh = MAX(mid, lfloghigh);
376 }
377 /*
378 * Move entries toward the high-numbered stale entry.
379 */
380 else {
Nathan Scotte922fff2006-03-17 17:27:56 +1100381 ASSERT(highstale < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 mid++;
383 if (highstale - mid)
384 memmove(&blp[mid + 1], &blp[mid],
385 (highstale - mid) * sizeof(*blp));
386 lfloglow = MIN(mid, lfloglow);
387 lfloghigh = MAX(highstale, lfloghigh);
388 }
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800389 be32_add_cpu(&btp->stale, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391 /*
392 * Point to the new data entry.
393 */
394 dep = (xfs_dir2_data_entry_t *)dup;
395 /*
396 * Fill in the leaf entry.
397 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100398 blp[mid].hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000399 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200400 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
402 /*
403 * Mark space for the data entry used.
404 */
405 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200406 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
408 /*
409 * Create the new data entry.
410 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000411 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 dep->namelen = args->namelen;
413 memcpy(dep->name, args->name, args->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000414 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200415 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 /*
417 * Clean up the bestfree array and log the header, tail, and entry.
418 */
419 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200420 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (needlog)
422 xfs_dir2_data_log_header(tp, bp);
423 xfs_dir2_block_log_tail(tp, bp);
424 xfs_dir2_data_log_entry(tp, bp, dep);
425 xfs_dir2_data_check(dp, bp);
426 xfs_da_buf_done(bp);
427 return 0;
428}
429
430/*
431 * Readdir for block directories.
432 */
433int /* error */
434xfs_dir2_block_getdents(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 xfs_inode_t *dp, /* incore inode */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000436 void *dirent,
437 xfs_off_t *offset,
438 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200440 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 xfs_dabuf_t *bp; /* buffer for block */
442 xfs_dir2_block_tail_t *btp; /* block tail */
443 xfs_dir2_data_entry_t *dep; /* block data entry */
444 xfs_dir2_data_unused_t *dup; /* block unused entry */
445 char *endptr; /* end of the data entries */
446 int error; /* error return value */
447 xfs_mount_t *mp; /* filesystem mount point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 char *ptr; /* current data entry */
449 int wantoff; /* starting block offset */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000450 xfs_off_t cook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 mp = dp->i_mount;
453 /*
454 * If the block number in the offset is out of range, we're done.
455 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000456 if (xfs_dir2_dataptr_to_db(mp, *offset) > mp->m_dirdatablk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return 0;
458 }
459 /*
460 * Can't read the block, give up, else get dabuf in bp.
461 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000462 error = xfs_da_read_buf(NULL, dp, mp->m_dirdatablk, -1,
463 &bp, XFS_DATA_FORK);
464 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return error;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 ASSERT(bp != NULL);
468 /*
469 * Extract the byte offset we start at from the seek pointer.
470 * We'll skip entries before this.
471 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000472 wantoff = xfs_dir2_dataptr_to_off(mp, *offset);
Christoph Hellwiga64b0412011-07-08 14:35:32 +0200473 hdr = bp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 xfs_dir2_data_check(dp, bp);
475 /*
476 * Set up values for the loop.
477 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200478 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwiga64b0412011-07-08 14:35:32 +0200479 ptr = (char *)(hdr + 1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000480 endptr = (char *)xfs_dir2_block_leaf_p(btp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /*
483 * Loop over the data portion of the block.
484 * Each object is a real entry (dep) or an unused one (dup).
485 */
486 while (ptr < endptr) {
487 dup = (xfs_dir2_data_unused_t *)ptr;
488 /*
489 * Unused, skip it.
490 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100491 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
492 ptr += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 continue;
494 }
495
496 dep = (xfs_dir2_data_entry_t *)ptr;
497
498 /*
499 * Bump pointer for the next iteration.
500 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000501 ptr += xfs_dir2_data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /*
503 * The entry is before the desired starting point, skip it.
504 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200505 if ((char *)dep - (char *)hdr < wantoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000508 cook = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200509 (char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /*
512 * If it didn't fit, set the final offset to here & return.
513 */
Dave Chinner4a24cb72010-01-20 10:48:05 +1100514 if (filldir(dirent, (char *)dep->name, dep->namelen,
515 cook & 0x7fffffff, be64_to_cpu(dep->inumber),
516 DT_UNKNOWN)) {
Christoph Hellwig15440312009-01-08 14:00:00 -0500517 *offset = cook & 0x7fffffff;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000518 xfs_da_brelse(NULL, bp);
519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
522
523 /*
524 * Reached the end of the block.
Nathan Scottc41564b2006-03-29 08:55:14 +1000525 * Set the offset to a non-existent block 1 and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 */
Christoph Hellwig15440312009-01-08 14:00:00 -0500527 *offset = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk + 1, 0) &
528 0x7fffffff;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000529 xfs_da_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
532
533/*
534 * Log leaf entries from the block.
535 */
536static void
537xfs_dir2_block_log_leaf(
538 xfs_trans_t *tp, /* transaction structure */
539 xfs_dabuf_t *bp, /* block buffer */
540 int first, /* index of first logged leaf */
541 int last) /* index of last logged leaf */
542{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200543 xfs_dir2_data_hdr_t *hdr = bp->data;
544 xfs_dir2_leaf_entry_t *blp;
545 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200547 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000548 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200549 xfs_da_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
550 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553/*
554 * Log the block tail.
555 */
556static void
557xfs_dir2_block_log_tail(
558 xfs_trans_t *tp, /* transaction structure */
559 xfs_dabuf_t *bp) /* block buffer */
560{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200561 xfs_dir2_data_hdr_t *hdr = bp->data;
562 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200564 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
565 xfs_da_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
566 (uint)((char *)(btp + 1) - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569/*
570 * Look up an entry in the block. This is the external routine,
571 * xfs_dir2_block_lookup_int does the real work.
572 */
573int /* error */
574xfs_dir2_block_lookup(
575 xfs_da_args_t *args) /* dir lookup arguments */
576{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200577 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
579 xfs_dabuf_t *bp; /* block buffer */
580 xfs_dir2_block_tail_t *btp; /* block tail */
581 xfs_dir2_data_entry_t *dep; /* block data entry */
582 xfs_inode_t *dp; /* incore inode */
583 int ent; /* entry index */
584 int error; /* error return value */
585 xfs_mount_t *mp; /* filesystem mount point */
586
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000587 trace_xfs_dir2_block_lookup(args);
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /*
590 * Get the buffer, look up the entry.
591 * If not found (ENOENT) then return, have no buffer.
592 */
593 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
594 return error;
595 dp = args->dp;
596 mp = dp->i_mount;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200597 hdr = bp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 xfs_dir2_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200599 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000600 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /*
602 * Get the offset from the leaf entry, to point to the data.
603 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200604 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
Barry Naujok384f3ce2008-05-21 16:58:22 +1000605 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000607 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000609 args->inumber = be64_to_cpu(dep->inumber);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000610 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 xfs_da_brelse(args->trans, bp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000612 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615/*
616 * Internal block lookup routine.
617 */
618static int /* error */
619xfs_dir2_block_lookup_int(
620 xfs_da_args_t *args, /* dir lookup arguments */
621 xfs_dabuf_t **bpp, /* returned block buffer */
622 int *entno) /* returned entry number */
623{
624 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200625 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
627 xfs_dabuf_t *bp; /* block buffer */
628 xfs_dir2_block_tail_t *btp; /* block tail */
629 xfs_dir2_data_entry_t *dep; /* block data entry */
630 xfs_inode_t *dp; /* incore inode */
631 int error; /* error return value */
632 xfs_dahash_t hash; /* found hash value */
633 int high; /* binary search high index */
634 int low; /* binary search low index */
635 int mid; /* binary search current idx */
636 xfs_mount_t *mp; /* filesystem mount point */
637 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000638 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 dp = args->dp;
641 tp = args->trans;
642 mp = dp->i_mount;
643 /*
644 * Read the buffer, return error if we can't get it.
645 */
646 if ((error =
647 xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, &bp, XFS_DATA_FORK))) {
648 return error;
649 }
650 ASSERT(bp != NULL);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200651 hdr = bp->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 xfs_dir2_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200653 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000654 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /*
656 * Loop doing a binary search for our hash value.
657 * Find our entry, ENOENT if it's not there.
658 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100659 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 ASSERT(low <= high);
661 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100662 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 break;
664 if (hash < args->hashval)
665 low = mid + 1;
666 else
667 high = mid - 1;
668 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000669 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 xfs_da_brelse(tp, bp);
671 return XFS_ERROR(ENOENT);
672 }
673 }
674 /*
675 * Back up to the first one with the right hash value.
676 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100677 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 mid--;
679 }
680 /*
681 * Now loop forward through all the entries with the
682 * right hash value looking for our name.
683 */
684 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100685 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 continue;
687 /*
688 * Get pointer to the entry from the leaf.
689 */
690 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200691 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000693 * Compare name and if it's an exact match, return the index
694 * and buffer. If it's the first case-insensitive match, store
695 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 */
Barry Naujok5163f952008-05-21 16:41:01 +1000697 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
698 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
699 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 *bpp = bp;
701 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000702 if (cmp == XFS_CMP_EXACT)
703 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
Barry Naujok5163f952008-05-21 16:41:01 +1000705 } while (++mid < be32_to_cpu(btp->count) &&
706 be32_to_cpu(blp[mid].hashval) == hash);
707
Barry Naujok6a178102008-05-21 16:42:05 +1000708 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000709 /*
710 * Here, we can only be doing a lookup (not a rename or replace).
711 * If a case-insensitive match was found earlier, return success.
712 */
713 if (args->cmpresult == XFS_CMP_CASE)
714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /*
716 * No match, release the buffer and return ENOENT.
717 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 xfs_da_brelse(tp, bp);
719 return XFS_ERROR(ENOENT);
720}
721
722/*
723 * Remove an entry from a block format directory.
724 * If that makes the block small enough to fit in shortform, transform it.
725 */
726int /* error */
727xfs_dir2_block_removename(
728 xfs_da_args_t *args) /* directory operation args */
729{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200730 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
732 xfs_dabuf_t *bp; /* block buffer */
733 xfs_dir2_block_tail_t *btp; /* block tail */
734 xfs_dir2_data_entry_t *dep; /* block data entry */
735 xfs_inode_t *dp; /* incore inode */
736 int ent; /* block leaf entry index */
737 int error; /* error return value */
738 xfs_mount_t *mp; /* filesystem mount point */
739 int needlog; /* need to log block header */
740 int needscan; /* need to fixup bestfree */
741 xfs_dir2_sf_hdr_t sfh; /* shortform header */
742 int size; /* shortform size */
743 xfs_trans_t *tp; /* transaction pointer */
744
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000745 trace_xfs_dir2_block_removename(args);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /*
748 * Look up the entry in the block. Gets the buffer and entry index.
749 * It will always be there, the vnodeops level does a lookup first.
750 */
751 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
752 return error;
753 }
754 dp = args->dp;
755 tp = args->trans;
756 mp = dp->i_mount;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200757 hdr = bp->data;
758 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000759 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /*
761 * Point to the data entry using the leaf entry.
762 */
763 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200764 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /*
766 * Mark the data entry's space free.
767 */
768 needlog = needscan = 0;
769 xfs_dir2_data_make_free(tp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200770 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000771 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /*
773 * Fix up the block tail.
774 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800775 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 xfs_dir2_block_log_tail(tp, bp);
777 /*
778 * Remove the leaf entry by marking it stale.
779 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100780 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
782 /*
783 * Fix up bestfree, log the header if necessary.
784 */
785 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200786 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (needlog)
788 xfs_dir2_data_log_header(tp, bp);
789 xfs_dir2_data_check(dp, bp);
790 /*
791 * See if the size as a shortform is good enough.
792 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200793 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
794 if (size > XFS_IFORK_DSIZE(dp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 xfs_da_buf_done(bp);
796 return 0;
797 }
798 /*
799 * If it works, do the conversion.
800 */
801 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
802}
803
804/*
805 * Replace an entry in a V2 block directory.
806 * Change the inode number to the new value.
807 */
808int /* error */
809xfs_dir2_block_replace(
810 xfs_da_args_t *args) /* directory operation args */
811{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200812 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
814 xfs_dabuf_t *bp; /* block buffer */
815 xfs_dir2_block_tail_t *btp; /* block tail */
816 xfs_dir2_data_entry_t *dep; /* block data entry */
817 xfs_inode_t *dp; /* incore inode */
818 int ent; /* leaf entry index */
819 int error; /* error return value */
820 xfs_mount_t *mp; /* filesystem mount point */
821
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000822 trace_xfs_dir2_block_replace(args);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /*
825 * Lookup the entry in the directory. Get buffer and entry index.
826 * This will always succeed since the caller has already done a lookup.
827 */
828 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
829 return error;
830 }
831 dp = args->dp;
832 mp = dp->i_mount;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200833 hdr = bp->data;
834 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000835 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /*
837 * Point to the data entry we need to change.
838 */
839 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200840 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000841 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /*
843 * Change the inode number to the new value.
844 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000845 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 xfs_dir2_data_log_entry(args->trans, bp, dep);
847 xfs_dir2_data_check(dp, bp);
848 xfs_da_buf_done(bp);
849 return 0;
850}
851
852/*
853 * Qsort comparison routine for the block leaf entries.
854 */
855static int /* sort order */
856xfs_dir2_block_sort(
857 const void *a, /* first leaf entry */
858 const void *b) /* second leaf entry */
859{
860 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
861 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
862
863 la = a;
864 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100865 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
866 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869/*
870 * Convert a V2 leaf directory to a V2 block directory if possible.
871 */
872int /* error */
873xfs_dir2_leaf_to_block(
874 xfs_da_args_t *args, /* operation arguments */
875 xfs_dabuf_t *lbp, /* leaf buffer */
876 xfs_dabuf_t *dbp) /* data buffer */
877{
Nathan Scott68b3a102006-03-17 17:27:19 +1100878 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200879 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 xfs_dir2_block_tail_t *btp; /* block tail */
881 xfs_inode_t *dp; /* incore directory inode */
882 xfs_dir2_data_unused_t *dup; /* unused data entry */
883 int error; /* error return value */
884 int from; /* leaf from index */
885 xfs_dir2_leaf_t *leaf; /* leaf structure */
886 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
887 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
888 xfs_mount_t *mp; /* file system mount point */
889 int needlog; /* need to log data header */
890 int needscan; /* need to scan for bestfree */
891 xfs_dir2_sf_hdr_t sfh; /* shortform header */
892 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +1100893 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 int to; /* block/leaf to index */
895 xfs_trans_t *tp; /* transaction pointer */
896
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000897 trace_xfs_dir2_leaf_to_block(args);
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 dp = args->dp;
900 tp = args->trans;
901 mp = dp->i_mount;
902 leaf = lbp->data;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200903 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000904 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /*
906 * If there are data blocks other than the first one, take this
907 * opportunity to remove trailing empty data blocks that may have
908 * been left behind during no-space-reservation operations.
909 * These will show up in the leaf bests table.
910 */
911 while (dp->i_d.di_size > mp->m_dirblksize) {
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000912 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100913 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200914 mp->m_dirblksize - (uint)sizeof(*hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if ((error =
916 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100917 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto out;
919 } else {
920 error = 0;
921 goto out;
922 }
923 }
924 /*
925 * Read the data block if we don't already have it, give up if it fails.
926 */
927 if (dbp == NULL &&
928 (error = xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, &dbp,
929 XFS_DATA_FORK))) {
930 goto out;
931 }
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200932 hdr = dbp->data;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200933 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 /*
935 * Size of the "leaf" area in the block.
936 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200937 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Nathan Scotta818e5d2006-03-17 17:28:07 +1100938 (uint)sizeof(*lep) * (be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /*
940 * Look at the last data entry.
941 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200942 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
943 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /*
945 * If it's not free or is too short we can't do it.
946 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100947 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
948 be16_to_cpu(dup->length) < size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 error = 0;
950 goto out;
951 }
952 /*
953 * Start converting it to block form.
954 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200955 hdr->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 needlog = 1;
957 needscan = 0;
958 /*
959 * Use up the space at the end of the block (blp/btp).
960 */
961 xfs_dir2_data_use_free(tp, dbp, dup, mp->m_dirblksize - size, size,
962 &needlog, &needscan);
963 /*
964 * Initialize the block tail.
965 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200966 btp = xfs_dir2_block_tail_p(mp, hdr);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100967 btp->count = cpu_to_be32(be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 btp->stale = 0;
969 xfs_dir2_block_log_tail(tp, dbp);
970 /*
971 * Initialize the block leaf area. We compact out stale entries.
972 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000973 lep = xfs_dir2_block_leaf_p(btp);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100974 for (from = to = 0; from < be16_to_cpu(leaf->hdr.count); from++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200975 if (leaf->ents[from].address ==
976 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 continue;
978 lep[to++] = leaf->ents[from];
979 }
Nathan Scotte922fff2006-03-17 17:27:56 +1100980 ASSERT(to == be32_to_cpu(btp->count));
981 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /*
983 * Scan the bestfree if we need it and log the data block header.
984 */
985 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200986 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (needlog)
988 xfs_dir2_data_log_header(tp, dbp);
989 /*
990 * Pitch the old leaf block.
991 */
992 error = xfs_da_shrink_inode(args, mp->m_dirleafblk, lbp);
993 lbp = NULL;
994 if (error) {
995 goto out;
996 }
997 /*
998 * Now see if the resulting block can be shrunken to shortform.
999 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001000 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
1001 if (size > XFS_IFORK_DSIZE(dp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 error = 0;
1003 goto out;
1004 }
1005 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
1006out:
1007 if (lbp)
1008 xfs_da_buf_done(lbp);
1009 if (dbp)
1010 xfs_da_buf_done(dbp);
1011 return error;
1012}
1013
1014/*
1015 * Convert the shortform directory to block form.
1016 */
1017int /* error */
1018xfs_dir2_sf_to_block(
1019 xfs_da_args_t *args) /* operation arguments */
1020{
1021 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001022 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
1024 xfs_dabuf_t *bp; /* block buffer */
1025 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1027 xfs_inode_t *dp; /* incore directory inode */
1028 int dummy; /* trash */
1029 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1030 int endoffset; /* end of data objects */
1031 int error; /* error return value */
1032 int i; /* index */
1033 xfs_mount_t *mp; /* filesystem mount point */
1034 int needlog; /* need to log block header */
1035 int needscan; /* need to scan block freespc */
1036 int newoffset; /* offset from current entry */
1037 int offset; /* target block offset */
1038 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001039 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1040 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001041 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001043 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001045 trace_xfs_dir2_sf_to_block(args);
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 dp = args->dp;
1048 tp = args->trans;
1049 mp = dp->i_mount;
1050 ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
1051 /*
1052 * Bomb out if the shortform directory is way too short.
1053 */
1054 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1055 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1056 return XFS_ERROR(EIO);
1057 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001058
1059 oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
1062 ASSERT(dp->i_df.if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001063 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001066 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 * Then pitch the incore inode data so we can make extents.
1068 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001069 sfp = kmem_alloc(dp->i_df.if_bytes, KM_SLEEP);
1070 memcpy(sfp, oldsfp, dp->i_df.if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001072 xfs_idata_realloc(dp, -dp->i_df.if_bytes, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 dp->i_d.di_size = 0;
1074 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /*
1077 * Add block 0 to the inode.
1078 */
1079 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1080 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001081 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return error;
1083 }
1084 /*
1085 * Initialize the data block.
1086 */
1087 error = xfs_dir2_data_init(args, blkno, &bp);
1088 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001089 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return error;
1091 }
Christoph Hellwiga64b0412011-07-08 14:35:32 +02001092 hdr = bp->data;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001093 hdr->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /*
1095 * Compute size of block "tail" area.
1096 */
1097 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001098 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /*
1100 * The whole thing is initialized to free by the init routine.
1101 * Say we're using the leaf and tail area.
1102 */
Christoph Hellwiga64b0412011-07-08 14:35:32 +02001103 dup = (xfs_dir2_data_unused_t *)(hdr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 needlog = needscan = 0;
1105 xfs_dir2_data_use_free(tp, bp, dup, mp->m_dirblksize - i, i, &needlog,
1106 &needscan);
1107 ASSERT(needscan == 0);
1108 /*
1109 * Fill in the tail.
1110 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001111 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001112 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001114 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001115 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /*
1117 * Remove the freespace, we'll manage it.
1118 */
1119 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001120 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001121 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 /*
1123 * Create entry for .
1124 */
1125 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001126 ((char *)hdr + XFS_DIR2_DATA_DOT_OFFSET);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001127 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 dep->namelen = 1;
1129 dep->name[0] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001130 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001131 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001133 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001134 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001135 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /*
1137 * Create entry for ..
1138 */
1139 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001140 ((char *)hdr + XFS_DIR2_DATA_DOTDOT_OFFSET);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001141 dep->inumber = cpu_to_be64(xfs_dir2_sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 dep->namelen = 2;
1143 dep->name[0] = dep->name[1] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001144 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001145 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001147 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001148 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001149 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 offset = XFS_DIR2_DATA_FIRST_OFFSET;
1151 /*
1152 * Loop over existing entries, stuff them in.
1153 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001154 i = 0;
1155 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 sfep = NULL;
1157 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001158 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /*
1160 * Need to preserve the existing offset values in the sf directory.
1161 * Insert holes (unused entries) where necessary.
1162 */
1163 while (offset < endoffset) {
1164 /*
1165 * sfep is null when we reach the end of the list.
1166 */
1167 if (sfep == NULL)
1168 newoffset = endoffset;
1169 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001170 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 /*
1172 * There should be a hole here, make one.
1173 */
1174 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001175 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001176 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1177 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001178 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001179 ((char *)dup - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 xfs_dir2_data_log_unused(tp, bp, dup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001181 xfs_dir2_data_freeinsert(hdr, dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001182 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 continue;
1184 }
1185 /*
1186 * Copy a real entry.
1187 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001188 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001189 dep->inumber = cpu_to_be64(xfs_dir2_sfe_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 dep->namelen = sfep->namelen;
1191 memcpy(dep->name, sfep->name, dep->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001192 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001193 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 xfs_dir2_data_log_entry(tp, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001195 name.name = sfep->name;
1196 name.len = sfep->namelen;
1197 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1198 hashname(&name));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001199 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001200 (char *)dep - (char *)hdr));
1201 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001202 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 sfep = NULL;
1204 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001205 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
1207 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001208 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /*
1210 * Sort the leaf entries by hash value.
1211 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001212 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 /*
1214 * Log the leaf entry area and tail.
1215 * Already logged the header in data_init, ignore needlog.
1216 */
1217 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001218 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 xfs_dir2_block_log_tail(tp, bp);
1220 xfs_dir2_data_check(dp, bp);
1221 xfs_da_buf_done(bp);
1222 return 0;
1223}