blob: f46777fa30772cc2995c84a22a9eb40eb58913c8 [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"
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_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_bmap.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{
Dave Chinner37804372013-08-26 14:13:30 +100093 int nodehdr_size;
94
95
Eric Sandeen62118702008-03-06 13:44:28 +110096 ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
98 XFS_MAX_BLOCKSIZE);
99 mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog);
100 mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000101 mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp));
102 mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp));
103 mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp));
Dave Chinner37804372013-08-26 14:13:30 +1000104
105 nodehdr_size = __xfs_da3_node_hdr_size(xfs_sb_version_hascrc(&mp->m_sb));
106 mp->m_attr_node_ents = (mp->m_sb.sb_blocksize - nodehdr_size) /
107 (uint)sizeof(xfs_da_node_entry_t);
108 mp->m_dir_node_ents = (mp->m_dirblksize - nodehdr_size) /
109 (uint)sizeof(xfs_da_node_entry_t);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100;
Barry Naujok189f4bf2008-05-21 16:58:55 +1000112 if (xfs_sb_version_hasasciici(&mp->m_sb))
113 mp->m_dirnameops = &xfs_ascii_ci_nameops;
114 else
115 mp->m_dirnameops = &xfs_default_nameops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/*
119 * Return 1 if directory contains only "." and "..".
120 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000121int
122xfs_dir_isempty(
123 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200125 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Al Viroabbede12011-07-26 02:31:30 -0400127 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000128 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
131 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200132 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
133 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000137 * Validate a given inode number.
138 */
139int
140xfs_dir_ino_validate(
141 xfs_mount_t *mp,
142 xfs_ino_t ino)
143{
144 xfs_agblock_t agblkno;
145 xfs_agino_t agino;
146 xfs_agnumber_t agno;
147 int ino_ok;
148 int ioff;
149
150 agno = XFS_INO_TO_AGNO(mp, ino);
151 agblkno = XFS_INO_TO_AGBNO(mp, ino);
152 ioff = XFS_INO_TO_OFFSET(mp, ino);
153 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
154 ino_ok =
155 agno < mp->m_sb.sb_agcount &&
156 agblkno < mp->m_sb.sb_agblocks &&
157 agblkno != 0 &&
158 ioff < (1 << mp->m_sb.sb_inopblog) &&
159 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
160 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
161 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100162 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000163 (unsigned long long) ino);
164 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
165 return XFS_ERROR(EFSCORRUPTED);
166 }
167 return 0;
168}
169
170/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * Initialize a directory with its "." and ".." entries.
172 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000173int
174xfs_dir_init(
175 xfs_trans_t *tp,
176 xfs_inode_t *dp,
177 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000179 xfs_da_args_t args;
180 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 memset((char *)&args, 0, sizeof(args));
183 args.dp = dp;
184 args.trans = tp;
Al Viroabbede12011-07-26 02:31:30 -0400185 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000186 if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return xfs_dir2_sf_create(&args, pdp->i_ino);
189}
190
191/*
192 Enter a name in a directory.
193 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000194int
195xfs_dir_createname(
196 xfs_trans_t *tp,
197 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000198 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 xfs_ino_t inum, /* new entry inode number */
200 xfs_fsblock_t *first, /* bmap's firstblock */
201 xfs_bmap_free_t *flist, /* bmap's freeblock list */
202 xfs_extlen_t total) /* bmap's total block count */
203{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000204 xfs_da_args_t args;
205 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 int v; /* type-checking value */
207
Al Viroabbede12011-07-26 02:31:30 -0400208 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000209 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000212
Barry Naujok87affd082008-06-03 11:59:18 +1000213 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000214 args.name = name->name;
215 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000216 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000217 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 args.inumber = inum;
219 args.dp = dp;
220 args.firstblock = first;
221 args.flist = flist;
222 args.total = total;
223 args.whichfork = XFS_DATA_FORK;
224 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000225 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
228 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000229 else if ((rval = xfs_dir2_isblock(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_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000233 else if ((rval = xfs_dir2_isleaf(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_leaf_addname(&args);
237 else
238 rval = xfs_dir2_node_addname(&args);
239 return rval;
240}
241
242/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000243 * If doing a CI lookup and case-insensitive match, dup actual name into
244 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000246int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000247xfs_dir_cilookup_result(
248 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100249 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000250 int len)
251{
252 if (args->cmpresult == XFS_CMP_DIFFERENT)
253 return ENOENT;
254 if (args->cmpresult != XFS_CMP_CASE ||
255 !(args->op_flags & XFS_DA_OP_CILOOKUP))
256 return EEXIST;
257
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400258 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000259 if (!args->value)
260 return ENOMEM;
261
262 memcpy(args->value, name, len);
263 args->valuelen = len;
264 return EEXIST;
265}
266
267/*
268 * Lookup a name in a directory, give back the inode number.
269 * If ci_name is not NULL, returns the actual name in ci_name if it differs
270 * to name, or ci_name->name is set to NULL for an exact match.
271 */
272
273int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000274xfs_dir_lookup(
275 xfs_trans_t *tp,
276 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000277 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000278 xfs_ino_t *inum, /* out: inode number */
279 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000281 xfs_da_args_t args;
282 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 int v; /* type-checking value */
284
Al Viroabbede12011-07-26 02:31:30 -0400285 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 XFS_STATS_INC(xs_dir_lookup);
287
Barry Naujok87affd082008-06-03 11:59:18 +1000288 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000289 args.name = name->name;
290 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000291 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000292 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 args.whichfork = XFS_DATA_FORK;
295 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000296 args.op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000297 if (ci_name)
298 args.op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
301 rval = xfs_dir2_sf_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000302 else if ((rval = xfs_dir2_isblock(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_block_lookup(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000306 else if ((rval = xfs_dir2_isleaf(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_leaf_lookup(&args);
310 else
311 rval = xfs_dir2_node_lookup(&args);
312 if (rval == EEXIST)
313 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000314 if (!rval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 *inum = args.inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000316 if (ci_name) {
317 ci_name->name = args.value;
318 ci_name->len = args.valuelen;
319 }
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return rval;
322}
323
324/*
325 * Remove an entry from a directory.
326 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000327int
328xfs_dir_removename(
329 xfs_trans_t *tp,
330 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000331 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000332 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 xfs_fsblock_t *first, /* bmap's firstblock */
334 xfs_bmap_free_t *flist, /* bmap's freeblock list */
335 xfs_extlen_t total) /* bmap's total block count */
336{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000337 xfs_da_args_t args;
338 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 int v; /* type-checking value */
340
Al Viroabbede12011-07-26 02:31:30 -0400341 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000343
Barry Naujok87affd082008-06-03 11:59:18 +1000344 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000345 args.name = name->name;
346 args.namelen = name->len;
Dave Chinner1c55cec2013-08-12 20:50:10 +1000347 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000348 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 args.inumber = ino;
350 args.dp = dp;
351 args.firstblock = first;
352 args.flist = flist;
353 args.total = total;
354 args.whichfork = XFS_DATA_FORK;
355 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
358 rval = xfs_dir2_sf_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000359 else if ((rval = xfs_dir2_isblock(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_block_removename(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000363 else if ((rval = xfs_dir2_isleaf(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_leaf_removename(&args);
367 else
368 rval = xfs_dir2_node_removename(&args);
369 return rval;
370}
371
372/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * Replace the inode number of a directory entry.
374 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000375int
376xfs_dir_replace(
377 xfs_trans_t *tp,
378 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000379 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 xfs_ino_t inum, /* new inode number */
381 xfs_fsblock_t *first, /* bmap's firstblock */
382 xfs_bmap_free_t *flist, /* bmap's freeblock list */
383 xfs_extlen_t total) /* bmap's total block count */
384{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000385 xfs_da_args_t args;
386 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 int v; /* type-checking value */
388
Al Viroabbede12011-07-26 02:31:30 -0400389 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000391 if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000393
Barry Naujok87affd082008-06-03 11:59:18 +1000394 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000395 args.name = name->name;
396 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000397 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000398 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 args.inumber = inum;
400 args.dp = dp;
401 args.firstblock = first;
402 args.flist = flist;
403 args.total = total;
404 args.whichfork = XFS_DATA_FORK;
405 args.trans = tp;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
408 rval = xfs_dir2_sf_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000409 else if ((rval = xfs_dir2_isblock(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_block_replace(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000413 else if ((rval = xfs_dir2_isleaf(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_leaf_replace(&args);
417 else
418 rval = xfs_dir2_node_replace(&args);
419 return rval;
420}
421
422/*
423 * See if this entry can be added to the directory without allocating space.
Barry Naujok556b8b12008-04-10 12:22:07 +1000424 * First checks that the caller couldn't reserve enough space (resblks = 0).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000426int
427xfs_dir_canenter(
428 xfs_trans_t *tp,
429 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000430 struct xfs_name *name, /* name of entry to add */
431 uint resblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000433 xfs_da_args_t args;
434 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 int v; /* type-checking value */
436
Barry Naujok556b8b12008-04-10 12:22:07 +1000437 if (resblks)
438 return 0;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000439
Al Viroabbede12011-07-26 02:31:30 -0400440 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000441
Barry Naujok87affd082008-06-03 11:59:18 +1000442 memset(&args, 0, sizeof(xfs_da_args_t));
Barry Naujok556b8b12008-04-10 12:22:07 +1000443 args.name = name->name;
444 args.namelen = name->len;
Dave Chinner0cb97762013-08-12 20:50:09 +1000445 args.filetype = name->type;
Barry Naujok5163f952008-05-21 16:41:01 +1000446 args.hashval = dp->i_mount->m_dirnameops->hashname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 args.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 args.whichfork = XFS_DATA_FORK;
449 args.trans = tp;
Barry Naujok6a178102008-05-21 16:42:05 +1000450 args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
451 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL)
454 rval = xfs_dir2_sf_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000455 else if ((rval = xfs_dir2_isblock(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_block_addname(&args);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000459 else if ((rval = xfs_dir2_isleaf(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_leaf_addname(&args);
463 else
464 rval = xfs_dir2_node_addname(&args);
465 return rval;
466}
467
468/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * Utility routines.
470 */
471
472/*
473 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200474 *
475 * This routine is for data and free blocks, not leaf/node blocks which are
476 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000478int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200480 struct xfs_da_args *args,
481 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
482 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200484 struct xfs_inode *dp = args->dp;
485 struct xfs_mount *mp = dp->i_mount;
486 xfs_fileoff_t bno; /* directory offset of new block */
487 int count; /* count of filesystem blocks */
488 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000490 trace_xfs_dir2_grow_inode(args, space);
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 /*
493 * Set lowest possible block in the space requested.
494 */
495 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
496 count = mp->m_dirblkfsbs;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200497
498 error = xfs_da_grow_inode_int(args, &bno, count);
499 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000502 *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 /*
505 * Update file's size if this is the data space and it grew.
506 */
507 if (space == XFS_DIR2_DATA_SPACE) {
508 xfs_fsize_t size; /* directory file (data) size */
509
510 size = XFS_FSB_TO_B(mp, bno + count);
511 if (size > dp->i_d.di_size) {
512 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200513 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515 }
516 return 0;
517}
518
519/*
520 * See if the directory is a single-block form directory.
521 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000522int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523xfs_dir2_isblock(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000524 xfs_trans_t *tp,
525 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 int *vp) /* out: 1 is block, 0 is not block */
527{
528 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000529 xfs_mount_t *mp;
530 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000533 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize;
536 ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize);
537 *vp = rval;
538 return 0;
539}
540
541/*
542 * See if the directory is a single-leaf form directory.
543 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000544int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545xfs_dir2_isleaf(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000546 xfs_trans_t *tp,
547 xfs_inode_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 int *vp) /* out: 1 is leaf, 0 is not leaf */
549{
550 xfs_fileoff_t last; /* last file offset */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000551 xfs_mount_t *mp;
552 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000555 if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog);
558 return 0;
559}
560
561/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 * Remove the given block from the directory.
563 * This routine is used for data and free blocks, leaf/node are done
564 * by xfs_da_shrink_inode.
565 */
566int
567xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000568 xfs_da_args_t *args,
569 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000570 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 xfs_fileoff_t bno; /* directory file offset */
573 xfs_dablk_t da; /* directory file offset */
574 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000575 xfs_inode_t *dp;
576 int error;
577 xfs_mount_t *mp;
578 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000580 trace_xfs_dir2_shrink_inode(args, db);
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 dp = args->dp;
583 mp = dp->i_mount;
584 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000585 da = xfs_dir2_db_to_da(mp, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /*
587 * Unmap the fsblock(s).
588 */
589 if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs,
590 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000591 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /*
593 * ENOSPC actually can happen if we're in a removename with
594 * no space reservation, and the resulting block removal
595 * would cause a bmap btree split or conversion from extents
596 * to btree. This can only happen for un-fragmented
597 * directory blocks, since you need to be punching out
598 * the middle of an extent.
599 * In this case we need to leave the block in the file,
600 * and not binval it.
601 * So the block has to be in a consistent empty state
602 * and appropriately logged.
603 * We don't free up the buffer, the caller can tell it
604 * hasn't happened since it got an error back.
605 */
606 return error;
607 }
608 ASSERT(done);
609 /*
610 * Invalidate the buffer from the transaction.
611 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000612 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /*
614 * If it's not a data block, we're done.
615 */
616 if (db >= XFS_DIR2_LEAF_FIRSTDB(mp))
617 return 0;
618 /*
619 * If the block isn't the last one in the directory, we're done.
620 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000621 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return 0;
623 bno = da;
624 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
625 /*
626 * This can't really happen unless there's kernel corruption.
627 */
628 return error;
629 }
630 if (db == mp->m_dirdatablk)
631 ASSERT(bno == 0);
632 else
633 ASSERT(bno > 0);
634 /*
635 * Set the size to the new last block.
636 */
637 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
638 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
639 return 0;
640}