blob: 886a67d92f63262b09bca490608d77702fbf868f [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;
Dave Chinner30028032014-06-06 15:08:18 +1000120
121 /*
122 * Now we've set up the block conversion variables, we can calculate the
123 * segment block constants using the geometry structure.
124 */
125 dageo->datablk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_DATA_OFFSET);
126 dageo->leafblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_LEAF_OFFSET);
127 dageo->freeblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_FREE_OFFSET);
Dave Chinner0650b552014-06-06 15:01:58 +1000128 dageo->node_ents = (dageo->blksize - nodehdr_size) /
129 (uint)sizeof(xfs_da_node_entry_t);
130 dageo->magicpct = (dageo->blksize * 37) / 100;
131
132 /* set up attribute geometry - single fsb only */
133 dageo = mp->m_attr_geo;
134 dageo->blklog = mp->m_sb.sb_blocklog;
135 dageo->fsblog = mp->m_sb.sb_blocklog;
136 dageo->blksize = 1 << dageo->blklog;
137 dageo->fsbcount = 1;
138 dageo->node_ents = (dageo->blksize - nodehdr_size) /
139 (uint)sizeof(xfs_da_node_entry_t);
140 dageo->magicpct = (dageo->blksize * 37) / 100;
141
Barry Naujok189f4bf2008-05-21 16:58:55 +1000142 if (xfs_sb_version_hasasciici(&mp->m_sb))
143 mp->m_dirnameops = &xfs_ascii_ci_nameops;
144 else
145 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100146
Dave Chinner0650b552014-06-06 15:01:58 +1000147 /* XXX: these are to be removed as code is converted to use geo */
148 mp->m_dirblksize = mp->m_dir_geo->blksize;
149 mp->m_dirblkfsbs = mp->m_dir_geo->fsbcount;
150 mp->m_dirdatablk = mp->m_dir_geo->datablk;
151 mp->m_dirleafblk = mp->m_dir_geo->leafblk;
152 mp->m_dirfreeblk = mp->m_dir_geo->freeblk;
153 mp->m_dir_node_ents = mp->m_dir_geo->node_ents;
154 mp->m_dir_magicpct = mp->m_dir_geo->magicpct;
155 mp->m_attr_node_ents = mp->m_attr_geo->node_ents;
156 mp->m_attr_magicpct = mp->m_attr_geo->magicpct;
157 return 0;
158}
159
160void
161xfs_da_unmount(
162 struct xfs_mount *mp)
163{
164 kmem_free(mp->m_dir_geo);
165 kmem_free(mp->m_attr_geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/*
169 * Return 1 if directory contains only "." and "..".
170 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000171int
172xfs_dir_isempty(
173 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200175 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Al Viroabbede12011-07-26 02:31:30 -0400177 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000178 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
181 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200182 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
183 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000187 * Validate a given inode number.
188 */
189int
190xfs_dir_ino_validate(
191 xfs_mount_t *mp,
192 xfs_ino_t ino)
193{
194 xfs_agblock_t agblkno;
195 xfs_agino_t agino;
196 xfs_agnumber_t agno;
197 int ino_ok;
198 int ioff;
199
200 agno = XFS_INO_TO_AGNO(mp, ino);
201 agblkno = XFS_INO_TO_AGBNO(mp, ino);
202 ioff = XFS_INO_TO_OFFSET(mp, ino);
203 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
204 ino_ok =
205 agno < mp->m_sb.sb_agcount &&
206 agblkno < mp->m_sb.sb_agblocks &&
207 agblkno != 0 &&
208 ioff < (1 << mp->m_sb.sb_inopblog) &&
209 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
210 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
211 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100212 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000213 (unsigned long long) ino);
214 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
215 return XFS_ERROR(EFSCORRUPTED);
216 }
217 return 0;
218}
219
220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * Initialize a directory with its "." and ".." entries.
222 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000223int
224xfs_dir_init(
225 xfs_trans_t *tp,
226 xfs_inode_t *dp,
227 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100229 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000230 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Al Viroabbede12011-07-26 02:31:30 -0400232 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100233 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino);
234 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return error;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100236
237 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
238 if (!args)
239 return ENOMEM;
240
Dave Chinner0650b552014-06-06 15:01:58 +1000241 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100242 args->dp = dp;
243 args->trans = tp;
244 error = xfs_dir2_sf_create(args, pdp->i_ino);
245 kmem_free(args);
246 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*
250 Enter a name in a directory.
251 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000252int
253xfs_dir_createname(
254 xfs_trans_t *tp,
255 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000256 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 xfs_ino_t inum, /* new entry inode number */
258 xfs_fsblock_t *first, /* bmap's firstblock */
259 xfs_bmap_free_t *flist, /* bmap's freeblock list */
260 xfs_extlen_t total) /* bmap's total block count */
261{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100262 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000263 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 int v; /* type-checking value */
265
Al Viroabbede12011-07-26 02:31:30 -0400266 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100267 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
268 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000271
Dave Chinnera1358aa2014-02-27 16:51:26 +1100272 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
273 if (!args)
274 return ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000275
Dave Chinner0650b552014-06-06 15:01:58 +1000276 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100277 args->name = name->name;
278 args->namelen = name->len;
279 args->filetype = name->type;
280 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
281 args->inumber = inum;
282 args->dp = dp;
283 args->firstblock = first;
284 args->flist = flist;
285 args->total = total;
286 args->whichfork = XFS_DATA_FORK;
287 args->trans = tp;
288 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
289
290 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
291 rval = xfs_dir2_sf_addname(args);
292 goto out_free;
293 }
294
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000295 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100296 if (rval)
297 goto out_free;
298 if (v) {
299 rval = xfs_dir2_block_addname(args);
300 goto out_free;
301 }
302
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000303 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100304 if (rval)
305 goto out_free;
306 if (v)
307 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100309 rval = xfs_dir2_node_addname(args);
310
311out_free:
312 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return rval;
314}
315
316/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000317 * If doing a CI lookup and case-insensitive match, dup actual name into
318 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000320int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000321xfs_dir_cilookup_result(
322 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100323 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000324 int len)
325{
326 if (args->cmpresult == XFS_CMP_DIFFERENT)
327 return ENOENT;
328 if (args->cmpresult != XFS_CMP_CASE ||
329 !(args->op_flags & XFS_DA_OP_CILOOKUP))
330 return EEXIST;
331
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400332 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000333 if (!args->value)
334 return ENOMEM;
335
336 memcpy(args->value, name, len);
337 args->valuelen = len;
338 return EEXIST;
339}
340
341/*
342 * Lookup a name in a directory, give back the inode number.
343 * If ci_name is not NULL, returns the actual name in ci_name if it differs
344 * to name, or ci_name->name is set to NULL for an exact match.
345 */
346
347int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000348xfs_dir_lookup(
349 xfs_trans_t *tp,
350 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000351 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000352 xfs_ino_t *inum, /* out: inode number */
353 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100355 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000356 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 int v; /* type-checking value */
358
Al Viroabbede12011-07-26 02:31:30 -0400359 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 XFS_STATS_INC(xs_dir_lookup);
361
Dave Chinnera1358aa2014-02-27 16:51:26 +1100362 /*
363 * We need to use KM_NOFS here so that lockdep will not throw false
364 * positive deadlock warnings on a non-transactional lookup path. It is
365 * safe to recurse into inode recalim in that case, but lockdep can't
366 * easily be taught about it. Hence KM_NOFS avoids having to add more
367 * lockdep Doing this avoids having to add a bunch of lockdep class
368 * annotations into the reclaim path for the ilock.
369 */
370 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
Dave Chinner0650b552014-06-06 15:01:58 +1000371 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100372 args->name = name->name;
373 args->namelen = name->len;
374 args->filetype = name->type;
375 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
376 args->dp = dp;
377 args->whichfork = XFS_DATA_FORK;
378 args->trans = tp;
379 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000380 if (ci_name)
Dave Chinnera1358aa2014-02-27 16:51:26 +1100381 args->op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000382
Dave Chinnera1358aa2014-02-27 16:51:26 +1100383 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
384 rval = xfs_dir2_sf_lookup(args);
385 goto out_check_rval;
386 }
387
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000388 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100389 if (rval)
390 goto out_free;
391 if (v) {
392 rval = xfs_dir2_block_lookup(args);
393 goto out_check_rval;
394 }
395
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000396 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100397 if (rval)
398 goto out_free;
399 if (v)
400 rval = xfs_dir2_leaf_lookup(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100402 rval = xfs_dir2_node_lookup(args);
403
404out_check_rval:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (rval == EEXIST)
406 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000407 if (!rval) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100408 *inum = args->inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000409 if (ci_name) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100410 ci_name->name = args->value;
411 ci_name->len = args->valuelen;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000412 }
413 }
Dave Chinnera1358aa2014-02-27 16:51:26 +1100414out_free:
415 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return rval;
417}
418
419/*
420 * Remove an entry from a directory.
421 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000422int
423xfs_dir_removename(
424 xfs_trans_t *tp,
425 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000426 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000427 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 xfs_fsblock_t *first, /* bmap's firstblock */
429 xfs_bmap_free_t *flist, /* bmap's freeblock list */
430 xfs_extlen_t total) /* bmap's total block count */
431{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100432 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000433 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int v; /* type-checking value */
435
Al Viroabbede12011-07-26 02:31:30 -0400436 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000438
Dave Chinnera1358aa2014-02-27 16:51:26 +1100439 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
440 if (!args)
441 return ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000442
Dave Chinner0650b552014-06-06 15:01:58 +1000443 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100444 args->name = name->name;
445 args->namelen = name->len;
446 args->filetype = name->type;
447 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
448 args->inumber = ino;
449 args->dp = dp;
450 args->firstblock = first;
451 args->flist = flist;
452 args->total = total;
453 args->whichfork = XFS_DATA_FORK;
454 args->trans = tp;
455
456 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
457 rval = xfs_dir2_sf_removename(args);
458 goto out_free;
459 }
460
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000461 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100462 if (rval)
463 goto out_free;
464 if (v) {
465 rval = xfs_dir2_block_removename(args);
466 goto out_free;
467 }
468
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000469 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100470 if (rval)
471 goto out_free;
472 if (v)
473 rval = xfs_dir2_leaf_removename(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100475 rval = xfs_dir2_node_removename(args);
476out_free:
477 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return rval;
479}
480
481/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * Replace the inode number of a directory entry.
483 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000484int
485xfs_dir_replace(
486 xfs_trans_t *tp,
487 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000488 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 xfs_ino_t inum, /* new inode number */
490 xfs_fsblock_t *first, /* bmap's firstblock */
491 xfs_bmap_free_t *flist, /* bmap's freeblock list */
492 xfs_extlen_t total) /* bmap's total block count */
493{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100494 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000495 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int v; /* type-checking value */
497
Al Viroabbede12011-07-26 02:31:30 -0400498 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Dave Chinnera1358aa2014-02-27 16:51:26 +1100500 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
501 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000503
Dave Chinnera1358aa2014-02-27 16:51:26 +1100504 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
505 if (!args)
506 return ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000507
Dave Chinner0650b552014-06-06 15:01:58 +1000508 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100509 args->name = name->name;
510 args->namelen = name->len;
511 args->filetype = name->type;
512 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
513 args->inumber = inum;
514 args->dp = dp;
515 args->firstblock = first;
516 args->flist = flist;
517 args->total = total;
518 args->whichfork = XFS_DATA_FORK;
519 args->trans = tp;
520
521 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
522 rval = xfs_dir2_sf_replace(args);
523 goto out_free;
524 }
525
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000526 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100527 if (rval)
528 goto out_free;
529 if (v) {
530 rval = xfs_dir2_block_replace(args);
531 goto out_free;
532 }
533
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000534 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100535 if (rval)
536 goto out_free;
537 if (v)
538 rval = xfs_dir2_leaf_replace(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100540 rval = xfs_dir2_node_replace(args);
541out_free:
542 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return rval;
544}
545
546/*
547 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000548 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000550int
551xfs_dir_canenter(
552 xfs_trans_t *tp,
553 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000554 struct xfs_name *name, /* name of entry to add */
555 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100557 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000558 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int v; /* type-checking value */
560
Barry Naujok556b8b12008-04-10 12:22:07 +1000561 if (resblks)
562 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000563
Al Viroabbede12011-07-26 02:31:30 -0400564 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000565
Dave Chinnera1358aa2014-02-27 16:51:26 +1100566 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
567 if (!args)
568 return ENOMEM;
569
Dave Chinner0650b552014-06-06 15:01:58 +1000570 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100571 args->name = name->name;
572 args->namelen = name->len;
573 args->filetype = name->type;
574 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
575 args->dp = dp;
576 args->whichfork = XFS_DATA_FORK;
577 args->trans = tp;
578 args->op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
Barry Naujok6a178102008-05-21 16:42:05 +1000579 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000580
Dave Chinnera1358aa2014-02-27 16:51:26 +1100581 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
582 rval = xfs_dir2_sf_addname(args);
583 goto out_free;
584 }
585
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000586 rval = xfs_dir2_isblock(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100587 if (rval)
588 goto out_free;
589 if (v) {
590 rval = xfs_dir2_block_addname(args);
591 goto out_free;
592 }
593
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000594 rval = xfs_dir2_isleaf(dp, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100595 if (rval)
596 goto out_free;
597 if (v)
598 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100600 rval = xfs_dir2_node_addname(args);
601out_free:
602 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return rval;
604}
605
606/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * Utility routines.
608 */
609
610/*
611 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200612 *
613 * This routine is for data and free blocks, not leaf/node blocks which are
614 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000616int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200618 struct xfs_da_args *args,
619 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
620 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200622 struct xfs_inode *dp = args->dp;
623 struct xfs_mount *mp = dp->i_mount;
624 xfs_fileoff_t bno; /* directory offset of new block */
625 int count; /* count of filesystem blocks */
626 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000628 trace_xfs_dir2_grow_inode(args, space);
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /*
631 * Set lowest possible block in the space requested.
632 */
633 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
634 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200635
636 error = xfs_da_grow_inode_int(args, &bno, count);
637 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000640 *dbp = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
643 * Update file's size if this is the data space and it grew.
644 */
645 if (space == XFS_DIR2_DATA_SPACE) {
646 xfs_fsize_t size; /* directory file (data) size */
647
648 size = XFS_FSB_TO_B(mp, bno + count);
649 if (size > dp->i_d.di_size) {
650 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200651 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653 }
654 return 0;
655}
656
657/*
658 * See if the directory is a single-block form directory.
659 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000660int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000662 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int *vp) /* out: 1 is block, 0 is not block */
664{
665 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000666 xfs_mount_t *mp;
667 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 mp = dp->i_mount;
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000670 if ((rval = xfs_bmap_last_offset(dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
673 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
674 *vp = rval;
675 return 0;
676}
677
678/*
679 * See if the directory is a single-leaf form directory.
680 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000681int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000683 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 int *vp) /* out: 1 is leaf, 0 is not leaf */
685{
686 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000687 xfs_mount_t *mp;
688 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 mp = dp->i_mount;
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000691 if ((rval = xfs_bmap_last_offset(dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
694 return 0;
695}
696
697/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * Remove the given block from the directory.
699 * This routine is used for data and free blocks, leaf/node are done
700 * by xfs_da_shrink_inode.
701 */
702int
703xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000704 xfs_da_args_t *args,
705 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000706 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 xfs_fileoff_t bno; /* directory file offset */
709 xfs_dablk_t da; /* directory file offset */
710 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000711 xfs_inode_t *dp;
712 int error;
713 xfs_mount_t *mp;
714 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000716 trace_xfs_dir2_shrink_inode(args, db);
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 dp = args->dp;
719 mp = dp->i_mount;
720 tp = args->trans;
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000721 da = xfs_dir2_db_to_da(args->geo, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
723 * Unmap the fsblock(s).
724 */
725 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
726 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000727 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /*
729 * ENOSPC actually can happen if we're in a removename with
730 * no space reservation, and the resulting block removal
731 * would cause a bmap btree split or conversion from extents
732 * to btree. This can only happen for un-fragmented
733 * directory blocks, since you need to be punching out
734 * the middle of an extent.
735 * In this case we need to leave the block in the file,
736 * and not binval it.
737 * So the block has to be in a consistent empty state
738 * and appropriately logged.
739 * We don't free up the buffer, the caller can tell it
740 * hasn't happened since it got an error back.
741 */
742 return error;
743 }
744 ASSERT(done);
745 /*
746 * Invalidate the buffer from the transaction.
747 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000748 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 /*
750 * If it's not a data block, we're done.
751 */
Dave Chinner30028032014-06-06 15:08:18 +1000752 if (db >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return 0;
754 /*
755 * If the block isn't the last one in the directory, we're done.
756 */
Dave Chinner9b3b5522014-06-06 15:06:53 +1000757 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return 0;
759 bno = da;
760 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
761 /*
762 * This can't really happen unless there's kernel corruption.
763 */
764 return error;
765 }
766 if (db == mp->m_dirdatablk)
767 ASSERT(bno == 0);
768 else
769 ASSERT(bno > 0);
770 /*
771 * Set the size to the new last block.
772 */
773 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
774 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
775 return 0;
776}