]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/xfs/xfs_dir2.c
xfs: Add read-only support for dirent filetype field
[mirror_ubuntu-bionic-kernel.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"
1da177e4 21#include "xfs_log.h"
a844f451 22#include "xfs_inum.h"
1da177e4
LT
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
1da177e4 26#include "xfs_mount.h"
a844f451 27#include "xfs_da_btree.h"
1da177e4 28#include "xfs_bmap_btree.h"
a844f451 29#include "xfs_alloc_btree.h"
1da177e4 30#include "xfs_dinode.h"
1da177e4 31#include "xfs_inode.h"
a844f451 32#include "xfs_inode_item.h"
1da177e4 33#include "xfs_bmap.h"
57926640 34#include "xfs_dir2_format.h"
2b9ab5ab 35#include "xfs_dir2.h"
57926640 36#include "xfs_dir2_priv.h"
1da177e4 37#include "xfs_error.h"
0b1b213f 38#include "xfs_trace.h"
1da177e4 39
0cb97766
DC
40struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR };
41
1da177e4 42
189f4bf2
BN
43/*
44 * ASCII case-insensitive (ie. A-Z) support for directories that was
45 * used in IRIX.
46 */
47STATIC xfs_dahash_t
48xfs_ascii_ci_hashname(
49 struct xfs_name *name)
50{
51 xfs_dahash_t hash;
52 int i;
53
54 for (i = 0, hash = 0; i < name->len; i++)
55 hash = tolower(name->name[i]) ^ rol32(hash, 7);
56
57 return hash;
58}
59
60STATIC enum xfs_dacmp
61xfs_ascii_ci_compname(
62 struct xfs_da_args *args,
2bc75421
DC
63 const unsigned char *name,
64 int len)
189f4bf2
BN
65{
66 enum xfs_dacmp result;
67 int i;
68
69 if (args->namelen != len)
70 return XFS_CMP_DIFFERENT;
71
72 result = XFS_CMP_EXACT;
73 for (i = 0; i < len; i++) {
74 if (args->name[i] == name[i])
75 continue;
76 if (tolower(args->name[i]) != tolower(name[i]))
77 return XFS_CMP_DIFFERENT;
78 result = XFS_CMP_CASE;
79 }
80
81 return result;
82}
83
84static struct xfs_nameops xfs_ascii_ci_nameops = {
85 .hashname = xfs_ascii_ci_hashname,
86 .compname = xfs_ascii_ci_compname,
87};
88
f6c2d1fa
NS
89void
90xfs_dir_mount(
91 xfs_mount_t *mp)
1da177e4 92{
62118709 93 ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb));
1da177e4
LT
94 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
95 XFS_MAX_BLOCKSIZE);
96 mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog);
97 mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog;
bbaaf538
CH
98 mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp));
99 mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp));
100 mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp));
1da177e4
LT
101 mp->m_attr_node_ents =
102 (mp->m_sb.sb_blocksize - (uint)sizeof(xfs_da_node_hdr_t)) /
103 (uint)sizeof(xfs_da_node_entry_t);
104 mp->m_dir_node_ents =
105 (mp->m_dirblksize - (uint)sizeof(xfs_da_node_hdr_t)) /
106 (uint)sizeof(xfs_da_node_entry_t);
107 mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100;
189f4bf2
BN
108 if (xfs_sb_version_hasasciici(&mp->m_sb))
109 mp->m_dirnameops = &xfs_ascii_ci_nameops;
110 else
111 mp->m_dirnameops = &xfs_default_nameops;
1da177e4
LT
112}
113
114/*
115 * Return 1 if directory contains only "." and "..".
116 */
f6c2d1fa
NS
117int
118xfs_dir_isempty(
119 xfs_inode_t *dp)
1da177e4 120{
ac8ba50f 121 xfs_dir2_sf_hdr_t *sfp;
1da177e4 122
abbede1b 123 ASSERT(S_ISDIR(dp->i_d.di_mode));
f6c2d1fa 124 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
1da177e4 125 return 1;
1da177e4
LT
126 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
127 return 0;
ac8ba50f
CH
128 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
129 return !sfp->count;
1da177e4
LT
130}
131
f6c2d1fa
NS
132/*
133 * Validate a given inode number.
134 */
135int
136xfs_dir_ino_validate(
137 xfs_mount_t *mp,
138 xfs_ino_t ino)
139{
140 xfs_agblock_t agblkno;
141 xfs_agino_t agino;
142 xfs_agnumber_t agno;
143 int ino_ok;
144 int ioff;
145
146 agno = XFS_INO_TO_AGNO(mp, ino);
147 agblkno = XFS_INO_TO_AGBNO(mp, ino);
148 ioff = XFS_INO_TO_OFFSET(mp, ino);
149 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
150 ino_ok =
151 agno < mp->m_sb.sb_agcount &&
152 agblkno < mp->m_sb.sb_agblocks &&
153 agblkno != 0 &&
154 ioff < (1 << mp->m_sb.sb_inopblog) &&
155 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
156 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
157 XFS_RANDOM_DIR_INO_VALIDATE))) {
53487786 158 xfs_warn(mp, "Invalid inode number 0x%Lx",
f6c2d1fa
NS
159 (unsigned long long) ino);
160 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
161 return XFS_ERROR(EFSCORRUPTED);
162 }
163 return 0;
164}
165
1da177e4
LT
166/*
167 * Initialize a directory with its "." and ".." entries.
168 */
f6c2d1fa
NS
169int
170xfs_dir_init(
171 xfs_trans_t *tp,
172 xfs_inode_t *dp,
173 xfs_inode_t *pdp)
1da177e4 174{
f6c2d1fa
NS
175 xfs_da_args_t args;
176 int error;
1da177e4
LT
177
178 memset((char *)&args, 0, sizeof(args));
179 args.dp = dp;
180 args.trans = tp;
abbede1b 181 ASSERT(S_ISDIR(dp->i_d.di_mode));
f6c2d1fa 182 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
1da177e4 183 return error;
1da177e4
LT
184 return xfs_dir2_sf_create(&args, pdp->i_ino);
185}
186
187/*
188 Enter a name in a directory.
189 */
f6c2d1fa
NS
190int
191xfs_dir_createname(
192 xfs_trans_t *tp,
193 xfs_inode_t *dp,
556b8b16 194 struct xfs_name *name,
1da177e4
LT
195 xfs_ino_t inum, /* new entry inode number */
196 xfs_fsblock_t *first, /* bmap's firstblock */
197 xfs_bmap_free_t *flist, /* bmap's freeblock list */
198 xfs_extlen_t total) /* bmap's total block count */
199{
f6c2d1fa
NS
200 xfs_da_args_t args;
201 int rval;
1da177e4
LT
202 int v; /* type-checking value */
203
abbede1b 204 ASSERT(S_ISDIR(dp->i_d.di_mode));
f6c2d1fa 205 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
1da177e4 206 return rval;
1da177e4 207 XFS_STATS_INC(xs_dir_create);
f6c2d1fa 208
87affd08 209 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
210 args.name = name->name;
211 args.namelen = name->len;
5163f95a 212 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4
LT
213 args.inumber = inum;
214 args.dp = dp;
215 args.firstblock = first;
216 args.flist = flist;
217 args.total = total;
218 args.whichfork = XFS_DATA_FORK;
219 args.trans = tp;
6a178100 220 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
f6c2d1fa 221
1da177e4
LT
222 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
223 rval = xfs_dir2_sf_addname(&args);
f6c2d1fa 224 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 225 return rval;
f6c2d1fa 226 else if (v)
1da177e4 227 rval = xfs_dir2_block_addname(&args);
f6c2d1fa 228 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 229 return rval;
f6c2d1fa 230 else if (v)
1da177e4
LT
231 rval = xfs_dir2_leaf_addname(&args);
232 else
233 rval = xfs_dir2_node_addname(&args);
234 return rval;
235}
236
384f3ced
BN
237/*
238 * If doing a CI lookup and case-insensitive match, dup actual name into
239 * args.value. Return EEXIST for success (ie. name found) or an error.
240 */
241int
242xfs_dir_cilookup_result(
243 struct xfs_da_args *args,
a3380ae3 244 const unsigned char *name,
384f3ced
BN
245 int len)
246{
247 if (args->cmpresult == XFS_CMP_DIFFERENT)
248 return ENOENT;
249 if (args->cmpresult != XFS_CMP_CASE ||
250 !(args->op_flags & XFS_DA_OP_CILOOKUP))
251 return EEXIST;
252
3f52c2f0 253 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
384f3ced
BN
254 if (!args->value)
255 return ENOMEM;
256
257 memcpy(args->value, name, len);
258 args->valuelen = len;
259 return EEXIST;
260}
261
1da177e4
LT
262/*
263 * Lookup a name in a directory, give back the inode number.
384f3ced
BN
264 * If ci_name is not NULL, returns the actual name in ci_name if it differs
265 * to name, or ci_name->name is set to NULL for an exact match.
1da177e4 266 */
384f3ced 267
f6c2d1fa
NS
268int
269xfs_dir_lookup(
270 xfs_trans_t *tp,
271 xfs_inode_t *dp,
556b8b16 272 struct xfs_name *name,
384f3ced
BN
273 xfs_ino_t *inum, /* out: inode number */
274 struct xfs_name *ci_name) /* out: actual name if CI match */
1da177e4 275{
f6c2d1fa
NS
276 xfs_da_args_t args;
277 int rval;
1da177e4
LT
278 int v; /* type-checking value */
279
abbede1b 280 ASSERT(S_ISDIR(dp->i_d.di_mode));
1da177e4
LT
281 XFS_STATS_INC(xs_dir_lookup);
282
87affd08 283 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
284 args.name = name->name;
285 args.namelen = name->len;
5163f95a 286 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4 287 args.dp = dp;
1da177e4
LT
288 args.whichfork = XFS_DATA_FORK;
289 args.trans = tp;
6a178100 290 args.op_flags = XFS_DA_OP_OKNOENT;
384f3ced
BN
291 if (ci_name)
292 args.op_flags |= XFS_DA_OP_CILOOKUP;
f6c2d1fa 293
1da177e4
LT
294 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
295 rval = xfs_dir2_sf_lookup(&args);
f6c2d1fa 296 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 297 return rval;
f6c2d1fa 298 else if (v)
1da177e4 299 rval = xfs_dir2_block_lookup(&args);
f6c2d1fa 300 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 301 return rval;
f6c2d1fa 302 else if (v)
1da177e4
LT
303 rval = xfs_dir2_leaf_lookup(&args);
304 else
305 rval = xfs_dir2_node_lookup(&args);
306 if (rval == EEXIST)
307 rval = 0;
384f3ced 308 if (!rval) {
1da177e4 309 *inum = args.inumber;
384f3ced
BN
310 if (ci_name) {
311 ci_name->name = args.value;
312 ci_name->len = args.valuelen;
313 }
314 }
1da177e4
LT
315 return rval;
316}
317
318/*
319 * Remove an entry from a directory.
320 */
f6c2d1fa
NS
321int
322xfs_dir_removename(
323 xfs_trans_t *tp,
324 xfs_inode_t *dp,
556b8b16 325 struct xfs_name *name,
f6c2d1fa 326 xfs_ino_t ino,
1da177e4
LT
327 xfs_fsblock_t *first, /* bmap's firstblock */
328 xfs_bmap_free_t *flist, /* bmap's freeblock list */
329 xfs_extlen_t total) /* bmap's total block count */
330{
f6c2d1fa
NS
331 xfs_da_args_t args;
332 int rval;
1da177e4
LT
333 int v; /* type-checking value */
334
abbede1b 335 ASSERT(S_ISDIR(dp->i_d.di_mode));
1da177e4 336 XFS_STATS_INC(xs_dir_remove);
f6c2d1fa 337
87affd08 338 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
339 args.name = name->name;
340 args.namelen = name->len;
5163f95a 341 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4
LT
342 args.inumber = ino;
343 args.dp = dp;
344 args.firstblock = first;
345 args.flist = flist;
346 args.total = total;
347 args.whichfork = XFS_DATA_FORK;
348 args.trans = tp;
f6c2d1fa 349
1da177e4
LT
350 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
351 rval = xfs_dir2_sf_removename(&args);
f6c2d1fa 352 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 353 return rval;
f6c2d1fa 354 else if (v)
1da177e4 355 rval = xfs_dir2_block_removename(&args);
f6c2d1fa 356 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 357 return rval;
f6c2d1fa 358 else if (v)
1da177e4
LT
359 rval = xfs_dir2_leaf_removename(&args);
360 else
361 rval = xfs_dir2_node_removename(&args);
362 return rval;
363}
364
1da177e4
LT
365/*
366 * Replace the inode number of a directory entry.
367 */
f6c2d1fa
NS
368int
369xfs_dir_replace(
370 xfs_trans_t *tp,
371 xfs_inode_t *dp,
556b8b16 372 struct xfs_name *name, /* name of entry to replace */
1da177e4
LT
373 xfs_ino_t inum, /* new inode number */
374 xfs_fsblock_t *first, /* bmap's firstblock */
375 xfs_bmap_free_t *flist, /* bmap's freeblock list */
376 xfs_extlen_t total) /* bmap's total block count */
377{
f6c2d1fa
NS
378 xfs_da_args_t args;
379 int rval;
1da177e4
LT
380 int v; /* type-checking value */
381
abbede1b 382 ASSERT(S_ISDIR(dp->i_d.di_mode));
1da177e4 383
f6c2d1fa 384 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
1da177e4 385 return rval;
f6c2d1fa 386
87affd08 387 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
388 args.name = name->name;
389 args.namelen = name->len;
0cb97766 390 args.filetype = name->type;
5163f95a 391 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4
LT
392 args.inumber = inum;
393 args.dp = dp;
394 args.firstblock = first;
395 args.flist = flist;
396 args.total = total;
397 args.whichfork = XFS_DATA_FORK;
398 args.trans = tp;
f6c2d1fa 399
1da177e4
LT
400 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
401 rval = xfs_dir2_sf_replace(&args);
f6c2d1fa 402 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 403 return rval;
f6c2d1fa 404 else if (v)
1da177e4 405 rval = xfs_dir2_block_replace(&args);
f6c2d1fa 406 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 407 return rval;
f6c2d1fa 408 else if (v)
1da177e4
LT
409 rval = xfs_dir2_leaf_replace(&args);
410 else
411 rval = xfs_dir2_node_replace(&args);
412 return rval;
413}
414
415/*
416 * See if this entry can be added to the directory without allocating space.
556b8b16 417 * First checks that the caller couldn't reserve enough space (resblks = 0).
1da177e4 418 */
f6c2d1fa
NS
419int
420xfs_dir_canenter(
421 xfs_trans_t *tp,
422 xfs_inode_t *dp,
556b8b16
BN
423 struct xfs_name *name, /* name of entry to add */
424 uint resblks)
1da177e4 425{
f6c2d1fa
NS
426 xfs_da_args_t args;
427 int rval;
1da177e4
LT
428 int v; /* type-checking value */
429
556b8b16
BN
430 if (resblks)
431 return 0;
432
abbede1b 433 ASSERT(S_ISDIR(dp->i_d.di_mode));
f6c2d1fa 434
87affd08 435 memset(&args, 0, sizeof(xfs_da_args_t));
556b8b16
BN
436 args.name = name->name;
437 args.namelen = name->len;
0cb97766 438 args.filetype = name->type;
5163f95a 439 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
1da177e4 440 args.dp = dp;
1da177e4
LT
441 args.whichfork = XFS_DATA_FORK;
442 args.trans = tp;
6a178100
BN
443 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
444 XFS_DA_OP_OKNOENT;
f6c2d1fa 445
1da177e4
LT
446 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
447 rval = xfs_dir2_sf_addname(&args);
f6c2d1fa 448 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
1da177e4 449 return rval;
f6c2d1fa 450 else if (v)
1da177e4 451 rval = xfs_dir2_block_addname(&args);
f6c2d1fa 452 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
1da177e4 453 return rval;
f6c2d1fa 454 else if (v)
1da177e4
LT
455 rval = xfs_dir2_leaf_addname(&args);
456 else
457 rval = xfs_dir2_node_addname(&args);
458 return rval;
459}
460
1da177e4
LT
461/*
462 * Utility routines.
463 */
464
465/*
466 * Add a block to the directory.
77936d02
CH
467 *
468 * This routine is for data and free blocks, not leaf/node blocks which are
469 * handled by xfs_da_grow_inode.
1da177e4 470 */
f6c2d1fa 471int
1da177e4 472xfs_dir2_grow_inode(
77936d02
CH
473 struct xfs_da_args *args,
474 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
475 xfs_dir2_db_t *dbp) /* out: block number added */
1da177e4 476{
77936d02
CH
477 struct xfs_inode *dp = args->dp;
478 struct xfs_mount *mp = dp->i_mount;
479 xfs_fileoff_t bno; /* directory offset of new block */
480 int count; /* count of filesystem blocks */
481 int error;
1da177e4 482
0b1b213f
CH
483 trace_xfs_dir2_grow_inode(args, space);
484
1da177e4
LT
485 /*
486 * Set lowest possible block in the space requested.
487 */
488 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
489 count = mp->m_dirblkfsbs;
77936d02
CH
490
491 error = xfs_da_grow_inode_int(args, &bno, count);
492 if (error)
1da177e4 493 return error;
a7444053 494
bbaaf538 495 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
a7444053 496
1da177e4
LT
497 /*
498 * Update file's size if this is the data space and it grew.
499 */
500 if (space == XFS_DIR2_DATA_SPACE) {
501 xfs_fsize_t size; /* directory file (data) size */
502
503 size = XFS_FSB_TO_B(mp, bno + count);
504 if (size > dp->i_d.di_size) {
505 dp->i_d.di_size = size;
77936d02 506 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
1da177e4
LT
507 }
508 }
509 return 0;
510}
511
512/*
513 * See if the directory is a single-block form directory.
514 */
f6c2d1fa 515int
1da177e4 516xfs_dir2_isblock(
f6c2d1fa
NS
517 xfs_trans_t *tp,
518 xfs_inode_t *dp,
1da177e4
LT
519 int *vp) /* out: 1 is block, 0 is not block */
520{
521 xfs_fileoff_t last; /* last file offset */
f6c2d1fa
NS
522 xfs_mount_t *mp;
523 int rval;
1da177e4
LT
524
525 mp = dp->i_mount;
f6c2d1fa 526 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
1da177e4 527 return rval;
1da177e4
LT
528 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
529 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
530 *vp = rval;
531 return 0;
532}
533
534/*
535 * See if the directory is a single-leaf form directory.
536 */
f6c2d1fa 537int
1da177e4 538xfs_dir2_isleaf(
f6c2d1fa
NS
539 xfs_trans_t *tp,
540 xfs_inode_t *dp,
1da177e4
LT
541 int *vp) /* out: 1 is leaf, 0 is not leaf */
542{
543 xfs_fileoff_t last; /* last file offset */
f6c2d1fa
NS
544 xfs_mount_t *mp;
545 int rval;
1da177e4
LT
546
547 mp = dp->i_mount;
f6c2d1fa 548 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
1da177e4 549 return rval;
1da177e4
LT
550 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
551 return 0;
552}
553
1da177e4
LT
554/*
555 * Remove the given block from the directory.
556 * This routine is used for data and free blocks, leaf/node are done
557 * by xfs_da_shrink_inode.
558 */
559int
560xfs_dir2_shrink_inode(
f6c2d1fa
NS
561 xfs_da_args_t *args,
562 xfs_dir2_db_t db,
1d9025e5 563 struct xfs_buf *bp)
1da177e4
LT
564{
565 xfs_fileoff_t bno; /* directory file offset */
566 xfs_dablk_t da; /* directory file offset */
567 int done; /* bunmap is finished */
f6c2d1fa
NS
568 xfs_inode_t *dp;
569 int error;
570 xfs_mount_t *mp;
571 xfs_trans_t *tp;
1da177e4 572
0b1b213f
CH
573 trace_xfs_dir2_shrink_inode(args, db);
574
1da177e4
LT
575 dp = args->dp;
576 mp = dp->i_mount;
577 tp = args->trans;
bbaaf538 578 da = xfs_dir2_db_to_da(mp, db);
1da177e4
LT
579 /*
580 * Unmap the fsblock(s).
581 */
582 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
583 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
b4e9181e 584 &done))) {
1da177e4
LT
585 /*
586 * ENOSPC actually can happen if we're in a removename with
587 * no space reservation, and the resulting block removal
588 * would cause a bmap btree split or conversion from extents
589 * to btree. This can only happen for un-fragmented
590 * directory blocks, since you need to be punching out
591 * the middle of an extent.
592 * In this case we need to leave the block in the file,
593 * and not binval it.
594 * So the block has to be in a consistent empty state
595 * and appropriately logged.
596 * We don't free up the buffer, the caller can tell it
597 * hasn't happened since it got an error back.
598 */
599 return error;
600 }
601 ASSERT(done);
602 /*
603 * Invalidate the buffer from the transaction.
604 */
1d9025e5 605 xfs_trans_binval(tp, bp);
1da177e4
LT
606 /*
607 * If it's not a data block, we're done.
608 */
609 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
610 return 0;
611 /*
612 * If the block isn't the last one in the directory, we're done.
613 */
bbaaf538 614 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
1da177e4
LT
615 return 0;
616 bno = da;
617 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
618 /*
619 * This can't really happen unless there's kernel corruption.
620 */
621 return error;
622 }
623 if (db == mp->m_dirdatablk)
624 ASSERT(bno == 0);
625 else
626 ASSERT(bno > 0);
627 /*
628 * Set the size to the new last block.
629 */
630 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
631 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
632 return 0;
633}