blob: ea84e1c472849471aaab2a9a92e9d4f0db2f42e6 [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
Dave Chinner0650b552014-06-06 15:01:58 +100088int
89xfs_da_mount(
90 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Dave Chinner0650b552014-06-06 15:01:58 +100092 struct xfs_da_geometry *dageo;
93 int nodehdr_size;
Dave Chinner37804372013-08-26 14:13:30 +100094
95
Dave Chinner5d074a42014-05-20 07:46:55 +100096 ASSERT(mp->m_sb.sb_versionnum & XFS_SB_VERSION_DIRV2BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
98 XFS_MAX_BLOCKSIZE);
Dave Chinner4bceb182013-10-29 22:11:51 +110099
100 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL);
101 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL);
102
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100103 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size;
Dave Chinner0650b552014-06-06 15:01:58 +1000104 mp->m_dir_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
105 KM_SLEEP | KM_MAYFAIL);
106 mp->m_attr_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
107 KM_SLEEP | KM_MAYFAIL);
108 if (!mp->m_dir_geo || !mp->m_attr_geo) {
109 kmem_free(mp->m_dir_geo);
110 kmem_free(mp->m_attr_geo);
Dave Chinner24513372014-06-25 14:58:08 +1000111 return -ENOMEM;
Dave Chinner0650b552014-06-06 15:01:58 +1000112 }
Dave Chinner37804372013-08-26 14:13:30 +1000113
Dave Chinner0650b552014-06-06 15:01:58 +1000114 /* set up directory geometry */
115 dageo = mp->m_dir_geo;
116 dageo->blklog = mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog;
117 dageo->fsblog = mp->m_sb.sb_blocklog;
118 dageo->blksize = 1 << dageo->blklog;
119 dageo->fsbcount = 1 << mp->m_sb.sb_dirblklog;
Dave Chinner30028032014-06-06 15:08:18 +1000120
121 /*
122 * Now we've set up the block conversion variables, we can calculate the
123 * segment block constants using the geometry structure.
124 */
125 dageo->datablk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_DATA_OFFSET);
126 dageo->leafblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_LEAF_OFFSET);
127 dageo->freeblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_FREE_OFFSET);
Dave Chinner0650b552014-06-06 15:01:58 +1000128 dageo->node_ents = (dageo->blksize - nodehdr_size) /
129 (uint)sizeof(xfs_da_node_entry_t);
130 dageo->magicpct = (dageo->blksize * 37) / 100;
131
132 /* set up attribute geometry - single fsb only */
133 dageo = mp->m_attr_geo;
134 dageo->blklog = mp->m_sb.sb_blocklog;
135 dageo->fsblog = mp->m_sb.sb_blocklog;
136 dageo->blksize = 1 << dageo->blklog;
137 dageo->fsbcount = 1;
138 dageo->node_ents = (dageo->blksize - nodehdr_size) /
139 (uint)sizeof(xfs_da_node_entry_t);
140 dageo->magicpct = (dageo->blksize * 37) / 100;
141
Barry Naujok189f4bf2008-05-21 16:58:55 +1000142 if (xfs_sb_version_hasasciici(&mp->m_sb))
143 mp->m_dirnameops = &xfs_ascii_ci_nameops;
144 else
145 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100146
Dave Chinner0650b552014-06-06 15:01:58 +1000147 return 0;
148}
149
150void
151xfs_da_unmount(
152 struct xfs_mount *mp)
153{
154 kmem_free(mp->m_dir_geo);
155 kmem_free(mp->m_attr_geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/*
159 * Return 1 if directory contains only "." and "..".
160 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000161int
162xfs_dir_isempty(
163 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200165 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Al Viroabbede12011-07-26 02:31:30 -0400167 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000168 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
171 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200172 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
173 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000177 * Validate a given inode number.
178 */
179int
180xfs_dir_ino_validate(
181 xfs_mount_t *mp,
182 xfs_ino_t ino)
183{
184 xfs_agblock_t agblkno;
185 xfs_agino_t agino;
186 xfs_agnumber_t agno;
187 int ino_ok;
188 int ioff;
189
190 agno = XFS_INO_TO_AGNO(mp, ino);
191 agblkno = XFS_INO_TO_AGBNO(mp, ino);
192 ioff = XFS_INO_TO_OFFSET(mp, ino);
193 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
194 ino_ok =
195 agno < mp->m_sb.sb_agcount &&
196 agblkno < mp->m_sb.sb_agblocks &&
197 agblkno != 0 &&
198 ioff < (1 << mp->m_sb.sb_inopblog) &&
199 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
200 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
201 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100202 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000203 (unsigned long long) ino);
204 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000205 return -EFSCORRUPTED;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000206 }
207 return 0;
208}
209
210/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * Initialize a directory with its "." and ".." entries.
212 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000213int
214xfs_dir_init(
215 xfs_trans_t *tp,
216 xfs_inode_t *dp,
217 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100219 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000220 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Al Viroabbede12011-07-26 02:31:30 -0400222 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100223 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino);
224 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return error;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100226
227 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
228 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000229 return -ENOMEM;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100230
Dave Chinner0650b552014-06-06 15:01:58 +1000231 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100232 args->dp = dp;
233 args->trans = tp;
234 error = xfs_dir2_sf_create(args, pdp->i_ino);
235 kmem_free(args);
236 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239/*
240 Enter a name in a directory.
241 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000242int
243xfs_dir_createname(
244 xfs_trans_t *tp,
245 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000246 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 xfs_ino_t inum, /* new entry inode number */
248 xfs_fsblock_t *first, /* bmap's firstblock */
249 xfs_bmap_free_t *flist, /* bmap's freeblock list */
250 xfs_extlen_t total) /* bmap's total block count */
251{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100252 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000253 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 int v; /* type-checking value */
255
Al Viroabbede12011-07-26 02:31:30 -0400256 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100257 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
258 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 XFS_STATS_INC(xs_dir_create);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000261
Dave Chinnera1358aa2014-02-27 16:51:26 +1100262 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
263 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000264 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000265
Dave Chinner0650b552014-06-06 15:01:58 +1000266 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100267 args->name = name->name;
268 args->namelen = name->len;
269 args->filetype = name->type;
270 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
271 args->inumber = inum;
272 args->dp = dp;
273 args->firstblock = first;
274 args->flist = flist;
275 args->total = total;
276 args->whichfork = XFS_DATA_FORK;
277 args->trans = tp;
278 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
279
280 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
281 rval = xfs_dir2_sf_addname(args);
282 goto out_free;
283 }
284
Dave Chinner53f82db2014-06-06 15:20:32 +1000285 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100286 if (rval)
287 goto out_free;
288 if (v) {
289 rval = xfs_dir2_block_addname(args);
290 goto out_free;
291 }
292
Dave Chinner53f82db2014-06-06 15:20:32 +1000293 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100294 if (rval)
295 goto out_free;
296 if (v)
297 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100299 rval = xfs_dir2_node_addname(args);
300
301out_free:
302 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return rval;
304}
305
306/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000307 * If doing a CI lookup and case-insensitive match, dup actual name into
308 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000310int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000311xfs_dir_cilookup_result(
312 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100313 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000314 int len)
315{
316 if (args->cmpresult == XFS_CMP_DIFFERENT)
Dave Chinner24513372014-06-25 14:58:08 +1000317 return -ENOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000318 if (args->cmpresult != XFS_CMP_CASE ||
319 !(args->op_flags & XFS_DA_OP_CILOOKUP))
Dave Chinner24513372014-06-25 14:58:08 +1000320 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000321
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400322 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000323 if (!args->value)
Dave Chinner24513372014-06-25 14:58:08 +1000324 return -ENOMEM;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000325
326 memcpy(args->value, name, len);
327 args->valuelen = len;
Dave Chinner24513372014-06-25 14:58:08 +1000328 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000329}
330
331/*
332 * Lookup a name in a directory, give back the inode number.
333 * If ci_name is not NULL, returns the actual name in ci_name if it differs
334 * to name, or ci_name->name is set to NULL for an exact match.
335 */
336
337int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000338xfs_dir_lookup(
339 xfs_trans_t *tp,
340 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000341 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000342 xfs_ino_t *inum, /* out: inode number */
343 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100345 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000346 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 int v; /* type-checking value */
348
Al Viroabbede12011-07-26 02:31:30 -0400349 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 XFS_STATS_INC(xs_dir_lookup);
351
Dave Chinnera1358aa2014-02-27 16:51:26 +1100352 /*
353 * We need to use KM_NOFS here so that lockdep will not throw false
354 * positive deadlock warnings on a non-transactional lookup path. It is
355 * safe to recurse into inode recalim in that case, but lockdep can't
356 * easily be taught about it. Hence KM_NOFS avoids having to add more
357 * lockdep Doing this avoids having to add a bunch of lockdep class
358 * annotations into the reclaim path for the ilock.
359 */
360 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
Dave Chinner0650b552014-06-06 15:01:58 +1000361 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100362 args->name = name->name;
363 args->namelen = name->len;
364 args->filetype = name->type;
365 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
366 args->dp = dp;
367 args->whichfork = XFS_DATA_FORK;
368 args->trans = tp;
369 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000370 if (ci_name)
Dave Chinnera1358aa2014-02-27 16:51:26 +1100371 args->op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000372
Dave Chinnera1358aa2014-02-27 16:51:26 +1100373 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
374 rval = xfs_dir2_sf_lookup(args);
375 goto out_check_rval;
376 }
377
Dave Chinner53f82db2014-06-06 15:20:32 +1000378 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100379 if (rval)
380 goto out_free;
381 if (v) {
382 rval = xfs_dir2_block_lookup(args);
383 goto out_check_rval;
384 }
385
Dave Chinner53f82db2014-06-06 15:20:32 +1000386 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100387 if (rval)
388 goto out_free;
389 if (v)
390 rval = xfs_dir2_leaf_lookup(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100392 rval = xfs_dir2_node_lookup(args);
393
394out_check_rval:
Dave Chinner24513372014-06-25 14:58:08 +1000395 if (rval == -EEXIST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000397 if (!rval) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100398 *inum = args->inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000399 if (ci_name) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100400 ci_name->name = args->value;
401 ci_name->len = args->valuelen;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000402 }
403 }
Dave Chinnera1358aa2014-02-27 16:51:26 +1100404out_free:
405 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return rval;
407}
408
409/*
410 * Remove an entry from a directory.
411 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000412int
413xfs_dir_removename(
414 xfs_trans_t *tp,
415 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000416 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000417 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 xfs_fsblock_t *first, /* bmap's firstblock */
419 xfs_bmap_free_t *flist, /* bmap's freeblock list */
420 xfs_extlen_t total) /* bmap's total block count */
421{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100422 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000423 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 int v; /* type-checking value */
425
Al Viroabbede12011-07-26 02:31:30 -0400426 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000428
Dave Chinnera1358aa2014-02-27 16:51:26 +1100429 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
430 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000431 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000432
Dave Chinner0650b552014-06-06 15:01:58 +1000433 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100434 args->name = name->name;
435 args->namelen = name->len;
436 args->filetype = name->type;
437 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
438 args->inumber = ino;
439 args->dp = dp;
440 args->firstblock = first;
441 args->flist = flist;
442 args->total = total;
443 args->whichfork = XFS_DATA_FORK;
444 args->trans = tp;
445
446 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
447 rval = xfs_dir2_sf_removename(args);
448 goto out_free;
449 }
450
Dave Chinner53f82db2014-06-06 15:20:32 +1000451 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100452 if (rval)
453 goto out_free;
454 if (v) {
455 rval = xfs_dir2_block_removename(args);
456 goto out_free;
457 }
458
Dave Chinner53f82db2014-06-06 15:20:32 +1000459 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100460 if (rval)
461 goto out_free;
462 if (v)
463 rval = xfs_dir2_leaf_removename(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100465 rval = xfs_dir2_node_removename(args);
466out_free:
467 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return rval;
469}
470
471/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * Replace the inode number of a directory entry.
473 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000474int
475xfs_dir_replace(
476 xfs_trans_t *tp,
477 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000478 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 xfs_ino_t inum, /* new inode number */
480 xfs_fsblock_t *first, /* bmap's firstblock */
481 xfs_bmap_free_t *flist, /* bmap's freeblock list */
482 xfs_extlen_t total) /* bmap's total block count */
483{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100484 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000485 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 int v; /* type-checking value */
487
Al Viroabbede12011-07-26 02:31:30 -0400488 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Dave Chinnera1358aa2014-02-27 16:51:26 +1100490 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
491 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000493
Dave Chinnera1358aa2014-02-27 16:51:26 +1100494 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
495 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000496 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000497
Dave Chinner0650b552014-06-06 15:01:58 +1000498 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100499 args->name = name->name;
500 args->namelen = name->len;
501 args->filetype = name->type;
502 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
503 args->inumber = inum;
504 args->dp = dp;
505 args->firstblock = first;
506 args->flist = flist;
507 args->total = total;
508 args->whichfork = XFS_DATA_FORK;
509 args->trans = tp;
510
511 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
512 rval = xfs_dir2_sf_replace(args);
513 goto out_free;
514 }
515
Dave Chinner53f82db2014-06-06 15:20:32 +1000516 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100517 if (rval)
518 goto out_free;
519 if (v) {
520 rval = xfs_dir2_block_replace(args);
521 goto out_free;
522 }
523
Dave Chinner53f82db2014-06-06 15:20:32 +1000524 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100525 if (rval)
526 goto out_free;
527 if (v)
528 rval = xfs_dir2_leaf_replace(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100530 rval = xfs_dir2_node_replace(args);
531out_free:
532 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return rval;
534}
535
536/*
537 * See if this entry can be added to the directory without allocating space.
538 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000539int
540xfs_dir_canenter(
541 xfs_trans_t *tp,
542 xfs_inode_t *dp,
Eric Sandeen94f3cad2014-09-09 11:57:52 +1000543 struct xfs_name *name) /* name of entry to add */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100545 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000546 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 int v; /* type-checking value */
548
Al Viroabbede12011-07-26 02:31:30 -0400549 ASSERT(S_ISDIR(dp->i_d.di_mode));
Barry Naujok556b8b12008-04-10 12:22:07 +1000550
Dave Chinnera1358aa2014-02-27 16:51:26 +1100551 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
552 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000553 return -ENOMEM;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100554
Dave Chinner0650b552014-06-06 15:01:58 +1000555 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100556 args->name = name->name;
557 args->namelen = name->len;
558 args->filetype = name->type;
559 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
560 args->dp = dp;
561 args->whichfork = XFS_DATA_FORK;
562 args->trans = tp;
563 args->op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME |
Barry Naujok6a178102008-05-21 16:42:05 +1000564 XFS_DA_OP_OKNOENT;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000565
Dave Chinnera1358aa2014-02-27 16:51:26 +1100566 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
567 rval = xfs_dir2_sf_addname(args);
568 goto out_free;
569 }
570
Dave Chinner53f82db2014-06-06 15:20:32 +1000571 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100572 if (rval)
573 goto out_free;
574 if (v) {
575 rval = xfs_dir2_block_addname(args);
576 goto out_free;
577 }
578
Dave Chinner53f82db2014-06-06 15:20:32 +1000579 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100580 if (rval)
581 goto out_free;
582 if (v)
583 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100585 rval = xfs_dir2_node_addname(args);
586out_free:
587 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return rval;
589}
590
591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * Utility routines.
593 */
594
595/*
596 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200597 *
598 * This routine is for data and free blocks, not leaf/node blocks which are
599 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000601int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200603 struct xfs_da_args *args,
604 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
605 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200607 struct xfs_inode *dp = args->dp;
608 struct xfs_mount *mp = dp->i_mount;
609 xfs_fileoff_t bno; /* directory offset of new block */
610 int count; /* count of filesystem blocks */
611 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000613 trace_xfs_dir2_grow_inode(args, space);
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * Set lowest possible block in the space requested.
617 */
618 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
Dave Chinnerd6cf1302014-06-06 15:14:11 +1000619 count = args->geo->fsbcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200620
621 error = xfs_da_grow_inode_int(args, &bno, count);
622 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000625 *dbp = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /*
628 * Update file's size if this is the data space and it grew.
629 */
630 if (space == XFS_DIR2_DATA_SPACE) {
631 xfs_fsize_t size; /* directory file (data) size */
632
633 size = XFS_FSB_TO_B(mp, bno + count);
634 if (size > dp->i_d.di_size) {
635 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200636 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 }
639 return 0;
640}
641
642/*
643 * See if the directory is a single-block form directory.
644 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000645int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646xfs_dir2_isblock(
Dave Chinner53f82db2014-06-06 15:20:32 +1000647 struct xfs_da_args *args,
648 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Dave Chinner53f82db2014-06-06 15:20:32 +1000650 xfs_fileoff_t last; /* last file offset */
651 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Dave Chinner53f82db2014-06-06 15:20:32 +1000653 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000655 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize;
656 ASSERT(rval == 0 || args->dp->i_d.di_size == args->geo->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *vp = rval;
658 return 0;
659}
660
661/*
662 * See if the directory is a single-leaf form directory.
663 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000664int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665xfs_dir2_isleaf(
Dave Chinner53f82db2014-06-06 15:20:32 +1000666 struct xfs_da_args *args,
667 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Dave Chinner53f82db2014-06-06 15:20:32 +1000669 xfs_fileoff_t last; /* last file offset */
670 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Dave Chinner53f82db2014-06-06 15:20:32 +1000672 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000674 *vp = last == args->geo->leafblk + args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return 0;
676}
677
678/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * Remove the given block from the directory.
680 * This routine is used for data and free blocks, leaf/node are done
681 * by xfs_da_shrink_inode.
682 */
683int
684xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000685 xfs_da_args_t *args,
686 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000687 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 xfs_fileoff_t bno; /* directory file offset */
690 xfs_dablk_t da; /* directory file offset */
691 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000692 xfs_inode_t *dp;
693 int error;
694 xfs_mount_t *mp;
695 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000697 trace_xfs_dir2_shrink_inode(args, db);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 dp = args->dp;
700 mp = dp->i_mount;
701 tp = args->trans;
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000702 da = xfs_dir2_db_to_da(args->geo, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
704 * Unmap the fsblock(s).
705 */
Dave Chinnerd6cf1302014-06-06 15:14:11 +1000706 if ((error = xfs_bunmapi(tp, dp, da, args->geo->fsbcount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000708 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /*
710 * ENOSPC actually can happen if we're in a removename with
711 * no space reservation, and the resulting block removal
712 * would cause a bmap btree split or conversion from extents
713 * to btree. This can only happen for un-fragmented
714 * directory blocks, since you need to be punching out
715 * the middle of an extent.
716 * In this case we need to leave the block in the file,
717 * and not binval it.
718 * So the block has to be in a consistent empty state
719 * and appropriately logged.
720 * We don't free up the buffer, the caller can tell it
721 * hasn't happened since it got an error back.
722 */
723 return error;
724 }
725 ASSERT(done);
726 /*
727 * Invalidate the buffer from the transaction.
728 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000729 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 /*
731 * If it's not a data block, we're done.
732 */
Dave Chinner30028032014-06-06 15:08:18 +1000733 if (db >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return 0;
735 /*
736 * If the block isn't the last one in the directory, we're done.
737 */
Dave Chinner9b3b5522014-06-06 15:06:53 +1000738 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return 0;
740 bno = da;
741 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
742 /*
743 * This can't really happen unless there's kernel corruption.
744 */
745 return error;
746 }
Dave Chinner7dda6e82014-06-06 15:11:18 +1000747 if (db == args->geo->datablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 ASSERT(bno == 0);
749 else
750 ASSERT(bno > 0);
751 /*
752 * Set the size to the new last block.
753 */
754 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
755 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
756 return 0;
757}