blob: 4f7913f84b28c78b30c6925298711144893819ce [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"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100024#include "xfs_defer.h"
Dave Chinner57062782013-10-15 09:17:51 +110025#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110028#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100031#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020032#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Dave Chinner0cb97762013-08-12 20:50:09 +100036struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR };
37
Dave Chinner1b767ee2014-12-04 09:43:17 +110038/*
39 * @mode, if set, indicates that the type field needs to be set up.
40 * This uses the transformation from file mode to DT_* as defined in linux/fs.h
41 * for file type specification. This will be propagated into the directory
42 * structure if appropriate for the given operation and filesystem config.
43 */
44const unsigned char xfs_mode_to_ftype[S_IFMT >> S_SHIFT] = {
45 [0] = XFS_DIR3_FT_UNKNOWN,
46 [S_IFREG >> S_SHIFT] = XFS_DIR3_FT_REG_FILE,
47 [S_IFDIR >> S_SHIFT] = XFS_DIR3_FT_DIR,
48 [S_IFCHR >> S_SHIFT] = XFS_DIR3_FT_CHRDEV,
49 [S_IFBLK >> S_SHIFT] = XFS_DIR3_FT_BLKDEV,
50 [S_IFIFO >> S_SHIFT] = XFS_DIR3_FT_FIFO,
51 [S_IFSOCK >> S_SHIFT] = XFS_DIR3_FT_SOCK,
52 [S_IFLNK >> S_SHIFT] = XFS_DIR3_FT_SYMLINK,
53};
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Barry Naujok189f4bf2008-05-21 16:58:55 +100055/*
56 * ASCII case-insensitive (ie. A-Z) support for directories that was
57 * used in IRIX.
58 */
59STATIC xfs_dahash_t
60xfs_ascii_ci_hashname(
61 struct xfs_name *name)
62{
63 xfs_dahash_t hash;
64 int i;
65
66 for (i = 0, hash = 0; i < name->len; i++)
67 hash = tolower(name->name[i]) ^ rol32(hash, 7);
68
69 return hash;
70}
71
72STATIC enum xfs_dacmp
73xfs_ascii_ci_compname(
74 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +110075 const unsigned char *name,
76 int len)
Barry Naujok189f4bf2008-05-21 16:58:55 +100077{
78 enum xfs_dacmp result;
79 int i;
80
81 if (args->namelen != len)
82 return XFS_CMP_DIFFERENT;
83
84 result = XFS_CMP_EXACT;
85 for (i = 0; i < len; i++) {
86 if (args->name[i] == name[i])
87 continue;
88 if (tolower(args->name[i]) != tolower(name[i]))
89 return XFS_CMP_DIFFERENT;
90 result = XFS_CMP_CASE;
91 }
92
93 return result;
94}
95
Bhumika Goyalcf7841c2016-11-28 14:57:42 +110096static const struct xfs_nameops xfs_ascii_ci_nameops = {
Barry Naujok189f4bf2008-05-21 16:58:55 +100097 .hashname = xfs_ascii_ci_hashname,
98 .compname = xfs_ascii_ci_compname,
99};
100
Dave Chinner0650b552014-06-06 15:01:58 +1000101int
102xfs_da_mount(
103 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Dave Chinner0650b552014-06-06 15:01:58 +1000105 struct xfs_da_geometry *dageo;
106 int nodehdr_size;
Dave Chinner37804372013-08-26 14:13:30 +1000107
108
Dave Chinner5d074a42014-05-20 07:46:55 +1000109 ASSERT(mp->m_sb.sb_versionnum & XFS_SB_VERSION_DIRV2BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
111 XFS_MAX_BLOCKSIZE);
Dave Chinner4bceb182013-10-29 22:11:51 +1100112
113 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL);
114 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL);
115
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100116 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size;
Dave Chinner0650b552014-06-06 15:01:58 +1000117 mp->m_dir_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
118 KM_SLEEP | KM_MAYFAIL);
119 mp->m_attr_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
120 KM_SLEEP | KM_MAYFAIL);
121 if (!mp->m_dir_geo || !mp->m_attr_geo) {
122 kmem_free(mp->m_dir_geo);
123 kmem_free(mp->m_attr_geo);
Dave Chinner24513372014-06-25 14:58:08 +1000124 return -ENOMEM;
Dave Chinner0650b552014-06-06 15:01:58 +1000125 }
Dave Chinner37804372013-08-26 14:13:30 +1000126
Dave Chinner0650b552014-06-06 15:01:58 +1000127 /* set up directory geometry */
128 dageo = mp->m_dir_geo;
129 dageo->blklog = mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog;
130 dageo->fsblog = mp->m_sb.sb_blocklog;
131 dageo->blksize = 1 << dageo->blklog;
132 dageo->fsbcount = 1 << mp->m_sb.sb_dirblklog;
Dave Chinner30028032014-06-06 15:08:18 +1000133
134 /*
135 * Now we've set up the block conversion variables, we can calculate the
136 * segment block constants using the geometry structure.
137 */
138 dageo->datablk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_DATA_OFFSET);
139 dageo->leafblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_LEAF_OFFSET);
140 dageo->freeblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_FREE_OFFSET);
Dave Chinner0650b552014-06-06 15:01:58 +1000141 dageo->node_ents = (dageo->blksize - nodehdr_size) /
142 (uint)sizeof(xfs_da_node_entry_t);
143 dageo->magicpct = (dageo->blksize * 37) / 100;
144
145 /* set up attribute geometry - single fsb only */
146 dageo = mp->m_attr_geo;
147 dageo->blklog = mp->m_sb.sb_blocklog;
148 dageo->fsblog = mp->m_sb.sb_blocklog;
149 dageo->blksize = 1 << dageo->blklog;
150 dageo->fsbcount = 1;
151 dageo->node_ents = (dageo->blksize - nodehdr_size) /
152 (uint)sizeof(xfs_da_node_entry_t);
153 dageo->magicpct = (dageo->blksize * 37) / 100;
154
Barry Naujok189f4bf2008-05-21 16:58:55 +1000155 if (xfs_sb_version_hasasciici(&mp->m_sb))
156 mp->m_dirnameops = &xfs_ascii_ci_nameops;
157 else
158 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100159
Dave Chinner0650b552014-06-06 15:01:58 +1000160 return 0;
161}
162
163void
164xfs_da_unmount(
165 struct xfs_mount *mp)
166{
167 kmem_free(mp->m_dir_geo);
168 kmem_free(mp->m_attr_geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171/*
172 * Return 1 if directory contains only "." and "..".
173 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000174int
175xfs_dir_isempty(
176 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200178 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100180 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000181 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
184 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200185 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
186 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000190 * Validate a given inode number.
191 */
192int
193xfs_dir_ino_validate(
194 xfs_mount_t *mp,
195 xfs_ino_t ino)
196{
197 xfs_agblock_t agblkno;
198 xfs_agino_t agino;
199 xfs_agnumber_t agno;
200 int ino_ok;
201 int ioff;
202
203 agno = XFS_INO_TO_AGNO(mp, ino);
204 agblkno = XFS_INO_TO_AGBNO(mp, ino);
205 ioff = XFS_INO_TO_OFFSET(mp, ino);
206 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
207 ino_ok =
208 agno < mp->m_sb.sb_agcount &&
209 agblkno < mp->m_sb.sb_agblocks &&
210 agblkno != 0 &&
211 ioff < (1 << mp->m_sb.sb_inopblog) &&
212 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
213 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
214 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100215 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000216 (unsigned long long) ino);
217 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000218 return -EFSCORRUPTED;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000219 }
220 return 0;
221}
222
223/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 * Initialize a directory with its "." and ".." entries.
225 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000226int
227xfs_dir_init(
228 xfs_trans_t *tp,
229 xfs_inode_t *dp,
230 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100232 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000233 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100235 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100236 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino);
237 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return error;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100239
240 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
241 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000242 return -ENOMEM;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100243
Dave Chinner0650b552014-06-06 15:01:58 +1000244 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100245 args->dp = dp;
246 args->trans = tp;
247 error = xfs_dir2_sf_create(args, pdp->i_ino);
248 kmem_free(args);
249 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/*
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000253 * Enter a name in a directory, or check for available space.
254 * If inum is 0, only the available space test is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000256int
257xfs_dir_createname(
258 xfs_trans_t *tp,
259 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000260 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 xfs_ino_t inum, /* new entry inode number */
262 xfs_fsblock_t *first, /* bmap's firstblock */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000263 struct xfs_defer_ops *dfops, /* bmap's freeblock list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 xfs_extlen_t total) /* bmap's total block count */
265{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100266 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000267 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 int v; /* type-checking value */
269
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100270 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000271 if (inum) {
272 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
273 if (rval)
274 return rval;
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100275 XFS_STATS_INC(dp->i_mount, xs_dir_create);
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000276 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000277
Dave Chinnera1358aa2014-02-27 16:51:26 +1100278 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
279 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000280 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000281
Dave Chinner0650b552014-06-06 15:01:58 +1000282 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100283 args->name = name->name;
284 args->namelen = name->len;
285 args->filetype = name->type;
286 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
287 args->inumber = inum;
288 args->dp = dp;
289 args->firstblock = first;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000290 args->dfops = dfops;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100291 args->total = total;
292 args->whichfork = XFS_DATA_FORK;
293 args->trans = tp;
294 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000295 if (!inum)
296 args->op_flags |= XFS_DA_OP_JUSTCHECK;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100297
298 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
299 rval = xfs_dir2_sf_addname(args);
300 goto out_free;
301 }
302
Dave Chinner53f82db2014-06-06 15:20:32 +1000303 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100304 if (rval)
305 goto out_free;
306 if (v) {
307 rval = xfs_dir2_block_addname(args);
308 goto out_free;
309 }
310
Dave Chinner53f82db2014-06-06 15:20:32 +1000311 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100312 if (rval)
313 goto out_free;
314 if (v)
315 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100317 rval = xfs_dir2_node_addname(args);
318
319out_free:
320 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return rval;
322}
323
324/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000325 * If doing a CI lookup and case-insensitive match, dup actual name into
326 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000328int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000329xfs_dir_cilookup_result(
330 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100331 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000332 int len)
333{
334 if (args->cmpresult == XFS_CMP_DIFFERENT)
Dave Chinner24513372014-06-25 14:58:08 +1000335 return -ENOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000336 if (args->cmpresult != XFS_CMP_CASE ||
337 !(args->op_flags & XFS_DA_OP_CILOOKUP))
Dave Chinner24513372014-06-25 14:58:08 +1000338 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000339
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400340 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000341 if (!args->value)
Dave Chinner24513372014-06-25 14:58:08 +1000342 return -ENOMEM;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000343
344 memcpy(args->value, name, len);
345 args->valuelen = len;
Dave Chinner24513372014-06-25 14:58:08 +1000346 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000347}
348
349/*
350 * Lookup a name in a directory, give back the inode number.
351 * If ci_name is not NULL, returns the actual name in ci_name if it differs
352 * to name, or ci_name->name is set to NULL for an exact match.
353 */
354
355int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000356xfs_dir_lookup(
357 xfs_trans_t *tp,
358 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000359 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000360 xfs_ino_t *inum, /* out: inode number */
361 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100363 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000364 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int v; /* type-checking value */
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000366 int lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100368 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100369 XFS_STATS_INC(dp->i_mount, xs_dir_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Dave Chinnera1358aa2014-02-27 16:51:26 +1100371 /*
372 * We need to use KM_NOFS here so that lockdep will not throw false
373 * positive deadlock warnings on a non-transactional lookup path. It is
374 * safe to recurse into inode recalim in that case, but lockdep can't
375 * easily be taught about it. Hence KM_NOFS avoids having to add more
376 * lockdep Doing this avoids having to add a bunch of lockdep class
377 * annotations into the reclaim path for the ilock.
378 */
379 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
Dave Chinner0650b552014-06-06 15:01:58 +1000380 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100381 args->name = name->name;
382 args->namelen = name->len;
383 args->filetype = name->type;
384 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
385 args->dp = dp;
386 args->whichfork = XFS_DATA_FORK;
387 args->trans = tp;
388 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000389 if (ci_name)
Dave Chinnera1358aa2014-02-27 16:51:26 +1100390 args->op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000391
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000392 lock_mode = xfs_ilock_data_map_shared(dp);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100393 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
394 rval = xfs_dir2_sf_lookup(args);
395 goto out_check_rval;
396 }
397
Dave Chinner53f82db2014-06-06 15:20:32 +1000398 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100399 if (rval)
400 goto out_free;
401 if (v) {
402 rval = xfs_dir2_block_lookup(args);
403 goto out_check_rval;
404 }
405
Dave Chinner53f82db2014-06-06 15:20:32 +1000406 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100407 if (rval)
408 goto out_free;
409 if (v)
410 rval = xfs_dir2_leaf_lookup(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100412 rval = xfs_dir2_node_lookup(args);
413
414out_check_rval:
Dave Chinner24513372014-06-25 14:58:08 +1000415 if (rval == -EEXIST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000417 if (!rval) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100418 *inum = args->inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000419 if (ci_name) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100420 ci_name->name = args->value;
421 ci_name->len = args->valuelen;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000422 }
423 }
Dave Chinnera1358aa2014-02-27 16:51:26 +1100424out_free:
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000425 xfs_iunlock(dp, lock_mode);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100426 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return rval;
428}
429
430/*
431 * Remove an entry from a directory.
432 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000433int
434xfs_dir_removename(
435 xfs_trans_t *tp,
436 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000437 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000438 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfs_fsblock_t *first, /* bmap's firstblock */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000440 struct xfs_defer_ops *dfops, /* bmap's freeblock list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 xfs_extlen_t total) /* bmap's total block count */
442{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100443 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000444 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 int v; /* type-checking value */
446
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100447 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100448 XFS_STATS_INC(dp->i_mount, xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000449
Dave Chinnera1358aa2014-02-27 16:51:26 +1100450 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
451 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000452 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000453
Dave Chinner0650b552014-06-06 15:01:58 +1000454 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100455 args->name = name->name;
456 args->namelen = name->len;
457 args->filetype = name->type;
458 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
459 args->inumber = ino;
460 args->dp = dp;
461 args->firstblock = first;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000462 args->dfops = dfops;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100463 args->total = total;
464 args->whichfork = XFS_DATA_FORK;
465 args->trans = tp;
466
467 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
468 rval = xfs_dir2_sf_removename(args);
469 goto out_free;
470 }
471
Dave Chinner53f82db2014-06-06 15:20:32 +1000472 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100473 if (rval)
474 goto out_free;
475 if (v) {
476 rval = xfs_dir2_block_removename(args);
477 goto out_free;
478 }
479
Dave Chinner53f82db2014-06-06 15:20:32 +1000480 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100481 if (rval)
482 goto out_free;
483 if (v)
484 rval = xfs_dir2_leaf_removename(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100486 rval = xfs_dir2_node_removename(args);
487out_free:
488 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return rval;
490}
491
492/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * Replace the inode number of a directory entry.
494 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000495int
496xfs_dir_replace(
497 xfs_trans_t *tp,
498 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000499 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 xfs_ino_t inum, /* new inode number */
501 xfs_fsblock_t *first, /* bmap's firstblock */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000502 struct xfs_defer_ops *dfops, /* bmap's freeblock list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 xfs_extlen_t total) /* bmap's total block count */
504{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100505 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000506 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int v; /* type-checking value */
508
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100509 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Dave Chinnera1358aa2014-02-27 16:51:26 +1100511 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
512 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000514
Dave Chinnera1358aa2014-02-27 16:51:26 +1100515 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
516 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000517 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000518
Dave Chinner0650b552014-06-06 15:01:58 +1000519 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100520 args->name = name->name;
521 args->namelen = name->len;
522 args->filetype = name->type;
523 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
524 args->inumber = inum;
525 args->dp = dp;
526 args->firstblock = first;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000527 args->dfops = dfops;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100528 args->total = total;
529 args->whichfork = XFS_DATA_FORK;
530 args->trans = tp;
531
532 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
533 rval = xfs_dir2_sf_replace(args);
534 goto out_free;
535 }
536
Dave Chinner53f82db2014-06-06 15:20:32 +1000537 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100538 if (rval)
539 goto out_free;
540 if (v) {
541 rval = xfs_dir2_block_replace(args);
542 goto out_free;
543 }
544
Dave Chinner53f82db2014-06-06 15:20:32 +1000545 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100546 if (rval)
547 goto out_free;
548 if (v)
549 rval = xfs_dir2_leaf_replace(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100551 rval = xfs_dir2_node_replace(args);
552out_free:
553 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return rval;
555}
556
557/*
558 * See if this entry can be added to the directory without allocating space.
559 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000560int
561xfs_dir_canenter(
562 xfs_trans_t *tp,
563 xfs_inode_t *dp,
Eric Sandeen94f3cad2014-09-09 11:57:52 +1000564 struct xfs_name *name) /* name of entry to add */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000566 return xfs_dir_createname(tp, dp, name, 0, NULL, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * Utility routines.
571 */
572
573/*
574 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200575 *
576 * This routine is for data and free blocks, not leaf/node blocks which are
577 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000579int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200581 struct xfs_da_args *args,
582 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
583 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200585 struct xfs_inode *dp = args->dp;
586 struct xfs_mount *mp = dp->i_mount;
587 xfs_fileoff_t bno; /* directory offset of new block */
588 int count; /* count of filesystem blocks */
589 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000591 trace_xfs_dir2_grow_inode(args, space);
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /*
594 * Set lowest possible block in the space requested.
595 */
596 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
Dave Chinnerd6cf1302014-06-06 15:14:11 +1000597 count = args->geo->fsbcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200598
599 error = xfs_da_grow_inode_int(args, &bno, count);
600 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Dave Chinner2998ab12014-06-06 15:07:53 +1000603 *dbp = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /*
606 * Update file's size if this is the data space and it grew.
607 */
608 if (space == XFS_DIR2_DATA_SPACE) {
609 xfs_fsize_t size; /* directory file (data) size */
610
611 size = XFS_FSB_TO_B(mp, bno + count);
612 if (size > dp->i_d.di_size) {
613 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200614 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616 }
617 return 0;
618}
619
620/*
621 * See if the directory is a single-block form directory.
622 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000623int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624xfs_dir2_isblock(
Dave Chinner53f82db2014-06-06 15:20:32 +1000625 struct xfs_da_args *args,
626 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Dave Chinner53f82db2014-06-06 15:20:32 +1000628 xfs_fileoff_t last; /* last file offset */
629 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Dave Chinner53f82db2014-06-06 15:20:32 +1000631 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000633 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize;
Amir Goldstein3c6f46e2017-01-17 11:41:41 -0800634 if (rval != 0 && args->dp->i_d.di_size != args->geo->blksize)
635 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 *vp = rval;
637 return 0;
638}
639
640/*
641 * See if the directory is a single-leaf form directory.
642 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000643int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644xfs_dir2_isleaf(
Dave Chinner53f82db2014-06-06 15:20:32 +1000645 struct xfs_da_args *args,
646 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Dave Chinner53f82db2014-06-06 15:20:32 +1000648 xfs_fileoff_t last; /* last file offset */
649 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Dave Chinner53f82db2014-06-06 15:20:32 +1000651 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000653 *vp = last == args->geo->leafblk + args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return 0;
655}
656
657/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 * Remove the given block from the directory.
659 * This routine is used for data and free blocks, leaf/node are done
660 * by xfs_da_shrink_inode.
661 */
662int
663xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000664 xfs_da_args_t *args,
665 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000666 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 xfs_fileoff_t bno; /* directory file offset */
669 xfs_dablk_t da; /* directory file offset */
670 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000671 xfs_inode_t *dp;
672 int error;
673 xfs_mount_t *mp;
674 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000676 trace_xfs_dir2_shrink_inode(args, db);
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 dp = args->dp;
679 mp = dp->i_mount;
680 tp = args->trans;
Dave Chinner2998ab12014-06-06 15:07:53 +1000681 da = xfs_dir2_db_to_da(args->geo, db);
Dave Chinnerab7bb612015-07-29 11:51:01 +1000682
683 /* Unmap the fsblock(s). */
684 error = xfs_bunmapi(tp, dp, da, args->geo->fsbcount, 0, 0,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000685 args->firstblock, args->dfops, &done);
Dave Chinnerab7bb612015-07-29 11:51:01 +1000686 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /*
Dave Chinnerab7bb612015-07-29 11:51:01 +1000688 * ENOSPC actually can happen if we're in a removename with no
689 * space reservation, and the resulting block removal would
690 * cause a bmap btree split or conversion from extents to btree.
691 * This can only happen for un-fragmented directory blocks,
692 * since you need to be punching out the middle of an extent.
693 * In this case we need to leave the block in the file, and not
694 * binval it. So the block has to be in a consistent empty
695 * state and appropriately logged. We don't free up the buffer,
696 * the caller can tell it hasn't happened since it got an error
697 * back.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
699 return error;
700 }
701 ASSERT(done);
702 /*
703 * Invalidate the buffer from the transaction.
704 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000705 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /*
707 * If it's not a data block, we're done.
708 */
Dave Chinner30028032014-06-06 15:08:18 +1000709 if (db >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return 0;
711 /*
712 * If the block isn't the last one in the directory, we're done.
713 */
Dave Chinner9b3b5522014-06-06 15:06:53 +1000714 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return 0;
716 bno = da;
717 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
718 /*
719 * This can't really happen unless there's kernel corruption.
720 */
721 return error;
722 }
Dave Chinner7dda6e82014-06-06 15:11:18 +1000723 if (db == args->geo->datablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 ASSERT(bno == 0);
725 else
726 ASSERT(bno > 0);
727 /*
728 * Set the size to the new last block.
729 */
730 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
731 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
732 return 0;
733}