blob: 38bf9324302c497aadf73d22524c1271b80f18a5 [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
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100088void
89xfs_dir_mount(
90 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Dave Chinner37804372013-08-26 14:13:30 +100092 int nodehdr_size;
93
94
Eric Sandeen62118702008-03-06 13:44:28 +110095 ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
97 XFS_MAX_BLOCKSIZE);
98 mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog);
99 mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000100 mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp));
101 mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp));
102 mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp));
Dave Chinner37804372013-08-26 14:13:30 +1000103
104 nodehdr_size = __xfs_da3_node_hdr_size(xfs_sb_version_hascrc(&mp->m_sb));
105 mp->m_attr_node_ents = (mp->m_sb.sb_blocksize - nodehdr_size) /
106 (uint)sizeof(xfs_da_node_entry_t);
107 mp->m_dir_node_ents = (mp->m_dirblksize - nodehdr_size) /
108 (uint)sizeof(xfs_da_node_entry_t);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100;
Barry Naujok189f4bf2008-05-21 16:58:55 +1000111 if (xfs_sb_version_hasasciici(&mp->m_sb))
112 mp->m_dirnameops = &xfs_ascii_ci_nameops;
113 else
114 mp->m_dirnameops = &xfs_default_nameops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117/*
118 * Return 1 if directory contains only "." and "..".
119 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000120int
121xfs_dir_isempty(
122 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200124 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Al Viroabbede12011-07-26 02:31:30 -0400126 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000127 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
130 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200131 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
132 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000136 * Validate a given inode number.
137 */
138int
139xfs_dir_ino_validate(
140 xfs_mount_t *mp,
141 xfs_ino_t ino)
142{
143 xfs_agblock_t agblkno;
144 xfs_agino_t agino;
145 xfs_agnumber_t agno;
146 int ino_ok;
147 int ioff;
148
149 agno = XFS_INO_TO_AGNO(mp, ino);
150 agblkno = XFS_INO_TO_AGBNO(mp, ino);
151 ioff = XFS_INO_TO_OFFSET(mp, ino);
152 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
153 ino_ok =
154 agno < mp->m_sb.sb_agcount &&
155 agblkno < mp->m_sb.sb_agblocks &&
156 agblkno != 0 &&
157 ioff < (1 << mp->m_sb.sb_inopblog) &&
158 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
159 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
160 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100161 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000162 (unsigned long long) ino);
163 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
164 return XFS_ERROR(EFSCORRUPTED);
165 }
166 return 0;
167}
168
169/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * Initialize a directory with its "." and ".." entries.
171 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000172int
173xfs_dir_init(
174 xfs_trans_t *tp,
175 xfs_inode_t *dp,
176 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000178 xfs_da_args_t args;
179 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 memset((char *)&args, 0, sizeof(args));
182 args.dp = dp;
183 args.trans = tp;
Al Viroabbede12011-07-26 02:31:30 -0400184 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000185 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return xfs_dir2_sf_create(&args, pdp->i_ino);
188}
189
190/*
191 Enter a name in a directory.
192 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000193int
194xfs_dir_createname(
195 xfs_trans_t *tp,
196 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000197 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 xfs_ino_t inum, /* new entry inode number */
199 xfs_fsblock_t *first, /* bmap's firstblock */
200 xfs_bmap_free_t *flist, /* bmap's freeblock list */
201 xfs_extlen_t total) /* bmap's total block count */
202{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000203 xfs_da_args_t args;
204 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 int v; /* type-checking value */
206
Al Viroabbede12011-07-26 02:31:30 -0400207 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000208 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000211
Barry Naujok87affd082008-06-03 11:59:18 +1000212 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000213 args.name = name->name;
214 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000215 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000216 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 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;
Barry Naujok6a178102008-05-21 16:42:05 +1000224 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
227 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000228 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000230 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000232 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000234 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 rval = xfs_dir2_leaf_addname(&args);
236 else
237 rval = xfs_dir2_node_addname(&args);
238 return rval;
239}
240
241/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000242 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000245int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000246xfs_dir_cilookup_result(
247 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100248 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000249 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
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400257 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000258 if (!args->value)
259 return ENOMEM;
260
261 memcpy(args->value, name, len);
262 args->valuelen = len;
263 return EEXIST;
264}
265
266/*
267 * Lookup a name in a directory, give back the inode number.
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.
270 */
271
272int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000273xfs_dir_lookup(
274 xfs_trans_t *tp,
275 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000276 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000277 xfs_ino_t *inum, /* out: inode number */
278 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000280 xfs_da_args_t args;
281 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 int v; /* type-checking value */
283
Al Viroabbede12011-07-26 02:31:30 -0400284 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 XFS_STATS_INC(xs_dir_lookup);
286
Barry Naujok87affd082008-06-03 11:59:18 +1000287 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000288 args.name = name->name;
289 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000290 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000291 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 args.whichfork = XFS_DATA_FORK;
294 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000295 args.op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000296 if (ci_name)
297 args.op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
300 rval = xfs_dir2_sf_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000301 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000303 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 rval = xfs_dir2_block_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000305 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000307 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 rval = xfs_dir2_leaf_lookup(&args);
309 else
310 rval = xfs_dir2_node_lookup(&args);
311 if (rval == EEXIST)
312 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000313 if (!rval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 *inum = args.inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000315 if (ci_name) {
316 ci_name->name = args.value;
317 ci_name->len = args.valuelen;
318 }
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return rval;
321}
322
323/*
324 * Remove an entry from a directory.
325 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000326int
327xfs_dir_removename(
328 xfs_trans_t *tp,
329 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000330 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000331 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 xfs_fsblock_t *first, /* bmap's firstblock */
333 xfs_bmap_free_t *flist, /* bmap's freeblock list */
334 xfs_extlen_t total) /* bmap's total block count */
335{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000336 xfs_da_args_t args;
337 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 int v; /* type-checking value */
339
Al Viroabbede12011-07-26 02:31:30 -0400340 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000342
Barry Naujok87affd082008-06-03 11:59:18 +1000343 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000344 args.name = name->name;
345 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000346 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000347 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 args.inumber = ino;
349 args.dp = dp;
350 args.firstblock = first;
351 args.flist = flist;
352 args.total = total;
353 args.whichfork = XFS_DATA_FORK;
354 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
357 rval = xfs_dir2_sf_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000358 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000360 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 rval = xfs_dir2_block_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000362 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000364 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 rval = xfs_dir2_leaf_removename(&args);
366 else
367 rval = xfs_dir2_node_removename(&args);
368 return rval;
369}
370
371/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 * Replace the inode number of a directory entry.
373 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000374int
375xfs_dir_replace(
376 xfs_trans_t *tp,
377 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000378 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 xfs_ino_t inum, /* new inode number */
380 xfs_fsblock_t *first, /* bmap's firstblock */
381 xfs_bmap_free_t *flist, /* bmap's freeblock list */
382 xfs_extlen_t total) /* bmap's total block count */
383{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000384 xfs_da_args_t args;
385 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int v; /* type-checking value */
387
Al Viroabbede12011-07-26 02:31:30 -0400388 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000390 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000392
Barry Naujok87affd082008-06-03 11:59:18 +1000393 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000394 args.name = name->name;
395 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000396 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000397 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 args.inumber = inum;
399 args.dp = dp;
400 args.firstblock = first;
401 args.flist = flist;
402 args.total = total;
403 args.whichfork = XFS_DATA_FORK;
404 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
407 rval = xfs_dir2_sf_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000408 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000410 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 rval = xfs_dir2_block_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000412 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000414 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 rval = xfs_dir2_leaf_replace(&args);
416 else
417 rval = xfs_dir2_node_replace(&args);
418 return rval;
419}
420
421/*
422 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000423 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000425int
426xfs_dir_canenter(
427 xfs_trans_t *tp,
428 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000429 struct xfs_name *name, /* name of entry to add */
430 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000432 xfs_da_args_t args;
433 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int v; /* type-checking value */
435
Barry Naujok556b8b12008-04-10 12:22:07 +1000436 if (resblks)
437 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000438
Al Viroabbede12011-07-26 02:31:30 -0400439 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000440
Barry Naujok87affd082008-06-03 11:59:18 +1000441 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000442 args.name = name->name;
443 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000444 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000445 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 args.whichfork = XFS_DATA_FORK;
448 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000449 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
450 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
453 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000454 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000456 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000458 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000460 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 rval = xfs_dir2_leaf_addname(&args);
462 else
463 rval = xfs_dir2_node_addname(&args);
464 return rval;
465}
466
467/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * Utility routines.
469 */
470
471/*
472 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200473 *
474 * This routine is for data and free blocks, not leaf/node blocks which are
475 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000477int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200479 struct xfs_da_args *args,
480 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
481 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200483 struct xfs_inode *dp = args->dp;
484 struct xfs_mount *mp = dp->i_mount;
485 xfs_fileoff_t bno; /* directory offset of new block */
486 int count; /* count of filesystem blocks */
487 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000489 trace_xfs_dir2_grow_inode(args, space);
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /*
492 * Set lowest possible block in the space requested.
493 */
494 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
495 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200496
497 error = xfs_da_grow_inode_int(args, &bno, count);
498 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000501 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
504 * Update file's size if this is the data space and it grew.
505 */
506 if (space == XFS_DIR2_DATA_SPACE) {
507 xfs_fsize_t size; /* directory file (data) size */
508
509 size = XFS_FSB_TO_B(mp, bno + count);
510 if (size > dp->i_d.di_size) {
511 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200512 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514 }
515 return 0;
516}
517
518/*
519 * See if the directory is a single-block form directory.
520 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000521int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000523 xfs_trans_t *tp,
524 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 int *vp) /* out: 1 is block, 0 is not block */
526{
527 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000528 xfs_mount_t *mp;
529 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000532 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
535 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
536 *vp = rval;
537 return 0;
538}
539
540/*
541 * See if the directory is a single-leaf form directory.
542 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000543int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000545 xfs_trans_t *tp,
546 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 int *vp) /* out: 1 is leaf, 0 is not leaf */
548{
549 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000550 xfs_mount_t *mp;
551 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000554 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
557 return 0;
558}
559
560/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * Remove the given block from the directory.
562 * This routine is used for data and free blocks, leaf/node are done
563 * by xfs_da_shrink_inode.
564 */
565int
566xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000567 xfs_da_args_t *args,
568 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000569 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 xfs_fileoff_t bno; /* directory file offset */
572 xfs_dablk_t da; /* directory file offset */
573 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000574 xfs_inode_t *dp;
575 int error;
576 xfs_mount_t *mp;
577 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000579 trace_xfs_dir2_shrink_inode(args, db);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 dp = args->dp;
582 mp = dp->i_mount;
583 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000584 da = xfs_dir2_db_to_da(mp, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /*
586 * Unmap the fsblock(s).
587 */
588 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
589 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000590 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /*
592 * ENOSPC actually can happen if we're in a removename with
593 * no space reservation, and the resulting block removal
594 * would cause a bmap btree split or conversion from extents
595 * to btree. This can only happen for un-fragmented
596 * directory blocks, since you need to be punching out
597 * the middle of an extent.
598 * In this case we need to leave the block in the file,
599 * and not binval it.
600 * So the block has to be in a consistent empty state
601 * and appropriately logged.
602 * We don't free up the buffer, the caller can tell it
603 * hasn't happened since it got an error back.
604 */
605 return error;
606 }
607 ASSERT(done);
608 /*
609 * Invalidate the buffer from the transaction.
610 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000611 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /*
613 * If it's not a data block, we're done.
614 */
615 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
616 return 0;
617 /*
618 * If the block isn't the last one in the directory, we're done.
619 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000620 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return 0;
622 bno = da;
623 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
624 /*
625 * This can't really happen unless there's kernel corruption.
626 */
627 return error;
628 }
629 if (db == mp->m_dirdatablk)
630 ASSERT(bno == 0);
631 else
632 ASSERT(bno > 0);
633 /*
634 * Set the size to the new last block.
635 */
636 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
637 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
638 return 0;
639}