blob: 42799d88ecc0adb475aae85cf2aa030e1c1c1ff3 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110024#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110027#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100030#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020031#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000033#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Dave Chinner0cb97762013-08-12 20:50:09 +100035struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR };
36
Dave Chinner1b767ee2014-12-04 09:43:17 +110037/*
38 * @mode, if set, indicates that the type field needs to be set up.
39 * This uses the transformation from file mode to DT_* as defined in linux/fs.h
40 * for file type specification. This will be propagated into the directory
41 * structure if appropriate for the given operation and filesystem config.
42 */
43const unsigned char xfs_mode_to_ftype[S_IFMT >> S_SHIFT] = {
44 [0] = XFS_DIR3_FT_UNKNOWN,
45 [S_IFREG >> S_SHIFT] = XFS_DIR3_FT_REG_FILE,
46 [S_IFDIR >> S_SHIFT] = XFS_DIR3_FT_DIR,
47 [S_IFCHR >> S_SHIFT] = XFS_DIR3_FT_CHRDEV,
48 [S_IFBLK >> S_SHIFT] = XFS_DIR3_FT_BLKDEV,
49 [S_IFIFO >> S_SHIFT] = XFS_DIR3_FT_FIFO,
50 [S_IFSOCK >> S_SHIFT] = XFS_DIR3_FT_SOCK,
51 [S_IFLNK >> S_SHIFT] = XFS_DIR3_FT_SYMLINK,
52};
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Barry Naujok189f4bf2008-05-21 16:58:55 +100054/*
55 * ASCII case-insensitive (ie. A-Z) support for directories that was
56 * used in IRIX.
57 */
58STATIC xfs_dahash_t
59xfs_ascii_ci_hashname(
60 struct xfs_name *name)
61{
62 xfs_dahash_t hash;
63 int i;
64
65 for (i = 0, hash = 0; i < name->len; i++)
66 hash = tolower(name->name[i]) ^ rol32(hash, 7);
67
68 return hash;
69}
70
71STATIC enum xfs_dacmp
72xfs_ascii_ci_compname(
73 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +110074 const unsigned char *name,
75 int len)
Barry Naujok189f4bf2008-05-21 16:58:55 +100076{
77 enum xfs_dacmp result;
78 int i;
79
80 if (args->namelen != len)
81 return XFS_CMP_DIFFERENT;
82
83 result = XFS_CMP_EXACT;
84 for (i = 0; i < len; i++) {
85 if (args->name[i] == name[i])
86 continue;
87 if (tolower(args->name[i]) != tolower(name[i]))
88 return XFS_CMP_DIFFERENT;
89 result = XFS_CMP_CASE;
90 }
91
92 return result;
93}
94
95static struct xfs_nameops xfs_ascii_ci_nameops = {
96 .hashname = xfs_ascii_ci_hashname,
97 .compname = xfs_ascii_ci_compname,
98};
99
Dave Chinner0650b552014-06-06 15:01:58 +1000100int
101xfs_da_mount(
102 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Dave Chinner0650b552014-06-06 15:01:58 +1000104 struct xfs_da_geometry *dageo;
105 int nodehdr_size;
Dave Chinner37804372013-08-26 14:13:30 +1000106
107
Dave Chinner5d074a42014-05-20 07:46:55 +1000108 ASSERT(mp->m_sb.sb_versionnum & XFS_SB_VERSION_DIRV2BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
110 XFS_MAX_BLOCKSIZE);
Dave Chinner4bceb182013-10-29 22:11:51 +1100111
112 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL);
113 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL);
114
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100115 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size;
Dave Chinner0650b552014-06-06 15:01:58 +1000116 mp->m_dir_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
117 KM_SLEEP | KM_MAYFAIL);
118 mp->m_attr_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
119 KM_SLEEP | KM_MAYFAIL);
120 if (!mp->m_dir_geo || !mp->m_attr_geo) {
121 kmem_free(mp->m_dir_geo);
122 kmem_free(mp->m_attr_geo);
Dave Chinner24513372014-06-25 14:58:08 +1000123 return -ENOMEM;
Dave Chinner0650b552014-06-06 15:01:58 +1000124 }
Dave Chinner37804372013-08-26 14:13:30 +1000125
Dave Chinner0650b552014-06-06 15:01:58 +1000126 /* set up directory geometry */
127 dageo = mp->m_dir_geo;
128 dageo->blklog = mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog;
129 dageo->fsblog = mp->m_sb.sb_blocklog;
130 dageo->blksize = 1 << dageo->blklog;
131 dageo->fsbcount = 1 << mp->m_sb.sb_dirblklog;
Dave Chinner30028032014-06-06 15:08:18 +1000132
133 /*
134 * Now we've set up the block conversion variables, we can calculate the
135 * segment block constants using the geometry structure.
136 */
137 dageo->datablk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_DATA_OFFSET);
138 dageo->leafblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_LEAF_OFFSET);
139 dageo->freeblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_FREE_OFFSET);
Dave Chinner0650b552014-06-06 15:01:58 +1000140 dageo->node_ents = (dageo->blksize - nodehdr_size) /
141 (uint)sizeof(xfs_da_node_entry_t);
142 dageo->magicpct = (dageo->blksize * 37) / 100;
143
144 /* set up attribute geometry - single fsb only */
145 dageo = mp->m_attr_geo;
146 dageo->blklog = mp->m_sb.sb_blocklog;
147 dageo->fsblog = mp->m_sb.sb_blocklog;
148 dageo->blksize = 1 << dageo->blklog;
149 dageo->fsbcount = 1;
150 dageo->node_ents = (dageo->blksize - nodehdr_size) /
151 (uint)sizeof(xfs_da_node_entry_t);
152 dageo->magicpct = (dageo->blksize * 37) / 100;
153
Barry Naujok189f4bf2008-05-21 16:58:55 +1000154 if (xfs_sb_version_hasasciici(&mp->m_sb))
155 mp->m_dirnameops = &xfs_ascii_ci_nameops;
156 else
157 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100158
Dave Chinner0650b552014-06-06 15:01:58 +1000159 return 0;
160}
161
162void
163xfs_da_unmount(
164 struct xfs_mount *mp)
165{
166 kmem_free(mp->m_dir_geo);
167 kmem_free(mp->m_attr_geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/*
171 * Return 1 if directory contains only "." and "..".
172 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000173int
174xfs_dir_isempty(
175 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200177 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Al Viroabbede12011-07-26 02:31:30 -0400179 ASSERT(S_ISDIR(dp->i_d.di_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000180 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
183 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200184 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
185 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000189 * Validate a given inode number.
190 */
191int
192xfs_dir_ino_validate(
193 xfs_mount_t *mp,
194 xfs_ino_t ino)
195{
196 xfs_agblock_t agblkno;
197 xfs_agino_t agino;
198 xfs_agnumber_t agno;
199 int ino_ok;
200 int ioff;
201
202 agno = XFS_INO_TO_AGNO(mp, ino);
203 agblkno = XFS_INO_TO_AGBNO(mp, ino);
204 ioff = XFS_INO_TO_OFFSET(mp, ino);
205 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
206 ino_ok =
207 agno < mp->m_sb.sb_agcount &&
208 agblkno < mp->m_sb.sb_agblocks &&
209 agblkno != 0 &&
210 ioff < (1 << mp->m_sb.sb_inopblog) &&
211 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
212 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
213 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100214 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000215 (unsigned long long) ino);
216 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000217 return -EFSCORRUPTED;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000218 }
219 return 0;
220}
221
222/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 * Initialize a directory with its "." and ".." entries.
224 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000225int
226xfs_dir_init(
227 xfs_trans_t *tp,
228 xfs_inode_t *dp,
229 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100231 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000232 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Al Viroabbede12011-07-26 02:31:30 -0400234 ASSERT(S_ISDIR(dp->i_d.di_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100235 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino);
236 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return error;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100238
239 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
240 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000241 return -ENOMEM;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100242
Dave Chinner0650b552014-06-06 15:01:58 +1000243 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100244 args->dp = dp;
245 args->trans = tp;
246 error = xfs_dir2_sf_create(args, pdp->i_ino);
247 kmem_free(args);
248 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251/*
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000252 * Enter a name in a directory, or check for available space.
253 * If inum is 0, only the available space test is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000255int
256xfs_dir_createname(
257 xfs_trans_t *tp,
258 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000259 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 xfs_ino_t inum, /* new entry inode number */
261 xfs_fsblock_t *first, /* bmap's firstblock */
262 xfs_bmap_free_t *flist, /* bmap's freeblock list */
263 xfs_extlen_t total) /* bmap's total block count */
264{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100265 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000266 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int v; /* type-checking value */
268
Al Viroabbede12011-07-26 02:31:30 -0400269 ASSERT(S_ISDIR(dp->i_d.di_mode));
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000270 if (inum) {
271 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
272 if (rval)
273 return rval;
274 XFS_STATS_INC(xs_dir_create);
275 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000276
Dave Chinnera1358aa2014-02-27 16:51:26 +1100277 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
278 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000279 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000280
Dave Chinner0650b552014-06-06 15:01:58 +1000281 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100282 args->name = name->name;
283 args->namelen = name->len;
284 args->filetype = name->type;
285 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
286 args->inumber = inum;
287 args->dp = dp;
288 args->firstblock = first;
289 args->flist = flist;
290 args->total = total;
291 args->whichfork = XFS_DATA_FORK;
292 args->trans = tp;
293 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000294 if (!inum)
295 args->op_flags |= XFS_DA_OP_JUSTCHECK;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100296
297 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
298 rval = xfs_dir2_sf_addname(args);
299 goto out_free;
300 }
301
Dave Chinner53f82db2014-06-06 15:20:32 +1000302 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100303 if (rval)
304 goto out_free;
305 if (v) {
306 rval = xfs_dir2_block_addname(args);
307 goto out_free;
308 }
309
Dave Chinner53f82db2014-06-06 15:20:32 +1000310 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100311 if (rval)
312 goto out_free;
313 if (v)
314 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100316 rval = xfs_dir2_node_addname(args);
317
318out_free:
319 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return rval;
321}
322
323/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000324 * If doing a CI lookup and case-insensitive match, dup actual name into
325 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000327int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000328xfs_dir_cilookup_result(
329 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100330 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000331 int len)
332{
333 if (args->cmpresult == XFS_CMP_DIFFERENT)
Dave Chinner24513372014-06-25 14:58:08 +1000334 return -ENOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000335 if (args->cmpresult != XFS_CMP_CASE ||
336 !(args->op_flags & XFS_DA_OP_CILOOKUP))
Dave Chinner24513372014-06-25 14:58:08 +1000337 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000338
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400339 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000340 if (!args->value)
Dave Chinner24513372014-06-25 14:58:08 +1000341 return -ENOMEM;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000342
343 memcpy(args->value, name, len);
344 args->valuelen = len;
Dave Chinner24513372014-06-25 14:58:08 +1000345 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000346}
347
348/*
349 * Lookup a name in a directory, give back the inode number.
350 * If ci_name is not NULL, returns the actual name in ci_name if it differs
351 * to name, or ci_name->name is set to NULL for an exact match.
352 */
353
354int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000355xfs_dir_lookup(
356 xfs_trans_t *tp,
357 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000358 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000359 xfs_ino_t *inum, /* out: inode number */
360 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100362 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000363 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int v; /* type-checking value */
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000365 int lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Al Viroabbede12011-07-26 02:31:30 -0400367 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 XFS_STATS_INC(xs_dir_lookup);
369
Dave Chinnera1358aa2014-02-27 16:51:26 +1100370 /*
371 * We need to use KM_NOFS here so that lockdep will not throw false
372 * positive deadlock warnings on a non-transactional lookup path. It is
373 * safe to recurse into inode recalim in that case, but lockdep can't
374 * easily be taught about it. Hence KM_NOFS avoids having to add more
375 * lockdep Doing this avoids having to add a bunch of lockdep class
376 * annotations into the reclaim path for the ilock.
377 */
378 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
Dave Chinner0650b552014-06-06 15:01:58 +1000379 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100380 args->name = name->name;
381 args->namelen = name->len;
382 args->filetype = name->type;
383 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
384 args->dp = dp;
385 args->whichfork = XFS_DATA_FORK;
386 args->trans = tp;
387 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000388 if (ci_name)
Dave Chinnera1358aa2014-02-27 16:51:26 +1100389 args->op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000390
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000391 lock_mode = xfs_ilock_data_map_shared(dp);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100392 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
393 rval = xfs_dir2_sf_lookup(args);
394 goto out_check_rval;
395 }
396
Dave Chinner53f82db2014-06-06 15:20:32 +1000397 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100398 if (rval)
399 goto out_free;
400 if (v) {
401 rval = xfs_dir2_block_lookup(args);
402 goto out_check_rval;
403 }
404
Dave Chinner53f82db2014-06-06 15:20:32 +1000405 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100406 if (rval)
407 goto out_free;
408 if (v)
409 rval = xfs_dir2_leaf_lookup(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100411 rval = xfs_dir2_node_lookup(args);
412
413out_check_rval:
Dave Chinner24513372014-06-25 14:58:08 +1000414 if (rval == -EEXIST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000416 if (!rval) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100417 *inum = args->inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000418 if (ci_name) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100419 ci_name->name = args->value;
420 ci_name->len = args->valuelen;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000421 }
422 }
Dave Chinnera1358aa2014-02-27 16:51:26 +1100423out_free:
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000424 xfs_iunlock(dp, lock_mode);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100425 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return rval;
427}
428
429/*
430 * Remove an entry from a directory.
431 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000432int
433xfs_dir_removename(
434 xfs_trans_t *tp,
435 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000436 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000437 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 xfs_fsblock_t *first, /* bmap's firstblock */
439 xfs_bmap_free_t *flist, /* bmap's freeblock list */
440 xfs_extlen_t total) /* bmap's total block count */
441{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100442 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000443 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 int v; /* type-checking value */
445
Al Viroabbede12011-07-26 02:31:30 -0400446 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 XFS_STATS_INC(xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000448
Dave Chinnera1358aa2014-02-27 16:51:26 +1100449 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
450 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000451 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000452
Dave Chinner0650b552014-06-06 15:01:58 +1000453 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100454 args->name = name->name;
455 args->namelen = name->len;
456 args->filetype = name->type;
457 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
458 args->inumber = ino;
459 args->dp = dp;
460 args->firstblock = first;
461 args->flist = flist;
462 args->total = total;
463 args->whichfork = XFS_DATA_FORK;
464 args->trans = tp;
465
466 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
467 rval = xfs_dir2_sf_removename(args);
468 goto out_free;
469 }
470
Dave Chinner53f82db2014-06-06 15:20:32 +1000471 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100472 if (rval)
473 goto out_free;
474 if (v) {
475 rval = xfs_dir2_block_removename(args);
476 goto out_free;
477 }
478
Dave Chinner53f82db2014-06-06 15:20:32 +1000479 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100480 if (rval)
481 goto out_free;
482 if (v)
483 rval = xfs_dir2_leaf_removename(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100485 rval = xfs_dir2_node_removename(args);
486out_free:
487 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return rval;
489}
490
491/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 * Replace the inode number of a directory entry.
493 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000494int
495xfs_dir_replace(
496 xfs_trans_t *tp,
497 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000498 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 xfs_ino_t inum, /* new inode number */
500 xfs_fsblock_t *first, /* bmap's firstblock */
501 xfs_bmap_free_t *flist, /* bmap's freeblock list */
502 xfs_extlen_t total) /* bmap's total block count */
503{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100504 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000505 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 int v; /* type-checking value */
507
Al Viroabbede12011-07-26 02:31:30 -0400508 ASSERT(S_ISDIR(dp->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dave Chinnera1358aa2014-02-27 16:51:26 +1100510 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
511 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000513
Dave Chinnera1358aa2014-02-27 16:51:26 +1100514 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
515 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000516 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000517
Dave Chinner0650b552014-06-06 15:01:58 +1000518 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100519 args->name = name->name;
520 args->namelen = name->len;
521 args->filetype = name->type;
522 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
523 args->inumber = inum;
524 args->dp = dp;
525 args->firstblock = first;
526 args->flist = flist;
527 args->total = total;
528 args->whichfork = XFS_DATA_FORK;
529 args->trans = tp;
530
531 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
532 rval = xfs_dir2_sf_replace(args);
533 goto out_free;
534 }
535
Dave Chinner53f82db2014-06-06 15:20:32 +1000536 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100537 if (rval)
538 goto out_free;
539 if (v) {
540 rval = xfs_dir2_block_replace(args);
541 goto out_free;
542 }
543
Dave Chinner53f82db2014-06-06 15:20:32 +1000544 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100545 if (rval)
546 goto out_free;
547 if (v)
548 rval = xfs_dir2_leaf_replace(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100550 rval = xfs_dir2_node_replace(args);
551out_free:
552 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return rval;
554}
555
556/*
557 * See if this entry can be added to the directory without allocating space.
558 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000559int
560xfs_dir_canenter(
561 xfs_trans_t *tp,
562 xfs_inode_t *dp,
Eric Sandeen94f3cad2014-09-09 11:57:52 +1000563 struct xfs_name *name) /* name of entry to add */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000565 return xfs_dir_createname(tp, dp, name, 0, NULL, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * Utility routines.
570 */
571
572/*
573 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200574 *
575 * This routine is for data and free blocks, not leaf/node blocks which are
576 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000578int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200580 struct xfs_da_args *args,
581 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
582 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200584 struct xfs_inode *dp = args->dp;
585 struct xfs_mount *mp = dp->i_mount;
586 xfs_fileoff_t bno; /* directory offset of new block */
587 int count; /* count of filesystem blocks */
588 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000590 trace_xfs_dir2_grow_inode(args, space);
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /*
593 * Set lowest possible block in the space requested.
594 */
595 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
Dave Chinnerd6cf1302014-06-06 15:14:11 +1000596 count = args->geo->fsbcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200597
598 error = xfs_da_grow_inode_int(args, &bno, count);
599 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Dave Chinner2998ab12014-06-06 15:07:53 +1000602 *dbp = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /*
605 * Update file's size if this is the data space and it grew.
606 */
607 if (space == XFS_DIR2_DATA_SPACE) {
608 xfs_fsize_t size; /* directory file (data) size */
609
610 size = XFS_FSB_TO_B(mp, bno + count);
611 if (size > dp->i_d.di_size) {
612 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200613 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615 }
616 return 0;
617}
618
619/*
620 * See if the directory is a single-block form directory.
621 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000622int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623xfs_dir2_isblock(
Dave Chinner53f82db2014-06-06 15:20:32 +1000624 struct xfs_da_args *args,
625 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Dave Chinner53f82db2014-06-06 15:20:32 +1000627 xfs_fileoff_t last; /* last file offset */
628 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Dave Chinner53f82db2014-06-06 15:20:32 +1000630 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000632 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize;
633 ASSERT(rval == 0 || args->dp->i_d.di_size == args->geo->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 *vp = rval;
635 return 0;
636}
637
638/*
639 * See if the directory is a single-leaf form directory.
640 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000641int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642xfs_dir2_isleaf(
Dave Chinner53f82db2014-06-06 15:20:32 +1000643 struct xfs_da_args *args,
644 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Dave Chinner53f82db2014-06-06 15:20:32 +1000646 xfs_fileoff_t last; /* last file offset */
647 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Dave Chinner53f82db2014-06-06 15:20:32 +1000649 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000651 *vp = last == args->geo->leafblk + args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return 0;
653}
654
655/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 * Remove the given block from the directory.
657 * This routine is used for data and free blocks, leaf/node are done
658 * by xfs_da_shrink_inode.
659 */
660int
661xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000662 xfs_da_args_t *args,
663 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000664 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 xfs_fileoff_t bno; /* directory file offset */
667 xfs_dablk_t da; /* directory file offset */
668 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000669 xfs_inode_t *dp;
670 int error;
671 xfs_mount_t *mp;
672 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000674 trace_xfs_dir2_shrink_inode(args, db);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 dp = args->dp;
677 mp = dp->i_mount;
678 tp = args->trans;
Dave Chinner2998ab12014-06-06 15:07:53 +1000679 da = xfs_dir2_db_to_da(args->geo, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /*
681 * Unmap the fsblock(s).
682 */
Dave Chinnerd6cf1302014-06-06 15:14:11 +1000683 if ((error = xfs_bunmapi(tp, dp, da, args->geo->fsbcount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 XFS_BMAPI_METADATA, 0, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000685 &done))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * ENOSPC actually can happen if we're in a removename with
688 * no space reservation, and the resulting block removal
689 * would cause a bmap btree split or conversion from extents
690 * to btree. This can only happen for un-fragmented
691 * directory blocks, since you need to be punching out
692 * the middle of an extent.
693 * In this case we need to leave the block in the file,
694 * and not binval it.
695 * So the block has to be in a consistent empty state
696 * and appropriately logged.
697 * We don't free up the buffer, the caller can tell it
698 * hasn't happened since it got an error back.
699 */
700 return error;
701 }
702 ASSERT(done);
703 /*
704 * Invalidate the buffer from the transaction.
705 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000706 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /*
708 * If it's not a data block, we're done.
709 */
Dave Chinner30028032014-06-06 15:08:18 +1000710 if (db >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return 0;
712 /*
713 * If the block isn't the last one in the directory, we're done.
714 */
Dave Chinner9b3b5522014-06-06 15:06:53 +1000715 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return 0;
717 bno = da;
718 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
719 /*
720 * This can't really happen unless there's kernel corruption.
721 */
722 return error;
723 }
Dave Chinner7dda6e82014-06-06 15:11:18 +1000724 if (db == args->geo->datablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 ASSERT(bno == 0);
726 else
727 ASSERT(bno > 0);
728 /*
729 * Set the size to the new last block.
730 */
731 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
732 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
733 return 0;
734}