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-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 | */ |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 20 | #include "xfs_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "xfs_types.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 22 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_log.h" |
| 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_attr_sf.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_alloc.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 34 | #include "xfs_inode_item.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "xfs_bmap.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "xfs_attr.h" |
| 37 | #include "xfs_attr_leaf.h" |
| 38 | #include "xfs_error.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include "xfs_quota.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include "xfs_trans_space.h" |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 41 | #include "xfs_vnodeops.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 42 | #include "xfs_trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * xfs_attr.c |
| 46 | * |
| 47 | * Provide the external interfaces to manage attribute lists. |
| 48 | */ |
| 49 | |
| 50 | /*======================================================================== |
| 51 | * Function prototypes for the kernel. |
| 52 | *========================================================================*/ |
| 53 | |
| 54 | /* |
| 55 | * Internal routines when attribute list fits inside the inode. |
| 56 | */ |
| 57 | STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args); |
| 58 | |
| 59 | /* |
| 60 | * Internal routines when attribute list is one block. |
| 61 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 62 | STATIC int xfs_attr_leaf_get(xfs_da_args_t *args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args); |
| 64 | STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args); |
| 65 | STATIC int xfs_attr_leaf_list(xfs_attr_list_context_t *context); |
| 66 | |
| 67 | /* |
| 68 | * Internal routines when attribute list is more than one block. |
| 69 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 70 | STATIC int xfs_attr_node_get(xfs_da_args_t *args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | STATIC int xfs_attr_node_addname(xfs_da_args_t *args); |
| 72 | STATIC int xfs_attr_node_removename(xfs_da_args_t *args); |
| 73 | STATIC int xfs_attr_node_list(xfs_attr_list_context_t *context); |
| 74 | STATIC int xfs_attr_fillstate(xfs_da_state_t *state); |
| 75 | STATIC int xfs_attr_refillstate(xfs_da_state_t *state); |
| 76 | |
| 77 | /* |
| 78 | * Routines to manipulate out-of-line attribute values. |
| 79 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | STATIC int xfs_attr_rmtval_set(xfs_da_args_t *args); |
| 81 | STATIC int xfs_attr_rmtval_remove(xfs_da_args_t *args); |
| 82 | |
| 83 | #define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */ |
| 84 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 85 | STATIC int |
| 86 | xfs_attr_name_to_xname( |
| 87 | struct xfs_name *xname, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 88 | const unsigned char *aname) |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 89 | { |
| 90 | if (!aname) |
| 91 | return EINVAL; |
| 92 | xname->name = aname; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 93 | xname->len = strlen((char *)aname); |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 94 | if (xname->len >= MAXNAMELEN) |
| 95 | return EFAULT; /* match IRIX behaviour */ |
| 96 | |
| 97 | return 0; |
| 98 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 100 | STATIC int |
| 101 | xfs_inode_hasattr( |
| 102 | struct xfs_inode *ip) |
| 103 | { |
| 104 | if (!XFS_IFORK_Q(ip) || |
| 105 | (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS && |
| 106 | ip->i_d.di_anextents == 0)) |
| 107 | return 0; |
| 108 | return 1; |
| 109 | } |
| 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | /*======================================================================== |
| 112 | * Overall external interface routines. |
| 113 | *========================================================================*/ |
| 114 | |
Christoph Hellwig | e82fa0c | 2009-11-14 16:17:20 +0000 | [diff] [blame] | 115 | STATIC int |
| 116 | xfs_attr_get_int( |
| 117 | struct xfs_inode *ip, |
| 118 | struct xfs_name *name, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 119 | unsigned char *value, |
Christoph Hellwig | e82fa0c | 2009-11-14 16:17:20 +0000 | [diff] [blame] | 120 | int *valuelenp, |
| 121 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
| 123 | xfs_da_args_t args; |
| 124 | int error; |
| 125 | |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 126 | if (!xfs_inode_hasattr(ip)) |
| 127 | return ENOATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | /* |
| 130 | * Fill in the arg structure for this request. |
| 131 | */ |
| 132 | memset((char *)&args, 0, sizeof(args)); |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 133 | args.name = name->name; |
| 134 | args.namelen = name->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | args.value = value; |
| 136 | args.valuelen = *valuelenp; |
| 137 | args.flags = flags; |
| 138 | args.hashval = xfs_da_hashname(args.name, args.namelen); |
| 139 | args.dp = ip; |
| 140 | args.whichfork = XFS_ATTR_FORK; |
| 141 | |
| 142 | /* |
| 143 | * Decide on what work routines to call based on the inode size. |
| 144 | */ |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 145 | if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | error = xfs_attr_shortform_getvalue(&args); |
| 147 | } else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) { |
| 148 | error = xfs_attr_leaf_get(&args); |
| 149 | } else { |
| 150 | error = xfs_attr_node_get(&args); |
| 151 | } |
| 152 | |
| 153 | /* |
| 154 | * Return the number of bytes in the value to the caller. |
| 155 | */ |
| 156 | *valuelenp = args.valuelen; |
| 157 | |
| 158 | if (error == EEXIST) |
| 159 | error = 0; |
| 160 | return(error); |
| 161 | } |
| 162 | |
| 163 | int |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 164 | xfs_attr_get( |
| 165 | xfs_inode_t *ip, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 166 | const unsigned char *name, |
| 167 | unsigned char *value, |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 168 | int *valuelenp, |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 169 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 171 | int error; |
| 172 | struct xfs_name xname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | XFS_STATS_INC(xs_attr_get); |
| 175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | if (XFS_FORCED_SHUTDOWN(ip->i_mount)) |
| 177 | return(EIO); |
| 178 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 179 | error = xfs_attr_name_to_xname(&xname, name); |
| 180 | if (error) |
| 181 | return error; |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | xfs_ilock(ip, XFS_ILOCK_SHARED); |
Christoph Hellwig | e82fa0c | 2009-11-14 16:17:20 +0000 | [diff] [blame] | 184 | error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | xfs_iunlock(ip, XFS_ILOCK_SHARED); |
| 186 | return(error); |
| 187 | } |
| 188 | |
Niv Sardi | 5e9da7b | 2008-08-13 16:03:35 +1000 | [diff] [blame] | 189 | /* |
| 190 | * Calculate how many blocks we need for the new attribute, |
| 191 | */ |
Eric Sandeen | 5d77c0d | 2009-11-19 15:52:00 +0000 | [diff] [blame] | 192 | STATIC int |
Niv Sardi | 5e9da7b | 2008-08-13 16:03:35 +1000 | [diff] [blame] | 193 | xfs_attr_calc_size( |
| 194 | struct xfs_inode *ip, |
| 195 | int namelen, |
| 196 | int valuelen, |
| 197 | int *local) |
| 198 | { |
| 199 | struct xfs_mount *mp = ip->i_mount; |
| 200 | int size; |
| 201 | int nblks; |
| 202 | |
| 203 | /* |
| 204 | * Determine space new attribute will use, and if it would be |
| 205 | * "local" or "remote" (note: local != inline). |
| 206 | */ |
| 207 | size = xfs_attr_leaf_newentsize(namelen, valuelen, |
| 208 | mp->m_sb.sb_blocksize, local); |
| 209 | |
| 210 | nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK); |
| 211 | if (*local) { |
| 212 | if (size > (mp->m_sb.sb_blocksize >> 1)) { |
| 213 | /* Double split possible */ |
| 214 | nblks *= 2; |
| 215 | } |
| 216 | } else { |
| 217 | /* |
| 218 | * Out of line attribute, cannot double split, but |
| 219 | * make room for the attribute value itself. |
| 220 | */ |
| 221 | uint dblocks = XFS_B_TO_FSB(mp, valuelen); |
| 222 | nblks += dblocks; |
| 223 | nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK); |
| 224 | } |
| 225 | |
| 226 | return nblks; |
| 227 | } |
| 228 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 229 | STATIC int |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 230 | xfs_attr_set_int( |
| 231 | struct xfs_inode *dp, |
| 232 | struct xfs_name *name, |
| 233 | unsigned char *value, |
| 234 | int valuelen, |
| 235 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | { |
| 237 | xfs_da_args_t args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | xfs_fsblock_t firstblock; |
| 239 | xfs_bmap_free_t flist; |
| 240 | int error, err2, committed; |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 241 | xfs_mount_t *mp = dp->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | int rsvd = (flags & ATTR_ROOT) != 0; |
Niv Sardi | 5e9da7b | 2008-08-13 16:03:35 +1000 | [diff] [blame] | 243 | int local; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | /* |
| 246 | * Attach the dquots to the inode. |
| 247 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 248 | error = xfs_qm_dqattach(dp, 0); |
| 249 | if (error) |
| 250 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | /* |
| 253 | * If the inode doesn't have an attribute fork, add one. |
| 254 | * (inode must not be locked when we call this routine) |
| 255 | */ |
| 256 | if (XFS_IFORK_Q(dp) == 0) { |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 257 | int sf_size = sizeof(xfs_attr_sf_hdr_t) + |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 258 | XFS_ATTR_SF_ENTSIZE_BYNAME(name->len, valuelen); |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 259 | |
| 260 | if ((error = xfs_bmap_add_attrfork(dp, sf_size, rsvd))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return(error); |
| 262 | } |
| 263 | |
| 264 | /* |
| 265 | * Fill in the arg structure for this request. |
| 266 | */ |
| 267 | memset((char *)&args, 0, sizeof(args)); |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 268 | args.name = name->name; |
| 269 | args.namelen = name->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | args.value = value; |
| 271 | args.valuelen = valuelen; |
| 272 | args.flags = flags; |
| 273 | args.hashval = xfs_da_hashname(args.name, args.namelen); |
| 274 | args.dp = dp; |
| 275 | args.firstblock = &firstblock; |
| 276 | args.flist = &flist; |
| 277 | args.whichfork = XFS_ATTR_FORK; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 278 | args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | /* Size is now blocks for attribute data */ |
Niv Sardi | 5e9da7b | 2008-08-13 16:03:35 +1000 | [diff] [blame] | 281 | args.total = xfs_attr_calc_size(dp, name->len, valuelen, &local); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
| 283 | /* |
| 284 | * Start our first transaction of the day. |
| 285 | * |
| 286 | * All future transactions during this code must be "chained" off |
| 287 | * this one via the trans_dup() call. All transactions will contain |
| 288 | * the inode, and the inode will always be marked with trans_ihold(). |
| 289 | * Since the inode will be locked in all transactions, we must log |
| 290 | * the inode in every transaction to let it float upward through |
| 291 | * the log. |
| 292 | */ |
| 293 | args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET); |
| 294 | |
| 295 | /* |
| 296 | * Root fork attributes can use reserved data blocks for this |
| 297 | * operation if necessary |
| 298 | */ |
| 299 | |
| 300 | if (rsvd) |
| 301 | args.trans->t_flags |= XFS_TRANS_RESERVE; |
| 302 | |
Niv Sardi | 5e9da7b | 2008-08-13 16:03:35 +1000 | [diff] [blame] | 303 | if ((error = xfs_trans_reserve(args.trans, args.total, |
| 304 | XFS_ATTRSET_LOG_RES(mp, args.total), 0, |
| 305 | XFS_TRANS_PERM_LOG_RES, XFS_ATTRSET_LOG_COUNT))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | xfs_trans_cancel(args.trans, 0); |
| 307 | return(error); |
| 308 | } |
| 309 | xfs_ilock(dp, XFS_ILOCK_EXCL); |
| 310 | |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 311 | error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0, |
Niv Sardi | 5e9da7b | 2008-08-13 16:03:35 +1000 | [diff] [blame] | 312 | rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES : |
| 313 | XFS_QMOPT_RES_REGBLKS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | if (error) { |
| 315 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 316 | xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES); |
| 317 | return (error); |
| 318 | } |
| 319 | |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 320 | xfs_trans_ijoin(args.trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | /* |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 323 | * If the attribute list is non-existent or a shortform list, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | * upgrade it to a single-leaf-block attribute list. |
| 325 | */ |
| 326 | if ((dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) || |
| 327 | ((dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) && |
| 328 | (dp->i_d.di_anextents == 0))) { |
| 329 | |
| 330 | /* |
| 331 | * Build initial attribute list (if required). |
| 332 | */ |
| 333 | if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 334 | xfs_attr_shortform_create(&args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | |
| 336 | /* |
| 337 | * Try to add the attr to the attribute list in |
| 338 | * the inode. |
| 339 | */ |
| 340 | error = xfs_attr_shortform_addname(&args); |
| 341 | if (error != ENOSPC) { |
| 342 | /* |
| 343 | * Commit the shortform mods, and we're done. |
| 344 | * NOTE: this is also the error path (EEXIST, etc). |
| 345 | */ |
| 346 | ASSERT(args.trans != NULL); |
| 347 | |
| 348 | /* |
| 349 | * If this is a synchronous mount, make sure that |
| 350 | * the transaction goes to disk before returning |
| 351 | * to the user. |
| 352 | */ |
| 353 | if (mp->m_flags & XFS_MOUNT_WSYNC) { |
| 354 | xfs_trans_set_sync(args.trans); |
| 355 | } |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 356 | |
| 357 | if (!error && (flags & ATTR_KERNOTIME) == 0) { |
| 358 | xfs_trans_ichgtime(args.trans, dp, |
| 359 | XFS_ICHGTIME_CHG); |
| 360 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | err2 = xfs_trans_commit(args.trans, |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 362 | XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | return(error == 0 ? err2 : error); |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | * It won't fit in the shortform, transform to a leaf block. |
| 370 | * GROT: another possible req'mt for a double-split btree op. |
| 371 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 372 | xfs_bmap_init(args.flist, args.firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | error = xfs_attr_shortform_to_leaf(&args); |
| 374 | if (!error) { |
| 375 | error = xfs_bmap_finish(&args.trans, args.flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 376 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | if (error) { |
| 379 | ASSERT(committed); |
| 380 | args.trans = NULL; |
| 381 | xfs_bmap_cancel(&flist); |
| 382 | goto out; |
| 383 | } |
| 384 | |
| 385 | /* |
| 386 | * bmap_finish() may have committed the last trans and started |
| 387 | * a new one. We need the inode to be in all transactions. |
| 388 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 389 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 390 | xfs_trans_ijoin(args.trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
| 392 | /* |
| 393 | * Commit the leaf transformation. We'll need another (linked) |
| 394 | * transaction to add the new attribute to the leaf. |
| 395 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 396 | |
| 397 | error = xfs_trans_roll(&args.trans, dp); |
| 398 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | goto out; |
| 400 | |
| 401 | } |
| 402 | |
| 403 | if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) { |
| 404 | error = xfs_attr_leaf_addname(&args); |
| 405 | } else { |
| 406 | error = xfs_attr_node_addname(&args); |
| 407 | } |
| 408 | if (error) { |
| 409 | goto out; |
| 410 | } |
| 411 | |
| 412 | /* |
| 413 | * If this is a synchronous mount, make sure that the |
| 414 | * transaction goes to disk before returning to the user. |
| 415 | */ |
| 416 | if (mp->m_flags & XFS_MOUNT_WSYNC) { |
| 417 | xfs_trans_set_sync(args.trans); |
| 418 | } |
| 419 | |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 420 | if ((flags & ATTR_KERNOTIME) == 0) |
| 421 | xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG); |
| 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | /* |
| 424 | * Commit the last in the sequence of transactions. |
| 425 | */ |
| 426 | xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE); |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 427 | error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | return(error); |
| 431 | |
| 432 | out: |
| 433 | if (args.trans) |
| 434 | xfs_trans_cancel(args.trans, |
| 435 | XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT); |
| 436 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 437 | return(error); |
| 438 | } |
| 439 | |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 440 | int |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 441 | xfs_attr_set( |
| 442 | xfs_inode_t *dp, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 443 | const unsigned char *name, |
| 444 | unsigned char *value, |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 445 | int valuelen, |
| 446 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | { |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 448 | int error; |
| 449 | struct xfs_name xname; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 451 | XFS_STATS_INC(xs_attr_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 453 | if (XFS_FORCED_SHUTDOWN(dp->i_mount)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | return (EIO); |
| 455 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 456 | error = xfs_attr_name_to_xname(&xname, name); |
| 457 | if (error) |
| 458 | return error; |
| 459 | |
| 460 | return xfs_attr_set_int(dp, &xname, value, valuelen, flags); |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | /* |
| 464 | * Generic handler routine to remove a name from an attribute list. |
| 465 | * Transitions attribute list from Btree to shortform as necessary. |
| 466 | */ |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 467 | STATIC int |
| 468 | xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags) |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 469 | { |
| 470 | xfs_da_args_t args; |
| 471 | xfs_fsblock_t firstblock; |
| 472 | xfs_bmap_free_t flist; |
| 473 | int error; |
| 474 | xfs_mount_t *mp = dp->i_mount; |
| 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | /* |
| 477 | * Fill in the arg structure for this request. |
| 478 | */ |
| 479 | memset((char *)&args, 0, sizeof(args)); |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 480 | args.name = name->name; |
| 481 | args.namelen = name->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | args.flags = flags; |
| 483 | args.hashval = xfs_da_hashname(args.name, args.namelen); |
| 484 | args.dp = dp; |
| 485 | args.firstblock = &firstblock; |
| 486 | args.flist = &flist; |
| 487 | args.total = 0; |
| 488 | args.whichfork = XFS_ATTR_FORK; |
| 489 | |
| 490 | /* |
Dave Chinner | 4a33821 | 2011-06-23 01:35:01 +0000 | [diff] [blame] | 491 | * we have no control over the attribute names that userspace passes us |
| 492 | * to remove, so we have to allow the name lookup prior to attribute |
| 493 | * removal to fail. |
| 494 | */ |
| 495 | args.op_flags = XFS_DA_OP_OKNOENT; |
| 496 | |
| 497 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | * Attach the dquots to the inode. |
| 499 | */ |
Christoph Hellwig | 7d09525 | 2009-06-08 15:33:32 +0200 | [diff] [blame] | 500 | error = xfs_qm_dqattach(dp, 0); |
| 501 | if (error) |
| 502 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
| 504 | /* |
| 505 | * Start our first transaction of the day. |
| 506 | * |
| 507 | * All future transactions during this code must be "chained" off |
| 508 | * this one via the trans_dup() call. All transactions will contain |
| 509 | * the inode, and the inode will always be marked with trans_ihold(). |
| 510 | * Since the inode will be locked in all transactions, we must log |
| 511 | * the inode in every transaction to let it float upward through |
| 512 | * the log. |
| 513 | */ |
| 514 | args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM); |
| 515 | |
| 516 | /* |
| 517 | * Root fork attributes can use reserved data blocks for this |
| 518 | * operation if necessary |
| 519 | */ |
| 520 | |
| 521 | if (flags & ATTR_ROOT) |
| 522 | args.trans->t_flags |= XFS_TRANS_RESERVE; |
| 523 | |
| 524 | if ((error = xfs_trans_reserve(args.trans, |
| 525 | XFS_ATTRRM_SPACE_RES(mp), |
| 526 | XFS_ATTRRM_LOG_RES(mp), |
| 527 | 0, XFS_TRANS_PERM_LOG_RES, |
| 528 | XFS_ATTRRM_LOG_COUNT))) { |
| 529 | xfs_trans_cancel(args.trans, 0); |
| 530 | return(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | xfs_ilock(dp, XFS_ILOCK_EXCL); |
| 534 | /* |
| 535 | * No need to make quota reservations here. We expect to release some |
| 536 | * blocks not allocate in the common case. |
| 537 | */ |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 538 | xfs_trans_ijoin(args.trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
| 540 | /* |
| 541 | * Decide on what work routines to call based on the inode size. |
| 542 | */ |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 543 | if (!xfs_inode_hasattr(dp)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | error = XFS_ERROR(ENOATTR); |
| 545 | goto out; |
| 546 | } |
| 547 | if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) { |
| 548 | ASSERT(dp->i_afp->if_flags & XFS_IFINLINE); |
| 549 | error = xfs_attr_shortform_remove(&args); |
| 550 | if (error) { |
| 551 | goto out; |
| 552 | } |
| 553 | } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) { |
| 554 | error = xfs_attr_leaf_removename(&args); |
| 555 | } else { |
| 556 | error = xfs_attr_node_removename(&args); |
| 557 | } |
| 558 | if (error) { |
| 559 | goto out; |
| 560 | } |
| 561 | |
| 562 | /* |
| 563 | * If this is a synchronous mount, make sure that the |
| 564 | * transaction goes to disk before returning to the user. |
| 565 | */ |
| 566 | if (mp->m_flags & XFS_MOUNT_WSYNC) { |
| 567 | xfs_trans_set_sync(args.trans); |
| 568 | } |
| 569 | |
Dave Chinner | dcd79a1 | 2010-09-28 12:27:25 +1000 | [diff] [blame] | 570 | if ((flags & ATTR_KERNOTIME) == 0) |
| 571 | xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG); |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | /* |
| 574 | * Commit the last in the sequence of transactions. |
| 575 | */ |
| 576 | xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE); |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 577 | error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | return(error); |
| 581 | |
| 582 | out: |
| 583 | if (args.trans) |
| 584 | xfs_trans_cancel(args.trans, |
| 585 | XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT); |
| 586 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 587 | return(error); |
| 588 | } |
| 589 | |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 590 | int |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 591 | xfs_attr_remove( |
| 592 | xfs_inode_t *dp, |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 593 | const unsigned char *name, |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 594 | int flags) |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 595 | { |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 596 | int error; |
| 597 | struct xfs_name xname; |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 598 | |
| 599 | XFS_STATS_INC(xs_attr_remove); |
| 600 | |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 601 | if (XFS_FORCED_SHUTDOWN(dp->i_mount)) |
| 602 | return (EIO); |
| 603 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 604 | error = xfs_attr_name_to_xname(&xname, name); |
| 605 | if (error) |
| 606 | return error; |
| 607 | |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 608 | xfs_ilock(dp, XFS_ILOCK_SHARED); |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 609 | if (!xfs_inode_hasattr(dp)) { |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 610 | xfs_iunlock(dp, XFS_ILOCK_SHARED); |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 611 | return XFS_ERROR(ENOATTR); |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 612 | } |
| 613 | xfs_iunlock(dp, XFS_ILOCK_SHARED); |
| 614 | |
Barry Naujok | e8b0eba | 2008-04-22 17:34:31 +1000 | [diff] [blame] | 615 | return xfs_attr_remove_int(dp, &xname, flags); |
Nathan Scott | aa82daa | 2005-11-02 10:33:33 +1100 | [diff] [blame] | 616 | } |
| 617 | |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 618 | int |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 619 | xfs_attr_list_int(xfs_attr_list_context_t *context) |
| 620 | { |
| 621 | int error; |
| 622 | xfs_inode_t *dp = context->dp; |
| 623 | |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 624 | XFS_STATS_INC(xs_attr_list); |
| 625 | |
| 626 | if (XFS_FORCED_SHUTDOWN(dp->i_mount)) |
| 627 | return EIO; |
| 628 | |
| 629 | xfs_ilock(dp, XFS_ILOCK_SHARED); |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 630 | |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 631 | /* |
| 632 | * Decide on what work routines to call based on the inode size. |
| 633 | */ |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 634 | if (!xfs_inode_hasattr(dp)) { |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 635 | error = 0; |
| 636 | } else if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) { |
| 637 | error = xfs_attr_shortform_list(context); |
| 638 | } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) { |
| 639 | error = xfs_attr_leaf_list(context); |
| 640 | } else { |
| 641 | error = xfs_attr_node_list(context); |
| 642 | } |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 643 | |
| 644 | xfs_iunlock(dp, XFS_ILOCK_SHARED); |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 645 | |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 646 | return error; |
| 647 | } |
| 648 | |
| 649 | #define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \ |
| 650 | (((struct attrlist_ent *) 0)->a_name - (char *) 0) |
| 651 | #define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \ |
| 652 | ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(u_int32_t)-1) \ |
| 653 | & ~(sizeof(u_int32_t)-1)) |
| 654 | |
| 655 | /* |
| 656 | * Format an attribute and copy it out to the user's buffer. |
| 657 | * Take care to check values and protect against them changing later, |
| 658 | * we may be reading them directly out of a user buffer. |
| 659 | */ |
| 660 | /*ARGSUSED*/ |
| 661 | STATIC int |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 662 | xfs_attr_put_listent( |
| 663 | xfs_attr_list_context_t *context, |
| 664 | int flags, |
| 665 | unsigned char *name, |
| 666 | int namelen, |
| 667 | int valuelen, |
| 668 | unsigned char *value) |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 669 | { |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 670 | struct attrlist *alist = (struct attrlist *)context->alist; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 671 | attrlist_ent_t *aep; |
| 672 | int arraytop; |
| 673 | |
| 674 | ASSERT(!(context->flags & ATTR_KERNOVAL)); |
| 675 | ASSERT(context->count >= 0); |
| 676 | ASSERT(context->count < (ATTR_MAX_VALUELEN/8)); |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 677 | ASSERT(context->firstu >= sizeof(*alist)); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 678 | ASSERT(context->firstu <= context->bufsize); |
| 679 | |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 680 | /* |
| 681 | * Only list entries in the right namespace. |
| 682 | */ |
| 683 | if (((context->flags & ATTR_SECURE) == 0) != |
| 684 | ((flags & XFS_ATTR_SECURE) == 0)) |
| 685 | return 0; |
| 686 | if (((context->flags & ATTR_ROOT) == 0) != |
| 687 | ((flags & XFS_ATTR_ROOT) == 0)) |
| 688 | return 0; |
| 689 | |
| 690 | arraytop = sizeof(*alist) + |
| 691 | context->count * sizeof(alist->al_offset[0]); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 692 | context->firstu -= ATTR_ENTSIZE(namelen); |
| 693 | if (context->firstu < arraytop) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 694 | trace_xfs_attr_list_full(context); |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 695 | alist->al_more = 1; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 696 | context->seen_enough = 1; |
| 697 | return 1; |
| 698 | } |
| 699 | |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 700 | aep = (attrlist_ent_t *)&context->alist[context->firstu]; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 701 | aep->a_valuelen = valuelen; |
| 702 | memcpy(aep->a_name, name, namelen); |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 703 | aep->a_name[namelen] = 0; |
| 704 | alist->al_offset[context->count++] = context->firstu; |
| 705 | alist->al_count = context->count; |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 706 | trace_xfs_attr_list_add(context); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 707 | return 0; |
| 708 | } |
| 709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | /* |
| 711 | * Generate a list of extended attribute names and optionally |
| 712 | * also value lengths. Positive return value follows the XFS |
| 713 | * convention of being an error, zero or negative return code |
| 714 | * is the length of the buffer returned (negated), indicating |
| 715 | * success. |
| 716 | */ |
| 717 | int |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 718 | xfs_attr_list( |
| 719 | xfs_inode_t *dp, |
| 720 | char *buffer, |
| 721 | int bufsize, |
| 722 | int flags, |
| 723 | attrlist_cursor_kern_t *cursor) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
| 725 | xfs_attr_list_context_t context; |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 726 | struct attrlist *alist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | int error; |
| 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | /* |
| 730 | * Validate the cursor. |
| 731 | */ |
| 732 | if (cursor->pad1 || cursor->pad2) |
| 733 | return(XFS_ERROR(EINVAL)); |
| 734 | if ((cursor->initted == 0) && |
| 735 | (cursor->hashval || cursor->blkno || cursor->offset)) |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 736 | return XFS_ERROR(EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
| 738 | /* |
| 739 | * Check for a properly aligned buffer. |
| 740 | */ |
| 741 | if (((long)buffer) & (sizeof(int)-1)) |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 742 | return XFS_ERROR(EFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | if (flags & ATTR_KERNOVAL) |
| 744 | bufsize = 0; |
| 745 | |
| 746 | /* |
| 747 | * Initialize the output buffer. |
| 748 | */ |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 749 | memset(&context, 0, sizeof(context)); |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 750 | context.dp = dp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | context.cursor = cursor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | context.resynch = 1; |
| 753 | context.flags = flags; |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 754 | context.alist = buffer; |
| 755 | context.bufsize = (bufsize & ~(sizeof(int)-1)); /* align */ |
| 756 | context.firstu = context.bufsize; |
| 757 | context.put_listent = xfs_attr_put_listent; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 758 | |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 759 | alist = (struct attrlist *)context.alist; |
| 760 | alist->al_count = 0; |
| 761 | alist->al_more = 0; |
| 762 | alist->al_offset[0] = context.bufsize; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 763 | |
| 764 | error = xfs_attr_list_int(&context); |
Christoph Hellwig | ad9b463 | 2008-06-23 13:23:48 +1000 | [diff] [blame] | 765 | ASSERT(error >= 0); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 766 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } |
| 768 | |
| 769 | int /* error */ |
| 770 | xfs_attr_inactive(xfs_inode_t *dp) |
| 771 | { |
| 772 | xfs_trans_t *trans; |
| 773 | xfs_mount_t *mp; |
| 774 | int error; |
| 775 | |
| 776 | mp = dp->i_mount; |
| 777 | ASSERT(! XFS_NOT_DQATTACHED(mp, dp)); |
| 778 | |
| 779 | xfs_ilock(dp, XFS_ILOCK_SHARED); |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 780 | if (!xfs_inode_hasattr(dp) || |
| 781 | dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | xfs_iunlock(dp, XFS_ILOCK_SHARED); |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 783 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | xfs_iunlock(dp, XFS_ILOCK_SHARED); |
| 786 | |
| 787 | /* |
| 788 | * Start our first transaction of the day. |
| 789 | * |
| 790 | * All future transactions during this code must be "chained" off |
| 791 | * this one via the trans_dup() call. All transactions will contain |
| 792 | * the inode, and the inode will always be marked with trans_ihold(). |
| 793 | * Since the inode will be locked in all transactions, we must log |
| 794 | * the inode in every transaction to let it float upward through |
| 795 | * the log. |
| 796 | */ |
| 797 | trans = xfs_trans_alloc(mp, XFS_TRANS_ATTRINVAL); |
| 798 | if ((error = xfs_trans_reserve(trans, 0, XFS_ATTRINVAL_LOG_RES(mp), 0, |
| 799 | XFS_TRANS_PERM_LOG_RES, |
| 800 | XFS_ATTRINVAL_LOG_COUNT))) { |
| 801 | xfs_trans_cancel(trans, 0); |
| 802 | return(error); |
| 803 | } |
| 804 | xfs_ilock(dp, XFS_ILOCK_EXCL); |
| 805 | |
| 806 | /* |
| 807 | * No need to make quota reservations here. We expect to release some |
| 808 | * blocks, not allocate, in the common case. |
| 809 | */ |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 810 | xfs_trans_ijoin(trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | |
| 812 | /* |
| 813 | * Decide on what work routines to call based on the inode size. |
| 814 | */ |
Christoph Hellwig | caf8aab | 2008-06-23 13:23:41 +1000 | [diff] [blame] | 815 | if (!xfs_inode_hasattr(dp) || |
| 816 | dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | error = 0; |
| 818 | goto out; |
| 819 | } |
| 820 | error = xfs_attr_root_inactive(&trans, dp); |
| 821 | if (error) |
| 822 | goto out; |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 823 | |
Christoph Hellwig | 8f04c47 | 2011-07-08 14:34:34 +0200 | [diff] [blame] | 824 | error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0); |
| 825 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | goto out; |
| 827 | |
Eric Sandeen | 1c72bf9 | 2007-05-08 13:48:42 +1000 | [diff] [blame] | 828 | error = xfs_trans_commit(trans, XFS_TRANS_RELEASE_LOG_RES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 830 | |
| 831 | return(error); |
| 832 | |
| 833 | out: |
| 834 | xfs_trans_cancel(trans, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT); |
| 835 | xfs_iunlock(dp, XFS_ILOCK_EXCL); |
| 836 | return(error); |
| 837 | } |
| 838 | |
| 839 | |
| 840 | |
| 841 | /*======================================================================== |
| 842 | * External routines when attribute list is inside the inode |
| 843 | *========================================================================*/ |
| 844 | |
| 845 | /* |
| 846 | * Add a name to the shortform attribute list structure |
| 847 | * This is the external routine. |
| 848 | */ |
| 849 | STATIC int |
| 850 | xfs_attr_shortform_addname(xfs_da_args_t *args) |
| 851 | { |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 852 | int newsize, forkoff, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 854 | trace_xfs_attr_sf_addname(args); |
| 855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | retval = xfs_attr_shortform_lookup(args); |
| 857 | if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) { |
| 858 | return(retval); |
| 859 | } else if (retval == EEXIST) { |
| 860 | if (args->flags & ATTR_CREATE) |
| 861 | return(retval); |
| 862 | retval = xfs_attr_shortform_remove(args); |
| 863 | ASSERT(retval == 0); |
| 864 | } |
| 865 | |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 866 | if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX || |
| 867 | args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX) |
| 868 | return(XFS_ERROR(ENOSPC)); |
| 869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | newsize = XFS_ATTR_SF_TOTSIZE(args->dp); |
| 871 | newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 872 | |
| 873 | forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize); |
| 874 | if (!forkoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | return(XFS_ERROR(ENOSPC)); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 876 | |
| 877 | xfs_attr_shortform_add(args, forkoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | return(0); |
| 879 | } |
| 880 | |
| 881 | |
| 882 | /*======================================================================== |
| 883 | * External routines when attribute list is one block |
| 884 | *========================================================================*/ |
| 885 | |
| 886 | /* |
| 887 | * Add a name to the leaf attribute list structure |
| 888 | * |
| 889 | * This leaf block cannot have a "remote" value, we only call this routine |
| 890 | * if bmap_one_block() says there is only one block (ie: no remote blks). |
| 891 | */ |
David Chinner | a8272ce | 2007-11-23 16:28:09 +1100 | [diff] [blame] | 892 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | xfs_attr_leaf_addname(xfs_da_args_t *args) |
| 894 | { |
| 895 | xfs_inode_t *dp; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 896 | struct xfs_buf *bp; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 897 | int retval, error, committed, forkoff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 899 | trace_xfs_attr_leaf_addname(args); |
| 900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | /* |
| 902 | * Read the (only) block in the attribute list in. |
| 903 | */ |
| 904 | dp = args->dp; |
| 905 | args->blkno = 0; |
| 906 | error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp, |
| 907 | XFS_ATTR_FORK); |
| 908 | if (error) |
| 909 | return(error); |
| 910 | ASSERT(bp != NULL); |
| 911 | |
| 912 | /* |
| 913 | * Look up the given attribute in the leaf block. Figure out if |
| 914 | * the given flags produce an error or call for an atomic rename. |
| 915 | */ |
| 916 | retval = xfs_attr_leaf_lookup_int(bp, args); |
| 917 | if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 918 | xfs_trans_brelse(args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | return(retval); |
| 920 | } else if (retval == EEXIST) { |
| 921 | if (args->flags & ATTR_CREATE) { /* pure create op */ |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 922 | xfs_trans_brelse(args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | return(retval); |
| 924 | } |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 925 | |
| 926 | trace_xfs_attr_leaf_replace(args); |
| 927 | |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 928 | args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | args->blkno2 = args->blkno; /* set 2nd entry info*/ |
| 930 | args->index2 = args->index; |
| 931 | args->rmtblkno2 = args->rmtblkno; |
| 932 | args->rmtblkcnt2 = args->rmtblkcnt; |
| 933 | } |
| 934 | |
| 935 | /* |
| 936 | * Add the attribute to the leaf block, transitioning to a Btree |
| 937 | * if required. |
| 938 | */ |
| 939 | retval = xfs_attr_leaf_add(bp, args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | if (retval == ENOSPC) { |
| 941 | /* |
| 942 | * Promote the attribute list to the Btree format, then |
| 943 | * Commit that transaction so that the node_addname() call |
| 944 | * can manage its own transactions. |
| 945 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 946 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | error = xfs_attr_leaf_to_node(args); |
| 948 | if (!error) { |
| 949 | error = xfs_bmap_finish(&args->trans, args->flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 950 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | if (error) { |
| 953 | ASSERT(committed); |
| 954 | args->trans = NULL; |
| 955 | xfs_bmap_cancel(args->flist); |
| 956 | return(error); |
| 957 | } |
| 958 | |
| 959 | /* |
| 960 | * bmap_finish() may have committed the last trans and started |
| 961 | * a new one. We need the inode to be in all transactions. |
| 962 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 963 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 964 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
| 966 | /* |
| 967 | * Commit the current trans (including the inode) and start |
| 968 | * a new one. |
| 969 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 970 | error = xfs_trans_roll(&args->trans, dp); |
| 971 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | return (error); |
| 973 | |
| 974 | /* |
| 975 | * Fob the whole rest of the problem off on the Btree code. |
| 976 | */ |
| 977 | error = xfs_attr_node_addname(args); |
| 978 | return(error); |
| 979 | } |
| 980 | |
| 981 | /* |
| 982 | * Commit the transaction that added the attr name so that |
| 983 | * later routines can manage their own transactions. |
| 984 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 985 | error = xfs_trans_roll(&args->trans, dp); |
| 986 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | return (error); |
| 988 | |
| 989 | /* |
| 990 | * If there was an out-of-line value, allocate the blocks we |
| 991 | * identified for its storage and copy the value. This is done |
| 992 | * after we create the attribute so that we don't overflow the |
| 993 | * maximum size of a transaction and/or hit a deadlock. |
| 994 | */ |
| 995 | if (args->rmtblkno > 0) { |
| 996 | error = xfs_attr_rmtval_set(args); |
| 997 | if (error) |
| 998 | return(error); |
| 999 | } |
| 1000 | |
| 1001 | /* |
| 1002 | * If this is an atomic rename operation, we must "flip" the |
| 1003 | * incomplete flags on the "new" and "old" attribute/value pairs |
| 1004 | * so that one disappears and one appears atomically. Then we |
| 1005 | * must remove the "old" attribute/value pair. |
| 1006 | */ |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 1007 | if (args->op_flags & XFS_DA_OP_RENAME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | /* |
| 1009 | * In a separate transaction, set the incomplete flag on the |
| 1010 | * "old" attr and clear the incomplete flag on the "new" attr. |
| 1011 | */ |
| 1012 | error = xfs_attr_leaf_flipflags(args); |
| 1013 | if (error) |
| 1014 | return(error); |
| 1015 | |
| 1016 | /* |
| 1017 | * Dismantle the "old" attribute/value pair by removing |
| 1018 | * a "remote" value (if it exists). |
| 1019 | */ |
| 1020 | args->index = args->index2; |
| 1021 | args->blkno = args->blkno2; |
| 1022 | args->rmtblkno = args->rmtblkno2; |
| 1023 | args->rmtblkcnt = args->rmtblkcnt2; |
| 1024 | if (args->rmtblkno) { |
| 1025 | error = xfs_attr_rmtval_remove(args); |
| 1026 | if (error) |
| 1027 | return(error); |
| 1028 | } |
| 1029 | |
| 1030 | /* |
| 1031 | * Read in the block containing the "old" attr, then |
| 1032 | * remove the "old" attr from that block (neat, huh!) |
| 1033 | */ |
| 1034 | error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, |
| 1035 | &bp, XFS_ATTR_FORK); |
| 1036 | if (error) |
| 1037 | return(error); |
| 1038 | ASSERT(bp != NULL); |
| 1039 | (void)xfs_attr_leaf_remove(bp, args); |
| 1040 | |
| 1041 | /* |
| 1042 | * If the result is small enough, shrink it all into the inode. |
| 1043 | */ |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1044 | if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1045 | xfs_bmap_init(args->flist, args->firstblock); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1046 | error = xfs_attr_leaf_to_shortform(bp, args, forkoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | /* bp is gone due to xfs_da_shrink_inode */ |
| 1048 | if (!error) { |
| 1049 | error = xfs_bmap_finish(&args->trans, |
| 1050 | args->flist, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | &committed); |
| 1052 | } |
| 1053 | if (error) { |
| 1054 | ASSERT(committed); |
| 1055 | args->trans = NULL; |
| 1056 | xfs_bmap_cancel(args->flist); |
| 1057 | return(error); |
| 1058 | } |
| 1059 | |
| 1060 | /* |
| 1061 | * bmap_finish() may have committed the last trans |
| 1062 | * and started a new one. We need the inode to be |
| 1063 | * in all transactions. |
| 1064 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1065 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1066 | xfs_trans_ijoin(args->trans, dp, 0); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1067 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
| 1069 | /* |
| 1070 | * Commit the remove and start the next trans in series. |
| 1071 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 1072 | error = xfs_trans_roll(&args->trans, dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | |
| 1074 | } else if (args->rmtblkno > 0) { |
| 1075 | /* |
| 1076 | * Added a "remote" value, just clear the incomplete flag. |
| 1077 | */ |
| 1078 | error = xfs_attr_leaf_clearflag(args); |
| 1079 | } |
| 1080 | return(error); |
| 1081 | } |
| 1082 | |
| 1083 | /* |
| 1084 | * Remove a name from the leaf attribute list structure |
| 1085 | * |
| 1086 | * This leaf block cannot have a "remote" value, we only call this routine |
| 1087 | * if bmap_one_block() says there is only one block (ie: no remote blks). |
| 1088 | */ |
| 1089 | STATIC int |
| 1090 | xfs_attr_leaf_removename(xfs_da_args_t *args) |
| 1091 | { |
| 1092 | xfs_inode_t *dp; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1093 | struct xfs_buf *bp; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1094 | int error, committed, forkoff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1096 | trace_xfs_attr_leaf_removename(args); |
| 1097 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | /* |
| 1099 | * Remove the attribute. |
| 1100 | */ |
| 1101 | dp = args->dp; |
| 1102 | args->blkno = 0; |
| 1103 | error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp, |
| 1104 | XFS_ATTR_FORK); |
| 1105 | if (error) { |
| 1106 | return(error); |
| 1107 | } |
| 1108 | |
| 1109 | ASSERT(bp != NULL); |
| 1110 | error = xfs_attr_leaf_lookup_int(bp, args); |
| 1111 | if (error == ENOATTR) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1112 | xfs_trans_brelse(args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | return(error); |
| 1114 | } |
| 1115 | |
| 1116 | (void)xfs_attr_leaf_remove(bp, args); |
| 1117 | |
| 1118 | /* |
| 1119 | * If the result is small enough, shrink it all into the inode. |
| 1120 | */ |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1121 | if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1122 | xfs_bmap_init(args->flist, args->firstblock); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1123 | error = xfs_attr_leaf_to_shortform(bp, args, forkoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | /* bp is gone due to xfs_da_shrink_inode */ |
| 1125 | if (!error) { |
| 1126 | error = xfs_bmap_finish(&args->trans, args->flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1127 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | } |
| 1129 | if (error) { |
| 1130 | ASSERT(committed); |
| 1131 | args->trans = NULL; |
| 1132 | xfs_bmap_cancel(args->flist); |
| 1133 | return(error); |
| 1134 | } |
| 1135 | |
| 1136 | /* |
| 1137 | * bmap_finish() may have committed the last trans and started |
| 1138 | * a new one. We need the inode to be in all transactions. |
| 1139 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1140 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1141 | xfs_trans_ijoin(args->trans, dp, 0); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1142 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | return(0); |
| 1144 | } |
| 1145 | |
| 1146 | /* |
| 1147 | * Look up a name in a leaf attribute list structure. |
| 1148 | * |
| 1149 | * This leaf block cannot have a "remote" value, we only call this routine |
| 1150 | * if bmap_one_block() says there is only one block (ie: no remote blks). |
| 1151 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 1152 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | xfs_attr_leaf_get(xfs_da_args_t *args) |
| 1154 | { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1155 | struct xfs_buf *bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | int error; |
| 1157 | |
| 1158 | args->blkno = 0; |
| 1159 | error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp, |
| 1160 | XFS_ATTR_FORK); |
| 1161 | if (error) |
| 1162 | return(error); |
| 1163 | ASSERT(bp != NULL); |
| 1164 | |
| 1165 | error = xfs_attr_leaf_lookup_int(bp, args); |
| 1166 | if (error != EEXIST) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1167 | xfs_trans_brelse(args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | return(error); |
| 1169 | } |
| 1170 | error = xfs_attr_leaf_getvalue(bp, args); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1171 | xfs_trans_brelse(args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) { |
| 1173 | error = xfs_attr_rmtval_get(args); |
| 1174 | } |
| 1175 | return(error); |
| 1176 | } |
| 1177 | |
| 1178 | /* |
| 1179 | * Copy out attribute entries for attr_list(), for leaf attribute lists. |
| 1180 | */ |
| 1181 | STATIC int |
| 1182 | xfs_attr_leaf_list(xfs_attr_list_context_t *context) |
| 1183 | { |
| 1184 | xfs_attr_leafblock_t *leaf; |
| 1185 | int error; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1186 | struct xfs_buf *bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
| 1188 | context->cursor->blkno = 0; |
| 1189 | error = xfs_da_read_buf(NULL, context->dp, 0, -1, &bp, XFS_ATTR_FORK); |
| 1190 | if (error) |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1191 | return XFS_ERROR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | ASSERT(bp != NULL); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1193 | leaf = bp->b_addr; |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1194 | if (unlikely(leaf->hdr.info.magic != cpu_to_be16(XFS_ATTR_LEAF_MAGIC))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | XFS_CORRUPTION_ERROR("xfs_attr_leaf_list", XFS_ERRLEVEL_LOW, |
| 1196 | context->dp->i_mount, leaf); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1197 | xfs_trans_brelse(NULL, bp); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1198 | return XFS_ERROR(EFSCORRUPTED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | } |
| 1200 | |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1201 | error = xfs_attr_leaf_list_int(bp, context); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1202 | xfs_trans_brelse(NULL, bp); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1203 | return XFS_ERROR(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
| 1206 | |
| 1207 | /*======================================================================== |
| 1208 | * External routines when attribute list size > XFS_LBSIZE(mp). |
| 1209 | *========================================================================*/ |
| 1210 | |
| 1211 | /* |
| 1212 | * Add a name to a Btree-format attribute list. |
| 1213 | * |
| 1214 | * This will involve walking down the Btree, and may involve splitting |
| 1215 | * leaf nodes and even splitting intermediate nodes up to and including |
| 1216 | * the root node (a special case of an intermediate node). |
| 1217 | * |
| 1218 | * "Remote" attribute values confuse the issue and atomic rename operations |
| 1219 | * add a whole extra layer of confusion on top of that. |
| 1220 | */ |
| 1221 | STATIC int |
| 1222 | xfs_attr_node_addname(xfs_da_args_t *args) |
| 1223 | { |
| 1224 | xfs_da_state_t *state; |
| 1225 | xfs_da_state_blk_t *blk; |
| 1226 | xfs_inode_t *dp; |
| 1227 | xfs_mount_t *mp; |
| 1228 | int committed, retval, error; |
| 1229 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1230 | trace_xfs_attr_node_addname(args); |
| 1231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | /* |
| 1233 | * Fill in bucket of arguments/results/context to carry around. |
| 1234 | */ |
| 1235 | dp = args->dp; |
| 1236 | mp = dp->i_mount; |
| 1237 | restart: |
| 1238 | state = xfs_da_state_alloc(); |
| 1239 | state->args = args; |
| 1240 | state->mp = mp; |
| 1241 | state->blocksize = state->mp->m_sb.sb_blocksize; |
| 1242 | state->node_ents = state->mp->m_attr_node_ents; |
| 1243 | |
| 1244 | /* |
| 1245 | * Search to see if name already exists, and get back a pointer |
| 1246 | * to where it should go. |
| 1247 | */ |
| 1248 | error = xfs_da_node_lookup_int(state, &retval); |
| 1249 | if (error) |
| 1250 | goto out; |
| 1251 | blk = &state->path.blk[ state->path.active-1 ]; |
| 1252 | ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC); |
| 1253 | if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) { |
| 1254 | goto out; |
| 1255 | } else if (retval == EEXIST) { |
| 1256 | if (args->flags & ATTR_CREATE) |
| 1257 | goto out; |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1258 | |
| 1259 | trace_xfs_attr_node_replace(args); |
| 1260 | |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 1261 | args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | args->blkno2 = args->blkno; /* set 2nd entry info*/ |
| 1263 | args->index2 = args->index; |
| 1264 | args->rmtblkno2 = args->rmtblkno; |
| 1265 | args->rmtblkcnt2 = args->rmtblkcnt; |
| 1266 | args->rmtblkno = 0; |
| 1267 | args->rmtblkcnt = 0; |
| 1268 | } |
| 1269 | |
| 1270 | retval = xfs_attr_leaf_add(blk->bp, state->args); |
| 1271 | if (retval == ENOSPC) { |
| 1272 | if (state->path.active == 1) { |
| 1273 | /* |
| 1274 | * Its really a single leaf node, but it had |
| 1275 | * out-of-line values so it looked like it *might* |
| 1276 | * have been a b-tree. |
| 1277 | */ |
| 1278 | xfs_da_state_free(state); |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1279 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | error = xfs_attr_leaf_to_node(args); |
| 1281 | if (!error) { |
| 1282 | error = xfs_bmap_finish(&args->trans, |
| 1283 | args->flist, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | &committed); |
| 1285 | } |
| 1286 | if (error) { |
| 1287 | ASSERT(committed); |
| 1288 | args->trans = NULL; |
| 1289 | xfs_bmap_cancel(args->flist); |
| 1290 | goto out; |
| 1291 | } |
| 1292 | |
| 1293 | /* |
| 1294 | * bmap_finish() may have committed the last trans |
| 1295 | * and started a new one. We need the inode to be |
| 1296 | * in all transactions. |
| 1297 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1298 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1299 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | |
| 1301 | /* |
| 1302 | * Commit the node conversion and start the next |
| 1303 | * trans in the chain. |
| 1304 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 1305 | error = xfs_trans_roll(&args->trans, dp); |
| 1306 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | goto out; |
| 1308 | |
| 1309 | goto restart; |
| 1310 | } |
| 1311 | |
| 1312 | /* |
| 1313 | * Split as many Btree elements as required. |
| 1314 | * This code tracks the new and old attr's location |
| 1315 | * in the index/blkno/rmtblkno/rmtblkcnt fields and |
| 1316 | * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields. |
| 1317 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1318 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | error = xfs_da_split(state); |
| 1320 | if (!error) { |
| 1321 | error = xfs_bmap_finish(&args->trans, args->flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1322 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | } |
| 1324 | if (error) { |
| 1325 | ASSERT(committed); |
| 1326 | args->trans = NULL; |
| 1327 | xfs_bmap_cancel(args->flist); |
| 1328 | goto out; |
| 1329 | } |
| 1330 | |
| 1331 | /* |
| 1332 | * bmap_finish() may have committed the last trans and started |
| 1333 | * a new one. We need the inode to be in all transactions. |
| 1334 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1335 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1336 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | } else { |
| 1338 | /* |
| 1339 | * Addition succeeded, update Btree hashvals. |
| 1340 | */ |
| 1341 | xfs_da_fixhashpath(state, &state->path); |
| 1342 | } |
| 1343 | |
| 1344 | /* |
| 1345 | * Kill the state structure, we're done with it and need to |
| 1346 | * allow the buffers to come back later. |
| 1347 | */ |
| 1348 | xfs_da_state_free(state); |
| 1349 | state = NULL; |
| 1350 | |
| 1351 | /* |
| 1352 | * Commit the leaf addition or btree split and start the next |
| 1353 | * trans in the chain. |
| 1354 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 1355 | error = xfs_trans_roll(&args->trans, dp); |
| 1356 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | goto out; |
| 1358 | |
| 1359 | /* |
| 1360 | * If there was an out-of-line value, allocate the blocks we |
| 1361 | * identified for its storage and copy the value. This is done |
| 1362 | * after we create the attribute so that we don't overflow the |
| 1363 | * maximum size of a transaction and/or hit a deadlock. |
| 1364 | */ |
| 1365 | if (args->rmtblkno > 0) { |
| 1366 | error = xfs_attr_rmtval_set(args); |
| 1367 | if (error) |
| 1368 | return(error); |
| 1369 | } |
| 1370 | |
| 1371 | /* |
| 1372 | * If this is an atomic rename operation, we must "flip" the |
| 1373 | * incomplete flags on the "new" and "old" attribute/value pairs |
| 1374 | * so that one disappears and one appears atomically. Then we |
| 1375 | * must remove the "old" attribute/value pair. |
| 1376 | */ |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 1377 | if (args->op_flags & XFS_DA_OP_RENAME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | /* |
| 1379 | * In a separate transaction, set the incomplete flag on the |
| 1380 | * "old" attr and clear the incomplete flag on the "new" attr. |
| 1381 | */ |
| 1382 | error = xfs_attr_leaf_flipflags(args); |
| 1383 | if (error) |
| 1384 | goto out; |
| 1385 | |
| 1386 | /* |
| 1387 | * Dismantle the "old" attribute/value pair by removing |
| 1388 | * a "remote" value (if it exists). |
| 1389 | */ |
| 1390 | args->index = args->index2; |
| 1391 | args->blkno = args->blkno2; |
| 1392 | args->rmtblkno = args->rmtblkno2; |
| 1393 | args->rmtblkcnt = args->rmtblkcnt2; |
| 1394 | if (args->rmtblkno) { |
| 1395 | error = xfs_attr_rmtval_remove(args); |
| 1396 | if (error) |
| 1397 | return(error); |
| 1398 | } |
| 1399 | |
| 1400 | /* |
| 1401 | * Re-find the "old" attribute entry after any split ops. |
| 1402 | * The INCOMPLETE flag means that we will find the "old" |
| 1403 | * attr, not the "new" one. |
| 1404 | */ |
| 1405 | args->flags |= XFS_ATTR_INCOMPLETE; |
| 1406 | state = xfs_da_state_alloc(); |
| 1407 | state->args = args; |
| 1408 | state->mp = mp; |
| 1409 | state->blocksize = state->mp->m_sb.sb_blocksize; |
| 1410 | state->node_ents = state->mp->m_attr_node_ents; |
| 1411 | state->inleaf = 0; |
| 1412 | error = xfs_da_node_lookup_int(state, &retval); |
| 1413 | if (error) |
| 1414 | goto out; |
| 1415 | |
| 1416 | /* |
| 1417 | * Remove the name and update the hashvals in the tree. |
| 1418 | */ |
| 1419 | blk = &state->path.blk[ state->path.active-1 ]; |
| 1420 | ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC); |
| 1421 | error = xfs_attr_leaf_remove(blk->bp, args); |
| 1422 | xfs_da_fixhashpath(state, &state->path); |
| 1423 | |
| 1424 | /* |
| 1425 | * Check to see if the tree needs to be collapsed. |
| 1426 | */ |
| 1427 | if (retval && (state->path.active > 1)) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1428 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | error = xfs_da_join(state); |
| 1430 | if (!error) { |
| 1431 | error = xfs_bmap_finish(&args->trans, |
| 1432 | args->flist, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | &committed); |
| 1434 | } |
| 1435 | if (error) { |
| 1436 | ASSERT(committed); |
| 1437 | args->trans = NULL; |
| 1438 | xfs_bmap_cancel(args->flist); |
| 1439 | goto out; |
| 1440 | } |
| 1441 | |
| 1442 | /* |
| 1443 | * bmap_finish() may have committed the last trans |
| 1444 | * and started a new one. We need the inode to be |
| 1445 | * in all transactions. |
| 1446 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1447 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1448 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | } |
| 1450 | |
| 1451 | /* |
| 1452 | * Commit and start the next trans in the chain. |
| 1453 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 1454 | error = xfs_trans_roll(&args->trans, dp); |
| 1455 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | goto out; |
| 1457 | |
| 1458 | } else if (args->rmtblkno > 0) { |
| 1459 | /* |
| 1460 | * Added a "remote" value, just clear the incomplete flag. |
| 1461 | */ |
| 1462 | error = xfs_attr_leaf_clearflag(args); |
| 1463 | if (error) |
| 1464 | goto out; |
| 1465 | } |
| 1466 | retval = error = 0; |
| 1467 | |
| 1468 | out: |
| 1469 | if (state) |
| 1470 | xfs_da_state_free(state); |
| 1471 | if (error) |
| 1472 | return(error); |
| 1473 | return(retval); |
| 1474 | } |
| 1475 | |
| 1476 | /* |
| 1477 | * Remove a name from a B-tree attribute list. |
| 1478 | * |
| 1479 | * This will involve walking down the Btree, and may involve joining |
| 1480 | * leaf nodes and even joining intermediate nodes up to and including |
| 1481 | * the root node (a special case of an intermediate node). |
| 1482 | */ |
| 1483 | STATIC int |
| 1484 | xfs_attr_node_removename(xfs_da_args_t *args) |
| 1485 | { |
| 1486 | xfs_da_state_t *state; |
| 1487 | xfs_da_state_blk_t *blk; |
| 1488 | xfs_inode_t *dp; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1489 | struct xfs_buf *bp; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1490 | int retval, error, committed, forkoff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1492 | trace_xfs_attr_node_removename(args); |
| 1493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | /* |
| 1495 | * Tie a string around our finger to remind us where we are. |
| 1496 | */ |
| 1497 | dp = args->dp; |
| 1498 | state = xfs_da_state_alloc(); |
| 1499 | state->args = args; |
| 1500 | state->mp = dp->i_mount; |
| 1501 | state->blocksize = state->mp->m_sb.sb_blocksize; |
| 1502 | state->node_ents = state->mp->m_attr_node_ents; |
| 1503 | |
| 1504 | /* |
| 1505 | * Search to see if name exists, and get back a pointer to it. |
| 1506 | */ |
| 1507 | error = xfs_da_node_lookup_int(state, &retval); |
| 1508 | if (error || (retval != EEXIST)) { |
| 1509 | if (error == 0) |
| 1510 | error = retval; |
| 1511 | goto out; |
| 1512 | } |
| 1513 | |
| 1514 | /* |
| 1515 | * If there is an out-of-line value, de-allocate the blocks. |
| 1516 | * This is done before we remove the attribute so that we don't |
| 1517 | * overflow the maximum size of a transaction and/or hit a deadlock. |
| 1518 | */ |
| 1519 | blk = &state->path.blk[ state->path.active-1 ]; |
| 1520 | ASSERT(blk->bp != NULL); |
| 1521 | ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC); |
| 1522 | if (args->rmtblkno > 0) { |
| 1523 | /* |
| 1524 | * Fill in disk block numbers in the state structure |
| 1525 | * so that we can get the buffers back after we commit |
| 1526 | * several transactions in the following calls. |
| 1527 | */ |
| 1528 | error = xfs_attr_fillstate(state); |
| 1529 | if (error) |
| 1530 | goto out; |
| 1531 | |
| 1532 | /* |
| 1533 | * Mark the attribute as INCOMPLETE, then bunmapi() the |
| 1534 | * remote value. |
| 1535 | */ |
| 1536 | error = xfs_attr_leaf_setflag(args); |
| 1537 | if (error) |
| 1538 | goto out; |
| 1539 | error = xfs_attr_rmtval_remove(args); |
| 1540 | if (error) |
| 1541 | goto out; |
| 1542 | |
| 1543 | /* |
| 1544 | * Refill the state structure with buffers, the prior calls |
| 1545 | * released our buffers. |
| 1546 | */ |
| 1547 | error = xfs_attr_refillstate(state); |
| 1548 | if (error) |
| 1549 | goto out; |
| 1550 | } |
| 1551 | |
| 1552 | /* |
| 1553 | * Remove the name and update the hashvals in the tree. |
| 1554 | */ |
| 1555 | blk = &state->path.blk[ state->path.active-1 ]; |
| 1556 | ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC); |
| 1557 | retval = xfs_attr_leaf_remove(blk->bp, args); |
| 1558 | xfs_da_fixhashpath(state, &state->path); |
| 1559 | |
| 1560 | /* |
| 1561 | * Check to see if the tree needs to be collapsed. |
| 1562 | */ |
| 1563 | if (retval && (state->path.active > 1)) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1564 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | error = xfs_da_join(state); |
| 1566 | if (!error) { |
| 1567 | error = xfs_bmap_finish(&args->trans, args->flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 1568 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | } |
| 1570 | if (error) { |
| 1571 | ASSERT(committed); |
| 1572 | args->trans = NULL; |
| 1573 | xfs_bmap_cancel(args->flist); |
| 1574 | goto out; |
| 1575 | } |
| 1576 | |
| 1577 | /* |
| 1578 | * bmap_finish() may have committed the last trans and started |
| 1579 | * a new one. We need the inode to be in all transactions. |
| 1580 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1581 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1582 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | |
| 1584 | /* |
| 1585 | * Commit the Btree join operation and start a new trans. |
| 1586 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 1587 | error = xfs_trans_roll(&args->trans, dp); |
| 1588 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | goto out; |
| 1590 | } |
| 1591 | |
| 1592 | /* |
| 1593 | * If the result is small enough, push it all into the inode. |
| 1594 | */ |
| 1595 | if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) { |
| 1596 | /* |
| 1597 | * Have to get rid of the copy of this dabuf in the state. |
| 1598 | */ |
| 1599 | ASSERT(state->path.active == 1); |
| 1600 | ASSERT(state->path.blk[0].bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | state->path.blk[0].bp = NULL; |
| 1602 | |
| 1603 | error = xfs_da_read_buf(args->trans, args->dp, 0, -1, &bp, |
| 1604 | XFS_ATTR_FORK); |
| 1605 | if (error) |
| 1606 | goto out; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1607 | ASSERT((((xfs_attr_leafblock_t *)bp->b_addr)->hdr.info.magic) == |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1608 | cpu_to_be16(XFS_ATTR_LEAF_MAGIC)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1610 | if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 1611 | xfs_bmap_init(args->flist, args->firstblock); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1612 | error = xfs_attr_leaf_to_shortform(bp, args, forkoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | /* bp is gone due to xfs_da_shrink_inode */ |
| 1614 | if (!error) { |
| 1615 | error = xfs_bmap_finish(&args->trans, |
| 1616 | args->flist, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | &committed); |
| 1618 | } |
| 1619 | if (error) { |
| 1620 | ASSERT(committed); |
| 1621 | args->trans = NULL; |
| 1622 | xfs_bmap_cancel(args->flist); |
| 1623 | goto out; |
| 1624 | } |
| 1625 | |
| 1626 | /* |
| 1627 | * bmap_finish() may have committed the last trans |
| 1628 | * and started a new one. We need the inode to be |
| 1629 | * in all transactions. |
| 1630 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 1631 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 1632 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | } else |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1634 | xfs_trans_brelse(args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | } |
| 1636 | error = 0; |
| 1637 | |
| 1638 | out: |
| 1639 | xfs_da_state_free(state); |
| 1640 | return(error); |
| 1641 | } |
| 1642 | |
| 1643 | /* |
| 1644 | * Fill in the disk block numbers in the state structure for the buffers |
| 1645 | * that are attached to the state structure. |
| 1646 | * This is done so that we can quickly reattach ourselves to those buffers |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1647 | * after some set of transaction commits have released these buffers. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | */ |
| 1649 | STATIC int |
| 1650 | xfs_attr_fillstate(xfs_da_state_t *state) |
| 1651 | { |
| 1652 | xfs_da_state_path_t *path; |
| 1653 | xfs_da_state_blk_t *blk; |
| 1654 | int level; |
| 1655 | |
| 1656 | /* |
| 1657 | * Roll down the "path" in the state structure, storing the on-disk |
| 1658 | * block number for those buffers in the "path". |
| 1659 | */ |
| 1660 | path = &state->path; |
| 1661 | ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH)); |
| 1662 | for (blk = path->blk, level = 0; level < path->active; blk++, level++) { |
| 1663 | if (blk->bp) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1664 | blk->disk_blkno = XFS_BUF_ADDR(blk->bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | blk->bp = NULL; |
| 1666 | } else { |
| 1667 | blk->disk_blkno = 0; |
| 1668 | } |
| 1669 | } |
| 1670 | |
| 1671 | /* |
| 1672 | * Roll down the "altpath" in the state structure, storing the on-disk |
| 1673 | * block number for those buffers in the "altpath". |
| 1674 | */ |
| 1675 | path = &state->altpath; |
| 1676 | ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH)); |
| 1677 | for (blk = path->blk, level = 0; level < path->active; blk++, level++) { |
| 1678 | if (blk->bp) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1679 | blk->disk_blkno = XFS_BUF_ADDR(blk->bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | blk->bp = NULL; |
| 1681 | } else { |
| 1682 | blk->disk_blkno = 0; |
| 1683 | } |
| 1684 | } |
| 1685 | |
| 1686 | return(0); |
| 1687 | } |
| 1688 | |
| 1689 | /* |
| 1690 | * Reattach the buffers to the state structure based on the disk block |
| 1691 | * numbers stored in the state structure. |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1692 | * This is done after some set of transaction commits have released those |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | * buffers from our grip. |
| 1694 | */ |
| 1695 | STATIC int |
| 1696 | xfs_attr_refillstate(xfs_da_state_t *state) |
| 1697 | { |
| 1698 | xfs_da_state_path_t *path; |
| 1699 | xfs_da_state_blk_t *blk; |
| 1700 | int level, error; |
| 1701 | |
| 1702 | /* |
| 1703 | * Roll down the "path" in the state structure, storing the on-disk |
| 1704 | * block number for those buffers in the "path". |
| 1705 | */ |
| 1706 | path = &state->path; |
| 1707 | ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH)); |
| 1708 | for (blk = path->blk, level = 0; level < path->active; blk++, level++) { |
| 1709 | if (blk->disk_blkno) { |
| 1710 | error = xfs_da_read_buf(state->args->trans, |
| 1711 | state->args->dp, |
| 1712 | blk->blkno, blk->disk_blkno, |
| 1713 | &blk->bp, XFS_ATTR_FORK); |
| 1714 | if (error) |
| 1715 | return(error); |
| 1716 | } else { |
| 1717 | blk->bp = NULL; |
| 1718 | } |
| 1719 | } |
| 1720 | |
| 1721 | /* |
| 1722 | * Roll down the "altpath" in the state structure, storing the on-disk |
| 1723 | * block number for those buffers in the "altpath". |
| 1724 | */ |
| 1725 | path = &state->altpath; |
| 1726 | ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH)); |
| 1727 | for (blk = path->blk, level = 0; level < path->active; blk++, level++) { |
| 1728 | if (blk->disk_blkno) { |
| 1729 | error = xfs_da_read_buf(state->args->trans, |
| 1730 | state->args->dp, |
| 1731 | blk->blkno, blk->disk_blkno, |
| 1732 | &blk->bp, XFS_ATTR_FORK); |
| 1733 | if (error) |
| 1734 | return(error); |
| 1735 | } else { |
| 1736 | blk->bp = NULL; |
| 1737 | } |
| 1738 | } |
| 1739 | |
| 1740 | return(0); |
| 1741 | } |
| 1742 | |
| 1743 | /* |
| 1744 | * Look up a filename in a node attribute list. |
| 1745 | * |
| 1746 | * This routine gets called for any attribute fork that has more than one |
| 1747 | * block, ie: both true Btree attr lists and for single-leaf-blocks with |
| 1748 | * "remote" values taking up more blocks. |
| 1749 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 1750 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | xfs_attr_node_get(xfs_da_args_t *args) |
| 1752 | { |
| 1753 | xfs_da_state_t *state; |
| 1754 | xfs_da_state_blk_t *blk; |
| 1755 | int error, retval; |
| 1756 | int i; |
| 1757 | |
| 1758 | state = xfs_da_state_alloc(); |
| 1759 | state->args = args; |
| 1760 | state->mp = args->dp->i_mount; |
| 1761 | state->blocksize = state->mp->m_sb.sb_blocksize; |
| 1762 | state->node_ents = state->mp->m_attr_node_ents; |
| 1763 | |
| 1764 | /* |
| 1765 | * Search to see if name exists, and get back a pointer to it. |
| 1766 | */ |
| 1767 | error = xfs_da_node_lookup_int(state, &retval); |
| 1768 | if (error) { |
| 1769 | retval = error; |
| 1770 | } else if (retval == EEXIST) { |
| 1771 | blk = &state->path.blk[ state->path.active-1 ]; |
| 1772 | ASSERT(blk->bp != NULL); |
| 1773 | ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC); |
| 1774 | |
| 1775 | /* |
| 1776 | * Get the value, local or "remote" |
| 1777 | */ |
| 1778 | retval = xfs_attr_leaf_getvalue(blk->bp, args); |
| 1779 | if (!retval && (args->rmtblkno > 0) |
| 1780 | && !(args->flags & ATTR_KERNOVAL)) { |
| 1781 | retval = xfs_attr_rmtval_get(args); |
| 1782 | } |
| 1783 | } |
| 1784 | |
| 1785 | /* |
| 1786 | * If not in a transaction, we have to release all the buffers. |
| 1787 | */ |
| 1788 | for (i = 0; i < state->path.active; i++) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1789 | xfs_trans_brelse(args->trans, state->path.blk[i].bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | state->path.blk[i].bp = NULL; |
| 1791 | } |
| 1792 | |
| 1793 | xfs_da_state_free(state); |
| 1794 | return(retval); |
| 1795 | } |
| 1796 | |
| 1797 | STATIC int /* error */ |
| 1798 | xfs_attr_node_list(xfs_attr_list_context_t *context) |
| 1799 | { |
| 1800 | attrlist_cursor_kern_t *cursor; |
| 1801 | xfs_attr_leafblock_t *leaf; |
| 1802 | xfs_da_intnode_t *node; |
| 1803 | xfs_da_node_entry_t *btree; |
| 1804 | int error, i; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1805 | struct xfs_buf *bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | |
| 1807 | cursor = context->cursor; |
| 1808 | cursor->initted = 1; |
| 1809 | |
| 1810 | /* |
| 1811 | * Do all sorts of validation on the passed-in cursor structure. |
| 1812 | * If anything is amiss, ignore the cursor and look up the hashval |
| 1813 | * starting from the btree root. |
| 1814 | */ |
| 1815 | bp = NULL; |
| 1816 | if (cursor->blkno > 0) { |
| 1817 | error = xfs_da_read_buf(NULL, context->dp, cursor->blkno, -1, |
| 1818 | &bp, XFS_ATTR_FORK); |
| 1819 | if ((error != 0) && (error != EFSCORRUPTED)) |
| 1820 | return(error); |
| 1821 | if (bp) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1822 | node = bp->b_addr; |
Nathan Scott | 89da054 | 2006-03-17 17:28:40 +1100 | [diff] [blame] | 1823 | switch (be16_to_cpu(node->hdr.info.magic)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | case XFS_DA_NODE_MAGIC: |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1825 | trace_xfs_attr_list_wrong_blk(context); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1826 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | bp = NULL; |
| 1828 | break; |
| 1829 | case XFS_ATTR_LEAF_MAGIC: |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1830 | leaf = bp->b_addr; |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 1831 | if (cursor->hashval > be32_to_cpu(leaf->entries[ |
| 1832 | be16_to_cpu(leaf->hdr.count)-1].hashval)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1833 | trace_xfs_attr_list_wrong_blk(context); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1834 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | bp = NULL; |
| 1836 | } else if (cursor->hashval <= |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 1837 | be32_to_cpu(leaf->entries[0].hashval)) { |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1838 | trace_xfs_attr_list_wrong_blk(context); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1839 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | bp = NULL; |
| 1841 | } |
| 1842 | break; |
| 1843 | default: |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1844 | trace_xfs_attr_list_wrong_blk(context); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1845 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | bp = NULL; |
| 1847 | } |
| 1848 | } |
| 1849 | } |
| 1850 | |
| 1851 | /* |
| 1852 | * We did not find what we expected given the cursor's contents, |
| 1853 | * so we start from the top and work down based on the hash value. |
| 1854 | * Note that start of node block is same as start of leaf block. |
| 1855 | */ |
| 1856 | if (bp == NULL) { |
| 1857 | cursor->blkno = 0; |
| 1858 | for (;;) { |
| 1859 | error = xfs_da_read_buf(NULL, context->dp, |
| 1860 | cursor->blkno, -1, &bp, |
| 1861 | XFS_ATTR_FORK); |
| 1862 | if (error) |
| 1863 | return(error); |
| 1864 | if (unlikely(bp == NULL)) { |
| 1865 | XFS_ERROR_REPORT("xfs_attr_node_list(2)", |
| 1866 | XFS_ERRLEVEL_LOW, |
| 1867 | context->dp->i_mount); |
| 1868 | return(XFS_ERROR(EFSCORRUPTED)); |
| 1869 | } |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1870 | node = bp->b_addr; |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1871 | if (node->hdr.info.magic == |
| 1872 | cpu_to_be16(XFS_ATTR_LEAF_MAGIC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | break; |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1874 | if (unlikely(node->hdr.info.magic != |
| 1875 | cpu_to_be16(XFS_DA_NODE_MAGIC))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | XFS_CORRUPTION_ERROR("xfs_attr_node_list(3)", |
| 1877 | XFS_ERRLEVEL_LOW, |
| 1878 | context->dp->i_mount, |
| 1879 | node); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1880 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | return(XFS_ERROR(EFSCORRUPTED)); |
| 1882 | } |
| 1883 | btree = node->btree; |
Nathan Scott | fac80cc | 2006-03-17 17:29:56 +1100 | [diff] [blame] | 1884 | for (i = 0; i < be16_to_cpu(node->hdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | btree++, i++) { |
| 1886 | if (cursor->hashval |
Nathan Scott | 403432d | 2006-03-17 17:29:46 +1100 | [diff] [blame] | 1887 | <= be32_to_cpu(btree->hashval)) { |
| 1888 | cursor->blkno = be32_to_cpu(btree->before); |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 1889 | trace_xfs_attr_list_node_descend(context, |
| 1890 | btree); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | break; |
| 1892 | } |
| 1893 | } |
Nathan Scott | fac80cc | 2006-03-17 17:29:56 +1100 | [diff] [blame] | 1894 | if (i == be16_to_cpu(node->hdr.count)) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1895 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | return(0); |
| 1897 | } |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1898 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | } |
| 1900 | } |
| 1901 | ASSERT(bp != NULL); |
| 1902 | |
| 1903 | /* |
| 1904 | * Roll upward through the blocks, processing each leaf block in |
| 1905 | * order. As long as there is space in the result buffer, keep |
| 1906 | * adding the information. |
| 1907 | */ |
| 1908 | for (;;) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1909 | leaf = bp->b_addr; |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1910 | if (unlikely(leaf->hdr.info.magic != |
| 1911 | cpu_to_be16(XFS_ATTR_LEAF_MAGIC))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | XFS_CORRUPTION_ERROR("xfs_attr_node_list(4)", |
| 1913 | XFS_ERRLEVEL_LOW, |
| 1914 | context->dp->i_mount, leaf); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1915 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | return(XFS_ERROR(EFSCORRUPTED)); |
| 1917 | } |
| 1918 | error = xfs_attr_leaf_list_int(bp, context); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1919 | if (error) { |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1920 | xfs_trans_brelse(NULL, bp); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1921 | return error; |
| 1922 | } |
| 1923 | if (context->seen_enough || leaf->hdr.info.forw == 0) |
| 1924 | break; |
Nathan Scott | 89da054 | 2006-03-17 17:28:40 +1100 | [diff] [blame] | 1925 | cursor->blkno = be32_to_cpu(leaf->hdr.info.forw); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1926 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | error = xfs_da_read_buf(NULL, context->dp, cursor->blkno, -1, |
| 1928 | &bp, XFS_ATTR_FORK); |
| 1929 | if (error) |
| 1930 | return(error); |
| 1931 | if (unlikely((bp == NULL))) { |
| 1932 | XFS_ERROR_REPORT("xfs_attr_node_list(5)", |
| 1933 | XFS_ERRLEVEL_LOW, |
| 1934 | context->dp->i_mount); |
| 1935 | return(XFS_ERROR(EFSCORRUPTED)); |
| 1936 | } |
| 1937 | } |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1938 | xfs_trans_brelse(NULL, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | return(0); |
| 1940 | } |
| 1941 | |
| 1942 | |
| 1943 | /*======================================================================== |
| 1944 | * External routines for manipulating out-of-line attribute values. |
| 1945 | *========================================================================*/ |
| 1946 | |
| 1947 | /* |
| 1948 | * Read the value associated with an attribute from the out-of-line buffer |
| 1949 | * that we stored it in. |
| 1950 | */ |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1951 | int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | xfs_attr_rmtval_get(xfs_da_args_t *args) |
| 1953 | { |
| 1954 | xfs_bmbt_irec_t map[ATTR_RMTVALUE_MAPSIZE]; |
| 1955 | xfs_mount_t *mp; |
| 1956 | xfs_daddr_t dblkno; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 1957 | void *dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | xfs_buf_t *bp; |
| 1959 | int nmap, error, tmp, valuelen, blkcnt, i; |
| 1960 | xfs_dablk_t lblkno; |
| 1961 | |
| 1962 | ASSERT(!(args->flags & ATTR_KERNOVAL)); |
| 1963 | |
| 1964 | mp = args->dp->i_mount; |
| 1965 | dst = args->value; |
| 1966 | valuelen = args->valuelen; |
| 1967 | lblkno = args->rmtblkno; |
| 1968 | while (valuelen > 0) { |
| 1969 | nmap = ATTR_RMTVALUE_MAPSIZE; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 1970 | error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno, |
| 1971 | args->rmtblkcnt, map, &nmap, |
| 1972 | XFS_BMAPI_ATTRFORK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 | if (error) |
| 1974 | return(error); |
| 1975 | ASSERT(nmap >= 1); |
| 1976 | |
| 1977 | for (i = 0; (i < nmap) && (valuelen > 0); i++) { |
| 1978 | ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) && |
| 1979 | (map[i].br_startblock != HOLESTARTBLOCK)); |
| 1980 | dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock); |
| 1981 | blkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount); |
Dave Chinner | 7ca790a | 2012-04-23 15:58:55 +1000 | [diff] [blame] | 1982 | error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp, |
| 1983 | dblkno, blkcnt, 0, &bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | if (error) |
| 1985 | return(error); |
| 1986 | |
Dave Chinner | 4e94b71 | 2012-04-23 15:58:51 +1000 | [diff] [blame] | 1987 | tmp = min_t(int, valuelen, BBTOB(bp->b_length)); |
Christoph Hellwig | 1a1a3e9 | 2010-10-06 18:41:18 +0000 | [diff] [blame] | 1988 | xfs_buf_iomove(bp, 0, tmp, dst, XBRW_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | xfs_buf_relse(bp); |
| 1990 | dst += tmp; |
| 1991 | valuelen -= tmp; |
| 1992 | |
| 1993 | lblkno += map[i].br_blockcount; |
| 1994 | } |
| 1995 | } |
| 1996 | ASSERT(valuelen == 0); |
| 1997 | return(0); |
| 1998 | } |
| 1999 | |
| 2000 | /* |
| 2001 | * Write the value associated with an attribute into the out-of-line buffer |
| 2002 | * that we have defined for it. |
| 2003 | */ |
| 2004 | STATIC int |
| 2005 | xfs_attr_rmtval_set(xfs_da_args_t *args) |
| 2006 | { |
| 2007 | xfs_mount_t *mp; |
| 2008 | xfs_fileoff_t lfileoff; |
| 2009 | xfs_inode_t *dp; |
| 2010 | xfs_bmbt_irec_t map; |
| 2011 | xfs_daddr_t dblkno; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 2012 | void *src; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | xfs_buf_t *bp; |
| 2014 | xfs_dablk_t lblkno; |
| 2015 | int blkcnt, valuelen, nmap, error, tmp, committed; |
| 2016 | |
| 2017 | dp = args->dp; |
| 2018 | mp = dp->i_mount; |
| 2019 | src = args->value; |
| 2020 | |
| 2021 | /* |
| 2022 | * Find a "hole" in the attribute address space large enough for |
| 2023 | * us to drop the new attribute's value into. |
| 2024 | */ |
| 2025 | blkcnt = XFS_B_TO_FSB(mp, args->valuelen); |
| 2026 | lfileoff = 0; |
| 2027 | error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff, |
| 2028 | XFS_ATTR_FORK); |
| 2029 | if (error) { |
| 2030 | return(error); |
| 2031 | } |
| 2032 | args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff; |
| 2033 | args->rmtblkcnt = blkcnt; |
| 2034 | |
| 2035 | /* |
| 2036 | * Roll through the "value", allocating blocks on disk as required. |
| 2037 | */ |
| 2038 | while (blkcnt > 0) { |
| 2039 | /* |
| 2040 | * Allocate a single extent, up to the size of the value. |
| 2041 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2042 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | nmap = 1; |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 2044 | error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | blkcnt, |
Dave Chinner | c0dc782 | 2011-09-18 20:40:52 +0000 | [diff] [blame] | 2046 | XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | args->firstblock, args->total, &map, &nmap, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2048 | args->flist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | if (!error) { |
| 2050 | error = xfs_bmap_finish(&args->trans, args->flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 2051 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | } |
| 2053 | if (error) { |
| 2054 | ASSERT(committed); |
| 2055 | args->trans = NULL; |
| 2056 | xfs_bmap_cancel(args->flist); |
| 2057 | return(error); |
| 2058 | } |
| 2059 | |
| 2060 | /* |
| 2061 | * bmap_finish() may have committed the last trans and started |
| 2062 | * a new one. We need the inode to be in all transactions. |
| 2063 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 2064 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 2065 | xfs_trans_ijoin(args->trans, dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | |
| 2067 | ASSERT(nmap == 1); |
| 2068 | ASSERT((map.br_startblock != DELAYSTARTBLOCK) && |
| 2069 | (map.br_startblock != HOLESTARTBLOCK)); |
| 2070 | lblkno += map.br_blockcount; |
| 2071 | blkcnt -= map.br_blockcount; |
| 2072 | |
| 2073 | /* |
| 2074 | * Start the next trans in the chain. |
| 2075 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 2076 | error = xfs_trans_roll(&args->trans, dp); |
| 2077 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | return (error); |
| 2079 | } |
| 2080 | |
| 2081 | /* |
| 2082 | * Roll through the "value", copying the attribute value to the |
| 2083 | * already-allocated blocks. Blocks are written synchronously |
| 2084 | * so that we can know they are all on disk before we turn off |
| 2085 | * the INCOMPLETE flag. |
| 2086 | */ |
| 2087 | lblkno = args->rmtblkno; |
| 2088 | valuelen = args->valuelen; |
| 2089 | while (valuelen > 0) { |
Dave Chinner | 4e94b71 | 2012-04-23 15:58:51 +1000 | [diff] [blame] | 2090 | int buflen; |
| 2091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | /* |
| 2093 | * Try to remember where we decided to put the value. |
| 2094 | */ |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2095 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | nmap = 1; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 2097 | error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno, |
| 2098 | args->rmtblkcnt, &map, &nmap, |
| 2099 | XFS_BMAPI_ATTRFORK); |
| 2100 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | return(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | ASSERT(nmap == 1); |
| 2103 | ASSERT((map.br_startblock != DELAYSTARTBLOCK) && |
| 2104 | (map.br_startblock != HOLESTARTBLOCK)); |
| 2105 | |
| 2106 | dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock), |
| 2107 | blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount); |
| 2108 | |
Dave Chinner | aa5c158 | 2012-04-23 15:58:56 +1000 | [diff] [blame] | 2109 | bp = xfs_buf_get(mp->m_ddev_targp, dblkno, blkcnt, 0); |
Chandra Seetharaman | b522950 | 2011-09-07 19:37:54 +0000 | [diff] [blame] | 2110 | if (!bp) |
| 2111 | return ENOMEM; |
Dave Chinner | 4e94b71 | 2012-04-23 15:58:51 +1000 | [diff] [blame] | 2112 | |
| 2113 | buflen = BBTOB(bp->b_length); |
| 2114 | tmp = min_t(int, valuelen, buflen); |
Christoph Hellwig | 1a1a3e9 | 2010-10-06 18:41:18 +0000 | [diff] [blame] | 2115 | xfs_buf_iomove(bp, 0, tmp, src, XBRW_WRITE); |
Dave Chinner | 4e94b71 | 2012-04-23 15:58:51 +1000 | [diff] [blame] | 2116 | if (tmp < buflen) |
| 2117 | xfs_buf_zero(bp, tmp, buflen - tmp); |
| 2118 | |
Christoph Hellwig | c2b006c | 2011-08-23 08:28:07 +0000 | [diff] [blame] | 2119 | error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */ |
| 2120 | xfs_buf_relse(bp); |
| 2121 | if (error) |
| 2122 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | src += tmp; |
| 2124 | valuelen -= tmp; |
| 2125 | |
| 2126 | lblkno += map.br_blockcount; |
| 2127 | } |
| 2128 | ASSERT(valuelen == 0); |
| 2129 | return(0); |
| 2130 | } |
| 2131 | |
| 2132 | /* |
| 2133 | * Remove the value associated with an attribute by deleting the |
| 2134 | * out-of-line buffer that it is stored on. |
| 2135 | */ |
| 2136 | STATIC int |
| 2137 | xfs_attr_rmtval_remove(xfs_da_args_t *args) |
| 2138 | { |
| 2139 | xfs_mount_t *mp; |
| 2140 | xfs_bmbt_irec_t map; |
| 2141 | xfs_buf_t *bp; |
| 2142 | xfs_daddr_t dblkno; |
| 2143 | xfs_dablk_t lblkno; |
| 2144 | int valuelen, blkcnt, nmap, error, done, committed; |
| 2145 | |
| 2146 | mp = args->dp->i_mount; |
| 2147 | |
| 2148 | /* |
| 2149 | * Roll through the "value", invalidating the attribute value's |
| 2150 | * blocks. |
| 2151 | */ |
| 2152 | lblkno = args->rmtblkno; |
| 2153 | valuelen = args->rmtblkcnt; |
| 2154 | while (valuelen > 0) { |
| 2155 | /* |
| 2156 | * Try to remember where we decided to put the value. |
| 2157 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | nmap = 1; |
Dave Chinner | 5c8ed20 | 2011-09-18 20:40:45 +0000 | [diff] [blame] | 2159 | error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno, |
| 2160 | args->rmtblkcnt, &map, &nmap, |
| 2161 | XFS_BMAPI_ATTRFORK); |
| 2162 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | return(error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | ASSERT(nmap == 1); |
| 2165 | ASSERT((map.br_startblock != DELAYSTARTBLOCK) && |
| 2166 | (map.br_startblock != HOLESTARTBLOCK)); |
| 2167 | |
| 2168 | dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock), |
| 2169 | blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount); |
| 2170 | |
| 2171 | /* |
| 2172 | * If the "remote" value is in the cache, remove it. |
| 2173 | */ |
Christoph Hellwig | 0cadda1 | 2010-01-19 09:56:44 +0000 | [diff] [blame] | 2174 | bp = xfs_incore(mp->m_ddev_targp, dblkno, blkcnt, XBF_TRYLOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | if (bp) { |
Christoph Hellwig | c867cb6 | 2011-10-10 16:52:46 +0000 | [diff] [blame] | 2176 | xfs_buf_stale(bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | xfs_buf_relse(bp); |
| 2178 | bp = NULL; |
| 2179 | } |
| 2180 | |
| 2181 | valuelen -= map.br_blockcount; |
| 2182 | |
| 2183 | lblkno += map.br_blockcount; |
| 2184 | } |
| 2185 | |
| 2186 | /* |
| 2187 | * Keep de-allocating extents until the remote-value region is gone. |
| 2188 | */ |
| 2189 | lblkno = args->rmtblkno; |
| 2190 | blkcnt = args->rmtblkcnt; |
| 2191 | done = 0; |
| 2192 | while (!done) { |
Eric Sandeen | 9d87c31 | 2009-01-14 23:22:07 -0600 | [diff] [blame] | 2193 | xfs_bmap_init(args->flist, args->firstblock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt, |
| 2195 | XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA, |
Olaf Weber | 3e57ecf | 2006-06-09 14:48:12 +1000 | [diff] [blame] | 2196 | 1, args->firstblock, args->flist, |
Christoph Hellwig | b4e9181 | 2010-06-23 18:11:15 +1000 | [diff] [blame] | 2197 | &done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | if (!error) { |
| 2199 | error = xfs_bmap_finish(&args->trans, args->flist, |
Eric Sandeen | f7c99b6 | 2007-02-10 18:37:16 +1100 | [diff] [blame] | 2200 | &committed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | } |
| 2202 | if (error) { |
| 2203 | ASSERT(committed); |
| 2204 | args->trans = NULL; |
| 2205 | xfs_bmap_cancel(args->flist); |
| 2206 | return(error); |
| 2207 | } |
| 2208 | |
| 2209 | /* |
| 2210 | * bmap_finish() may have committed the last trans and started |
| 2211 | * a new one. We need the inode to be in all transactions. |
| 2212 | */ |
Christoph Hellwig | 898621d | 2010-06-24 11:36:58 +1000 | [diff] [blame] | 2213 | if (committed) |
Christoph Hellwig | ddc3415 | 2011-09-19 15:00:54 +0000 | [diff] [blame] | 2214 | xfs_trans_ijoin(args->trans, args->dp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2215 | |
| 2216 | /* |
| 2217 | * Close out trans and start the next one in the chain. |
| 2218 | */ |
Niv Sardi | 322ff6b | 2008-08-13 16:05:49 +1000 | [diff] [blame] | 2219 | error = xfs_trans_roll(&args->trans, args->dp); |
| 2220 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | return (error); |
| 2222 | } |
| 2223 | return(0); |
| 2224 | } |