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