Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. |
| 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 9 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 14 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 19 | #include "xfs_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_types.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 21 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_log.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 23 | #include "xfs_inum.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "xfs_trans.h" |
| 25 | #include "xfs_sb.h" |
| 26 | #include "xfs_ag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "xfs_mount.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 28 | #include "xfs_da_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "xfs_bmap_btree.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 30 | #include "xfs_alloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "xfs_dinode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "xfs_inode.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 33 | #include "xfs_inode_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include "xfs_bmap.h" |
Christoph Hellwig | 5792664 | 2011-07-13 13:43:48 +0200 | [diff] [blame] | 35 | #include "xfs_dir2.h" |
| 36 | #include "xfs_dir2_format.h" |
| 37 | #include "xfs_dir2_priv.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include "xfs_error.h" |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 39 | #include "xfs_vnodeops.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 40 | #include "xfs_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Dave Chinner | 4a24cb7 | 2010-01-20 10:48:05 +1100 | [diff] [blame] | 42 | struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Barry Naujok | 189f4bf | 2008-05-21 16:58:55 +1000 | [diff] [blame] | 44 | /* |
| 45 | * ASCII case-insensitive (ie. A-Z) support for directories that was |
| 46 | * used in IRIX. |
| 47 | */ |
| 48 | STATIC xfs_dahash_t |
| 49 | xfs_ascii_ci_hashname( |
| 50 | struct xfs_name *name) |
| 51 | { |
| 52 | xfs_dahash_t hash; |
| 53 | int i; |
| 54 | |
| 55 | for (i = 0, hash = 0; i < name->len; i++) |
| 56 | hash = tolower(name->name[i]) ^ rol32(hash, 7); |
| 57 | |
| 58 | return hash; |
| 59 | } |
| 60 | |
| 61 | STATIC enum xfs_dacmp |
| 62 | xfs_ascii_ci_compname( |
| 63 | struct xfs_da_args *args, |
Dave Chinner | 2bc7542 | 2010-01-20 10:47:17 +1100 | [diff] [blame] | 64 | const unsigned char *name, |
| 65 | int len) |
Barry Naujok | 189f4bf | 2008-05-21 16:58:55 +1000 | [diff] [blame] | 66 | { |
| 67 | enum xfs_dacmp result; |
| 68 | int i; |
| 69 | |
| 70 | if (args->namelen != len) |
| 71 | return XFS_CMP_DIFFERENT; |
| 72 | |
| 73 | result = XFS_CMP_EXACT; |
| 74 | for (i = 0; i < len; i++) { |
| 75 | if (args->name[i] == name[i]) |
| 76 | continue; |
| 77 | if (tolower(args->name[i]) != tolower(name[i])) |
| 78 | return XFS_CMP_DIFFERENT; |
| 79 | result = XFS_CMP_CASE; |
| 80 | } |
| 81 | |
| 82 | return result; |
| 83 | } |
| 84 | |
| 85 | static struct xfs_nameops xfs_ascii_ci_nameops = { |
| 86 | .hashname = xfs_ascii_ci_hashname, |
| 87 | .compname = xfs_ascii_ci_compname, |
| 88 | }; |
| 89 | |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 90 | void |
| 91 | xfs_dir_mount( |
| 92 | xfs_mount_t *mp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 94 | ASSERT(xfs_sb_version_hasdirv2(&mp->m_sb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <= |
| 96 | XFS_MAX_BLOCKSIZE); |
| 97 | mp->m_dirblksize = 1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog); |
| 98 | mp->m_dirblkfsbs = 1 << mp->m_sb.sb_dirblklog; |
Christoph Hellwig | bbaaf53 | 2007-06-28 16:43:50 +1000 | [diff] [blame] | 99 | mp->m_dirdatablk = xfs_dir2_db_to_da(mp, XFS_DIR2_DATA_FIRSTDB(mp)); |
| 100 | mp->m_dirleafblk = xfs_dir2_db_to_da(mp, XFS_DIR2_LEAF_FIRSTDB(mp)); |
| 101 | mp->m_dirfreeblk = xfs_dir2_db_to_da(mp, XFS_DIR2_FREE_FIRSTDB(mp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | mp->m_attr_node_ents = |
| 103 | (mp->m_sb.sb_blocksize - (uint)sizeof(xfs_da_node_hdr_t)) / |
| 104 | (uint)sizeof(xfs_da_node_entry_t); |
| 105 | mp->m_dir_node_ents = |
| 106 | (mp->m_dirblksize - (uint)sizeof(xfs_da_node_hdr_t)) / |
| 107 | (uint)sizeof(xfs_da_node_entry_t); |
| 108 | mp->m_dir_magicpct = (mp->m_dirblksize * 37) / 100; |
Barry Naujok | 189f4bf | 2008-05-21 16:58:55 +1000 | [diff] [blame] | 109 | if (xfs_sb_version_hasasciici(&mp->m_sb)) |
| 110 | mp->m_dirnameops = &xfs_ascii_ci_nameops; |
| 111 | else |
| 112 | mp->m_dirnameops = &xfs_default_nameops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /* |
| 116 | * Return 1 if directory contains only "." and "..". |
| 117 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 118 | int |
| 119 | xfs_dir_isempty( |
| 120 | xfs_inode_t *dp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | { |
Christoph Hellwig | ac8ba50 | 2011-07-08 14:35:13 +0200 | [diff] [blame] | 122 | xfs_dir2_sf_hdr_t *sfp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 124 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 125 | if (dp->i_d.di_size == 0) /* might happen during shutdown. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp)) |
| 128 | return 0; |
Christoph Hellwig | ac8ba50 | 2011-07-08 14:35:13 +0200 | [diff] [blame] | 129 | sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; |
| 130 | return !sfp->count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | /* |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 134 | * Validate a given inode number. |
| 135 | */ |
| 136 | int |
| 137 | xfs_dir_ino_validate( |
| 138 | xfs_mount_t *mp, |
| 139 | xfs_ino_t ino) |
| 140 | { |
| 141 | xfs_agblock_t agblkno; |
| 142 | xfs_agino_t agino; |
| 143 | xfs_agnumber_t agno; |
| 144 | int ino_ok; |
| 145 | int ioff; |
| 146 | |
| 147 | agno = XFS_INO_TO_AGNO(mp, ino); |
| 148 | agblkno = XFS_INO_TO_AGBNO(mp, ino); |
| 149 | ioff = XFS_INO_TO_OFFSET(mp, ino); |
| 150 | agino = XFS_OFFBNO_TO_AGINO(mp, agblkno, ioff); |
| 151 | ino_ok = |
| 152 | agno < mp->m_sb.sb_agcount && |
| 153 | agblkno < mp->m_sb.sb_agblocks && |
| 154 | agblkno != 0 && |
| 155 | ioff < (1 << mp->m_sb.sb_inopblog) && |
| 156 | XFS_AGINO_TO_INO(mp, agno, agino) == ino; |
| 157 | if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE, |
| 158 | XFS_RANDOM_DIR_INO_VALIDATE))) { |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 159 | xfs_warn(mp, "Invalid inode number 0x%Lx", |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 160 | (unsigned long long) ino); |
| 161 | XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp); |
| 162 | return XFS_ERROR(EFSCORRUPTED); |
| 163 | } |
| 164 | return 0; |
| 165 | } |
| 166 | |
| 167 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | * Initialize a directory with its "." and ".." entries. |
| 169 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 170 | int |
| 171 | xfs_dir_init( |
| 172 | xfs_trans_t *tp, |
| 173 | xfs_inode_t *dp, |
| 174 | xfs_inode_t *pdp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | { |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 176 | xfs_da_args_t args; |
| 177 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | memset((char *)&args, 0, sizeof(args)); |
| 180 | args.dp = dp; |
| 181 | args.trans = tp; |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 182 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 183 | if ((error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | return xfs_dir2_sf_create(&args, pdp->i_ino); |
| 186 | } |
| 187 | |
| 188 | /* |
| 189 | Enter a name in a directory. |
| 190 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 191 | int |
| 192 | xfs_dir_createname( |
| 193 | xfs_trans_t *tp, |
| 194 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 195 | struct xfs_name *name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | xfs_ino_t inum, /* new entry inode number */ |
| 197 | xfs_fsblock_t *first, /* bmap's firstblock */ |
| 198 | xfs_bmap_free_t *flist, /* bmap's freeblock list */ |
| 199 | xfs_extlen_t total) /* bmap's total block count */ |
| 200 | { |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 201 | xfs_da_args_t args; |
| 202 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | int v; /* type-checking value */ |
| 204 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 205 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 206 | if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | return rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | XFS_STATS_INC(xs_dir_create); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 209 | |
Barry Naujok | 87affd08 | 2008-06-03 11:59:18 +1000 | [diff] [blame] | 210 | memset(&args, 0, sizeof(xfs_da_args_t)); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 211 | args.name = name->name; |
| 212 | args.namelen = name->len; |
Barry Naujok | 5163f95 | 2008-05-21 16:41:01 +1000 | [diff] [blame] | 213 | args.hashval = dp->i_mount->m_dirnameops->hashname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | args.inumber = inum; |
| 215 | args.dp = dp; |
| 216 | args.firstblock = first; |
| 217 | args.flist = flist; |
| 218 | args.total = total; |
| 219 | args.whichfork = XFS_DATA_FORK; |
| 220 | args.trans = tp; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 221 | args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
| 224 | rval = xfs_dir2_sf_addname(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 225 | else if ((rval = xfs_dir2_isblock(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 227 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | rval = xfs_dir2_block_addname(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 229 | else if ((rval = xfs_dir2_isleaf(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 231 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | rval = xfs_dir2_leaf_addname(&args); |
| 233 | else |
| 234 | rval = xfs_dir2_node_addname(&args); |
| 235 | return rval; |
| 236 | } |
| 237 | |
| 238 | /* |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 239 | * If doing a CI lookup and case-insensitive match, dup actual name into |
| 240 | * args.value. Return EEXIST for success (ie. name found) or an error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 242 | int |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 243 | xfs_dir_cilookup_result( |
| 244 | struct xfs_da_args *args, |
Dave Chinner | a3380ae | 2010-01-20 10:47:25 +1100 | [diff] [blame] | 245 | const unsigned char *name, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 246 | int len) |
| 247 | { |
| 248 | if (args->cmpresult == XFS_CMP_DIFFERENT) |
| 249 | return ENOENT; |
| 250 | if (args->cmpresult != XFS_CMP_CASE || |
| 251 | !(args->op_flags & XFS_DA_OP_CILOOKUP)) |
| 252 | return EEXIST; |
| 253 | |
Christoph Hellwig | 3f52c2f | 2009-07-18 18:14:57 -0400 | [diff] [blame] | 254 | args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL); |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 255 | if (!args->value) |
| 256 | return ENOMEM; |
| 257 | |
| 258 | memcpy(args->value, name, len); |
| 259 | args->valuelen = len; |
| 260 | return EEXIST; |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | * Lookup a name in a directory, give back the inode number. |
| 265 | * If ci_name is not NULL, returns the actual name in ci_name if it differs |
| 266 | * to name, or ci_name->name is set to NULL for an exact match. |
| 267 | */ |
| 268 | |
| 269 | int |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 270 | xfs_dir_lookup( |
| 271 | xfs_trans_t *tp, |
| 272 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 273 | struct xfs_name *name, |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 274 | xfs_ino_t *inum, /* out: inode number */ |
| 275 | struct xfs_name *ci_name) /* out: actual name if CI match */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 277 | xfs_da_args_t args; |
| 278 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | int v; /* type-checking value */ |
| 280 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 281 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | XFS_STATS_INC(xs_dir_lookup); |
| 283 | |
Barry Naujok | 87affd08 | 2008-06-03 11:59:18 +1000 | [diff] [blame] | 284 | memset(&args, 0, sizeof(xfs_da_args_t)); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 285 | args.name = name->name; |
| 286 | args.namelen = name->len; |
Barry Naujok | 5163f95 | 2008-05-21 16:41:01 +1000 | [diff] [blame] | 287 | args.hashval = dp->i_mount->m_dirnameops->hashname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | args.dp = dp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | args.whichfork = XFS_DATA_FORK; |
| 290 | args.trans = tp; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 291 | args.op_flags = XFS_DA_OP_OKNOENT; |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 292 | if (ci_name) |
| 293 | args.op_flags |= XFS_DA_OP_CILOOKUP; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
| 296 | rval = xfs_dir2_sf_lookup(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 297 | else if ((rval = xfs_dir2_isblock(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 299 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | rval = xfs_dir2_block_lookup(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 301 | else if ((rval = xfs_dir2_isleaf(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 303 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | rval = xfs_dir2_leaf_lookup(&args); |
| 305 | else |
| 306 | rval = xfs_dir2_node_lookup(&args); |
| 307 | if (rval == EEXIST) |
| 308 | rval = 0; |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 309 | if (!rval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | *inum = args.inumber; |
Barry Naujok | 384f3ce | 2008-05-21 16:58:22 +1000 | [diff] [blame] | 311 | if (ci_name) { |
| 312 | ci_name->name = args.value; |
| 313 | ci_name->len = args.valuelen; |
| 314 | } |
| 315 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | return rval; |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * Remove an entry from a directory. |
| 321 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 322 | int |
| 323 | xfs_dir_removename( |
| 324 | xfs_trans_t *tp, |
| 325 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 326 | struct xfs_name *name, |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 327 | xfs_ino_t ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | xfs_fsblock_t *first, /* bmap's firstblock */ |
| 329 | xfs_bmap_free_t *flist, /* bmap's freeblock list */ |
| 330 | xfs_extlen_t total) /* bmap's total block count */ |
| 331 | { |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 332 | xfs_da_args_t args; |
| 333 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | int v; /* type-checking value */ |
| 335 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 336 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | XFS_STATS_INC(xs_dir_remove); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 338 | |
Barry Naujok | 87affd08 | 2008-06-03 11:59:18 +1000 | [diff] [blame] | 339 | memset(&args, 0, sizeof(xfs_da_args_t)); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 340 | args.name = name->name; |
| 341 | args.namelen = name->len; |
Barry Naujok | 5163f95 | 2008-05-21 16:41:01 +1000 | [diff] [blame] | 342 | args.hashval = dp->i_mount->m_dirnameops->hashname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | args.inumber = ino; |
| 344 | args.dp = dp; |
| 345 | args.firstblock = first; |
| 346 | args.flist = flist; |
| 347 | args.total = total; |
| 348 | args.whichfork = XFS_DATA_FORK; |
| 349 | args.trans = tp; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
| 352 | rval = xfs_dir2_sf_removename(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 353 | else if ((rval = xfs_dir2_isblock(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 355 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | rval = xfs_dir2_block_removename(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 357 | else if ((rval = xfs_dir2_isleaf(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 359 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | rval = xfs_dir2_leaf_removename(&args); |
| 361 | else |
| 362 | rval = xfs_dir2_node_removename(&args); |
| 363 | return rval; |
| 364 | } |
| 365 | |
| 366 | /* |
| 367 | * Read a directory. |
| 368 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 369 | int |
Christoph Hellwig | 051e7cd | 2007-08-28 13:58:24 +1000 | [diff] [blame] | 370 | xfs_readdir( |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 371 | xfs_inode_t *dp, |
Christoph Hellwig | 051e7cd | 2007-08-28 13:58:24 +1000 | [diff] [blame] | 372 | void *dirent, |
| 373 | size_t bufsize, |
| 374 | xfs_off_t *offset, |
| 375 | filldir_t filldir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | int rval; /* return value */ |
| 378 | int v; /* type-checking value */ |
| 379 | |
Christoph Hellwig | cca28fb | 2010-06-24 11:57:09 +1000 | [diff] [blame] | 380 | trace_xfs_readdir(dp); |
Christoph Hellwig | 051e7cd | 2007-08-28 13:58:24 +1000 | [diff] [blame] | 381 | |
| 382 | if (XFS_FORCED_SHUTDOWN(dp->i_mount)) |
| 383 | return XFS_ERROR(EIO); |
| 384 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 385 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | XFS_STATS_INC(xs_dir_getdents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
Christoph Hellwig | 051e7cd | 2007-08-28 13:58:24 +1000 | [diff] [blame] | 389 | rval = xfs_dir2_sf_getdents(dp, dirent, offset, filldir); |
| 390 | else if ((rval = xfs_dir2_isblock(NULL, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | ; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 392 | else if (v) |
Christoph Hellwig | 051e7cd | 2007-08-28 13:58:24 +1000 | [diff] [blame] | 393 | rval = xfs_dir2_block_getdents(dp, dirent, offset, filldir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | else |
Christoph Hellwig | 051e7cd | 2007-08-28 13:58:24 +1000 | [diff] [blame] | 395 | rval = xfs_dir2_leaf_getdents(dp, dirent, bufsize, offset, |
| 396 | filldir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return rval; |
| 398 | } |
| 399 | |
| 400 | /* |
| 401 | * Replace the inode number of a directory entry. |
| 402 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 403 | int |
| 404 | xfs_dir_replace( |
| 405 | xfs_trans_t *tp, |
| 406 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 407 | struct xfs_name *name, /* name of entry to replace */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | xfs_ino_t inum, /* new inode number */ |
| 409 | xfs_fsblock_t *first, /* bmap's firstblock */ |
| 410 | xfs_bmap_free_t *flist, /* bmap's freeblock list */ |
| 411 | xfs_extlen_t total) /* bmap's total block count */ |
| 412 | { |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 413 | xfs_da_args_t args; |
| 414 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | int v; /* type-checking value */ |
| 416 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 417 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 419 | if ((rval = xfs_dir_ino_validate(tp->t_mountp, inum))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 421 | |
Barry Naujok | 87affd08 | 2008-06-03 11:59:18 +1000 | [diff] [blame] | 422 | memset(&args, 0, sizeof(xfs_da_args_t)); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 423 | args.name = name->name; |
| 424 | args.namelen = name->len; |
Barry Naujok | 5163f95 | 2008-05-21 16:41:01 +1000 | [diff] [blame] | 425 | args.hashval = dp->i_mount->m_dirnameops->hashname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | args.inumber = inum; |
| 427 | args.dp = dp; |
| 428 | args.firstblock = first; |
| 429 | args.flist = flist; |
| 430 | args.total = total; |
| 431 | args.whichfork = XFS_DATA_FORK; |
| 432 | args.trans = tp; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
| 435 | rval = xfs_dir2_sf_replace(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 436 | else if ((rval = xfs_dir2_isblock(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 438 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | rval = xfs_dir2_block_replace(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 440 | else if ((rval = xfs_dir2_isleaf(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 442 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | rval = xfs_dir2_leaf_replace(&args); |
| 444 | else |
| 445 | rval = xfs_dir2_node_replace(&args); |
| 446 | return rval; |
| 447 | } |
| 448 | |
| 449 | /* |
| 450 | * See if this entry can be added to the directory without allocating space. |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 451 | * First checks that the caller couldn't reserve enough space (resblks = 0). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 453 | int |
| 454 | xfs_dir_canenter( |
| 455 | xfs_trans_t *tp, |
| 456 | xfs_inode_t *dp, |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 457 | struct xfs_name *name, /* name of entry to add */ |
| 458 | uint resblks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | { |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 460 | xfs_da_args_t args; |
| 461 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | int v; /* type-checking value */ |
| 463 | |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 464 | if (resblks) |
| 465 | return 0; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 466 | |
Al Viro | abbede1 | 2011-07-26 02:31:30 -0400 | [diff] [blame] | 467 | ASSERT(S_ISDIR(dp->i_d.di_mode)); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 468 | |
Barry Naujok | 87affd08 | 2008-06-03 11:59:18 +1000 | [diff] [blame] | 469 | memset(&args, 0, sizeof(xfs_da_args_t)); |
Barry Naujok | 556b8b1 | 2008-04-10 12:22:07 +1000 | [diff] [blame] | 470 | args.name = name->name; |
| 471 | args.namelen = name->len; |
Barry Naujok | 5163f95 | 2008-05-21 16:41:01 +1000 | [diff] [blame] | 472 | args.hashval = dp->i_mount->m_dirnameops->hashname(name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | args.dp = dp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | args.whichfork = XFS_DATA_FORK; |
| 475 | args.trans = tp; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 476 | args.op_flags = XFS_DA_OP_JUSTCHECK | XFS_DA_OP_ADDNAME | |
| 477 | XFS_DA_OP_OKNOENT; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 478 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) |
| 480 | rval = xfs_dir2_sf_addname(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 481 | else if ((rval = xfs_dir2_isblock(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 483 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | rval = xfs_dir2_block_addname(&args); |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 485 | else if ((rval = xfs_dir2_isleaf(tp, dp, &v))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | return rval; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 487 | else if (v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | rval = xfs_dir2_leaf_addname(&args); |
| 489 | else |
| 490 | rval = xfs_dir2_node_addname(&args); |
| 491 | return rval; |
| 492 | } |
| 493 | |
| 494 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | * Utility routines. |
| 496 | */ |
| 497 | |
| 498 | /* |
| 499 | * Add a block to the directory. |
Christoph Hellwig | 77936d0 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 500 | * |
| 501 | * This routine is for data and free blocks, not leaf/node blocks which are |
| 502 | * handled by xfs_da_grow_inode. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 504 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | xfs_dir2_grow_inode( |
Christoph Hellwig | 77936d0 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 506 | struct xfs_da_args *args, |
| 507 | int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */ |
| 508 | xfs_dir2_db_t *dbp) /* out: block number added */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | { |
Christoph Hellwig | 77936d0 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 510 | struct xfs_inode *dp = args->dp; |
| 511 | struct xfs_mount *mp = dp->i_mount; |
| 512 | xfs_fileoff_t bno; /* directory offset of new block */ |
| 513 | int count; /* count of filesystem blocks */ |
| 514 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 516 | trace_xfs_dir2_grow_inode(args, space); |
| 517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | /* |
| 519 | * Set lowest possible block in the space requested. |
| 520 | */ |
| 521 | bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE); |
| 522 | count = mp->m_dirblkfsbs; |
Christoph Hellwig | 77936d0 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 523 | |
| 524 | error = xfs_da_grow_inode_int(args, &bno, count); |
| 525 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Christoph Hellwig | bbaaf53 | 2007-06-28 16:43:50 +1000 | [diff] [blame] | 528 | *dbp = xfs_dir2_da_to_db(mp, (xfs_dablk_t)bno); |
David Chinner | a744405 | 2008-10-30 17:38:12 +1100 | [diff] [blame] | 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | /* |
| 531 | * Update file's size if this is the data space and it grew. |
| 532 | */ |
| 533 | if (space == XFS_DIR2_DATA_SPACE) { |
| 534 | xfs_fsize_t size; /* directory file (data) size */ |
| 535 | |
| 536 | size = XFS_FSB_TO_B(mp, bno + count); |
| 537 | if (size > dp->i_d.di_size) { |
| 538 | dp->i_d.di_size = size; |
Christoph Hellwig | 77936d0 | 2011-07-13 13:43:49 +0200 | [diff] [blame] | 539 | xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | } |
| 541 | } |
| 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | /* |
| 546 | * See if the directory is a single-block form directory. |
| 547 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 548 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | xfs_dir2_isblock( |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 550 | xfs_trans_t *tp, |
| 551 | xfs_inode_t *dp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | int *vp) /* out: 1 is block, 0 is not block */ |
| 553 | { |
| 554 | xfs_fileoff_t last; /* last file offset */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 555 | xfs_mount_t *mp; |
| 556 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
| 558 | mp = dp->i_mount; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 559 | if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | return rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | rval = XFS_FSB_TO_B(mp, last) == mp->m_dirblksize; |
| 562 | ASSERT(rval == 0 || dp->i_d.di_size == mp->m_dirblksize); |
| 563 | *vp = rval; |
| 564 | return 0; |
| 565 | } |
| 566 | |
| 567 | /* |
| 568 | * See if the directory is a single-leaf form directory. |
| 569 | */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 570 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | xfs_dir2_isleaf( |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 572 | xfs_trans_t *tp, |
| 573 | xfs_inode_t *dp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | int *vp) /* out: 1 is leaf, 0 is not leaf */ |
| 575 | { |
| 576 | xfs_fileoff_t last; /* last file offset */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 577 | xfs_mount_t *mp; |
| 578 | int rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | |
| 580 | mp = dp->i_mount; |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 581 | if ((rval = xfs_bmap_last_offset(tp, dp, &last, XFS_DATA_FORK))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | return rval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | *vp = last == mp->m_dirleafblk + (1 << mp->m_sb.sb_dirblklog); |
| 584 | return 0; |
| 585 | } |
| 586 | |
| 587 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | * Remove the given block from the directory. |
| 589 | * This routine is used for data and free blocks, leaf/node are done |
| 590 | * by xfs_da_shrink_inode. |
| 591 | */ |
| 592 | int |
| 593 | xfs_dir2_shrink_inode( |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 594 | xfs_da_args_t *args, |
| 595 | xfs_dir2_db_t db, |
| 596 | xfs_dabuf_t *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
| 598 | xfs_fileoff_t bno; /* directory file offset */ |
| 599 | xfs_dablk_t da; /* directory file offset */ |
| 600 | int done; /* bunmap is finished */ |
Nathan Scott | f6c2d1f | 2006-06-20 13:04:51 +1000 | [diff] [blame] | 601 | xfs_inode_t *dp; |
| 602 | int error; |
| 603 | xfs_mount_t *mp; |
| 604 | xfs_trans_t *tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 606 | trace_xfs_dir2_shrink_inode(args, db); |
| 607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | dp = args->dp; |
| 609 | mp = dp->i_mount; |
| 610 | tp = args->trans; |
Christoph Hellwig | bbaaf53 | 2007-06-28 16:43:50 +1000 | [diff] [blame] | 611 | da = xfs_dir2_db_to_da(mp, db); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | /* |
| 613 | * Unmap the fsblock(s). |
| 614 | */ |
| 615 | if ((error = xfs_bunmapi(tp, dp, da, mp->m_dirblkfsbs, |
| 616 | XFS_BMAPI_METADATA, 0, args->firstblock, args->flist, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 617 | &done))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | /* |
| 619 | * ENOSPC actually can happen if we're in a removename with |
| 620 | * no space reservation, and the resulting block removal |
| 621 | * would cause a bmap btree split or conversion from extents |
| 622 | * to btree. This can only happen for un-fragmented |
| 623 | * directory blocks, since you need to be punching out |
| 624 | * the middle of an extent. |
| 625 | * In this case we need to leave the block in the file, |
| 626 | * and not binval it. |
| 627 | * So the block has to be in a consistent empty state |
| 628 | * and appropriately logged. |
| 629 | * We don't free up the buffer, the caller can tell it |
| 630 | * hasn't happened since it got an error back. |
| 631 | */ |
| 632 | return error; |
| 633 | } |
| 634 | ASSERT(done); |
| 635 | /* |
| 636 | * Invalidate the buffer from the transaction. |
| 637 | */ |
| 638 | xfs_da_binval(tp, bp); |
| 639 | /* |
| 640 | * If it's not a data block, we're done. |
| 641 | */ |
| 642 | if (db >= XFS_DIR2_LEAF_FIRSTDB(mp)) |
| 643 | return 0; |
| 644 | /* |
| 645 | * If the block isn't the last one in the directory, we're done. |
| 646 | */ |
Christoph Hellwig | bbaaf53 | 2007-06-28 16:43:50 +1000 | [diff] [blame] | 647 | if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(mp, db + 1, 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | return 0; |
| 649 | bno = da; |
| 650 | if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) { |
| 651 | /* |
| 652 | * This can't really happen unless there's kernel corruption. |
| 653 | */ |
| 654 | return error; |
| 655 | } |
| 656 | if (db == mp->m_dirdatablk) |
| 657 | ASSERT(bno == 0); |
| 658 | else |
| 659 | ASSERT(bno > 0); |
| 660 | /* |
| 661 | * Set the size to the new last block. |
| 662 | */ |
| 663 | dp->i_d.di_size = XFS_FSB_TO_B(mp, bno); |
| 664 | xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); |
| 665 | return 0; |
| 666 | } |