blob: 2047ef1ce8d2cfa9948417e5b8b94a6d1913767f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,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"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110030#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100033#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020034#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000036#include "xfs_trace.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110037#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Dave Chinner0cb97762013-08-12 20:50:09 +100039struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR };
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Barry Naujok189f4bf2008-05-21 16:58:55 +100042/*
43 * ASCII case-insensitive (ie. A-Z) support for directories that was
44 * used in IRIX.
45 */
46STATIC xfs_dahash_t
47xfs_ascii_ci_hashname(
48 struct xfs_name *name)
49{
50 xfs_dahash_t hash;
51 int i;
52
53 for (i = 0, hash = 0; i < name->len; i++)
54 hash = tolower(name->name[i]) ^ rol32(hash, 7);
55
56 return hash;
57}
58
59STATIC enum xfs_dacmp
60xfs_ascii_ci_compname(
61 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +110062 const unsigned char *name,
63 int len)
Barry Naujok189f4bf2008-05-21 16:58:55 +100064{
65 enum xfs_dacmp result;
66 int i;
67
68 if (args->namelen != len)
69 return XFS_CMP_DIFFERENT;
70
71 result = XFS_CMP_EXACT;
72 for (i = 0; i < len; i++) {
73 if (args->name[i] == name[i])
74 continue;
75 if (tolower(args->name[i]) != tolower(name[i]))
76 return XFS_CMP_DIFFERENT;
77 result = XFS_CMP_CASE;
78 }
79
80 return result;
81}
82
83static struct xfs_nameops xfs_ascii_ci_nameops = {
84 .hashname = xfs_ascii_ci_hashname,
85 .compname = xfs_ascii_ci_compname,
86};
87
Dave Chinner0650b552014-06-06 15:01:58 +100088int
89xfs_da_mount(
90 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Dave Chinner0650b552014-06-06 15:01:58 +100092 struct xfs_da_geometry *dageo;
93 int nodehdr_size;
Dave Chinner37804372013-08-26 14:13:30 +100094
95
Eric Sandeen62118702008-03-06 13:44:28 +110096 ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
98 XFS_MAX_BLOCKSIZE);
Dave Chinner4bceb182013-10-29 22:11:51 +110099
100 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL);
101 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL);
102
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100103 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size;
Dave Chinner0650b552014-06-06 15:01:58 +1000104 mp->m_dir_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
105 KM_SLEEP | KM_MAYFAIL);
106 mp->m_attr_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
107 KM_SLEEP | KM_MAYFAIL);
108 if (!mp->m_dir_geo || !mp->m_attr_geo) {
109 kmem_free(mp->m_dir_geo);
110 kmem_free(mp->m_attr_geo);
111 return ENOMEM;
112 }
Dave Chinner37804372013-08-26 14:13:30 +1000113
Dave Chinner0650b552014-06-06 15:01:58 +1000114 /* set up directory geometry */
115 dageo = mp->m_dir_geo;
116 dageo->blklog = mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog;
117 dageo->fsblog = mp->m_sb.sb_blocklog;
118 dageo->blksize = 1 << dageo->blklog;
119 dageo->fsbcount = 1 << mp->m_sb.sb_dirblklog;
120 dageo->datablk = xfs_dir2_byte_to_da(mp, XFS_DIR2_DATA_OFFSET);
121 dageo->leafblk = xfs_dir2_byte_to_da(mp, XFS_DIR2_LEAF_OFFSET);
122 dageo->freeblk = xfs_dir2_byte_to_da(mp, XFS_DIR2_FREE_OFFSET);
123 dageo->node_ents = (dageo->blksize - nodehdr_size) /
124 (uint)sizeof(xfs_da_node_entry_t);
125 dageo->magicpct = (dageo->blksize * 37) / 100;
126
127 /* set up attribute geometry - single fsb only */
128 dageo = mp->m_attr_geo;
129 dageo->blklog = mp->m_sb.sb_blocklog;
130 dageo->fsblog = mp->m_sb.sb_blocklog;
131 dageo->blksize = 1 << dageo->blklog;
132 dageo->fsbcount = 1;
133 dageo->node_ents = (dageo->blksize - nodehdr_size) /
134 (uint)sizeof(xfs_da_node_entry_t);
135 dageo->magicpct = (dageo->blksize * 37) / 100;
136
Barry Naujok189f4bf2008-05-21 16:58:55 +1000137 if (xfs_sb_version_hasasciici(&mp->m_sb))
138 mp->m_dirnameops = &xfs_ascii_ci_nameops;
139 else
140 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100141
Dave Chinner0650b552014-06-06 15:01:58 +1000142 /* XXX: these are to be removed as code is converted to use geo */
143 mp->m_dirblksize = mp->m_dir_geo->blksize;
144 mp->m_dirblkfsbs = mp->m_dir_geo->fsbcount;
145 mp->m_dirdatablk = mp->m_dir_geo->datablk;
146 mp->m_dirleafblk = mp->m_dir_geo->leafblk;
147 mp->m_dirfreeblk = mp->m_dir_geo->freeblk;
148 mp->m_dir_node_ents = mp->m_dir_geo->node_ents;
149 mp->m_dir_magicpct = mp->m_dir_geo->magicpct;
150 mp->m_attr_node_ents = mp->m_attr_geo->node_ents;
151 mp->m_attr_magicpct = mp->m_attr_geo->magicpct;
152 return 0;
153}
154
155void
156xfs_da_unmount(
157 struct xfs_mount *mp)
158{
159 kmem_free(mp->m_dir_geo);
160 kmem_free(mp->m_attr_geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163/*
164 * Return 1 if directory contains only "." and "..".
165 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000166int
167xfs_dir_isempty(
168 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200170 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Al Viroabbede12011-07-26 02:31:30 -0400172 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000173 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
176 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200177 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
178 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000182 * Validate a given inode number.
183 */
184int
185xfs_dir_ino_validate(
186 xfs_mount_t *mp,
187 xfs_ino_t ino)
188{
189 xfs_agblock_t agblkno;
190 xfs_agino_t agino;
191 xfs_agnumber_t agno;
192 int ino_ok;
193 int ioff;
194
195 agno = XFS_INO_TO_AGNO(mp, ino);
196 agblkno = XFS_INO_TO_AGBNO(mp, ino);
197 ioff = XFS_INO_TO_OFFSET(mp, ino);
198 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
199 ino_ok =
200 agno < mp->m_sb.sb_agcount &&
201 agblkno < mp->m_sb.sb_agblocks &&
202 agblkno != 0 &&
203 ioff < (1 << mp->m_sb.sb_inopblog) &&
204 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
205 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
206 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100207 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000208 (unsigned long long) ino);
209 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
210 return XFS_ERROR(EFSCORRUPTED);
211 }
212 return 0;
213}
214
215/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * Initialize a directory with its "." and ".." entries.
217 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000218int
219xfs_dir_init(
220 xfs_trans_t *tp,
221 xfs_inode_t *dp,
222 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100224 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000225 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Al Viroabbede12011-07-26 02:31:30 -0400227 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100228 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino);
229 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return error;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100231
232 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
233 if (!args)
234 return ENOMEM;
235
Dave Chinner0650b552014-06-06 15:01:58 +1000236 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100237 args->dp = dp;
238 args->trans = tp;
239 error = xfs_dir2_sf_create(args, pdp->i_ino);
240 kmem_free(args);
241 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
244/*
245 Enter a name in a directory.
246 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000247int
248xfs_dir_createname(
249 xfs_trans_t *tp,
250 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000251 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 xfs_ino_t inum, /* new entry inode number */
253 xfs_fsblock_t *first, /* bmap's firstblock */
254 xfs_bmap_free_t *flist, /* bmap's freeblock list */
255 xfs_extlen_t total) /* bmap's total block count */
256{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100257 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000258 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int v; /* type-checking value */
260
Al Viroabbede12011-07-26 02:31:30 -0400261 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100262 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
263 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000266
Dave Chinnera1358aa2014-02-27 16:51:26 +1100267 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
268 if (!args)
269 return ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000270
Dave Chinner0650b552014-06-06 15:01:58 +1000271 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100272 args->name = name->name;
273 args->namelen = name->len;
274 args->filetype = name->type;
275 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
276 args->inumber = inum;
277 args->dp = dp;
278 args->firstblock = first;
279 args->flist = flist;
280 args->total = total;
281 args->whichfork = XFS_DATA_FORK;
282 args->trans = tp;
283 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
284
285 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
286 rval = xfs_dir2_sf_addname(args);
287 goto out_free;
288 }
289
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000290 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100291 if (rval)
292 goto out_free;
293 if (v) {
294 rval = xfs_dir2_block_addname(args);
295 goto out_free;
296 }
297
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000298 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100299 if (rval)
300 goto out_free;
301 if (v)
302 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100304 rval = xfs_dir2_node_addname(args);
305
306out_free:
307 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return rval;
309}
310
311/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000312 * If doing a CI lookup and case-insensitive match, dup actual name into
313 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000315int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000316xfs_dir_cilookup_result(
317 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100318 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000319 int len)
320{
321 if (args->cmpresult == XFS_CMP_DIFFERENT)
322 return ENOENT;
323 if (args->cmpresult != XFS_CMP_CASE ||
324 !(args->op_flags & XFS_DA_OP_CILOOKUP))
325 return EEXIST;
326
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400327 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000328 if (!args->value)
329 return ENOMEM;
330
331 memcpy(args->value, name, len);
332 args->valuelen = len;
333 return EEXIST;
334}
335
336/*
337 * Lookup a name in a directory, give back the inode number.
338 * If ci_name is not NULL, returns the actual name in ci_name if it differs
339 * to name, or ci_name->name is set to NULL for an exact match.
340 */
341
342int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000343xfs_dir_lookup(
344 xfs_trans_t *tp,
345 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000346 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000347 xfs_ino_t *inum, /* out: inode number */
348 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100350 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000351 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int v; /* type-checking value */
353
Al Viroabbede12011-07-26 02:31:30 -0400354 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 XFS_STATS_INC(xs_dir_lookup);
356
Dave Chinnera1358aa2014-02-27 16:51:26 +1100357 /*
358 * We need to use KM_NOFS here so that lockdep will not throw false
359 * positive deadlock warnings on a non-transactional lookup path. It is
360 * safe to recurse into inode recalim in that case, but lockdep can't
361 * easily be taught about it. Hence KM_NOFS avoids having to add more
362 * lockdep Doing this avoids having to add a bunch of lockdep class
363 * annotations into the reclaim path for the ilock.
364 */
365 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
Dave Chinner0650b552014-06-06 15:01:58 +1000366 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100367 args->name = name->name;
368 args->namelen = name->len;
369 args->filetype = name->type;
370 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
371 args->dp = dp;
372 args->whichfork = XFS_DATA_FORK;
373 args->trans = tp;
374 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000375 if (ci_name)
Dave Chinnera1358aa2014-02-27 16:51:26 +1100376 args->op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000377
Dave Chinnera1358aa2014-02-27 16:51:26 +1100378 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
379 rval = xfs_dir2_sf_lookup(args);
380 goto out_check_rval;
381 }
382
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000383 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100384 if (rval)
385 goto out_free;
386 if (v) {
387 rval = xfs_dir2_block_lookup(args);
388 goto out_check_rval;
389 }
390
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000391 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100392 if (rval)
393 goto out_free;
394 if (v)
395 rval = xfs_dir2_leaf_lookup(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100397 rval = xfs_dir2_node_lookup(args);
398
399out_check_rval:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (rval == EEXIST)
401 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000402 if (!rval) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100403 *inum = args->inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000404 if (ci_name) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100405 ci_name->name = args->value;
406 ci_name->len = args->valuelen;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000407 }
408 }
Dave Chinnera1358aa2014-02-27 16:51:26 +1100409out_free:
410 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return rval;
412}
413
414/*
415 * Remove an entry from a directory.
416 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000417int
418xfs_dir_removename(
419 xfs_trans_t *tp,
420 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000421 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000422 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 xfs_fsblock_t *first, /* bmap's firstblock */
424 xfs_bmap_free_t *flist, /* bmap's freeblock list */
425 xfs_extlen_t total) /* bmap's total block count */
426{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100427 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000428 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 int v; /* type-checking value */
430
Al Viroabbede12011-07-26 02:31:30 -0400431 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000433
Dave Chinnera1358aa2014-02-27 16:51:26 +1100434 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
435 if (!args)
436 return ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000437
Dave Chinner0650b552014-06-06 15:01:58 +1000438 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100439 args->name = name->name;
440 args->namelen = name->len;
441 args->filetype = name->type;
442 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
443 args->inumber = ino;
444 args->dp = dp;
445 args->firstblock = first;
446 args->flist = flist;
447 args->total = total;
448 args->whichfork = XFS_DATA_FORK;
449 args->trans = tp;
450
451 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
452 rval = xfs_dir2_sf_removename(args);
453 goto out_free;
454 }
455
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000456 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100457 if (rval)
458 goto out_free;
459 if (v) {
460 rval = xfs_dir2_block_removename(args);
461 goto out_free;
462 }
463
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000464 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100465 if (rval)
466 goto out_free;
467 if (v)
468 rval = xfs_dir2_leaf_removename(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100470 rval = xfs_dir2_node_removename(args);
471out_free:
472 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return rval;
474}
475
476/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * Replace the inode number of a directory entry.
478 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000479int
480xfs_dir_replace(
481 xfs_trans_t *tp,
482 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000483 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 xfs_ino_t inum, /* new inode number */
485 xfs_fsblock_t *first, /* bmap's firstblock */
486 xfs_bmap_free_t *flist, /* bmap's freeblock list */
487 xfs_extlen_t total) /* bmap's total block count */
488{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100489 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000490 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int v; /* type-checking value */
492
Al Viroabbede12011-07-26 02:31:30 -0400493 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Dave Chinnera1358aa2014-02-27 16:51:26 +1100495 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
496 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000498
Dave Chinnera1358aa2014-02-27 16:51:26 +1100499 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
500 if (!args)
501 return ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000502
Dave Chinner0650b552014-06-06 15:01:58 +1000503 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100504 args->name = name->name;
505 args->namelen = name->len;
506 args->filetype = name->type;
507 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
508 args->inumber = inum;
509 args->dp = dp;
510 args->firstblock = first;
511 args->flist = flist;
512 args->total = total;
513 args->whichfork = XFS_DATA_FORK;
514 args->trans = tp;
515
516 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
517 rval = xfs_dir2_sf_replace(args);
518 goto out_free;
519 }
520
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000521 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100522 if (rval)
523 goto out_free;
524 if (v) {
525 rval = xfs_dir2_block_replace(args);
526 goto out_free;
527 }
528
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000529 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100530 if (rval)
531 goto out_free;
532 if (v)
533 rval = xfs_dir2_leaf_replace(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100535 rval = xfs_dir2_node_replace(args);
536out_free:
537 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return rval;
539}
540
541/*
542 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000543 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000545int
546xfs_dir_canenter(
547 xfs_trans_t *tp,
548 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000549 struct xfs_name *name, /* name of entry to add */
550 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100552 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000553 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 int v; /* type-checking value */
555
Barry Naujok556b8b12008-04-10 12:22:07 +1000556 if (resblks)
557 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000558
Al Viroabbede12011-07-26 02:31:30 -0400559 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000560
Dave Chinnera1358aa2014-02-27 16:51:26 +1100561 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
562 if (!args)
563 return ENOMEM;
564
Dave Chinner0650b552014-06-06 15:01:58 +1000565 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100566 args->name = name->name;
567 args->namelen = name->len;
568 args->filetype = name->type;
569 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
570 args->dp = dp;
571 args->whichfork = XFS_DATA_FORK;
572 args->trans = tp;
573 args->op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
Barry Naujok6a178102008-05-21 16:42:05 +1000574 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000575
Dave Chinnera1358aa2014-02-27 16:51:26 +1100576 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
577 rval = xfs_dir2_sf_addname(args);
578 goto out_free;
579 }
580
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000581 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100582 if (rval)
583 goto out_free;
584 if (v) {
585 rval = xfs_dir2_block_addname(args);
586 goto out_free;
587 }
588
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000589 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100590 if (rval)
591 goto out_free;
592 if (v)
593 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100595 rval = xfs_dir2_node_addname(args);
596out_free:
597 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return rval;
599}
600
601/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * Utility routines.
603 */
604
605/*
606 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200607 *
608 * This routine is for data and free blocks, not leaf/node blocks which are
609 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000611int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200613 struct xfs_da_args *args,
614 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
615 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200617 struct xfs_inode *dp = args->dp;
618 struct xfs_mount *mp = dp->i_mount;
619 xfs_fileoff_t bno; /* directory offset of new block */
620 int count; /* count of filesystem blocks */
621 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000623 trace_xfs_dir2_grow_inode(args, space);
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /*
626 * Set lowest possible block in the space requested.
627 */
628 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
629 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200630
631 error = xfs_da_grow_inode_int(args, &bno, count);
632 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000635 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /*
638 * Update file's size if this is the data space and it grew.
639 */
640 if (space == XFS_DIR2_DATA_SPACE) {
641 xfs_fsize_t size; /* directory file (data) size */
642
643 size = XFS_FSB_TO_B(mp, bno + count);
644 if (size > dp->i_d.di_size) {
645 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200646 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648 }
649 return 0;
650}
651
652/*
653 * See if the directory is a single-block form directory.
654 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000655int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000657 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 int *vp) /* out: 1 is block, 0 is not block */
659{
660 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000661 xfs_mount_t *mp;
662 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 mp = dp->i_mount;
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000665 if ((rval = xfs_bmap_last_offset(dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
668 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
669 *vp = rval;
670 return 0;
671}
672
673/*
674 * See if the directory is a single-leaf form directory.
675 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000676int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000678 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int *vp) /* out: 1 is leaf, 0 is not leaf */
680{
681 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000682 xfs_mount_t *mp;
683 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 mp = dp->i_mount;
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000686 if ((rval = xfs_bmap_last_offset(dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
689 return 0;
690}
691
692/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 * Remove the given block from the directory.
694 * This routine is used for data and free blocks, leaf/node are done
695 * by xfs_da_shrink_inode.
696 */
697int
698xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000699 xfs_da_args_t *args,
700 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000701 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
703 xfs_fileoff_t bno; /* directory file offset */
704 xfs_dablk_t da; /* directory file offset */
705 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000706 xfs_inode_t *dp;
707 int error;
708 xfs_mount_t *mp;
709 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000711 trace_xfs_dir2_shrink_inode(args, db);
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 dp = args->dp;
714 mp = dp->i_mount;
715 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000716 da = xfs_dir2_db_to_da(mp, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /*
718 * Unmap the fsblock(s).
719 */
720 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
721 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000722 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /*
724 * ENOSPC actually can happen if we're in a removename with
725 * no space reservation, and the resulting block removal
726 * would cause a bmap btree split or conversion from extents
727 * to btree. This can only happen for un-fragmented
728 * directory blocks, since you need to be punching out
729 * the middle of an extent.
730 * In this case we need to leave the block in the file,
731 * and not binval it.
732 * So the block has to be in a consistent empty state
733 * and appropriately logged.
734 * We don't free up the buffer, the caller can tell it
735 * hasn't happened since it got an error back.
736 */
737 return error;
738 }
739 ASSERT(done);
740 /*
741 * Invalidate the buffer from the transaction.
742 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000743 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * If it's not a data block, we're done.
746 */
Dave Chinner8c44a282014-06-06 15:04:41 +1000747 if (db >= xfs_dir2_byte_to_db(mp, XFS_DIR2_LEAF_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return 0;
749 /*
750 * If the block isn't the last one in the directory, we're done.
751 */
Dave Chinner9b3b5522014-06-06 15:06:53 +1000752 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return 0;
754 bno = da;
755 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
756 /*
757 * This can't really happen unless there's kernel corruption.
758 */
759 return error;
760 }
761 if (db == mp->m_dirdatablk)
762 ASSERT(bno == 0);
763 else
764 ASSERT(bno > 0);
765 /*
766 * Set the size to the new last block.
767 */
768 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
769 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
770 return 0;
771}