blob: 12afe07a91d71ddc003a763674d7d1ee45a992d3 [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
Dave Chinner82025d72012-11-12 22:54:12 +110059static void
60xfs_dir2_block_verify(
61 struct xfs_buf *bp)
62{
63 struct xfs_mount *mp = bp->b_target->bt_mount;
64 struct xfs_dir2_data_hdr *hdr = bp->b_addr;
65 int block_ok = 0;
66
67 block_ok = hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
68 block_ok = block_ok && __xfs_dir2_data_check(NULL, bp) == 0;
69
70 if (!block_ok) {
71 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, hdr);
72 xfs_buf_ioerror(bp, EFSCORRUPTED);
73 }
Dave Chinner612cfbf2012-11-14 17:52:32 +110074}
Dave Chinner82025d72012-11-12 22:54:12 +110075
Dave Chinner612cfbf2012-11-14 17:52:32 +110076static void
Dave Chinner1813dd62012-11-14 17:54:40 +110077xfs_dir2_block_read_verify(
78 struct xfs_buf *bp)
79{
80 xfs_dir2_block_verify(bp);
81}
82
83static void
Dave Chinner612cfbf2012-11-14 17:52:32 +110084xfs_dir2_block_write_verify(
85 struct xfs_buf *bp)
86{
87 xfs_dir2_block_verify(bp);
88}
89
Dave Chinner1813dd62012-11-14 17:54:40 +110090const struct xfs_buf_ops xfs_dir2_block_buf_ops = {
91 .verify_read = xfs_dir2_block_read_verify,
92 .verify_write = xfs_dir2_block_write_verify,
93};
Dave Chinner82025d72012-11-12 22:54:12 +110094
Dave Chinner20f7e9f2012-11-12 22:54:11 +110095static int
96xfs_dir2_block_read(
97 struct xfs_trans *tp,
98 struct xfs_inode *dp,
99 struct xfs_buf **bpp)
100{
101 struct xfs_mount *mp = dp->i_mount;
102
103 return xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, bpp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100104 XFS_DATA_FORK, &xfs_dir2_block_buf_ops);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100105}
106
107static void
108xfs_dir2_block_need_space(
109 struct xfs_dir2_data_hdr *hdr,
110 struct xfs_dir2_block_tail *btp,
111 struct xfs_dir2_leaf_entry *blp,
112 __be16 **tagpp,
113 struct xfs_dir2_data_unused **dupp,
114 struct xfs_dir2_data_unused **enddupp,
115 int *compact,
116 int len)
117{
118 struct xfs_dir2_data_free *bf;
119 __be16 *tagp = NULL;
120 struct xfs_dir2_data_unused *dup = NULL;
121 struct xfs_dir2_data_unused *enddup = NULL;
122
123 *compact = 0;
124 bf = hdr->bestfree;
125
126 /*
127 * If there are stale entries we'll use one for the leaf.
128 */
129 if (btp->stale) {
130 if (be16_to_cpu(bf[0].length) >= len) {
131 /*
132 * The biggest entry enough to avoid compaction.
133 */
134 dup = (xfs_dir2_data_unused_t *)
135 ((char *)hdr + be16_to_cpu(bf[0].offset));
136 goto out;
137 }
138
139 /*
140 * Will need to compact to make this work.
141 * Tag just before the first leaf entry.
142 */
143 *compact = 1;
144 tagp = (__be16 *)blp - 1;
145
146 /* Data object just before the first leaf entry. */
147 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
148
149 /*
150 * If it's not free then the data will go where the
151 * leaf data starts now, if it works at all.
152 */
153 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
154 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
155 (uint)sizeof(*blp) < len)
156 dup = NULL;
157 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
158 dup = NULL;
159 else
160 dup = (xfs_dir2_data_unused_t *)blp;
161 goto out;
162 }
163
164 /*
165 * no stale entries, so just use free space.
166 * Tag just before the first leaf entry.
167 */
168 tagp = (__be16 *)blp - 1;
169
170 /* Data object just before the first leaf entry. */
171 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
172
173 /*
174 * If it's not free then can't do this add without cleaning up:
175 * the space before the first leaf entry needs to be free so it
176 * can be expanded to hold the pointer to the new entry.
177 */
178 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
179 /*
180 * Check out the biggest freespace and see if it's the same one.
181 */
182 dup = (xfs_dir2_data_unused_t *)
183 ((char *)hdr + be16_to_cpu(bf[0].offset));
184 if (dup != enddup) {
185 /*
186 * Not the same free entry, just check its length.
187 */
188 if (be16_to_cpu(dup->length) < len)
189 dup = NULL;
190 goto out;
191 }
192
193 /*
194 * It is the biggest freespace, can it hold the leaf too?
195 */
196 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
197 /*
198 * Yes, use the second-largest entry instead if it works.
199 */
200 if (be16_to_cpu(bf[1].length) >= len)
201 dup = (xfs_dir2_data_unused_t *)
202 ((char *)hdr + be16_to_cpu(bf[1].offset));
203 else
204 dup = NULL;
205 }
206 }
207out:
208 *tagpp = tagp;
209 *dupp = dup;
210 *enddupp = enddup;
211}
212
213/*
214 * compact the leaf entries.
215 * Leave the highest-numbered stale entry stale.
216 * XXX should be the one closest to mid but mid is not yet computed.
217 */
218static void
219xfs_dir2_block_compact(
220 struct xfs_trans *tp,
221 struct xfs_buf *bp,
222 struct xfs_dir2_data_hdr *hdr,
223 struct xfs_dir2_block_tail *btp,
224 struct xfs_dir2_leaf_entry *blp,
225 int *needlog,
226 int *lfloghigh,
227 int *lfloglow)
228{
229 int fromidx; /* source leaf index */
230 int toidx; /* target leaf index */
231 int needscan = 0;
232 int highstale; /* high stale index */
233
234 fromidx = toidx = be32_to_cpu(btp->count) - 1;
235 highstale = *lfloghigh = -1;
236 for (; fromidx >= 0; fromidx--) {
237 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
238 if (highstale == -1)
239 highstale = toidx;
240 else {
241 if (*lfloghigh == -1)
242 *lfloghigh = toidx;
243 continue;
244 }
245 }
246 if (fromidx < toidx)
247 blp[toidx] = blp[fromidx];
248 toidx--;
249 }
250 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
251 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
252 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
253 xfs_dir2_data_make_free(tp, bp,
254 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
255 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
256 needlog, &needscan);
257 blp += be32_to_cpu(btp->stale) - 1;
258 btp->stale = cpu_to_be32(1);
259 /*
260 * If we now need to rebuild the bestfree map, do so.
261 * This needs to happen before the next call to use_free.
262 */
263 if (needscan)
264 xfs_dir2_data_freescan(tp->t_mountp, hdr, needlog);
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/*
268 * Add an entry to a block directory.
269 */
270int /* error */
271xfs_dir2_block_addname(
272 xfs_da_args_t *args) /* directory op arguments */
273{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200274 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000276 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 xfs_dir2_block_tail_t *btp; /* block tail */
278 int compact; /* need to compact leaf ents */
279 xfs_dir2_data_entry_t *dep; /* block data entry */
280 xfs_inode_t *dp; /* directory inode */
281 xfs_dir2_data_unused_t *dup; /* block unused entry */
282 int error; /* error return value */
283 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
284 xfs_dahash_t hash; /* hash value of found entry */
285 int high; /* high index for binary srch */
286 int highstale; /* high stale index */
287 int lfloghigh=0; /* last final leaf to log */
288 int lfloglow=0; /* first final leaf to log */
289 int len; /* length of the new entry */
290 int low; /* low index for binary srch */
291 int lowstale; /* low stale index */
292 int mid=0; /* midpoint for binary srch */
293 xfs_mount_t *mp; /* filesystem mount point */
294 int needlog; /* need to log header */
295 int needscan; /* need to rescan freespace */
Nathan Scott3d693c62006-03-17 17:28:27 +1100296 __be16 *tagp; /* pointer to tag value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 xfs_trans_t *tp; /* transaction structure */
298
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000299 trace_xfs_dir2_block_addname(args);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dp = args->dp;
302 tp = args->trans;
303 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100304
305 /* Read the (one and only) directory block into bp. */
306 error = xfs_dir2_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100307 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100309
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000310 len = xfs_dir2_data_entsize(args->namelen);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
313 * Set up pointers to parts of the block.
314 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100315 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200316 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000317 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100320 * Find out if we can reuse stale entries or whether we need extra
321 * space for entry and new leaf.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100323 xfs_dir2_block_need_space(hdr, btp, blp, &tagp, &dup,
324 &enddup, &compact, len);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100327 * Done everything we need for a space check now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100329 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000330 xfs_trans_brelse(tp, bp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100331 if (!dup)
332 return XFS_ERROR(ENOSPC);
333 return 0;
334 }
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 /*
337 * If we don't have space for the new entry & leaf ...
338 */
339 if (!dup) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100340 /* Don't have a space reservation: return no-space. */
341 if (args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 return XFS_ERROR(ENOSPC);
343 /*
344 * Convert to the next larger format.
345 * Then add the new entry in that format.
346 */
347 error = xfs_dir2_block_to_leaf(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (error)
349 return error;
350 return xfs_dir2_leaf_addname(args);
351 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 needlog = needscan = 0;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /*
356 * If need to compact the leaf entries, do it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 */
Eric Sandeen37f13562013-01-10 10:41:48 -0600358 if (compact) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100359 xfs_dir2_block_compact(tp, bp, hdr, btp, blp, &needlog,
360 &lfloghigh, &lfloglow);
Eric Sandeen37f13562013-01-10 10:41:48 -0600361 /* recalculate blp post-compaction */
362 blp = xfs_dir2_block_leaf_p(btp);
363 } else if (btp->stale) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100364 /*
365 * Set leaf logging boundaries to impossible state.
366 * For the no-stale case they're set explicitly.
367 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100368 lfloglow = be32_to_cpu(btp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 lfloghigh = -1;
370 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /*
373 * Find the slot that's first lower than our hash value, -1 if none.
374 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100375 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100377 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 break;
379 if (hash < args->hashval)
380 low = mid + 1;
381 else
382 high = mid - 1;
383 }
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100384 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 mid--;
386 }
387 /*
388 * No stale entries, will use enddup space to hold new leaf.
389 */
390 if (!btp->stale) {
391 /*
392 * Mark the space needed for the new leaf entry, now in use.
393 */
394 xfs_dir2_data_use_free(tp, bp, enddup,
395 (xfs_dir2_data_aoff_t)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200396 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 sizeof(*blp)),
398 (xfs_dir2_data_aoff_t)sizeof(*blp),
399 &needlog, &needscan);
400 /*
401 * Update the tail (entry count).
402 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800403 be32_add_cpu(&btp->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 /*
405 * If we now need to rebuild the bestfree map, do so.
406 * This needs to happen before the next call to use_free.
407 */
408 if (needscan) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200409 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 needscan = 0;
411 }
412 /*
413 * Adjust pointer to the first leaf entry, we're about to move
414 * the table up one to open up space for the new leaf entry.
415 * Then adjust our index to match.
416 */
417 blp--;
418 mid++;
419 if (mid)
420 memmove(blp, &blp[1], mid * sizeof(*blp));
421 lfloglow = 0;
422 lfloghigh = mid;
423 }
424 /*
425 * Use a stale leaf for our new entry.
426 */
427 else {
428 for (lowstale = mid;
429 lowstale >= 0 &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200430 blp[lowstale].address !=
431 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 lowstale--)
433 continue;
434 for (highstale = mid + 1;
Nathan Scotte922fff2006-03-17 17:27:56 +1100435 highstale < be32_to_cpu(btp->count) &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200436 blp[highstale].address !=
437 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 (lowstale < 0 || mid - lowstale > highstale - mid);
439 highstale++)
440 continue;
441 /*
442 * Move entries toward the low-numbered stale entry.
443 */
444 if (lowstale >= 0 &&
Nathan Scotte922fff2006-03-17 17:27:56 +1100445 (highstale == be32_to_cpu(btp->count) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 mid - lowstale <= highstale - mid)) {
447 if (mid - lowstale)
448 memmove(&blp[lowstale], &blp[lowstale + 1],
449 (mid - lowstale) * sizeof(*blp));
450 lfloglow = MIN(lowstale, lfloglow);
451 lfloghigh = MAX(mid, lfloghigh);
452 }
453 /*
454 * Move entries toward the high-numbered stale entry.
455 */
456 else {
Nathan Scotte922fff2006-03-17 17:27:56 +1100457 ASSERT(highstale < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 mid++;
459 if (highstale - mid)
460 memmove(&blp[mid + 1], &blp[mid],
461 (highstale - mid) * sizeof(*blp));
462 lfloglow = MIN(mid, lfloglow);
463 lfloghigh = MAX(highstale, lfloghigh);
464 }
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800465 be32_add_cpu(&btp->stale, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467 /*
468 * Point to the new data entry.
469 */
470 dep = (xfs_dir2_data_entry_t *)dup;
471 /*
472 * Fill in the leaf entry.
473 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100474 blp[mid].hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000475 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200476 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
478 /*
479 * Mark space for the data entry used.
480 */
481 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200482 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
484 /*
485 * Create the new data entry.
486 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000487 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 dep->namelen = args->namelen;
489 memcpy(dep->name, args->name, args->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000490 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200491 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /*
493 * Clean up the bestfree array and log the header, tail, and entry.
494 */
495 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200496 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (needlog)
498 xfs_dir2_data_log_header(tp, bp);
499 xfs_dir2_block_log_tail(tp, bp);
500 xfs_dir2_data_log_entry(tp, bp, dep);
501 xfs_dir2_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return 0;
503}
504
505/*
506 * Readdir for block directories.
507 */
508int /* error */
509xfs_dir2_block_getdents(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 xfs_inode_t *dp, /* incore inode */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000511 void *dirent,
512 xfs_off_t *offset,
513 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200515 xfs_dir2_data_hdr_t *hdr; /* block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000516 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 xfs_dir2_block_tail_t *btp; /* block tail */
518 xfs_dir2_data_entry_t *dep; /* block data entry */
519 xfs_dir2_data_unused_t *dup; /* block unused entry */
520 char *endptr; /* end of the data entries */
521 int error; /* error return value */
522 xfs_mount_t *mp; /* filesystem mount point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 char *ptr; /* current data entry */
524 int wantoff; /* starting block offset */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000525 xfs_off_t cook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 mp = dp->i_mount;
528 /*
529 * If the block number in the offset is out of range, we're done.
530 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100531 if (xfs_dir2_dataptr_to_db(mp, *offset) > mp->m_dirdatablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return 0;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100533
534 error = xfs_dir2_block_read(NULL, dp, &bp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000535 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return error;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /*
539 * Extract the byte offset we start at from the seek pointer.
540 * We'll skip entries before this.
541 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000542 wantoff = xfs_dir2_dataptr_to_off(mp, *offset);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000543 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 xfs_dir2_data_check(dp, bp);
545 /*
546 * Set up values for the loop.
547 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200548 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwiga64b0412011-07-08 14:35:32 +0200549 ptr = (char *)(hdr + 1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000550 endptr = (char *)xfs_dir2_block_leaf_p(btp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /*
553 * Loop over the data portion of the block.
554 * Each object is a real entry (dep) or an unused one (dup).
555 */
556 while (ptr < endptr) {
557 dup = (xfs_dir2_data_unused_t *)ptr;
558 /*
559 * Unused, skip it.
560 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100561 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
562 ptr += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 continue;
564 }
565
566 dep = (xfs_dir2_data_entry_t *)ptr;
567
568 /*
569 * Bump pointer for the next iteration.
570 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000571 ptr += xfs_dir2_data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
573 * The entry is before the desired starting point, skip it.
574 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200575 if ((char *)dep - (char *)hdr < wantoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000578 cook = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200579 (char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /*
582 * If it didn't fit, set the final offset to here & return.
583 */
Dave Chinner4a24cb72010-01-20 10:48:05 +1100584 if (filldir(dirent, (char *)dep->name, dep->namelen,
585 cook & 0x7fffffff, be64_to_cpu(dep->inumber),
586 DT_UNKNOWN)) {
Christoph Hellwig15440312009-01-08 14:00:00 -0500587 *offset = cook & 0x7fffffff;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000588 xfs_trans_brelse(NULL, bp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 }
592
593 /*
594 * Reached the end of the block.
Nathan Scottc41564b2006-03-29 08:55:14 +1000595 * Set the offset to a non-existent block 1 and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 */
Christoph Hellwig15440312009-01-08 14:00:00 -0500597 *offset = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk + 1, 0) &
598 0x7fffffff;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000599 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return 0;
601}
602
603/*
604 * Log leaf entries from the block.
605 */
606static void
607xfs_dir2_block_log_leaf(
608 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000609 struct xfs_buf *bp, /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 int first, /* index of first logged leaf */
611 int last) /* index of last logged leaf */
612{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000613 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200614 xfs_dir2_leaf_entry_t *blp;
615 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200617 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000618 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000619 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200620 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623/*
624 * Log the block tail.
625 */
626static void
627xfs_dir2_block_log_tail(
628 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000629 struct xfs_buf *bp) /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000631 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200632 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200634 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000635 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200636 (uint)((char *)(btp + 1) - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
639/*
640 * Look up an entry in the block. This is the external routine,
641 * xfs_dir2_block_lookup_int does the real work.
642 */
643int /* error */
644xfs_dir2_block_lookup(
645 xfs_da_args_t *args) /* dir lookup arguments */
646{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200647 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000649 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 xfs_dir2_block_tail_t *btp; /* block tail */
651 xfs_dir2_data_entry_t *dep; /* block data entry */
652 xfs_inode_t *dp; /* incore inode */
653 int ent; /* entry index */
654 int error; /* error return value */
655 xfs_mount_t *mp; /* filesystem mount point */
656
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000657 trace_xfs_dir2_block_lookup(args);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /*
660 * Get the buffer, look up the entry.
661 * If not found (ENOENT) then return, have no buffer.
662 */
663 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
664 return error;
665 dp = args->dp;
666 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000667 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 xfs_dir2_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200669 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000670 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /*
672 * Get the offset from the leaf entry, to point to the data.
673 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200674 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
Barry Naujok384f3ce2008-05-21 16:58:22 +1000675 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000677 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000679 args->inumber = be64_to_cpu(dep->inumber);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000680 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000681 xfs_trans_brelse(args->trans, bp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000682 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685/*
686 * Internal block lookup routine.
687 */
688static int /* error */
689xfs_dir2_block_lookup_int(
690 xfs_da_args_t *args, /* dir lookup arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000691 struct xfs_buf **bpp, /* returned block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int *entno) /* returned entry number */
693{
694 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200695 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000697 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 xfs_dir2_block_tail_t *btp; /* block tail */
699 xfs_dir2_data_entry_t *dep; /* block data entry */
700 xfs_inode_t *dp; /* incore inode */
701 int error; /* error return value */
702 xfs_dahash_t hash; /* found hash value */
703 int high; /* binary search high index */
704 int low; /* binary search low index */
705 int mid; /* binary search current idx */
706 xfs_mount_t *mp; /* filesystem mount point */
707 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000708 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 dp = args->dp;
711 tp = args->trans;
712 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100713
714 error = xfs_dir2_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100715 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100717
Dave Chinner1d9025e2012-06-22 18:50:14 +1000718 hdr = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 xfs_dir2_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200720 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000721 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
723 * Loop doing a binary search for our hash value.
724 * Find our entry, ENOENT if it's not there.
725 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100726 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 ASSERT(low <= high);
728 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100729 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 break;
731 if (hash < args->hashval)
732 low = mid + 1;
733 else
734 high = mid - 1;
735 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000736 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000737 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return XFS_ERROR(ENOENT);
739 }
740 }
741 /*
742 * Back up to the first one with the right hash value.
743 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100744 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 mid--;
746 }
747 /*
748 * Now loop forward through all the entries with the
749 * right hash value looking for our name.
750 */
751 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100752 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 continue;
754 /*
755 * Get pointer to the entry from the leaf.
756 */
757 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200758 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000760 * Compare name and if it's an exact match, return the index
761 * and buffer. If it's the first case-insensitive match, store
762 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
Barry Naujok5163f952008-05-21 16:41:01 +1000764 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
765 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
766 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 *bpp = bp;
768 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000769 if (cmp == XFS_CMP_EXACT)
770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Barry Naujok5163f952008-05-21 16:41:01 +1000772 } while (++mid < be32_to_cpu(btp->count) &&
773 be32_to_cpu(blp[mid].hashval) == hash);
774
Barry Naujok6a178102008-05-21 16:42:05 +1000775 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000776 /*
777 * Here, we can only be doing a lookup (not a rename or replace).
778 * If a case-insensitive match was found earlier, return success.
779 */
780 if (args->cmpresult == XFS_CMP_CASE)
781 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /*
783 * No match, release the buffer and return ENOENT.
784 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000785 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return XFS_ERROR(ENOENT);
787}
788
789/*
790 * Remove an entry from a block format directory.
791 * If that makes the block small enough to fit in shortform, transform it.
792 */
793int /* error */
794xfs_dir2_block_removename(
795 xfs_da_args_t *args) /* directory operation args */
796{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200797 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000799 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 xfs_dir2_block_tail_t *btp; /* block tail */
801 xfs_dir2_data_entry_t *dep; /* block data entry */
802 xfs_inode_t *dp; /* incore inode */
803 int ent; /* block leaf entry index */
804 int error; /* error return value */
805 xfs_mount_t *mp; /* filesystem mount point */
806 int needlog; /* need to log block header */
807 int needscan; /* need to fixup bestfree */
808 xfs_dir2_sf_hdr_t sfh; /* shortform header */
809 int size; /* shortform size */
810 xfs_trans_t *tp; /* transaction pointer */
811
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000812 trace_xfs_dir2_block_removename(args);
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /*
815 * Look up the entry in the block. Gets the buffer and entry index.
816 * It will always be there, the vnodeops level does a lookup first.
817 */
818 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
819 return error;
820 }
821 dp = args->dp;
822 tp = args->trans;
823 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000824 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200825 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000826 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /*
828 * Point to the data entry using the leaf entry.
829 */
830 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200831 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
833 * Mark the data entry's space free.
834 */
835 needlog = needscan = 0;
836 xfs_dir2_data_make_free(tp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200837 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000838 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /*
840 * Fix up the block tail.
841 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800842 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 xfs_dir2_block_log_tail(tp, bp);
844 /*
845 * Remove the leaf entry by marking it stale.
846 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100847 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
849 /*
850 * Fix up bestfree, log the header if necessary.
851 */
852 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200853 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (needlog)
855 xfs_dir2_data_log_header(tp, bp);
856 xfs_dir2_data_check(dp, bp);
857 /*
858 * See if the size as a shortform is good enough.
859 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200860 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000861 if (size > XFS_IFORK_DSIZE(dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /*
865 * If it works, do the conversion.
866 */
867 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
868}
869
870/*
871 * Replace an entry in a V2 block directory.
872 * Change the inode number to the new value.
873 */
874int /* error */
875xfs_dir2_block_replace(
876 xfs_da_args_t *args) /* directory operation args */
877{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200878 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000880 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 xfs_dir2_block_tail_t *btp; /* block tail */
882 xfs_dir2_data_entry_t *dep; /* block data entry */
883 xfs_inode_t *dp; /* incore inode */
884 int ent; /* leaf entry index */
885 int error; /* error return value */
886 xfs_mount_t *mp; /* filesystem mount point */
887
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000888 trace_xfs_dir2_block_replace(args);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /*
891 * Lookup the entry in the directory. Get buffer and entry index.
892 * This will always succeed since the caller has already done a lookup.
893 */
894 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
895 return error;
896 }
897 dp = args->dp;
898 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000899 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200900 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000901 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /*
903 * Point to the data entry we need to change.
904 */
905 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200906 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000907 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /*
909 * Change the inode number to the new value.
910 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000911 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 xfs_dir2_data_log_entry(args->trans, bp, dep);
913 xfs_dir2_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return 0;
915}
916
917/*
918 * Qsort comparison routine for the block leaf entries.
919 */
920static int /* sort order */
921xfs_dir2_block_sort(
922 const void *a, /* first leaf entry */
923 const void *b) /* second leaf entry */
924{
925 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
926 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
927
928 la = a;
929 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100930 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
931 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934/*
935 * Convert a V2 leaf directory to a V2 block directory if possible.
936 */
937int /* error */
938xfs_dir2_leaf_to_block(
939 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000940 struct xfs_buf *lbp, /* leaf buffer */
941 struct xfs_buf *dbp) /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Nathan Scott68b3a102006-03-17 17:27:19 +1100943 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200944 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 xfs_dir2_block_tail_t *btp; /* block tail */
946 xfs_inode_t *dp; /* incore directory inode */
947 xfs_dir2_data_unused_t *dup; /* unused data entry */
948 int error; /* error return value */
949 int from; /* leaf from index */
950 xfs_dir2_leaf_t *leaf; /* leaf structure */
951 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
952 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
953 xfs_mount_t *mp; /* file system mount point */
954 int needlog; /* need to log data header */
955 int needscan; /* need to scan for bestfree */
956 xfs_dir2_sf_hdr_t sfh; /* shortform header */
957 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +1100958 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 int to; /* block/leaf to index */
960 xfs_trans_t *tp; /* transaction pointer */
961
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000962 trace_xfs_dir2_leaf_to_block(args);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 dp = args->dp;
965 tp = args->trans;
966 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000967 leaf = lbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200968 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000969 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /*
971 * If there are data blocks other than the first one, take this
972 * opportunity to remove trailing empty data blocks that may have
973 * been left behind during no-space-reservation operations.
974 * These will show up in the leaf bests table.
975 */
976 while (dp->i_d.di_size > mp->m_dirblksize) {
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000977 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100978 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200979 mp->m_dirblksize - (uint)sizeof(*hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if ((error =
981 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100982 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000983 return error;
984 } else
985 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987 /*
988 * Read the data block if we don't already have it, give up if it fails.
989 */
Dave Chinner4bb20a82012-11-12 22:54:10 +1100990 if (!dbp) {
Dave Chinnere4813572012-11-12 22:54:14 +1100991 error = xfs_dir2_data_read(tp, dp, mp->m_dirdatablk, -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100992 if (error)
993 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000995 hdr = dbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200996 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
998 * Size of the "leaf" area in the block.
999 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001000 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Nathan Scotta818e5d2006-03-17 17:28:07 +11001001 (uint)sizeof(*lep) * (be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /*
1003 * Look at the last data entry.
1004 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001005 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
1006 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /*
1008 * If it's not free or is too short we can't do it.
1009 */
Nathan Scottad354eb2006-03-17 17:27:37 +11001010 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
Dave Chinner1d9025e2012-06-22 18:50:14 +10001011 be16_to_cpu(dup->length) < size)
1012 return 0;
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /*
1015 * Start converting it to block form.
1016 */
Dave Chinner1813dd62012-11-14 17:54:40 +11001017 dbp->b_ops = &xfs_dir2_block_buf_ops;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001018 hdr->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 needlog = 1;
1020 needscan = 0;
1021 /*
1022 * Use up the space at the end of the block (blp/btp).
1023 */
1024 xfs_dir2_data_use_free(tp, dbp, dup, mp->m_dirblksize - size, size,
1025 &needlog, &needscan);
1026 /*
1027 * Initialize the block tail.
1028 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001029 btp = xfs_dir2_block_tail_p(mp, hdr);
Nathan Scotta818e5d2006-03-17 17:28:07 +11001030 btp->count = cpu_to_be32(be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 btp->stale = 0;
1032 xfs_dir2_block_log_tail(tp, dbp);
1033 /*
1034 * Initialize the block leaf area. We compact out stale entries.
1035 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001036 lep = xfs_dir2_block_leaf_p(btp);
Nathan Scotta818e5d2006-03-17 17:28:07 +11001037 for (from = to = 0; from < be16_to_cpu(leaf->hdr.count); from++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001038 if (leaf->ents[from].address ==
1039 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 continue;
1041 lep[to++] = leaf->ents[from];
1042 }
Nathan Scotte922fff2006-03-17 17:27:56 +11001043 ASSERT(to == be32_to_cpu(btp->count));
1044 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /*
1046 * Scan the bestfree if we need it and log the data block header.
1047 */
1048 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001049 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (needlog)
1051 xfs_dir2_data_log_header(tp, dbp);
1052 /*
1053 * Pitch the old leaf block.
1054 */
1055 error = xfs_da_shrink_inode(args, mp->m_dirleafblk, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001056 if (error)
1057 return error;
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 /*
1060 * Now see if the resulting block can be shrunken to shortform.
1061 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001062 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001063 if (size > XFS_IFORK_DSIZE(dp))
1064 return 0;
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069/*
1070 * Convert the shortform directory to block form.
1071 */
1072int /* error */
1073xfs_dir2_sf_to_block(
1074 xfs_da_args_t *args) /* operation arguments */
1075{
1076 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001077 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001079 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1082 xfs_inode_t *dp; /* incore directory inode */
1083 int dummy; /* trash */
1084 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1085 int endoffset; /* end of data objects */
1086 int error; /* error return value */
1087 int i; /* index */
1088 xfs_mount_t *mp; /* filesystem mount point */
1089 int needlog; /* need to log block header */
1090 int needscan; /* need to scan block freespc */
1091 int newoffset; /* offset from current entry */
1092 int offset; /* target block offset */
1093 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001094 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1095 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001096 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001098 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001100 trace_xfs_dir2_sf_to_block(args);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 dp = args->dp;
1103 tp = args->trans;
1104 mp = dp->i_mount;
1105 ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
1106 /*
1107 * Bomb out if the shortform directory is way too short.
1108 */
1109 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1110 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1111 return XFS_ERROR(EIO);
1112 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001113
1114 oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
1117 ASSERT(dp->i_df.if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001118 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001121 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * Then pitch the incore inode data so we can make extents.
1123 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001124 sfp = kmem_alloc(dp->i_df.if_bytes, KM_SLEEP);
1125 memcpy(sfp, oldsfp, dp->i_df.if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001127 xfs_idata_realloc(dp, -dp->i_df.if_bytes, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 dp->i_d.di_size = 0;
1129 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /*
1132 * Add block 0 to the inode.
1133 */
1134 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1135 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001136 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return error;
1138 }
1139 /*
1140 * Initialize the data block.
1141 */
1142 error = xfs_dir2_data_init(args, blkno, &bp);
1143 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001144 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return error;
1146 }
Dave Chinner1813dd62012-11-14 17:54:40 +11001147 bp->b_ops = &xfs_dir2_block_buf_ops;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001148 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001149 hdr->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 /*
1151 * Compute size of block "tail" area.
1152 */
1153 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001154 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 /*
1156 * The whole thing is initialized to free by the init routine.
1157 * Say we're using the leaf and tail area.
1158 */
Christoph Hellwiga64b0412011-07-08 14:35:32 +02001159 dup = (xfs_dir2_data_unused_t *)(hdr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 needlog = needscan = 0;
1161 xfs_dir2_data_use_free(tp, bp, dup, mp->m_dirblksize - i, i, &needlog,
1162 &needscan);
1163 ASSERT(needscan == 0);
1164 /*
1165 * Fill in the tail.
1166 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001167 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001168 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001170 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001171 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 /*
1173 * Remove the freespace, we'll manage it.
1174 */
1175 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001176 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001177 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /*
1179 * Create entry for .
1180 */
1181 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001182 ((char *)hdr + XFS_DIR2_DATA_DOT_OFFSET);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001183 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 dep->namelen = 1;
1185 dep->name[0] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001186 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001187 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001189 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001190 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001191 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /*
1193 * Create entry for ..
1194 */
1195 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001196 ((char *)hdr + XFS_DIR2_DATA_DOTDOT_OFFSET);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001197 dep->inumber = cpu_to_be64(xfs_dir2_sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 dep->namelen = 2;
1199 dep->name[0] = dep->name[1] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001200 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001201 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001203 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001204 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001205 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 offset = XFS_DIR2_DATA_FIRST_OFFSET;
1207 /*
1208 * Loop over existing entries, stuff them in.
1209 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001210 i = 0;
1211 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 sfep = NULL;
1213 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001214 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 /*
1216 * Need to preserve the existing offset values in the sf directory.
1217 * Insert holes (unused entries) where necessary.
1218 */
1219 while (offset < endoffset) {
1220 /*
1221 * sfep is null when we reach the end of the list.
1222 */
1223 if (sfep == NULL)
1224 newoffset = endoffset;
1225 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001226 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /*
1228 * There should be a hole here, make one.
1229 */
1230 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001231 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001232 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1233 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001234 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001235 ((char *)dup - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 xfs_dir2_data_log_unused(tp, bp, dup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001237 xfs_dir2_data_freeinsert(hdr, dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001238 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 continue;
1240 }
1241 /*
1242 * Copy a real entry.
1243 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001244 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001245 dep->inumber = cpu_to_be64(xfs_dir2_sfe_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 dep->namelen = sfep->namelen;
1247 memcpy(dep->name, sfep->name, dep->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001248 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001249 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 xfs_dir2_data_log_entry(tp, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001251 name.name = sfep->name;
1252 name.len = sfep->namelen;
1253 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1254 hashname(&name));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001255 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001256 (char *)dep - (char *)hdr));
1257 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001258 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 sfep = NULL;
1260 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001261 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
1263 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001264 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /*
1266 * Sort the leaf entries by hash value.
1267 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001268 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 /*
1270 * Log the leaf entry area and tail.
1271 * Already logged the header in data_init, ignore needlog.
1272 */
1273 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001274 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 xfs_dir2_block_log_tail(tp, bp);
1276 xfs_dir2_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
1278}