blob: 2f389d366e93324c3f481d8c7b0773475b423d83 [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/*
Amir Goldstein1fc4d332017-01-17 11:41:43 -080039 * Convert inode mode to directory entry filetype
Dave Chinner1b767ee2014-12-04 09:43:17 +110040 */
Arnd Bergmannfd29f7a2017-01-18 12:39:21 -080041unsigned char xfs_mode_to_ftype(int mode)
Amir Goldstein1fc4d332017-01-17 11:41:43 -080042{
43 switch (mode & S_IFMT) {
44 case S_IFREG:
45 return XFS_DIR3_FT_REG_FILE;
46 case S_IFDIR:
47 return XFS_DIR3_FT_DIR;
48 case S_IFCHR:
49 return XFS_DIR3_FT_CHRDEV;
50 case S_IFBLK:
51 return XFS_DIR3_FT_BLKDEV;
52 case S_IFIFO:
53 return XFS_DIR3_FT_FIFO;
54 case S_IFSOCK:
55 return XFS_DIR3_FT_SOCK;
56 case S_IFLNK:
57 return XFS_DIR3_FT_SYMLINK;
58 default:
59 return XFS_DIR3_FT_UNKNOWN;
60 }
61}
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Barry Naujok189f4bf2008-05-21 16:58:55 +100063/*
64 * ASCII case-insensitive (ie. A-Z) support for directories that was
65 * used in IRIX.
66 */
67STATIC xfs_dahash_t
68xfs_ascii_ci_hashname(
69 struct xfs_name *name)
70{
71 xfs_dahash_t hash;
72 int i;
73
74 for (i = 0, hash = 0; i < name->len; i++)
75 hash = tolower(name->name[i]) ^ rol32(hash, 7);
76
77 return hash;
78}
79
80STATIC enum xfs_dacmp
81xfs_ascii_ci_compname(
82 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +110083 const unsigned char *name,
84 int len)
Barry Naujok189f4bf2008-05-21 16:58:55 +100085{
86 enum xfs_dacmp result;
87 int i;
88
89 if (args->namelen != len)
90 return XFS_CMP_DIFFERENT;
91
92 result = XFS_CMP_EXACT;
93 for (i = 0; i < len; i++) {
94 if (args->name[i] == name[i])
95 continue;
96 if (tolower(args->name[i]) != tolower(name[i]))
97 return XFS_CMP_DIFFERENT;
98 result = XFS_CMP_CASE;
99 }
100
101 return result;
102}
103
Bhumika Goyalcf7841c2016-11-28 14:57:42 +1100104static const struct xfs_nameops xfs_ascii_ci_nameops = {
Barry Naujok189f4bf2008-05-21 16:58:55 +1000105 .hashname = xfs_ascii_ci_hashname,
106 .compname = xfs_ascii_ci_compname,
107};
108
Dave Chinner0650b552014-06-06 15:01:58 +1000109int
110xfs_da_mount(
111 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Dave Chinner0650b552014-06-06 15:01:58 +1000113 struct xfs_da_geometry *dageo;
114 int nodehdr_size;
Dave Chinner37804372013-08-26 14:13:30 +1000115
116
Dave Chinner5d074a42014-05-20 07:46:55 +1000117 ASSERT(mp->m_sb.sb_versionnum & XFS_SB_VERSION_DIRV2BIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <=
119 XFS_MAX_BLOCKSIZE);
Dave Chinner4bceb182013-10-29 22:11:51 +1100120
121 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL);
122 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL);
123
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100124 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size;
Dave Chinner0650b552014-06-06 15:01:58 +1000125 mp->m_dir_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
126 KM_SLEEP | KM_MAYFAIL);
127 mp->m_attr_geo = kmem_zalloc(sizeof(struct xfs_da_geometry),
128 KM_SLEEP | KM_MAYFAIL);
129 if (!mp->m_dir_geo || !mp->m_attr_geo) {
130 kmem_free(mp->m_dir_geo);
131 kmem_free(mp->m_attr_geo);
Dave Chinner24513372014-06-25 14:58:08 +1000132 return -ENOMEM;
Dave Chinner0650b552014-06-06 15:01:58 +1000133 }
Dave Chinner37804372013-08-26 14:13:30 +1000134
Dave Chinner0650b552014-06-06 15:01:58 +1000135 /* set up directory geometry */
136 dageo = mp->m_dir_geo;
137 dageo->blklog = mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog;
138 dageo->fsblog = mp->m_sb.sb_blocklog;
139 dageo->blksize = 1 << dageo->blklog;
140 dageo->fsbcount = 1 << mp->m_sb.sb_dirblklog;
Dave Chinner30028032014-06-06 15:08:18 +1000141
142 /*
143 * Now we've set up the block conversion variables, we can calculate the
144 * segment block constants using the geometry structure.
145 */
146 dageo->datablk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_DATA_OFFSET);
147 dageo->leafblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_LEAF_OFFSET);
148 dageo->freeblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_FREE_OFFSET);
Dave Chinner0650b552014-06-06 15:01:58 +1000149 dageo->node_ents = (dageo->blksize - nodehdr_size) /
150 (uint)sizeof(xfs_da_node_entry_t);
151 dageo->magicpct = (dageo->blksize * 37) / 100;
152
153 /* set up attribute geometry - single fsb only */
154 dageo = mp->m_attr_geo;
155 dageo->blklog = mp->m_sb.sb_blocklog;
156 dageo->fsblog = mp->m_sb.sb_blocklog;
157 dageo->blksize = 1 << dageo->blklog;
158 dageo->fsbcount = 1;
159 dageo->node_ents = (dageo->blksize - nodehdr_size) /
160 (uint)sizeof(xfs_da_node_entry_t);
161 dageo->magicpct = (dageo->blksize * 37) / 100;
162
Barry Naujok189f4bf2008-05-21 16:58:55 +1000163 if (xfs_sb_version_hasasciici(&mp->m_sb))
164 mp->m_dirnameops = &xfs_ascii_ci_nameops;
165 else
166 mp->m_dirnameops = &xfs_default_nameops;
Dave Chinner32c54832013-10-29 22:11:46 +1100167
Dave Chinner0650b552014-06-06 15:01:58 +1000168 return 0;
169}
170
171void
172xfs_da_unmount(
173 struct xfs_mount *mp)
174{
175 kmem_free(mp->m_dir_geo);
176 kmem_free(mp->m_attr_geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179/*
180 * Return 1 if directory contains only "." and "..".
181 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000182int
183xfs_dir_isempty(
184 xfs_inode_t *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200186 xfs_dir2_sf_hdr_t *sfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100188 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000189 if (dp->i_d.di_size == 0) /* might happen during shutdown. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp))
192 return 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +0200193 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
194 return !sfp->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197/*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000198 * Validate a given inode number.
199 */
200int
201xfs_dir_ino_validate(
202 xfs_mount_t *mp,
203 xfs_ino_t ino)
204{
205 xfs_agblock_t agblkno;
206 xfs_agino_t agino;
207 xfs_agnumber_t agno;
208 int ino_ok;
209 int ioff;
210
211 agno = XFS_INO_TO_AGNO(mp, ino);
212 agblkno = XFS_INO_TO_AGBNO(mp, ino);
213 ioff = XFS_INO_TO_OFFSET(mp, ino);
214 agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff);
215 ino_ok =
216 agno < mp->m_sb.sb_agcount &&
217 agblkno < mp->m_sb.sb_agblocks &&
218 agblkno != 0 &&
219 ioff < (1 << mp->m_sb.sb_inopblog) &&
220 XFS_AGINO_TO_INO(mp, agno, agino) == ino;
221 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE,
222 XFS_RANDOM_DIR_INO_VALIDATE))) {
Dave Chinner53487782011-03-07 10:05:35 +1100223 xfs_warn(mp, "Invalid inode number 0x%Lx",
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000224 (unsigned long long) ino);
225 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +1000226 return -EFSCORRUPTED;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000227 }
228 return 0;
229}
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * Initialize a directory with its "." and ".." entries.
233 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000234int
235xfs_dir_init(
236 xfs_trans_t *tp,
237 xfs_inode_t *dp,
238 xfs_inode_t *pdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100240 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000241 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100243 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Dave Chinnera1358aa2014-02-27 16:51:26 +1100244 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino);
245 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return error;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100247
248 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
249 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000250 return -ENOMEM;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100251
Dave Chinner0650b552014-06-06 15:01:58 +1000252 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100253 args->dp = dp;
254 args->trans = tp;
255 error = xfs_dir2_sf_create(args, pdp->i_ino);
256 kmem_free(args);
257 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/*
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000261 * Enter a name in a directory, or check for available space.
262 * If inum is 0, only the available space test is performed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000264int
265xfs_dir_createname(
266 xfs_trans_t *tp,
267 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000268 struct xfs_name *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 xfs_ino_t inum, /* new entry inode number */
270 xfs_fsblock_t *first, /* bmap's firstblock */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000271 struct xfs_defer_ops *dfops, /* bmap's freeblock list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 xfs_extlen_t total) /* bmap's total block count */
273{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100274 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000275 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 int v; /* type-checking value */
277
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100278 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000279 if (inum) {
280 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
281 if (rval)
282 return rval;
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100283 XFS_STATS_INC(dp->i_mount, xs_dir_create);
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000284 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000285
Dave Chinnera1358aa2014-02-27 16:51:26 +1100286 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
287 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000288 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000289
Dave Chinner0650b552014-06-06 15:01:58 +1000290 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100291 args->name = name->name;
292 args->namelen = name->len;
293 args->filetype = name->type;
294 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
295 args->inumber = inum;
296 args->dp = dp;
297 args->firstblock = first;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000298 args->dfops = dfops;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100299 args->total = total;
300 args->whichfork = XFS_DATA_FORK;
301 args->trans = tp;
302 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000303 if (!inum)
304 args->op_flags |= XFS_DA_OP_JUSTCHECK;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100305
306 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
307 rval = xfs_dir2_sf_addname(args);
308 goto out_free;
309 }
310
Dave Chinner53f82db2014-06-06 15:20:32 +1000311 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100312 if (rval)
313 goto out_free;
314 if (v) {
315 rval = xfs_dir2_block_addname(args);
316 goto out_free;
317 }
318
Dave Chinner53f82db2014-06-06 15:20:32 +1000319 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100320 if (rval)
321 goto out_free;
322 if (v)
323 rval = xfs_dir2_leaf_addname(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100325 rval = xfs_dir2_node_addname(args);
326
327out_free:
328 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 return rval;
330}
331
332/*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000333 * If doing a CI lookup and case-insensitive match, dup actual name into
334 * args.value. Return EEXIST for success (ie. name found) or an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000336int
Barry Naujok384f3ce2008-05-21 16:58:22 +1000337xfs_dir_cilookup_result(
338 struct xfs_da_args *args,
Dave Chinnera3380ae2010-01-20 10:47:25 +1100339 const unsigned char *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000340 int len)
341{
342 if (args->cmpresult == XFS_CMP_DIFFERENT)
Dave Chinner24513372014-06-25 14:58:08 +1000343 return -ENOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000344 if (args->cmpresult != XFS_CMP_CASE ||
345 !(args->op_flags & XFS_DA_OP_CILOOKUP))
Dave Chinner24513372014-06-25 14:58:08 +1000346 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000347
Christoph Hellwig3f52c2f2009-07-18 18:14:57 -0400348 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000349 if (!args->value)
Dave Chinner24513372014-06-25 14:58:08 +1000350 return -ENOMEM;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000351
352 memcpy(args->value, name, len);
353 args->valuelen = len;
Dave Chinner24513372014-06-25 14:58:08 +1000354 return -EEXIST;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000355}
356
357/*
358 * Lookup a name in a directory, give back the inode number.
359 * If ci_name is not NULL, returns the actual name in ci_name if it differs
360 * to name, or ci_name->name is set to NULL for an exact match.
361 */
362
363int
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000364xfs_dir_lookup(
365 xfs_trans_t *tp,
366 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000367 struct xfs_name *name,
Barry Naujok384f3ce2008-05-21 16:58:22 +1000368 xfs_ino_t *inum, /* out: inode number */
369 struct xfs_name *ci_name) /* out: actual name if CI match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100371 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000372 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 int v; /* type-checking value */
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000374 int lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100376 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100377 XFS_STATS_INC(dp->i_mount, xs_dir_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Dave Chinnera1358aa2014-02-27 16:51:26 +1100379 /*
380 * We need to use KM_NOFS here so that lockdep will not throw false
381 * positive deadlock warnings on a non-transactional lookup path. It is
382 * safe to recurse into inode recalim in that case, but lockdep can't
383 * easily be taught about it. Hence KM_NOFS avoids having to add more
384 * lockdep Doing this avoids having to add a bunch of lockdep class
385 * annotations into the reclaim path for the ilock.
386 */
387 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
Dave Chinner0650b552014-06-06 15:01:58 +1000388 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100389 args->name = name->name;
390 args->namelen = name->len;
391 args->filetype = name->type;
392 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
393 args->dp = dp;
394 args->whichfork = XFS_DATA_FORK;
395 args->trans = tp;
396 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000397 if (ci_name)
Dave Chinnera1358aa2014-02-27 16:51:26 +1100398 args->op_flags |= XFS_DA_OP_CILOOKUP;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000399
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000400 lock_mode = xfs_ilock_data_map_shared(dp);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100401 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
402 rval = xfs_dir2_sf_lookup(args);
403 goto out_check_rval;
404 }
405
Dave Chinner53f82db2014-06-06 15:20:32 +1000406 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100407 if (rval)
408 goto out_free;
409 if (v) {
410 rval = xfs_dir2_block_lookup(args);
411 goto out_check_rval;
412 }
413
Dave Chinner53f82db2014-06-06 15:20:32 +1000414 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100415 if (rval)
416 goto out_free;
417 if (v)
418 rval = xfs_dir2_leaf_lookup(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100420 rval = xfs_dir2_node_lookup(args);
421
422out_check_rval:
Dave Chinner24513372014-06-25 14:58:08 +1000423 if (rval == -EEXIST)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 rval = 0;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000425 if (!rval) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100426 *inum = args->inumber;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000427 if (ci_name) {
Dave Chinnera1358aa2014-02-27 16:51:26 +1100428 ci_name->name = args->value;
429 ci_name->len = args->valuelen;
Barry Naujok384f3ce2008-05-21 16:58:22 +1000430 }
431 }
Dave Chinnera1358aa2014-02-27 16:51:26 +1100432out_free:
Dave Chinnerdbad7c92015-08-19 10:33:00 +1000433 xfs_iunlock(dp, lock_mode);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100434 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return rval;
436}
437
438/*
439 * Remove an entry from a directory.
440 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000441int
442xfs_dir_removename(
443 xfs_trans_t *tp,
444 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000445 struct xfs_name *name,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000446 xfs_ino_t ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 xfs_fsblock_t *first, /* bmap's firstblock */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000448 struct xfs_defer_ops *dfops, /* bmap's freeblock list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 xfs_extlen_t total) /* bmap's total block count */
450{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100451 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000452 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int v; /* type-checking value */
454
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100455 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100456 XFS_STATS_INC(dp->i_mount, xs_dir_remove);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000457
Dave Chinnera1358aa2014-02-27 16:51:26 +1100458 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
459 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000460 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000461
Dave Chinner0650b552014-06-06 15:01:58 +1000462 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100463 args->name = name->name;
464 args->namelen = name->len;
465 args->filetype = name->type;
466 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
467 args->inumber = ino;
468 args->dp = dp;
469 args->firstblock = first;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000470 args->dfops = dfops;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100471 args->total = total;
472 args->whichfork = XFS_DATA_FORK;
473 args->trans = tp;
474
475 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
476 rval = xfs_dir2_sf_removename(args);
477 goto out_free;
478 }
479
Dave Chinner53f82db2014-06-06 15:20:32 +1000480 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100481 if (rval)
482 goto out_free;
483 if (v) {
484 rval = xfs_dir2_block_removename(args);
485 goto out_free;
486 }
487
Dave Chinner53f82db2014-06-06 15:20:32 +1000488 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100489 if (rval)
490 goto out_free;
491 if (v)
492 rval = xfs_dir2_leaf_removename(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100494 rval = xfs_dir2_node_removename(args);
495out_free:
496 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return rval;
498}
499
500/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * Replace the inode number of a directory entry.
502 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000503int
504xfs_dir_replace(
505 xfs_trans_t *tp,
506 xfs_inode_t *dp,
Barry Naujok556b8b12008-04-10 12:22:07 +1000507 struct xfs_name *name, /* name of entry to replace */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 xfs_ino_t inum, /* new inode number */
509 xfs_fsblock_t *first, /* bmap's firstblock */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000510 struct xfs_defer_ops *dfops, /* bmap's freeblock list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 xfs_extlen_t total) /* bmap's total block count */
512{
Dave Chinnera1358aa2014-02-27 16:51:26 +1100513 struct xfs_da_args *args;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000514 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 int v; /* type-checking value */
516
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100517 ASSERT(S_ISDIR(VFS_I(dp)->i_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Dave Chinnera1358aa2014-02-27 16:51:26 +1100519 rval = xfs_dir_ino_validate(tp->t_mountp, inum);
520 if (rval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return rval;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000522
Dave Chinnera1358aa2014-02-27 16:51:26 +1100523 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS);
524 if (!args)
Dave Chinner24513372014-06-25 14:58:08 +1000525 return -ENOMEM;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000526
Dave Chinner0650b552014-06-06 15:01:58 +1000527 args->geo = dp->i_mount->m_dir_geo;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100528 args->name = name->name;
529 args->namelen = name->len;
530 args->filetype = name->type;
531 args->hashval = dp->i_mount->m_dirnameops->hashname(name);
532 args->inumber = inum;
533 args->dp = dp;
534 args->firstblock = first;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000535 args->dfops = dfops;
Dave Chinnera1358aa2014-02-27 16:51:26 +1100536 args->total = total;
537 args->whichfork = XFS_DATA_FORK;
538 args->trans = tp;
539
540 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
541 rval = xfs_dir2_sf_replace(args);
542 goto out_free;
543 }
544
Dave Chinner53f82db2014-06-06 15:20:32 +1000545 rval = xfs_dir2_isblock(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100546 if (rval)
547 goto out_free;
548 if (v) {
549 rval = xfs_dir2_block_replace(args);
550 goto out_free;
551 }
552
Dave Chinner53f82db2014-06-06 15:20:32 +1000553 rval = xfs_dir2_isleaf(args, &v);
Dave Chinnera1358aa2014-02-27 16:51:26 +1100554 if (rval)
555 goto out_free;
556 if (v)
557 rval = xfs_dir2_leaf_replace(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 else
Dave Chinnera1358aa2014-02-27 16:51:26 +1100559 rval = xfs_dir2_node_replace(args);
560out_free:
561 kmem_free(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return rval;
563}
564
565/*
566 * See if this entry can be added to the directory without allocating space.
567 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000568int
569xfs_dir_canenter(
570 xfs_trans_t *tp,
571 xfs_inode_t *dp,
Eric Sandeen94f3cad2014-09-09 11:57:52 +1000572 struct xfs_name *name) /* name of entry to add */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Eric Sandeenb16ed7c2014-09-09 11:58:07 +1000574 return xfs_dir_createname(tp, dp, name, 0, NULL, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
577/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * Utility routines.
579 */
580
581/*
582 * Add a block to the directory.
Christoph Hellwig77936d02011-07-13 13:43:49 +0200583 *
584 * This routine is for data and free blocks, not leaf/node blocks which are
585 * handled by xfs_da_grow_inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000587int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588xfs_dir2_grow_inode(
Christoph Hellwig77936d02011-07-13 13:43:49 +0200589 struct xfs_da_args *args,
590 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */
591 xfs_dir2_db_t *dbp) /* out: block number added */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Christoph Hellwig77936d02011-07-13 13:43:49 +0200593 struct xfs_inode *dp = args->dp;
594 struct xfs_mount *mp = dp->i_mount;
595 xfs_fileoff_t bno; /* directory offset of new block */
596 int count; /* count of filesystem blocks */
597 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000599 trace_xfs_dir2_grow_inode(args, space);
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /*
602 * Set lowest possible block in the space requested.
603 */
604 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE);
Dave Chinnerd6cf1302014-06-06 15:14:11 +1000605 count = args->geo->fsbcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200606
607 error = xfs_da_grow_inode_int(args, &bno, count);
608 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Dave Chinner2998ab12014-06-06 15:07:53 +1000611 *dbp = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)bno);
David Chinnera7444052008-10-30 17:38:12 +1100612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /*
614 * Update file's size if this is the data space and it grew.
615 */
616 if (space == XFS_DIR2_DATA_SPACE) {
617 xfs_fsize_t size; /* directory file (data) size */
618
619 size = XFS_FSB_TO_B(mp, bno + count);
620 if (size > dp->i_d.di_size) {
621 dp->i_d.di_size = size;
Christoph Hellwig77936d02011-07-13 13:43:49 +0200622 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624 }
625 return 0;
626}
627
628/*
629 * See if the directory is a single-block form directory.
630 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000631int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632xfs_dir2_isblock(
Dave Chinner53f82db2014-06-06 15:20:32 +1000633 struct xfs_da_args *args,
634 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Dave Chinner53f82db2014-06-06 15:20:32 +1000636 xfs_fileoff_t last; /* last file offset */
637 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Dave Chinner53f82db2014-06-06 15:20:32 +1000639 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000641 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize;
Amir Goldstein3c6f46e2017-01-17 11:41:41 -0800642 if (rval != 0 && args->dp->i_d.di_size != args->geo->blksize)
643 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 *vp = rval;
645 return 0;
646}
647
648/*
649 * See if the directory is a single-leaf form directory.
650 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000651int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652xfs_dir2_isleaf(
Dave Chinner53f82db2014-06-06 15:20:32 +1000653 struct xfs_da_args *args,
654 int *vp) /* out: 1 is block, 0 is not block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Dave Chinner53f82db2014-06-06 15:20:32 +1000656 xfs_fileoff_t last; /* last file offset */
657 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Dave Chinner53f82db2014-06-06 15:20:32 +1000659 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return rval;
Dave Chinner53f82db2014-06-06 15:20:32 +1000661 *vp = last == args->geo->leafblk + args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return 0;
663}
664
665/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 * Remove the given block from the directory.
667 * This routine is used for data and free blocks, leaf/node are done
668 * by xfs_da_shrink_inode.
669 */
670int
671xfs_dir2_shrink_inode(
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000672 xfs_da_args_t *args,
673 xfs_dir2_db_t db,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000674 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 xfs_fileoff_t bno; /* directory file offset */
677 xfs_dablk_t da; /* directory file offset */
678 int done; /* bunmap is finished */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000679 xfs_inode_t *dp;
680 int error;
681 xfs_mount_t *mp;
682 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000684 trace_xfs_dir2_shrink_inode(args, db);
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 dp = args->dp;
687 mp = dp->i_mount;
688 tp = args->trans;
Dave Chinner2998ab12014-06-06 15:07:53 +1000689 da = xfs_dir2_db_to_da(args->geo, db);
Dave Chinnerab7bb612015-07-29 11:51:01 +1000690
691 /* Unmap the fsblock(s). */
692 error = xfs_bunmapi(tp, dp, da, args->geo->fsbcount, 0, 0,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000693 args->firstblock, args->dfops, &done);
Dave Chinnerab7bb612015-07-29 11:51:01 +1000694 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /*
Dave Chinnerab7bb612015-07-29 11:51:01 +1000696 * ENOSPC actually can happen if we're in a removename with no
697 * space reservation, and the resulting block removal would
698 * cause a bmap btree split or conversion from extents to btree.
699 * This can only happen for un-fragmented directory blocks,
700 * since you need to be punching out the middle of an extent.
701 * In this case we need to leave the block in the file, and not
702 * binval it. So the block has to be in a consistent empty
703 * state and appropriately logged. We don't free up the buffer,
704 * the caller can tell it hasn't happened since it got an error
705 * back.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 */
707 return error;
708 }
709 ASSERT(done);
710 /*
711 * Invalidate the buffer from the transaction.
712 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000713 xfs_trans_binval(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * If it's not a data block, we're done.
716 */
Dave Chinner30028032014-06-06 15:08:18 +1000717 if (db >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
719 /*
720 * If the block isn't the last one in the directory, we're done.
721 */
Dave Chinner9b3b5522014-06-06 15:06:53 +1000722 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 0;
724 bno = da;
725 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) {
726 /*
727 * This can't really happen unless there's kernel corruption.
728 */
729 return error;
730 }
Dave Chinner7dda6e82014-06-06 15:11:18 +1000731 if (db == args->geo->datablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 ASSERT(bno == 0);
733 else
734 ASSERT(bno > 0);
735 /*
736 * Set the size to the new last block.
737 */
738 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno);
739 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
740 return 0;
741}