blob: 7911136453cd61e10c48ab241d41f6eec26e3a98 [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;
Dave Chinner32c54832013-10-29 22:11:46 +1100115
116 if (xfs_sb_version_hascrc(&mp->m_sb))
117 mp->m_dir_inode_ops = &xfs_dir3_ops;
118 else if (xfs_sb_version_hasftype(&mp->m_sb))
119 mp->m_dir_inode_ops = &xfs_dir2_ftype_ops;
120 else
121 mp->m_dir_inode_ops = &xfs_dir2_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124/*
125 * Return 1 if directory contains only "." and "..".
126 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000127int
128xfs_dir_isempty(
129 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200131 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Al Viroabbede12011-07-26 02:31:30 -0400133 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000134 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
137 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200138 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
139 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000143 * Validate a given inode number.
144 */
145int
146xfs_dir_ino_validate(
147 xfs_mount_t *mp,
148 xfs_ino_t ino)
149{
150 xfs_agblock_t agblkno;
151 xfs_agino_t agino;
152 xfs_agnumber_t agno;
153 int ino_ok;
154 int ioff;
155
156 agno = XFS_INO_TO_AGNO(mp, ino);
157 agblkno = XFS_INO_TO_AGBNO(mp, ino);
158 ioff = XFS_INO_TO_OFFSET(mp, ino);
159 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
160 ino_ok =
161 agno < mp->m_sb.sb_agcount &&
162 agblkno < mp->m_sb.sb_agblocks &&
163 agblkno != 0 &&
164 ioff < (1 << mp->m_sb.sb_inopblog) &&
165 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
166 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
167 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100168 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000169 (unsigned long long) ino);
170 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
171 return XFS_ERROR(EFSCORRUPTED);
172 }
173 return 0;
174}
175
176/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * Initialize a directory with its "." and ".." entries.
178 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000179int
180xfs_dir_init(
181 xfs_trans_t *tp,
182 xfs_inode_t *dp,
183 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000185 xfs_da_args_t args;
186 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 memset((char *)&args, 0, sizeof(args));
189 args.dp = dp;
190 args.trans = tp;
Al Viroabbede12011-07-26 02:31:30 -0400191 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000192 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return xfs_dir2_sf_create(&args, pdp->i_ino);
195}
196
197/*
198 Enter a name in a directory.
199 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000200int
201xfs_dir_createname(
202 xfs_trans_t *tp,
203 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000204 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 xfs_ino_t inum, /* new entry inode number */
206 xfs_fsblock_t *first, /* bmap's firstblock */
207 xfs_bmap_free_t *flist, /* bmap's freeblock list */
208 xfs_extlen_t total) /* bmap's total block count */
209{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000210 xfs_da_args_t args;
211 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 int v; /* type-checking value */
213
Al Viroabbede12011-07-26 02:31:30 -0400214 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000215 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000218
Barry Naujok87affd082008-06-03 11:59:18 +1000219 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000220 args.name = name->name;
221 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000222 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000223 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 args.inumber = inum;
225 args.dp = dp;
226 args.firstblock = first;
227 args.flist = flist;
228 args.total = total;
229 args.whichfork = XFS_DATA_FORK;
230 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000231 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
234 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000235 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000237 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000239 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000241 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 rval = xfs_dir2_leaf_addname(&args);
243 else
244 rval = xfs_dir2_node_addname(&args);
245 return rval;
246}
247
248/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000249 * If doing a CI lookup and case-insensitive match, dup actual name into
250 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000252int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000253xfs_dir_cilookup_result(
254 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100255 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000256 int len)
257{
258 if (args->cmpresult == XFS_CMP_DIFFERENT)
259 return ENOENT;
260 if (args->cmpresult != XFS_CMP_CASE ||
261 !(args->op_flags & XFS_DA_OP_CILOOKUP))
262 return EEXIST;
263
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400264 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000265 if (!args->value)
266 return ENOMEM;
267
268 memcpy(args->value, name, len);
269 args->valuelen = len;
270 return EEXIST;
271}
272
273/*
274 * Lookup a name in a directory, give back the inode number.
275 * If ci_name is not NULL, returns the actual name in ci_name if it differs
276 * to name, or ci_name->name is set to NULL for an exact match.
277 */
278
279int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000280xfs_dir_lookup(
281 xfs_trans_t *tp,
282 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000283 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000284 xfs_ino_t *inum, /* out: inode number */
285 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000287 xfs_da_args_t args;
288 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int v; /* type-checking value */
290
Al Viroabbede12011-07-26 02:31:30 -0400291 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 XFS_STATS_INC(xs_dir_lookup);
293
Barry Naujok87affd082008-06-03 11:59:18 +1000294 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000295 args.name = name->name;
296 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000297 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000298 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 args.whichfork = XFS_DATA_FORK;
301 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000302 args.op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000303 if (ci_name)
304 args.op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
307 rval = xfs_dir2_sf_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000308 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000310 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 rval = xfs_dir2_block_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000312 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000314 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 rval = xfs_dir2_leaf_lookup(&args);
316 else
317 rval = xfs_dir2_node_lookup(&args);
318 if (rval == EEXIST)
319 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000320 if (!rval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *inum = args.inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000322 if (ci_name) {
323 ci_name->name = args.value;
324 ci_name->len = args.valuelen;
325 }
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return rval;
328}
329
330/*
331 * Remove an entry from a directory.
332 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000333int
334xfs_dir_removename(
335 xfs_trans_t *tp,
336 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000337 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000338 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 xfs_fsblock_t *first, /* bmap's firstblock */
340 xfs_bmap_free_t *flist, /* bmap's freeblock list */
341 xfs_extlen_t total) /* bmap's total block count */
342{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000343 xfs_da_args_t args;
344 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 int v; /* type-checking value */
346
Al Viroabbede12011-07-26 02:31:30 -0400347 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000349
Barry Naujok87affd082008-06-03 11:59:18 +1000350 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000351 args.name = name->name;
352 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000353 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000354 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 args.inumber = ino;
356 args.dp = dp;
357 args.firstblock = first;
358 args.flist = flist;
359 args.total = total;
360 args.whichfork = XFS_DATA_FORK;
361 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
364 rval = xfs_dir2_sf_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000365 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000367 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 rval = xfs_dir2_block_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000369 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000371 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 rval = xfs_dir2_leaf_removename(&args);
373 else
374 rval = xfs_dir2_node_removename(&args);
375 return rval;
376}
377
378/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Replace the inode number of a directory entry.
380 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000381int
382xfs_dir_replace(
383 xfs_trans_t *tp,
384 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000385 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 xfs_ino_t inum, /* new inode number */
387 xfs_fsblock_t *first, /* bmap's firstblock */
388 xfs_bmap_free_t *flist, /* bmap's freeblock list */
389 xfs_extlen_t total) /* bmap's total block count */
390{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000391 xfs_da_args_t args;
392 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 int v; /* type-checking value */
394
Al Viroabbede12011-07-26 02:31:30 -0400395 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000397 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000399
Barry Naujok87affd082008-06-03 11:59:18 +1000400 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000401 args.name = name->name;
402 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000403 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000404 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 args.inumber = inum;
406 args.dp = dp;
407 args.firstblock = first;
408 args.flist = flist;
409 args.total = total;
410 args.whichfork = XFS_DATA_FORK;
411 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
414 rval = xfs_dir2_sf_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000415 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000417 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 rval = xfs_dir2_block_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000419 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000421 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 rval = xfs_dir2_leaf_replace(&args);
423 else
424 rval = xfs_dir2_node_replace(&args);
425 return rval;
426}
427
428/*
429 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000430 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000432int
433xfs_dir_canenter(
434 xfs_trans_t *tp,
435 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000436 struct xfs_name *name, /* name of entry to add */
437 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000439 xfs_da_args_t args;
440 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 int v; /* type-checking value */
442
Barry Naujok556b8b12008-04-10 12:22:07 +1000443 if (resblks)
444 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000445
Al Viroabbede12011-07-26 02:31:30 -0400446 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000447
Barry Naujok87affd082008-06-03 11:59:18 +1000448 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000449 args.name = name->name;
450 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000451 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000452 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 args.whichfork = XFS_DATA_FORK;
455 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000456 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
457 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
460 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000461 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000463 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000465 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000467 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 rval = xfs_dir2_leaf_addname(&args);
469 else
470 rval = xfs_dir2_node_addname(&args);
471 return rval;
472}
473
474/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * Utility routines.
476 */
477
478/*
479 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200480 *
481 * This routine is for data and free blocks, not leaf/node blocks which are
482 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000484int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200486 struct xfs_da_args *args,
487 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
488 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200490 struct xfs_inode *dp = args->dp;
491 struct xfs_mount *mp = dp->i_mount;
492 xfs_fileoff_t bno; /* directory offset of new block */
493 int count; /* count of filesystem blocks */
494 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000496 trace_xfs_dir2_grow_inode(args, space);
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * Set lowest possible block in the space requested.
500 */
501 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
502 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200503
504 error = xfs_da_grow_inode_int(args, &bno, count);
505 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000508 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /*
511 * Update file's size if this is the data space and it grew.
512 */
513 if (space == XFS_DIR2_DATA_SPACE) {
514 xfs_fsize_t size; /* directory file (data) size */
515
516 size = XFS_FSB_TO_B(mp, bno + count);
517 if (size > dp->i_d.di_size) {
518 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200519 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521 }
522 return 0;
523}
524
525/*
526 * See if the directory is a single-block form directory.
527 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000528int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000530 xfs_trans_t *tp,
531 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int *vp) /* out: 1 is block, 0 is not block */
533{
534 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000535 xfs_mount_t *mp;
536 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000539 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
542 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
543 *vp = rval;
544 return 0;
545}
546
547/*
548 * See if the directory is a single-leaf form directory.
549 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000550int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000552 xfs_trans_t *tp,
553 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 int *vp) /* out: 1 is leaf, 0 is not leaf */
555{
556 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000557 xfs_mount_t *mp;
558 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000561 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
564 return 0;
565}
566
567/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 * Remove the given block from the directory.
569 * This routine is used for data and free blocks, leaf/node are done
570 * by xfs_da_shrink_inode.
571 */
572int
573xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000574 xfs_da_args_t *args,
575 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000576 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 xfs_fileoff_t bno; /* directory file offset */
579 xfs_dablk_t da; /* directory file offset */
580 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000581 xfs_inode_t *dp;
582 int error;
583 xfs_mount_t *mp;
584 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000586 trace_xfs_dir2_shrink_inode(args, db);
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 dp = args->dp;
589 mp = dp->i_mount;
590 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000591 da = xfs_dir2_db_to_da(mp, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /*
593 * Unmap the fsblock(s).
594 */
595 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
596 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000597 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /*
599 * ENOSPC actually can happen if we're in a removename with
600 * no space reservation, and the resulting block removal
601 * would cause a bmap btree split or conversion from extents
602 * to btree. This can only happen for un-fragmented
603 * directory blocks, since you need to be punching out
604 * the middle of an extent.
605 * In this case we need to leave the block in the file,
606 * and not binval it.
607 * So the block has to be in a consistent empty state
608 * and appropriately logged.
609 * We don't free up the buffer, the caller can tell it
610 * hasn't happened since it got an error back.
611 */
612 return error;
613 }
614 ASSERT(done);
615 /*
616 * Invalidate the buffer from the transaction.
617 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000618 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * If it's not a data block, we're done.
621 */
622 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
623 return 0;
624 /*
625 * If the block isn't the last one in the directory, we're done.
626 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000627 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return 0;
629 bno = da;
630 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
631 /*
632 * This can't really happen unless there's kernel corruption.
633 */
634 return error;
635 }
636 if (db == mp->m_dirdatablk)
637 ASSERT(bno == 0);
638 else
639 ASSERT(bno > 0);
640 /*
641 * Set the size to the new last block.
642 */
643 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
644 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
645 return 0;
646}