blob: d3ff96c321f9ad328e230dc586afe89ed7e42cdf [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_bmap.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020034#include "xfs_dir2_format.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100035#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020036#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000038#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Dave Chinner0cb97762013-08-12 20:50:09 +100040struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR };
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Barry Naujok189f4bf2008-05-21 16:58:55 +100043/*
44 * ASCII case-insensitive (ie. A-Z) support for directories that was
45 * used in IRIX.
46 */
47STATIC xfs_dahash_t
48xfs_ascii_ci_hashname(
49 struct xfs_name *name)
50{
51 xfs_dahash_t hash;
52 int i;
53
54 for (i = 0, hash = 0; i < name->len; i++)
55 hash = tolower(name->name[i]) ^ rol32(hash, 7);
56
57 return hash;
58}
59
60STATIC enum xfs_dacmp
61xfs_ascii_ci_compname(
62 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +110063 const unsigned char *name,
64 int len)
Barry Naujok189f4bf2008-05-21 16:58:55 +100065{
66 enum xfs_dacmp result;
67 int i;
68
69 if (args->namelen != len)
70 return XFS_CMP_DIFFERENT;
71
72 result = XFS_CMP_EXACT;
73 for (i = 0; i < len; i++) {
74 if (args->name[i] == name[i])
75 continue;
76 if (tolower(args->name[i]) != tolower(name[i]))
77 return XFS_CMP_DIFFERENT;
78 result = XFS_CMP_CASE;
79 }
80
81 return result;
82}
83
84static struct xfs_nameops xfs_ascii_ci_nameops = {
85 .hashname = xfs_ascii_ci_hashname,
86 .compname = xfs_ascii_ci_compname,
87};
88
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100089void
90xfs_dir_mount(
91 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Eric Sandeen62118702008-03-06 13:44:28 +110093 ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
95 XFS_MAX_BLOCKSIZE);
96 mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog);
97 mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +100098 mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp));
99 mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp));
100 mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 mp->m_attr_node_ents =
102 (mp->m_sb.sb_blocksize - (uint)sizeof(xfs_da_node_hdr_t)) /
103 (uint)sizeof(xfs_da_node_entry_t);
104 mp->m_dir_node_ents =
105 (mp->m_dirblksize - (uint)sizeof(xfs_da_node_hdr_t)) /
106 (uint)sizeof(xfs_da_node_entry_t);
107 mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100;
Barry Naujok189f4bf2008-05-21 16:58:55 +1000108 if (xfs_sb_version_hasasciici(&mp->m_sb))
109 mp->m_dirnameops = &xfs_ascii_ci_nameops;
110 else
111 mp->m_dirnameops = &xfs_default_nameops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114/*
115 * Return 1 if directory contains only "." and "..".
116 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000117int
118xfs_dir_isempty(
119 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200121 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Al Viroabbede12011-07-26 02:31:30 -0400123 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000124 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
127 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200128 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
129 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000133 * Validate a given inode number.
134 */
135int
136xfs_dir_ino_validate(
137 xfs_mount_t *mp,
138 xfs_ino_t ino)
139{
140 xfs_agblock_t agblkno;
141 xfs_agino_t agino;
142 xfs_agnumber_t agno;
143 int ino_ok;
144 int ioff;
145
146 agno = XFS_INO_TO_AGNO(mp, ino);
147 agblkno = XFS_INO_TO_AGBNO(mp, ino);
148 ioff = XFS_INO_TO_OFFSET(mp, ino);
149 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
150 ino_ok =
151 agno < mp->m_sb.sb_agcount &&
152 agblkno < mp->m_sb.sb_agblocks &&
153 agblkno != 0 &&
154 ioff < (1 << mp->m_sb.sb_inopblog) &&
155 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
156 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
157 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100158 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000159 (unsigned long long) ino);
160 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
161 return XFS_ERROR(EFSCORRUPTED);
162 }
163 return 0;
164}
165
166/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * Initialize a directory with its "." and ".." entries.
168 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000169int
170xfs_dir_init(
171 xfs_trans_t *tp,
172 xfs_inode_t *dp,
173 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000175 xfs_da_args_t args;
176 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 memset((char *)&args, 0, sizeof(args));
179 args.dp = dp;
180 args.trans = tp;
Al Viroabbede12011-07-26 02:31:30 -0400181 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000182 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return xfs_dir2_sf_create(&args, pdp->i_ino);
185}
186
187/*
188 Enter a name in a directory.
189 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000190int
191xfs_dir_createname(
192 xfs_trans_t *tp,
193 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000194 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 xfs_ino_t inum, /* new entry inode number */
196 xfs_fsblock_t *first, /* bmap's firstblock */
197 xfs_bmap_free_t *flist, /* bmap's freeblock list */
198 xfs_extlen_t total) /* bmap's total block count */
199{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000200 xfs_da_args_t args;
201 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 int v; /* type-checking value */
203
Al Viroabbede12011-07-26 02:31:30 -0400204 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000205 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000208
Barry Naujok87affd082008-06-03 11:59:18 +1000209 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000210 args.name = name->name;
211 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000212 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000213 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 args.inumber = inum;
215 args.dp = dp;
216 args.firstblock = first;
217 args.flist = flist;
218 args.total = total;
219 args.whichfork = XFS_DATA_FORK;
220 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000221 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
224 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000225 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000227 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000229 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000231 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 rval = xfs_dir2_leaf_addname(&args);
233 else
234 rval = xfs_dir2_node_addname(&args);
235 return rval;
236}
237
238/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000239 * If doing a CI lookup and case-insensitive match, dup actual name into
240 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000242int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000243xfs_dir_cilookup_result(
244 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100245 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000246 int len)
247{
248 if (args->cmpresult == XFS_CMP_DIFFERENT)
249 return ENOENT;
250 if (args->cmpresult != XFS_CMP_CASE ||
251 !(args->op_flags & XFS_DA_OP_CILOOKUP))
252 return EEXIST;
253
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400254 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000255 if (!args->value)
256 return ENOMEM;
257
258 memcpy(args->value, name, len);
259 args->valuelen = len;
260 return EEXIST;
261}
262
263/*
264 * Lookup a name in a directory, give back the inode number.
265 * If ci_name is not NULL, returns the actual name in ci_name if it differs
266 * to name, or ci_name->name is set to NULL for an exact match.
267 */
268
269int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000270xfs_dir_lookup(
271 xfs_trans_t *tp,
272 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000273 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000274 xfs_ino_t *inum, /* out: inode number */
275 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000277 xfs_da_args_t args;
278 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 int v; /* type-checking value */
280
Al Viroabbede12011-07-26 02:31:30 -0400281 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 XFS_STATS_INC(xs_dir_lookup);
283
Barry Naujok87affd082008-06-03 11:59:18 +1000284 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000285 args.name = name->name;
286 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000287 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000288 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 args.whichfork = XFS_DATA_FORK;
291 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000292 args.op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000293 if (ci_name)
294 args.op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
297 rval = xfs_dir2_sf_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000298 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000300 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 rval = xfs_dir2_block_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000302 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000304 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 rval = xfs_dir2_leaf_lookup(&args);
306 else
307 rval = xfs_dir2_node_lookup(&args);
308 if (rval == EEXIST)
309 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000310 if (!rval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 *inum = args.inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000312 if (ci_name) {
313 ci_name->name = args.value;
314 ci_name->len = args.valuelen;
315 }
316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return rval;
318}
319
320/*
321 * Remove an entry from a directory.
322 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000323int
324xfs_dir_removename(
325 xfs_trans_t *tp,
326 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000327 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000328 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 xfs_fsblock_t *first, /* bmap's firstblock */
330 xfs_bmap_free_t *flist, /* bmap's freeblock list */
331 xfs_extlen_t total) /* bmap's total block count */
332{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000333 xfs_da_args_t args;
334 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 int v; /* type-checking value */
336
Al Viroabbede12011-07-26 02:31:30 -0400337 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000339
Barry Naujok87affd082008-06-03 11:59:18 +1000340 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000341 args.name = name->name;
342 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000343 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000344 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 args.inumber = ino;
346 args.dp = dp;
347 args.firstblock = first;
348 args.flist = flist;
349 args.total = total;
350 args.whichfork = XFS_DATA_FORK;
351 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
354 rval = xfs_dir2_sf_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000355 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000357 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 rval = xfs_dir2_block_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000359 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000361 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 rval = xfs_dir2_leaf_removename(&args);
363 else
364 rval = xfs_dir2_node_removename(&args);
365 return rval;
366}
367
368/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * Replace the inode number of a directory entry.
370 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000371int
372xfs_dir_replace(
373 xfs_trans_t *tp,
374 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000375 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 xfs_ino_t inum, /* new inode number */
377 xfs_fsblock_t *first, /* bmap's firstblock */
378 xfs_bmap_free_t *flist, /* bmap's freeblock list */
379 xfs_extlen_t total) /* bmap's total block count */
380{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000381 xfs_da_args_t args;
382 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int v; /* type-checking value */
384
Al Viroabbede12011-07-26 02:31:30 -0400385 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000387 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000389
Barry Naujok87affd082008-06-03 11:59:18 +1000390 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000391 args.name = name->name;
392 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000393 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000394 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 args.inumber = inum;
396 args.dp = dp;
397 args.firstblock = first;
398 args.flist = flist;
399 args.total = total;
400 args.whichfork = XFS_DATA_FORK;
401 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
404 rval = xfs_dir2_sf_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000405 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000407 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 rval = xfs_dir2_block_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000409 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000411 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 rval = xfs_dir2_leaf_replace(&args);
413 else
414 rval = xfs_dir2_node_replace(&args);
415 return rval;
416}
417
418/*
419 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000420 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000422int
423xfs_dir_canenter(
424 xfs_trans_t *tp,
425 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000426 struct xfs_name *name, /* name of entry to add */
427 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000429 xfs_da_args_t args;
430 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int v; /* type-checking value */
432
Barry Naujok556b8b12008-04-10 12:22:07 +1000433 if (resblks)
434 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000435
Al Viroabbede12011-07-26 02:31:30 -0400436 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000437
Barry Naujok87affd082008-06-03 11:59:18 +1000438 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000439 args.name = name->name;
440 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000441 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000442 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 args.whichfork = XFS_DATA_FORK;
445 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000446 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
447 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
450 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000451 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000453 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000455 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000457 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 rval = xfs_dir2_leaf_addname(&args);
459 else
460 rval = xfs_dir2_node_addname(&args);
461 return rval;
462}
463
464/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * Utility routines.
466 */
467
468/*
469 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200470 *
471 * This routine is for data and free blocks, not leaf/node blocks which are
472 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000474int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200476 struct xfs_da_args *args,
477 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
478 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200480 struct xfs_inode *dp = args->dp;
481 struct xfs_mount *mp = dp->i_mount;
482 xfs_fileoff_t bno; /* directory offset of new block */
483 int count; /* count of filesystem blocks */
484 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000486 trace_xfs_dir2_grow_inode(args, space);
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /*
489 * Set lowest possible block in the space requested.
490 */
491 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
492 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200493
494 error = xfs_da_grow_inode_int(args, &bno, count);
495 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000498 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 /*
501 * Update file's size if this is the data space and it grew.
502 */
503 if (space == XFS_DIR2_DATA_SPACE) {
504 xfs_fsize_t size; /* directory file (data) size */
505
506 size = XFS_FSB_TO_B(mp, bno + count);
507 if (size > dp->i_d.di_size) {
508 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200509 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 }
512 return 0;
513}
514
515/*
516 * See if the directory is a single-block form directory.
517 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000518int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000520 xfs_trans_t *tp,
521 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 int *vp) /* out: 1 is block, 0 is not block */
523{
524 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000525 xfs_mount_t *mp;
526 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000529 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
532 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
533 *vp = rval;
534 return 0;
535}
536
537/*
538 * See if the directory is a single-leaf form directory.
539 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000540int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000542 xfs_trans_t *tp,
543 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int *vp) /* out: 1 is leaf, 0 is not leaf */
545{
546 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000547 xfs_mount_t *mp;
548 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000551 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
554 return 0;
555}
556
557/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 * Remove the given block from the directory.
559 * This routine is used for data and free blocks, leaf/node are done
560 * by xfs_da_shrink_inode.
561 */
562int
563xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000564 xfs_da_args_t *args,
565 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000566 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 xfs_fileoff_t bno; /* directory file offset */
569 xfs_dablk_t da; /* directory file offset */
570 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000571 xfs_inode_t *dp;
572 int error;
573 xfs_mount_t *mp;
574 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000576 trace_xfs_dir2_shrink_inode(args, db);
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 dp = args->dp;
579 mp = dp->i_mount;
580 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000581 da = xfs_dir2_db_to_da(mp, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
583 * Unmap the fsblock(s).
584 */
585 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
586 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000587 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /*
589 * ENOSPC actually can happen if we're in a removename with
590 * no space reservation, and the resulting block removal
591 * would cause a bmap btree split or conversion from extents
592 * to btree. This can only happen for un-fragmented
593 * directory blocks, since you need to be punching out
594 * the middle of an extent.
595 * In this case we need to leave the block in the file,
596 * and not binval it.
597 * So the block has to be in a consistent empty state
598 * and appropriately logged.
599 * We don't free up the buffer, the caller can tell it
600 * hasn't happened since it got an error back.
601 */
602 return error;
603 }
604 ASSERT(done);
605 /*
606 * Invalidate the buffer from the transaction.
607 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000608 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /*
610 * If it's not a data block, we're done.
611 */
612 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
613 return 0;
614 /*
615 * If the block isn't the last one in the directory, we're done.
616 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000617 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return 0;
619 bno = da;
620 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
621 /*
622 * This can't really happen unless there's kernel corruption.
623 */
624 return error;
625 }
626 if (db == mp->m_dirdatablk)
627 ASSERT(bno == 0);
628 else
629 ASSERT(bno > 0);
630 /*
631 * Set the size to the new last block.
632 */
633 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
634 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
635 return 0;
636}