blob: ce16ef02997a9b27e77293033f84366919fe0e48 [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);
Dave Chinner4bceb182013-10-29 22:11:51 +110098
99 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL);
100 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog);
103 mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000104 mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp));
105 mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp));
106 mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp));
Dave Chinner37804372013-08-26 14:13:30 +1000107
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100108 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size;
Dave Chinner37804372013-08-26 14:13:30 +1000109 mp->m_attr_node_ents = (mp->m_sb.sb_blocksize - nodehdr_size) /
110 (uint)sizeof(xfs_da_node_entry_t);
111 mp->m_dir_node_ents = (mp->m_dirblksize - nodehdr_size) /
112 (uint)sizeof(xfs_da_node_entry_t);
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100;
Barry Naujok189f4bf2008-05-21 16:58:55 +1000115 if (xfs_sb_version_hasasciici(&mp->m_sb))
116 mp->m_dirnameops = &xfs_ascii_ci_nameops;
117 else
118 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
122/*
123 * Return 1 if directory contains only "." and "..".
124 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000125int
126xfs_dir_isempty(
127 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200129 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Al Viroabbede12011-07-26 02:31:30 -0400131 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000132 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
135 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200136 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
137 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000141 * Validate a given inode number.
142 */
143int
144xfs_dir_ino_validate(
145 xfs_mount_t *mp,
146 xfs_ino_t ino)
147{
148 xfs_agblock_t agblkno;
149 xfs_agino_t agino;
150 xfs_agnumber_t agno;
151 int ino_ok;
152 int ioff;
153
154 agno = XFS_INO_TO_AGNO(mp, ino);
155 agblkno = XFS_INO_TO_AGBNO(mp, ino);
156 ioff = XFS_INO_TO_OFFSET(mp, ino);
157 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
158 ino_ok =
159 agno < mp->m_sb.sb_agcount &&
160 agblkno < mp->m_sb.sb_agblocks &&
161 agblkno != 0 &&
162 ioff < (1 << mp->m_sb.sb_inopblog) &&
163 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
164 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
165 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100166 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000167 (unsigned long long) ino);
168 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
169 return XFS_ERROR(EFSCORRUPTED);
170 }
171 return 0;
172}
173
174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * Initialize a directory with its "." and ".." entries.
176 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000177int
178xfs_dir_init(
179 xfs_trans_t *tp,
180 xfs_inode_t *dp,
181 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000183 xfs_da_args_t args;
184 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 memset((char *)&args, 0, sizeof(args));
187 args.dp = dp;
188 args.trans = tp;
Al Viroabbede12011-07-26 02:31:30 -0400189 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000190 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return xfs_dir2_sf_create(&args, pdp->i_ino);
193}
194
195/*
196 Enter a name in a directory.
197 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000198int
199xfs_dir_createname(
200 xfs_trans_t *tp,
201 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000202 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 xfs_ino_t inum, /* new entry inode number */
204 xfs_fsblock_t *first, /* bmap's firstblock */
205 xfs_bmap_free_t *flist, /* bmap's freeblock list */
206 xfs_extlen_t total) /* bmap's total block count */
207{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000208 xfs_da_args_t args;
209 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 int v; /* type-checking value */
211
Al Viroabbede12011-07-26 02:31:30 -0400212 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000213 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000216
Barry Naujok87affd082008-06-03 11:59:18 +1000217 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000218 args.name = name->name;
219 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000220 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000221 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 args.inumber = inum;
223 args.dp = dp;
224 args.firstblock = first;
225 args.flist = flist;
226 args.total = total;
227 args.whichfork = XFS_DATA_FORK;
228 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000229 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
232 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000233 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000235 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000237 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000239 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 rval = xfs_dir2_leaf_addname(&args);
241 else
242 rval = xfs_dir2_node_addname(&args);
243 return rval;
244}
245
246/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000247 * If doing a CI lookup and case-insensitive match, dup actual name into
248 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000250int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000251xfs_dir_cilookup_result(
252 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100253 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000254 int len)
255{
256 if (args->cmpresult == XFS_CMP_DIFFERENT)
257 return ENOENT;
258 if (args->cmpresult != XFS_CMP_CASE ||
259 !(args->op_flags & XFS_DA_OP_CILOOKUP))
260 return EEXIST;
261
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400262 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000263 if (!args->value)
264 return ENOMEM;
265
266 memcpy(args->value, name, len);
267 args->valuelen = len;
268 return EEXIST;
269}
270
271/*
272 * Lookup a name in a directory, give back the inode number.
273 * If ci_name is not NULL, returns the actual name in ci_name if it differs
274 * to name, or ci_name->name is set to NULL for an exact match.
275 */
276
277int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000278xfs_dir_lookup(
279 xfs_trans_t *tp,
280 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000281 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000282 xfs_ino_t *inum, /* out: inode number */
283 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000285 xfs_da_args_t args;
286 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 int v; /* type-checking value */
288
Al Viroabbede12011-07-26 02:31:30 -0400289 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 XFS_STATS_INC(xs_dir_lookup);
291
Barry Naujok87affd082008-06-03 11:59:18 +1000292 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000293 args.name = name->name;
294 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000295 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000296 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 args.whichfork = XFS_DATA_FORK;
299 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000300 args.op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000301 if (ci_name)
302 args.op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
305 rval = xfs_dir2_sf_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000306 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000308 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 rval = xfs_dir2_block_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000310 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000312 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 rval = xfs_dir2_leaf_lookup(&args);
314 else
315 rval = xfs_dir2_node_lookup(&args);
316 if (rval == EEXIST)
317 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000318 if (!rval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *inum = args.inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000320 if (ci_name) {
321 ci_name->name = args.value;
322 ci_name->len = args.valuelen;
323 }
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return rval;
326}
327
328/*
329 * Remove an entry from a directory.
330 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000331int
332xfs_dir_removename(
333 xfs_trans_t *tp,
334 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000335 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000336 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 xfs_fsblock_t *first, /* bmap's firstblock */
338 xfs_bmap_free_t *flist, /* bmap's freeblock list */
339 xfs_extlen_t total) /* bmap's total block count */
340{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000341 xfs_da_args_t args;
342 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 int v; /* type-checking value */
344
Al Viroabbede12011-07-26 02:31:30 -0400345 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000347
Barry Naujok87affd082008-06-03 11:59:18 +1000348 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000349 args.name = name->name;
350 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000351 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000352 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 args.inumber = ino;
354 args.dp = dp;
355 args.firstblock = first;
356 args.flist = flist;
357 args.total = total;
358 args.whichfork = XFS_DATA_FORK;
359 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
362 rval = xfs_dir2_sf_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000363 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000365 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 rval = xfs_dir2_block_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000367 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000369 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 rval = xfs_dir2_leaf_removename(&args);
371 else
372 rval = xfs_dir2_node_removename(&args);
373 return rval;
374}
375
376/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * Replace the inode number of a directory entry.
378 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000379int
380xfs_dir_replace(
381 xfs_trans_t *tp,
382 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000383 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 xfs_ino_t inum, /* new inode number */
385 xfs_fsblock_t *first, /* bmap's firstblock */
386 xfs_bmap_free_t *flist, /* bmap's freeblock list */
387 xfs_extlen_t total) /* bmap's total block count */
388{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000389 xfs_da_args_t args;
390 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 int v; /* type-checking value */
392
Al Viroabbede12011-07-26 02:31:30 -0400393 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000395 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000397
Barry Naujok87affd082008-06-03 11:59:18 +1000398 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000399 args.name = name->name;
400 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000401 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000402 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 args.inumber = inum;
404 args.dp = dp;
405 args.firstblock = first;
406 args.flist = flist;
407 args.total = total;
408 args.whichfork = XFS_DATA_FORK;
409 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
412 rval = xfs_dir2_sf_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000413 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000415 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 rval = xfs_dir2_block_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000417 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000419 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 rval = xfs_dir2_leaf_replace(&args);
421 else
422 rval = xfs_dir2_node_replace(&args);
423 return rval;
424}
425
426/*
427 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000428 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000430int
431xfs_dir_canenter(
432 xfs_trans_t *tp,
433 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000434 struct xfs_name *name, /* name of entry to add */
435 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000437 xfs_da_args_t args;
438 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int v; /* type-checking value */
440
Barry Naujok556b8b12008-04-10 12:22:07 +1000441 if (resblks)
442 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000443
Al Viroabbede12011-07-26 02:31:30 -0400444 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000445
Barry Naujok87affd082008-06-03 11:59:18 +1000446 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000447 args.name = name->name;
448 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000449 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000450 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 args.whichfork = XFS_DATA_FORK;
453 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000454 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
455 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
458 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000459 else if ((rval = xfs_dir2_isblock(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000461 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 rval = xfs_dir2_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000463 else if ((rval = xfs_dir2_isleaf(tp, dp, &v)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000465 else if (v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 rval = xfs_dir2_leaf_addname(&args);
467 else
468 rval = xfs_dir2_node_addname(&args);
469 return rval;
470}
471
472/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * Utility routines.
474 */
475
476/*
477 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200478 *
479 * This routine is for data and free blocks, not leaf/node blocks which are
480 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000482int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200484 struct xfs_da_args *args,
485 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
486 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200488 struct xfs_inode *dp = args->dp;
489 struct xfs_mount *mp = dp->i_mount;
490 xfs_fileoff_t bno; /* directory offset of new block */
491 int count; /* count of filesystem blocks */
492 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000494 trace_xfs_dir2_grow_inode(args, space);
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
497 * Set lowest possible block in the space requested.
498 */
499 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
500 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200501
502 error = xfs_da_grow_inode_int(args, &bno, count);
503 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000506 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 /*
509 * Update file's size if this is the data space and it grew.
510 */
511 if (space == XFS_DIR2_DATA_SPACE) {
512 xfs_fsize_t size; /* directory file (data) size */
513
514 size = XFS_FSB_TO_B(mp, bno + count);
515 if (size > dp->i_d.di_size) {
516 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200517 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 }
520 return 0;
521}
522
523/*
524 * See if the directory is a single-block form directory.
525 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000526int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000528 xfs_trans_t *tp,
529 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 int *vp) /* out: 1 is block, 0 is not block */
531{
532 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000533 xfs_mount_t *mp;
534 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000537 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
540 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
541 *vp = rval;
542 return 0;
543}
544
545/*
546 * See if the directory is a single-leaf form directory.
547 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000548int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000550 xfs_trans_t *tp,
551 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int *vp) /* out: 1 is leaf, 0 is not leaf */
553{
554 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000555 xfs_mount_t *mp;
556 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000559 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
562 return 0;
563}
564
565/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * Remove the given block from the directory.
567 * This routine is used for data and free blocks, leaf/node are done
568 * by xfs_da_shrink_inode.
569 */
570int
571xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000572 xfs_da_args_t *args,
573 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000574 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 xfs_fileoff_t bno; /* directory file offset */
577 xfs_dablk_t da; /* directory file offset */
578 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000579 xfs_inode_t *dp;
580 int error;
581 xfs_mount_t *mp;
582 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000584 trace_xfs_dir2_shrink_inode(args, db);
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 dp = args->dp;
587 mp = dp->i_mount;
588 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000589 da = xfs_dir2_db_to_da(mp, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /*
591 * Unmap the fsblock(s).
592 */
593 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
594 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000595 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /*
597 * ENOSPC actually can happen if we're in a removename with
598 * no space reservation, and the resulting block removal
599 * would cause a bmap btree split or conversion from extents
600 * to btree. This can only happen for un-fragmented
601 * directory blocks, since you need to be punching out
602 * the middle of an extent.
603 * In this case we need to leave the block in the file,
604 * and not binval it.
605 * So the block has to be in a consistent empty state
606 * and appropriately logged.
607 * We don't free up the buffer, the caller can tell it
608 * hasn't happened since it got an error back.
609 */
610 return error;
611 }
612 ASSERT(done);
613 /*
614 * Invalidate the buffer from the transaction.
615 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000616 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /*
618 * If it's not a data block, we're done.
619 */
620 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
621 return 0;
622 /*
623 * If the block isn't the last one in the directory, we're done.
624 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000625 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return 0;
627 bno = da;
628 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
629 /*
630 * This can't really happen unless there's kernel corruption.
631 */
632 return error;
633 }
634 if (db == mp->m_dirdatablk)
635 ASSERT(bno == 0);
636 else
637 ASSERT(bno > 0);
638 /*
639 * Set the size to the new last block.
640 */
641 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
642 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
643 return 0;
644}