xfs: factor out xfs_dir2_leaf_find_stale
[deliverable/linux.git] / fs / xfs / xfs_dir2.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4 22#include "xfs_log.h"
a844f451 23#include "xfs_inum.h"
1da177e4
LT
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
1da177e4 27#include "xfs_mount.h"
a844f451 28#include "xfs_da_btree.h"
1da177e4 29#include "xfs_bmap_btree.h"
a844f451 30#include "xfs_alloc_btree.h"
1da177e4 31#include "xfs_dinode.h"
1da177e4 32#include "xfs_inode.h"
a844f451 33#include "xfs_inode_item.h"
1da177e4 34#include "xfs_bmap.h"
57926640
CH
35#include "xfs_dir2.h"
36#include "xfs_dir2_format.h"
37#include "xfs_dir2_priv.h"
1da177e4 38#include "xfs_error.h"
a8272ce0 39#include "xfs_vnodeops.h"
0b1b213f 40#include "xfs_trace.h"
1da177e4 41
4a24cb71 42struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2};
1da177e4 43
189f4bf2
BN
44/*
45 * ASCII case-insensitive (ie. A-Z) support for directories that was
46 * used in IRIX.
47 */
48STATIC xfs_dahash_t
49xfs_ascii_ci_hashname(
50 struct xfs_name *name)
51{
52 xfs_dahash_t hash;
53 int i;
54
55 for (i = 0, hash = 0; i < name->len; i++)
56 hash = tolower(name->name[i]) ^ rol32(hash, 7);
57
58 return hash;
59}
60
61STATIC enum xfs_dacmp
62xfs_ascii_ci_compname(
63 struct xfs_da_args *args,
2bc75421
DC
64 const unsigned char *name,
65 int len)
189f4bf2
BN
66{
67 enum xfs_dacmp result;
68 int i;
69
70 if (args->namelen != len)
71 return XFS_CMP_DIFFERENT;
72
73 result = XFS_CMP_EXACT;
74 for (i = 0; i < len; i++) {
75 if (args->name[i] == name[i])
76 continue;
77 if (tolower(args->name[i]) != tolower(name[i]))
78 return XFS_CMP_DIFFERENT;
79 result = XFS_CMP_CASE;
80 }
81
82 return result;
83}
84
85static struct xfs_nameops xfs_ascii_ci_nameops = {
86 .hashname = xfs_ascii_ci_hashname,
87 .compname = xfs_ascii_ci_compname,
88};
89
f6c2d1fa
NS
90void
91xfs_dir_mount(
92 xfs_mount_t *mp)
1da177e4 93{
62118709 94 ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb));
1da177e4
LT
95 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
96 XFS_MAX_BLOCKSIZE);
97 mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog);
98 mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog;
bbaaf538
CH
99 mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp));
100 mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp));
101 mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp));
1da177e4
LT
102 mp->m_attr_node_ents =
103 (mp->m_sb.sb_blocksize - (uint)sizeof(xfs_da_node_hdr_t)) /
104 (uint)sizeof(xfs_da_node_entry_t);
105 mp->m_dir_node_ents =
106 (mp->m_dirblksize - (uint)sizeof(xfs_da_node_hdr_t)) /
107 (uint)sizeof(xfs_da_node_entry_t);
108 mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100;
189f4bf2
BN
109 if (xfs_sb_version_hasasciici(&mp->m_sb))
110 mp->m_dirnameops = &xfs_ascii_ci_nameops;
111 else
112 mp->m_dirnameops = &xfs_default_nameops;
1da177e4
LT
113}
114
115/*
116 * Return 1 if directory contains only "." and "..".
117 */
f6c2d1fa
NS
118int
119xfs_dir_isempty(
120 xfs_inode_t *dp)
1da177e4 121{
ac8ba50f 122 xfs_dir2_sf_hdr_t *sfp;
1da177e4
LT
123
124 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
f6c2d1fa 125 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
1da177e4 126 return 1;
1da177e4
LT
127 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
128 return 0;
ac8ba50f
CH
129 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
130 return !sfp->count;
1da177e4
LT
131}
132
f6c2d1fa
NS
133/*
134 * Validate a given inode number.
135 */
136int
137xfs_dir_ino_validate(
138 xfs_mount_t *mp,
139 xfs_ino_t ino)
140{
141 xfs_agblock_t agblkno;
142 xfs_agino_t agino;
143 xfs_agnumber_t agno;
144 int ino_ok;
145 int ioff;
146
147 agno = XFS_INO_TO_AGNO(mp, ino);
148 agblkno = XFS_INO_TO_AGBNO(mp, ino);
149 ioff = XFS_INO_TO_OFFSET(mp, ino);
150 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
151 ino_ok =
152 agno < mp->m_sb.sb_agcount &&
153 agblkno < mp->m_sb.sb_agblocks &&
154 agblkno != 0 &&
155 ioff < (1 << mp->m_sb.sb_inopblog) &&
156 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
157 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
158 XFS_RANDOM_DIR_INO_VALIDATE))) {
53487786 159 xfs_warn(mp, "Invalid inode number 0x%Lx",
f6c2d1fa
NS
160 (unsigned long long) ino);
161 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
162 return XFS_ERROR(EFSCORRUPTED);
163 }
164 return 0;
165}
166
1da177e4
LT
167/*
168 * Initialize a directory with its "." and ".." entries.
169 */
f6c2d1fa
NS
170int
171xfs_dir_init(
172 xfs_trans_t *tp,
173 xfs_inode_t *dp,
174 xfs_inode_t *pdp)
1da177e4 175{
f6c2d1fa
NS
176 xfs_da_args_t args;
177 int error;
1da177e4
LT
178
179 memset((char *)&args, 0, sizeof(args));
180 args.dp = dp;
181 args.trans = tp;
182 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
f6c2d1fa 183 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
1da177e4 184 return error;
1da177e4
LT
185 return xfs_dir2_sf_create(&args, pdp->i_ino);
186}
187
188/*
189 Enter a name in a directory.
190 */
f6c2d1fa
NS
191int
192xfs_dir_createname(
193 xfs_trans_t *tp,
194 xfs_inode_t *dp,
556b8b16 195 struct xfs_name *name,
1da177e4
LT
196 xfs_ino_t inum, /* new entry inode number */
197 xfs_fsblock_t *first, /* bmap's firstblock */
198 xfs_bmap_free_t *flist, /* bmap's freeblock list */
199 xfs_extlen_t total) /* bmap's total block count */
200{
f6c2d1fa
NS
201 xfs_da_args_t args;
202 int rval;
1da177e4
LT
203 int v; /* type-checking value */
204
205 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
f6c2d1fa 206 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
1da177e4 207 return rval;
1da177e4 208 XFS_STATS_INC(xs_dir_create);
f6c2d1fa 209
87affd08 210 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
211 args.name = name->name;
212 args.namelen = name->len;
5163f95a 213 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4
LT
214 args.inumber = inum;
215 args.dp = dp;
216 args.firstblock = first;
217 args.flist = flist;
218 args.total = total;
219 args.whichfork = XFS_DATA_FORK;
220 args.trans = tp;
6a178100 221 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
f6c2d1fa 222
1da177e4
LT
223 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
224 rval = xfs_dir2_sf_addname(&args);
f6c2d1fa 225 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 226 return rval;
f6c2d1fa 227 else if (v)
1da177e4 228 rval = xfs_dir2_block_addname(&args);
f6c2d1fa 229 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 230 return rval;
f6c2d1fa 231 else if (v)
1da177e4
LT
232 rval = xfs_dir2_leaf_addname(&args);
233 else
234 rval = xfs_dir2_node_addname(&args);
235 return rval;
236}
237
384f3ced
BN
238/*
239 * If doing a CI lookup and case-insensitive match, dup actual name into
240 * args.value. Return EEXIST for success (ie. name found) or an error.
241 */
242int
243xfs_dir_cilookup_result(
244 struct xfs_da_args *args,
a3380ae3 245 const unsigned char *name,
384f3ced
BN
246 int len)
247{
248 if (args->cmpresult == XFS_CMP_DIFFERENT)
249 return ENOENT;
250 if (args->cmpresult != XFS_CMP_CASE ||
251 !(args->op_flags & XFS_DA_OP_CILOOKUP))
252 return EEXIST;
253
3f52c2f0 254 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
384f3ced
BN
255 if (!args->value)
256 return ENOMEM;
257
258 memcpy(args->value, name, len);
259 args->valuelen = len;
260 return EEXIST;
261}
262
1da177e4
LT
263/*
264 * Lookup a name in a directory, give back the inode number.
384f3ced
BN
265 * If ci_name is not NULL, returns the actual name in ci_name if it differs
266 * to name, or ci_name->name is set to NULL for an exact match.
1da177e4 267 */
384f3ced 268
f6c2d1fa
NS
269int
270xfs_dir_lookup(
271 xfs_trans_t *tp,
272 xfs_inode_t *dp,
556b8b16 273 struct xfs_name *name,
384f3ced
BN
274 xfs_ino_t *inum, /* out: inode number */
275 struct xfs_name *ci_name) /* out: actual name if CI match */
1da177e4 276{
f6c2d1fa
NS
277 xfs_da_args_t args;
278 int rval;
1da177e4
LT
279 int v; /* type-checking value */
280
281 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
282 XFS_STATS_INC(xs_dir_lookup);
283
87affd08 284 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
285 args.name = name->name;
286 args.namelen = name->len;
5163f95a 287 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4 288 args.dp = dp;
1da177e4
LT
289 args.whichfork = XFS_DATA_FORK;
290 args.trans = tp;
6a178100 291 args.op_flags = XFS_DA_OP_OKNOENT;
384f3ced
BN
292 if (ci_name)
293 args.op_flags |= XFS_DA_OP_CILOOKUP;
f6c2d1fa 294
1da177e4
LT
295 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
296 rval = xfs_dir2_sf_lookup(&args);
f6c2d1fa 297 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 298 return rval;
f6c2d1fa 299 else if (v)
1da177e4 300 rval = xfs_dir2_block_lookup(&args);
f6c2d1fa 301 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 302 return rval;
f6c2d1fa 303 else if (v)
1da177e4
LT
304 rval = xfs_dir2_leaf_lookup(&args);
305 else
306 rval = xfs_dir2_node_lookup(&args);
307 if (rval == EEXIST)
308 rval = 0;
384f3ced 309 if (!rval) {
1da177e4 310 *inum = args.inumber;
384f3ced
BN
311 if (ci_name) {
312 ci_name->name = args.value;
313 ci_name->len = args.valuelen;
314 }
315 }
1da177e4
LT
316 return rval;
317}
318
319/*
320 * Remove an entry from a directory.
321 */
f6c2d1fa
NS
322int
323xfs_dir_removename(
324 xfs_trans_t *tp,
325 xfs_inode_t *dp,
556b8b16 326 struct xfs_name *name,
f6c2d1fa 327 xfs_ino_t ino,
1da177e4
LT
328 xfs_fsblock_t *first, /* bmap's firstblock */
329 xfs_bmap_free_t *flist, /* bmap's freeblock list */
330 xfs_extlen_t total) /* bmap's total block count */
331{
f6c2d1fa
NS
332 xfs_da_args_t args;
333 int rval;
1da177e4
LT
334 int v; /* type-checking value */
335
336 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
337 XFS_STATS_INC(xs_dir_remove);
f6c2d1fa 338
87affd08 339 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
340 args.name = name->name;
341 args.namelen = name->len;
5163f95a 342 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4
LT
343 args.inumber = ino;
344 args.dp = dp;
345 args.firstblock = first;
346 args.flist = flist;
347 args.total = total;
348 args.whichfork = XFS_DATA_FORK;
349 args.trans = tp;
f6c2d1fa 350
1da177e4
LT
351 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
352 rval = xfs_dir2_sf_removename(&args);
f6c2d1fa 353 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 354 return rval;
f6c2d1fa 355 else if (v)
1da177e4 356 rval = xfs_dir2_block_removename(&args);
f6c2d1fa 357 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 358 return rval;
f6c2d1fa 359 else if (v)
1da177e4
LT
360 rval = xfs_dir2_leaf_removename(&args);
361 else
362 rval = xfs_dir2_node_removename(&args);
363 return rval;
364}
365
366/*
367 * Read a directory.
368 */
f6c2d1fa 369int
051e7cd4 370xfs_readdir(
993386c1 371 xfs_inode_t *dp,
051e7cd4
CH
372 void *dirent,
373 size_t bufsize,
374 xfs_off_t *offset,
375 filldir_t filldir)
1da177e4 376{
1da177e4
LT
377 int rval; /* return value */
378 int v; /* type-checking value */
379
cca28fb8 380 trace_xfs_readdir(dp);
051e7cd4
CH
381
382 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
383 return XFS_ERROR(EIO);
384
1da177e4
LT
385 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
386 XFS_STATS_INC(xs_dir_getdents);
1da177e4 387
1da177e4 388 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
051e7cd4
CH
389 rval = xfs_dir2_sf_getdents(dp, dirent, offset, filldir);
390 else if ((rval = xfs_dir2_isblock(NULL, dp, &v)))
1da177e4 391 ;
f6c2d1fa 392 else if (v)
051e7cd4 393 rval = xfs_dir2_block_getdents(dp, dirent, offset, filldir);
1da177e4 394 else
051e7cd4
CH
395 rval = xfs_dir2_leaf_getdents(dp, dirent, bufsize, offset,
396 filldir);
1da177e4
LT
397 return rval;
398}
399
400/*
401 * Replace the inode number of a directory entry.
402 */
f6c2d1fa
NS
403int
404xfs_dir_replace(
405 xfs_trans_t *tp,
406 xfs_inode_t *dp,
556b8b16 407 struct xfs_name *name, /* name of entry to replace */
1da177e4
LT
408 xfs_ino_t inum, /* new inode number */
409 xfs_fsblock_t *first, /* bmap's firstblock */
410 xfs_bmap_free_t *flist, /* bmap's freeblock list */
411 xfs_extlen_t total) /* bmap's total block count */
412{
f6c2d1fa
NS
413 xfs_da_args_t args;
414 int rval;
1da177e4
LT
415 int v; /* type-checking value */
416
417 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
418
f6c2d1fa 419 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
1da177e4 420 return rval;
f6c2d1fa 421
87affd08 422 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
423 args.name = name->name;
424 args.namelen = name->len;
5163f95a 425 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4
LT
426 args.inumber = inum;
427 args.dp = dp;
428 args.firstblock = first;
429 args.flist = flist;
430 args.total = total;
431 args.whichfork = XFS_DATA_FORK;
432 args.trans = tp;
f6c2d1fa 433
1da177e4
LT
434 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
435 rval = xfs_dir2_sf_replace(&args);
f6c2d1fa 436 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 437 return rval;
f6c2d1fa 438 else if (v)
1da177e4 439 rval = xfs_dir2_block_replace(&args);
f6c2d1fa 440 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 441 return rval;
f6c2d1fa 442 else if (v)
1da177e4
LT
443 rval = xfs_dir2_leaf_replace(&args);
444 else
445 rval = xfs_dir2_node_replace(&args);
446 return rval;
447}
448
449/*
450 * See if this entry can be added to the directory without allocating space.
556b8b16 451 * First checks that the caller couldn't reserve enough space (resblks = 0).
1da177e4 452 */
f6c2d1fa
NS
453int
454xfs_dir_canenter(
455 xfs_trans_t *tp,
456 xfs_inode_t *dp,
556b8b16
BN
457 struct xfs_name *name, /* name of entry to add */
458 uint resblks)
1da177e4 459{
f6c2d1fa
NS
460 xfs_da_args_t args;
461 int rval;
1da177e4
LT
462 int v; /* type-checking value */
463
556b8b16
BN
464 if (resblks)
465 return 0;
466
1da177e4 467 ASSERT((dp->i_d.di_mode & S_IFMT) == S_IFDIR);
f6c2d1fa 468
87affd08 469 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
470 args.name = name->name;
471 args.namelen = name->len;
5163f95a 472 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4 473 args.dp = dp;
1da177e4
LT
474 args.whichfork = XFS_DATA_FORK;
475 args.trans = tp;
6a178100
BN
476 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
477 XFS_DA_OP_OKNOENT;
f6c2d1fa 478
1da177e4
LT
479 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
480 rval = xfs_dir2_sf_addname(&args);
f6c2d1fa 481 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 482 return rval;
f6c2d1fa 483 else if (v)
1da177e4 484 rval = xfs_dir2_block_addname(&args);
f6c2d1fa 485 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 486 return rval;
f6c2d1fa 487 else if (v)
1da177e4
LT
488 rval = xfs_dir2_leaf_addname(&args);
489 else
490 rval = xfs_dir2_node_addname(&args);
491 return rval;
492}
493
1da177e4
LT
494/*
495 * Utility routines.
496 */
497
498/*
499 * Add a block to the directory.
500 * This routine is for data and free blocks, not leaf/node blocks
501 * which are handled by xfs_da_grow_inode.
502 */
f6c2d1fa 503int
1da177e4 504xfs_dir2_grow_inode(
f6c2d1fa 505 xfs_da_args_t *args,
1da177e4
LT
506 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
507 xfs_dir2_db_t *dbp) /* out: block number added */
508{
509 xfs_fileoff_t bno; /* directory offset of new block */
510 int count; /* count of filesystem blocks */
511 xfs_inode_t *dp; /* incore directory inode */
f6c2d1fa 512 int error;
1da177e4 513 int got; /* blocks actually mapped */
f6c2d1fa 514 int i;
1da177e4
LT
515 xfs_bmbt_irec_t map; /* single structure for bmap */
516 int mapi; /* mapping index */
517 xfs_bmbt_irec_t *mapp; /* bmap mapping structure(s) */
f6c2d1fa 518 xfs_mount_t *mp;
1da177e4 519 int nmap; /* number of bmap entries */
f6c2d1fa 520 xfs_trans_t *tp;
a7444053 521 xfs_drfsbno_t nblks;
1da177e4 522
0b1b213f
CH
523 trace_xfs_dir2_grow_inode(args, space);
524
1da177e4
LT
525 dp = args->dp;
526 tp = args->trans;
527 mp = dp->i_mount;
a7444053 528 nblks = dp->i_d.di_nblocks;
1da177e4
LT
529 /*
530 * Set lowest possible block in the space requested.
531 */
532 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
533 count = mp->m_dirblkfsbs;
534 /*
535 * Find the first hole for our block.
536 */
f6c2d1fa 537 if ((error = xfs_bmap_first_unused(tp, dp, count, &bno, XFS_DATA_FORK)))
1da177e4 538 return error;
1da177e4
LT
539 nmap = 1;
540 ASSERT(args->firstblock != NULL);
541 /*
542 * Try mapping the new block contiguously (one extent).
543 */
544 if ((error = xfs_bmapi(tp, dp, bno, count,
545 XFS_BMAPI_WRITE|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
546 args->firstblock, args->total, &map, &nmap,
b4e9181e 547 args->flist)))
1da177e4 548 return error;
1da177e4 549 ASSERT(nmap <= 1);
1da177e4
LT
550 if (nmap == 1) {
551 mapp = &map;
552 mapi = 1;
553 }
554 /*
555 * Didn't work and this is a multiple-fsb directory block.
556 * Try again with contiguous flag turned on.
557 */
558 else if (nmap == 0 && count > 1) {
559 xfs_fileoff_t b; /* current file offset */
560
561 /*
562 * Space for maximum number of mappings.
563 */
564 mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
565 /*
566 * Iterate until we get to the end of our block.
567 */
568 for (b = bno, mapi = 0; b < bno + count; ) {
569 int c; /* current fsb count */
570
571 /*
572 * Can't map more than MAX_NMAP at once.
573 */
574 nmap = MIN(XFS_BMAP_MAX_NMAP, count);
575 c = (int)(bno + count - b);
576 if ((error = xfs_bmapi(tp, dp, b, c,
577 XFS_BMAPI_WRITE|XFS_BMAPI_METADATA,
578 args->firstblock, args->total,
b4e9181e 579 &mapp[mapi], &nmap, args->flist))) {
f0e2d93c 580 kmem_free(mapp);
1da177e4
LT
581 return error;
582 }
583 if (nmap < 1)
584 break;
585 /*
586 * Add this bunch into our table, go to the next offset.
587 */
588 mapi += nmap;
589 b = mapp[mapi - 1].br_startoff +
590 mapp[mapi - 1].br_blockcount;
591 }
592 }
593 /*
594 * Didn't work.
595 */
596 else {
597 mapi = 0;
598 mapp = NULL;
599 }
600 /*
601 * See how many fsb's we got.
602 */
603 for (i = 0, got = 0; i < mapi; i++)
604 got += mapp[i].br_blockcount;
605 /*
606 * Didn't get enough fsb's, or the first/last block's are wrong.
607 */
608 if (got != count || mapp[0].br_startoff != bno ||
609 mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
610 bno + count) {
611 if (mapp != &map)
f0e2d93c 612 kmem_free(mapp);
1da177e4
LT
613 return XFS_ERROR(ENOSPC);
614 }
615 /*
616 * Done with the temporary mapping table.
617 */
618 if (mapp != &map)
f0e2d93c 619 kmem_free(mapp);
a7444053
DC
620
621 /* account for newly allocated blocks in reserved blocks total */
622 args->total -= dp->i_d.di_nblocks - nblks;
bbaaf538 623 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
a7444053 624
1da177e4
LT
625 /*
626 * Update file's size if this is the data space and it grew.
627 */
628 if (space == XFS_DIR2_DATA_SPACE) {
629 xfs_fsize_t size; /* directory file (data) size */
630
631 size = XFS_FSB_TO_B(mp, bno + count);
632 if (size > dp->i_d.di_size) {
633 dp->i_d.di_size = size;
634 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
635 }
636 }
637 return 0;
638}
639
640/*
641 * See if the directory is a single-block form directory.
642 */
f6c2d1fa 643int
1da177e4 644xfs_dir2_isblock(
f6c2d1fa
NS
645 xfs_trans_t *tp,
646 xfs_inode_t *dp,
1da177e4
LT
647 int *vp) /* out: 1 is block, 0 is not block */
648{
649 xfs_fileoff_t last; /* last file offset */
f6c2d1fa
NS
650 xfs_mount_t *mp;
651 int rval;
1da177e4
LT
652
653 mp = dp->i_mount;
f6c2d1fa 654 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
1da177e4 655 return rval;
1da177e4
LT
656 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
657 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
658 *vp = rval;
659 return 0;
660}
661
662/*
663 * See if the directory is a single-leaf form directory.
664 */
f6c2d1fa 665int
1da177e4 666xfs_dir2_isleaf(
f6c2d1fa
NS
667 xfs_trans_t *tp,
668 xfs_inode_t *dp,
1da177e4
LT
669 int *vp) /* out: 1 is leaf, 0 is not leaf */
670{
671 xfs_fileoff_t last; /* last file offset */
f6c2d1fa
NS
672 xfs_mount_t *mp;
673 int rval;
1da177e4
LT
674
675 mp = dp->i_mount;
f6c2d1fa 676 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
1da177e4 677 return rval;
1da177e4
LT
678 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
679 return 0;
680}
681
1da177e4
LT
682/*
683 * Remove the given block from the directory.
684 * This routine is used for data and free blocks, leaf/node are done
685 * by xfs_da_shrink_inode.
686 */
687int
688xfs_dir2_shrink_inode(
f6c2d1fa
NS
689 xfs_da_args_t *args,
690 xfs_dir2_db_t db,
691 xfs_dabuf_t *bp)
1da177e4
LT
692{
693 xfs_fileoff_t bno; /* directory file offset */
694 xfs_dablk_t da; /* directory file offset */
695 int done; /* bunmap is finished */
f6c2d1fa
NS
696 xfs_inode_t *dp;
697 int error;
698 xfs_mount_t *mp;
699 xfs_trans_t *tp;
1da177e4 700
0b1b213f
CH
701 trace_xfs_dir2_shrink_inode(args, db);
702
1da177e4
LT
703 dp = args->dp;
704 mp = dp->i_mount;
705 tp = args->trans;
bbaaf538 706 da = xfs_dir2_db_to_da(mp, db);
1da177e4
LT
707 /*
708 * Unmap the fsblock(s).
709 */
710 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
711 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
b4e9181e 712 &done))) {
1da177e4
LT
713 /*
714 * ENOSPC actually can happen if we're in a removename with
715 * no space reservation, and the resulting block removal
716 * would cause a bmap btree split or conversion from extents
717 * to btree. This can only happen for un-fragmented
718 * directory blocks, since you need to be punching out
719 * the middle of an extent.
720 * In this case we need to leave the block in the file,
721 * and not binval it.
722 * So the block has to be in a consistent empty state
723 * and appropriately logged.
724 * We don't free up the buffer, the caller can tell it
725 * hasn't happened since it got an error back.
726 */
727 return error;
728 }
729 ASSERT(done);
730 /*
731 * Invalidate the buffer from the transaction.
732 */
733 xfs_da_binval(tp, bp);
734 /*
735 * If it's not a data block, we're done.
736 */
737 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
738 return 0;
739 /*
740 * If the block isn't the last one in the directory, we're done.
741 */
bbaaf538 742 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
1da177e4
LT
743 return 0;
744 bno = da;
745 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
746 /*
747 * This can't really happen unless there's kernel corruption.
748 */
749 return error;
750 }
751 if (db == mp->m_dirdatablk)
752 ASSERT(bno == 0);
753 else
754 ASSERT(bno > 0);
755 /*
756 * Set the size to the new last block.
757 */
758 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
759 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
760 return 0;
761}
This page took 0.592903 seconds and 5 git commands to generate.