Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 4 | * Copyright (c) 2013 Red Hat, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 5 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 8 | #include "xfs_fs.h" |
Dave Chinner | 632b89e | 2013-10-29 22:11:58 +1100 | [diff] [blame] | 9 | #include "xfs_shared.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 10 | #include "xfs_format.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 11 | #include "xfs_log_format.h" |
| 12 | #include "xfs_trans_resv.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 13 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include "xfs_sb.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include "xfs_mount.h" |
Dave Chinner | 5706278 | 2013-10-15 09:17:51 +1100 | [diff] [blame] | 16 | #include "xfs_da_format.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 17 | #include "xfs_da_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs_inode.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 19 | #include "xfs_trans.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 20 | #include "xfs_inode_item.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 21 | #include "xfs_bmap_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "xfs_bmap.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 23 | #include "xfs_attr_sf.h" |
| 24 | #include "xfs_attr_remote.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "xfs_attr.h" |
| 26 | #include "xfs_attr_leaf.h" |
| 27 | #include "xfs_error.h" |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 28 | #include "xfs_trace.h" |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 29 | #include "xfs_buf_item.h" |
| 30 | #include "xfs_cksum.h" |
Dave Chinner | 4bceb18 | 2013-10-29 22:11:51 +1100 | [diff] [blame] | 31 | #include "xfs_dir2.h" |
Brian Foster | a45086e | 2015-10-12 15:59:25 +1100 | [diff] [blame] | 32 | #include "xfs_log.h" |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | /* |
| 36 | * xfs_attr_leaf.c |
| 37 | * |
| 38 | * Routines to implement leaf blocks of attributes as Btrees of hashed names. |
| 39 | */ |
| 40 | |
| 41 | /*======================================================================== |
| 42 | * Function prototypes for the kernel. |
| 43 | *========================================================================*/ |
| 44 | |
| 45 | /* |
| 46 | * Routines used for growing the Btree. |
| 47 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 48 | STATIC int xfs_attr3_leaf_create(struct xfs_da_args *args, |
| 49 | xfs_dablk_t which_block, struct xfs_buf **bpp); |
| 50 | STATIC int xfs_attr3_leaf_add_work(struct xfs_buf *leaf_buffer, |
| 51 | struct xfs_attr3_icleaf_hdr *ichdr, |
| 52 | struct xfs_da_args *args, int freemap_index); |
| 53 | STATIC void xfs_attr3_leaf_compact(struct xfs_da_args *args, |
| 54 | struct xfs_attr3_icleaf_hdr *ichdr, |
| 55 | struct xfs_buf *leaf_buffer); |
| 56 | STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | xfs_da_state_blk_t *blk1, |
| 58 | xfs_da_state_blk_t *blk2); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 59 | STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state, |
| 60 | xfs_da_state_blk_t *leaf_blk_1, |
| 61 | struct xfs_attr3_icleaf_hdr *ichdr1, |
| 62 | xfs_da_state_blk_t *leaf_blk_2, |
| 63 | struct xfs_attr3_icleaf_hdr *ichdr2, |
| 64 | int *number_entries_in_blk1, |
| 65 | int *number_usedbytes_in_blk1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | /* |
| 68 | * Utility routines. |
| 69 | */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 70 | STATIC void xfs_attr3_leaf_moveents(struct xfs_da_args *args, |
| 71 | struct xfs_attr_leafblock *src_leaf, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 72 | struct xfs_attr3_icleaf_hdr *src_ichdr, int src_start, |
| 73 | struct xfs_attr_leafblock *dst_leaf, |
| 74 | struct xfs_attr3_icleaf_hdr *dst_ichdr, int dst_start, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 75 | int move_count); |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 76 | STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 77 | |
Brian Foster | e87021a | 2015-04-13 11:27:10 +1000 | [diff] [blame] | 78 | /* |
| 79 | * attr3 block 'firstused' conversion helpers. |
| 80 | * |
| 81 | * firstused refers to the offset of the first used byte of the nameval region |
| 82 | * of an attr leaf block. The region starts at the tail of the block and expands |
| 83 | * backwards towards the middle. As such, firstused is initialized to the block |
| 84 | * size for an empty leaf block and is reduced from there. |
| 85 | * |
| 86 | * The attr3 block size is pegged to the fsb size and the maximum fsb is 64k. |
| 87 | * The in-core firstused field is 32-bit and thus supports the maximum fsb size. |
| 88 | * The on-disk field is only 16-bit, however, and overflows at 64k. Since this |
| 89 | * only occurs at exactly 64k, we use zero as a magic on-disk value to represent |
| 90 | * the attr block size. The following helpers manage the conversion between the |
| 91 | * in-core and on-disk formats. |
| 92 | */ |
| 93 | |
| 94 | static void |
| 95 | xfs_attr3_leaf_firstused_from_disk( |
| 96 | struct xfs_da_geometry *geo, |
| 97 | struct xfs_attr3_icleaf_hdr *to, |
| 98 | struct xfs_attr_leafblock *from) |
| 99 | { |
| 100 | struct xfs_attr3_leaf_hdr *hdr3; |
| 101 | |
| 102 | if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) { |
| 103 | hdr3 = (struct xfs_attr3_leaf_hdr *) from; |
| 104 | to->firstused = be16_to_cpu(hdr3->firstused); |
| 105 | } else { |
| 106 | to->firstused = be16_to_cpu(from->hdr.firstused); |
| 107 | } |
| 108 | |
| 109 | /* |
| 110 | * Convert from the magic fsb size value to actual blocksize. This |
| 111 | * should only occur for empty blocks when the block size overflows |
| 112 | * 16-bits. |
| 113 | */ |
| 114 | if (to->firstused == XFS_ATTR3_LEAF_NULLOFF) { |
| 115 | ASSERT(!to->count && !to->usedbytes); |
| 116 | ASSERT(geo->blksize > USHRT_MAX); |
| 117 | to->firstused = geo->blksize; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | static void |
| 122 | xfs_attr3_leaf_firstused_to_disk( |
| 123 | struct xfs_da_geometry *geo, |
| 124 | struct xfs_attr_leafblock *to, |
| 125 | struct xfs_attr3_icleaf_hdr *from) |
| 126 | { |
| 127 | struct xfs_attr3_leaf_hdr *hdr3; |
| 128 | uint32_t firstused; |
| 129 | |
| 130 | /* magic value should only be seen on disk */ |
| 131 | ASSERT(from->firstused != XFS_ATTR3_LEAF_NULLOFF); |
| 132 | |
| 133 | /* |
| 134 | * Scale down the 32-bit in-core firstused value to the 16-bit on-disk |
| 135 | * value. This only overflows at the max supported value of 64k. Use the |
| 136 | * magic on-disk value to represent block size in this case. |
| 137 | */ |
| 138 | firstused = from->firstused; |
| 139 | if (firstused > USHRT_MAX) { |
| 140 | ASSERT(from->firstused == geo->blksize); |
| 141 | firstused = XFS_ATTR3_LEAF_NULLOFF; |
| 142 | } |
| 143 | |
| 144 | if (from->magic == XFS_ATTR3_LEAF_MAGIC) { |
| 145 | hdr3 = (struct xfs_attr3_leaf_hdr *) to; |
| 146 | hdr3->firstused = cpu_to_be16(firstused); |
| 147 | } else { |
| 148 | to->hdr.firstused = cpu_to_be16(firstused); |
| 149 | } |
| 150 | } |
| 151 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 152 | void |
| 153 | xfs_attr3_leaf_hdr_from_disk( |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 154 | struct xfs_da_geometry *geo, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 155 | struct xfs_attr3_icleaf_hdr *to, |
| 156 | struct xfs_attr_leafblock *from) |
| 157 | { |
| 158 | int i; |
| 159 | |
| 160 | ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) || |
| 161 | from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)); |
| 162 | |
| 163 | if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) { |
| 164 | struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)from; |
| 165 | |
| 166 | to->forw = be32_to_cpu(hdr3->info.hdr.forw); |
| 167 | to->back = be32_to_cpu(hdr3->info.hdr.back); |
| 168 | to->magic = be16_to_cpu(hdr3->info.hdr.magic); |
| 169 | to->count = be16_to_cpu(hdr3->count); |
| 170 | to->usedbytes = be16_to_cpu(hdr3->usedbytes); |
Brian Foster | e87021a | 2015-04-13 11:27:10 +1000 | [diff] [blame] | 171 | xfs_attr3_leaf_firstused_from_disk(geo, to, from); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 172 | to->holes = hdr3->holes; |
| 173 | |
| 174 | for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) { |
| 175 | to->freemap[i].base = be16_to_cpu(hdr3->freemap[i].base); |
| 176 | to->freemap[i].size = be16_to_cpu(hdr3->freemap[i].size); |
| 177 | } |
| 178 | return; |
| 179 | } |
| 180 | to->forw = be32_to_cpu(from->hdr.info.forw); |
| 181 | to->back = be32_to_cpu(from->hdr.info.back); |
| 182 | to->magic = be16_to_cpu(from->hdr.info.magic); |
| 183 | to->count = be16_to_cpu(from->hdr.count); |
| 184 | to->usedbytes = be16_to_cpu(from->hdr.usedbytes); |
Brian Foster | e87021a | 2015-04-13 11:27:10 +1000 | [diff] [blame] | 185 | xfs_attr3_leaf_firstused_from_disk(geo, to, from); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 186 | to->holes = from->hdr.holes; |
| 187 | |
| 188 | for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) { |
| 189 | to->freemap[i].base = be16_to_cpu(from->hdr.freemap[i].base); |
| 190 | to->freemap[i].size = be16_to_cpu(from->hdr.freemap[i].size); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | void |
| 195 | xfs_attr3_leaf_hdr_to_disk( |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 196 | struct xfs_da_geometry *geo, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 197 | struct xfs_attr_leafblock *to, |
| 198 | struct xfs_attr3_icleaf_hdr *from) |
| 199 | { |
Brian Foster | e87021a | 2015-04-13 11:27:10 +1000 | [diff] [blame] | 200 | int i; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 201 | |
| 202 | ASSERT(from->magic == XFS_ATTR_LEAF_MAGIC || |
| 203 | from->magic == XFS_ATTR3_LEAF_MAGIC); |
| 204 | |
| 205 | if (from->magic == XFS_ATTR3_LEAF_MAGIC) { |
| 206 | struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)to; |
| 207 | |
| 208 | hdr3->info.hdr.forw = cpu_to_be32(from->forw); |
| 209 | hdr3->info.hdr.back = cpu_to_be32(from->back); |
| 210 | hdr3->info.hdr.magic = cpu_to_be16(from->magic); |
| 211 | hdr3->count = cpu_to_be16(from->count); |
| 212 | hdr3->usedbytes = cpu_to_be16(from->usedbytes); |
Brian Foster | e87021a | 2015-04-13 11:27:10 +1000 | [diff] [blame] | 213 | xfs_attr3_leaf_firstused_to_disk(geo, to, from); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 214 | hdr3->holes = from->holes; |
| 215 | hdr3->pad1 = 0; |
| 216 | |
| 217 | for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) { |
| 218 | hdr3->freemap[i].base = cpu_to_be16(from->freemap[i].base); |
| 219 | hdr3->freemap[i].size = cpu_to_be16(from->freemap[i].size); |
| 220 | } |
| 221 | return; |
| 222 | } |
| 223 | to->hdr.info.forw = cpu_to_be32(from->forw); |
| 224 | to->hdr.info.back = cpu_to_be32(from->back); |
| 225 | to->hdr.info.magic = cpu_to_be16(from->magic); |
| 226 | to->hdr.count = cpu_to_be16(from->count); |
| 227 | to->hdr.usedbytes = cpu_to_be16(from->usedbytes); |
Brian Foster | e87021a | 2015-04-13 11:27:10 +1000 | [diff] [blame] | 228 | xfs_attr3_leaf_firstused_to_disk(geo, to, from); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 229 | to->hdr.holes = from->holes; |
| 230 | to->hdr.pad1 = 0; |
| 231 | |
| 232 | for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) { |
| 233 | to->hdr.freemap[i].base = cpu_to_be16(from->freemap[i].base); |
| 234 | to->hdr.freemap[i].size = cpu_to_be16(from->freemap[i].size); |
| 235 | } |
| 236 | } |
| 237 | |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 238 | static xfs_failaddr_t |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 239 | xfs_attr3_leaf_verify( |
Darrick J. Wong | 79a69bf | 2018-01-16 18:54:12 -0800 | [diff] [blame] | 240 | struct xfs_buf *bp) |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 241 | { |
Darrick J. Wong | 79a69bf | 2018-01-16 18:54:12 -0800 | [diff] [blame] | 242 | struct xfs_attr3_icleaf_hdr ichdr; |
| 243 | struct xfs_mount *mp = bp->b_target->bt_mount; |
| 244 | struct xfs_attr_leafblock *leaf = bp->b_addr; |
| 245 | struct xfs_perag *pag = bp->b_pag; |
| 246 | struct xfs_attr_leaf_entry *entries; |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 247 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 248 | xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 249 | |
| 250 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 251 | struct xfs_da3_node_hdr *hdr3 = bp->b_addr; |
| 252 | |
| 253 | if (ichdr.magic != XFS_ATTR3_LEAF_MAGIC) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 254 | return __this_address; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 255 | |
Eric Sandeen | ce748ea | 2015-07-29 11:53:31 +1000 | [diff] [blame] | 256 | if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid)) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 257 | return __this_address; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 258 | if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 259 | return __this_address; |
Brian Foster | a45086e | 2015-10-12 15:59:25 +1100 | [diff] [blame] | 260 | if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->info.lsn))) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 261 | return __this_address; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 262 | } else { |
| 263 | if (ichdr.magic != XFS_ATTR_LEAF_MAGIC) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 264 | return __this_address; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 265 | } |
Eric Sandeen | 2e1d233 | 2016-12-09 16:49:47 +1100 | [diff] [blame] | 266 | /* |
| 267 | * In recovery there is a transient state where count == 0 is valid |
| 268 | * because we may have transitioned an empty shortform attr to a leaf |
| 269 | * if the attr didn't fit in shortform. |
| 270 | */ |
| 271 | if (pag && pag->pagf_init && ichdr.count == 0) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 272 | return __this_address; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 273 | |
Darrick J. Wong | 79a69bf | 2018-01-16 18:54:12 -0800 | [diff] [blame] | 274 | /* |
| 275 | * firstused is the block offset of the first name info structure. |
| 276 | * Make sure it doesn't go off the block or crash into the header. |
| 277 | */ |
| 278 | if (ichdr.firstused > mp->m_attr_geo->blksize) |
| 279 | return __this_address; |
| 280 | if (ichdr.firstused < xfs_attr3_leaf_hdr_size(leaf)) |
| 281 | return __this_address; |
| 282 | |
| 283 | /* Make sure the entries array doesn't crash into the name info. */ |
| 284 | entries = xfs_attr3_leaf_entryp(bp->b_addr); |
| 285 | if ((char *)&entries[ichdr.count] > |
| 286 | (char *)bp->b_addr + ichdr.firstused) |
| 287 | return __this_address; |
| 288 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 289 | /* XXX: need to range check rest of attr header values */ |
| 290 | /* XXX: hash order check? */ |
| 291 | |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 292 | return NULL; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | static void |
| 296 | xfs_attr3_leaf_write_verify( |
| 297 | struct xfs_buf *bp) |
| 298 | { |
| 299 | struct xfs_mount *mp = bp->b_target->bt_mount; |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 300 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 301 | struct xfs_attr3_leaf_hdr *hdr3 = bp->b_addr; |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 302 | xfs_failaddr_t fa; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 303 | |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 304 | fa = xfs_attr3_leaf_verify(bp); |
| 305 | if (fa) { |
| 306 | xfs_verifier_error(bp, -EFSCORRUPTED, fa); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 307 | return; |
| 308 | } |
| 309 | |
| 310 | if (!xfs_sb_version_hascrc(&mp->m_sb)) |
| 311 | return; |
| 312 | |
| 313 | if (bip) |
| 314 | hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn); |
| 315 | |
Eric Sandeen | f1dbcd7 | 2014-02-27 15:18:23 +1100 | [diff] [blame] | 316 | xfs_buf_update_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* |
| 320 | * leaf/node format detection on trees is sketchy, so a node read can be done on |
| 321 | * leaf level blocks when detection identifies the tree as a node format tree |
| 322 | * incorrectly. In this case, we need to swap the verifier to match the correct |
| 323 | * format of the block being read. |
| 324 | */ |
| 325 | static void |
| 326 | xfs_attr3_leaf_read_verify( |
| 327 | struct xfs_buf *bp) |
| 328 | { |
| 329 | struct xfs_mount *mp = bp->b_target->bt_mount; |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 330 | xfs_failaddr_t fa; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 331 | |
Eric Sandeen | ce5028c | 2014-02-27 15:23:10 +1100 | [diff] [blame] | 332 | if (xfs_sb_version_hascrc(&mp->m_sb) && |
| 333 | !xfs_buf_verify_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF)) |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 334 | xfs_verifier_error(bp, -EFSBADCRC, __this_address); |
| 335 | else { |
| 336 | fa = xfs_attr3_leaf_verify(bp); |
| 337 | if (fa) |
| 338 | xfs_verifier_error(bp, -EFSCORRUPTED, fa); |
| 339 | } |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 340 | } |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 341 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 342 | const struct xfs_buf_ops xfs_attr3_leaf_buf_ops = { |
Eric Sandeen | 233135b | 2016-01-04 16:10:19 +1100 | [diff] [blame] | 343 | .name = "xfs_attr3_leaf", |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 344 | .verify_read = xfs_attr3_leaf_read_verify, |
| 345 | .verify_write = xfs_attr3_leaf_write_verify, |
Darrick J. Wong | b557259 | 2018-01-08 10:51:08 -0800 | [diff] [blame] | 346 | .verify_struct = xfs_attr3_leaf_verify, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 347 | }; |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 348 | |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 349 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 350 | xfs_attr3_leaf_read( |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 351 | struct xfs_trans *tp, |
| 352 | struct xfs_inode *dp, |
| 353 | xfs_dablk_t bno, |
| 354 | xfs_daddr_t mappedbno, |
| 355 | struct xfs_buf **bpp) |
| 356 | { |
Dave Chinner | d75afeb | 2013-04-03 16:11:29 +1100 | [diff] [blame] | 357 | int err; |
| 358 | |
| 359 | err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 360 | XFS_ATTR_FORK, &xfs_attr3_leaf_buf_ops); |
Darrick J. Wong | cd87d86 | 2017-07-07 18:55:17 -0700 | [diff] [blame] | 361 | if (!err && tp && *bpp) |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 362 | xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF); |
Dave Chinner | d75afeb | 2013-04-03 16:11:29 +1100 | [diff] [blame] | 363 | return err; |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 364 | } |
| 365 | |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 366 | /*======================================================================== |
| 367 | * Namespace helper routines |
| 368 | *========================================================================*/ |
| 369 | |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 370 | /* |
| 371 | * If namespace bits don't match return 0. |
| 372 | * If all match then return 1. |
| 373 | */ |
Christoph Hellwig | b8f82a4 | 2009-11-14 16:17:22 +0000 | [diff] [blame] | 374 | STATIC int |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 375 | xfs_attr_namesp_match(int arg_flags, int ondisk_flags) |
| 376 | { |
| 377 | return XFS_ATTR_NSP_ONDISK(ondisk_flags) == XFS_ATTR_NSP_ARGS_TO_ONDISK(arg_flags); |
| 378 | } |
| 379 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | /*======================================================================== |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 382 | * External routines when attribute fork size < XFS_LITINO(mp). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | *========================================================================*/ |
| 384 | |
| 385 | /* |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 386 | * Query whether the requested number of additional bytes of extended |
| 387 | * attribute space will be able to fit inline. |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 388 | * |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 389 | * Returns zero if not, else the di_forkoff fork offset to be used in the |
| 390 | * literal area for attribute data once the new bytes have been added. |
| 391 | * |
| 392 | * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value; |
| 393 | * special case for dev/uuid inodes, they have fixed size data forks. |
| 394 | */ |
| 395 | int |
| 396 | xfs_attr_shortform_bytesfit(xfs_inode_t *dp, int bytes) |
| 397 | { |
| 398 | int offset; |
| 399 | int minforkoff; /* lower limit on valid forkoff locations */ |
| 400 | int maxforkoff; /* upper limit on valid forkoff locations */ |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 401 | int dsize; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 402 | xfs_mount_t *mp = dp->i_mount; |
| 403 | |
Christoph Hellwig | 56cea2d | 2013-03-12 23:30:36 +1100 | [diff] [blame] | 404 | /* rounded down */ |
| 405 | offset = (XFS_LITINO(mp, dp->i_d.di_version) - bytes) >> 3; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 406 | |
Christoph Hellwig | 42b67dc | 2017-10-19 11:07:09 -0700 | [diff] [blame] | 407 | if (dp->i_d.di_format == XFS_DINODE_FMT_DEV) { |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 408 | minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3; |
| 409 | return (offset >= minforkoff) ? minforkoff : 0; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 410 | } |
| 411 | |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 412 | /* |
| 413 | * If the requested numbers of bytes is smaller or equal to the |
| 414 | * current attribute fork size we can always proceed. |
| 415 | * |
| 416 | * Note that if_bytes in the data fork might actually be larger than |
| 417 | * the current data fork size is due to delalloc extents. In that |
| 418 | * case either the extent count will go down when they are converted |
| 419 | * to real extents, or the delalloc conversion will take care of the |
| 420 | * literal area rebalancing. |
| 421 | */ |
| 422 | if (bytes <= XFS_IFORK_ASIZE(dp)) |
| 423 | return dp->i_d.di_forkoff; |
| 424 | |
| 425 | /* |
| 426 | * For attr2 we can try to move the forkoff if there is space in the |
| 427 | * literal area, but for the old format we are done if there is no |
| 428 | * space in the fixed attribute fork. |
| 429 | */ |
| 430 | if (!(mp->m_flags & XFS_MOUNT_ATTR2)) |
Nathan Scott | da087ba | 2005-11-02 15:00:20 +1100 | [diff] [blame] | 431 | return 0; |
Nathan Scott | da087ba | 2005-11-02 15:00:20 +1100 | [diff] [blame] | 432 | |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 433 | dsize = dp->i_df.if_bytes; |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 434 | |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 435 | switch (dp->i_d.di_format) { |
| 436 | case XFS_DINODE_FMT_EXTENTS: |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 437 | /* |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 438 | * If there is no attr fork and the data fork is extents, |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 439 | * determine if creating the default attr fork will result |
| 440 | * in the extents form migrating to btree. If so, the |
| 441 | * minimum offset only needs to be the space required for |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 442 | * the btree root. |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 443 | */ |
Christoph Hellwig | 1a5902c | 2009-03-29 19:26:46 +0200 | [diff] [blame] | 444 | if (!dp->i_d.di_forkoff && dp->i_df.if_bytes > |
| 445 | xfs_default_attroffset(dp)) |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 446 | dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS); |
| 447 | break; |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 448 | case XFS_DINODE_FMT_BTREE: |
| 449 | /* |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 450 | * If we have a data btree then keep forkoff if we have one, |
| 451 | * otherwise we are adding a new attr, so then we set |
| 452 | * minforkoff to where the btree root can finish so we have |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 453 | * plenty of room for attrs |
| 454 | */ |
| 455 | if (dp->i_d.di_forkoff) { |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 456 | if (offset < dp->i_d.di_forkoff) |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 457 | return 0; |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 458 | return dp->i_d.di_forkoff; |
| 459 | } |
Christoph Hellwig | ee1a47a | 2013-04-21 14:53:46 -0500 | [diff] [blame] | 460 | dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot); |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 461 | break; |
| 462 | } |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 463 | |
| 464 | /* |
| 465 | * A data fork btree root must have space for at least |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 466 | * MINDBTPTRS key/ptr pairs if the data fork is small or empty. |
| 467 | */ |
Dave Chinner | 9bb54cb | 2018-06-07 07:54:02 -0700 | [diff] [blame^] | 468 | minforkoff = max(dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS)); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 469 | minforkoff = roundup(minforkoff, 8) >> 3; |
| 470 | |
| 471 | /* attr fork btree root can have at least this many key/ptr pairs */ |
Christoph Hellwig | 56cea2d | 2013-03-12 23:30:36 +1100 | [diff] [blame] | 472 | maxforkoff = XFS_LITINO(mp, dp->i_d.di_version) - |
| 473 | XFS_BMDR_SPACE_CALC(MINABTPTRS); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 474 | maxforkoff = maxforkoff >> 3; /* rounded down */ |
| 475 | |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 476 | if (offset >= maxforkoff) |
| 477 | return maxforkoff; |
Christoph Hellwig | 4c393a6 | 2011-11-19 17:44:30 +0000 | [diff] [blame] | 478 | if (offset >= minforkoff) |
| 479 | return offset; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 480 | return 0; |
| 481 | } |
| 482 | |
| 483 | /* |
| 484 | * Switch on the ATTR2 superblock bit (implies also FEATURES2) |
| 485 | */ |
| 486 | STATIC void |
| 487 | xfs_sbversion_add_attr2(xfs_mount_t *mp, xfs_trans_t *tp) |
| 488 | { |
Nathan Scott | 13059ff | 2006-01-11 15:32:01 +1100 | [diff] [blame] | 489 | if ((mp->m_flags & XFS_MOUNT_ATTR2) && |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 490 | !(xfs_sb_version_hasattr2(&mp->m_sb))) { |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 491 | spin_lock(&mp->m_sb_lock); |
Eric Sandeen | 6211870 | 2008-03-06 13:44:28 +1100 | [diff] [blame] | 492 | if (!xfs_sb_version_hasattr2(&mp->m_sb)) { |
| 493 | xfs_sb_version_addattr2(&mp->m_sb); |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 494 | spin_unlock(&mp->m_sb_lock); |
Dave Chinner | 61e63ec | 2015-01-22 09:10:31 +1100 | [diff] [blame] | 495 | xfs_log_sb(tp); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 496 | } else |
Eric Sandeen | 3685c2a | 2007-10-11 17:42:32 +1000 | [diff] [blame] | 497 | spin_unlock(&mp->m_sb_lock); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 498 | } |
| 499 | } |
| 500 | |
| 501 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | * Create the initial contents of a shortform attribute list. |
| 503 | */ |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 504 | void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | xfs_attr_shortform_create(xfs_da_args_t *args) |
| 506 | { |
| 507 | xfs_attr_sf_hdr_t *hdr; |
| 508 | xfs_inode_t *dp; |
| 509 | xfs_ifork_t *ifp; |
| 510 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 511 | trace_xfs_attr_sf_create(args); |
| 512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | dp = args->dp; |
| 514 | ASSERT(dp != NULL); |
| 515 | ifp = dp->i_afp; |
| 516 | ASSERT(ifp != NULL); |
| 517 | ASSERT(ifp->if_bytes == 0); |
| 518 | if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) { |
| 519 | ifp->if_flags &= ~XFS_IFEXTENTS; /* just in case */ |
| 520 | dp->i_d.di_aformat = XFS_DINODE_FMT_LOCAL; |
| 521 | ifp->if_flags |= XFS_IFINLINE; |
| 522 | } else { |
| 523 | ASSERT(ifp->if_flags & XFS_IFINLINE); |
| 524 | } |
| 525 | xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK); |
| 526 | hdr = (xfs_attr_sf_hdr_t *)ifp->if_u1.if_data; |
| 527 | hdr->count = 0; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 528 | hdr->totsize = cpu_to_be16(sizeof(*hdr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /* |
| 533 | * Add a name/value pair to the shortform attribute list. |
| 534 | * Overflow from the inode has already been checked for. |
| 535 | */ |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 536 | void |
| 537 | xfs_attr_shortform_add(xfs_da_args_t *args, int forkoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | { |
| 539 | xfs_attr_shortform_t *sf; |
| 540 | xfs_attr_sf_entry_t *sfe; |
| 541 | int i, offset, size; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 542 | xfs_mount_t *mp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | xfs_inode_t *dp; |
| 544 | xfs_ifork_t *ifp; |
| 545 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 546 | trace_xfs_attr_sf_add(args); |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | dp = args->dp; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 549 | mp = dp->i_mount; |
| 550 | dp->i_d.di_forkoff = forkoff; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | ifp = dp->i_afp; |
| 553 | ASSERT(ifp->if_flags & XFS_IFINLINE); |
| 554 | sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; |
| 555 | sfe = &sf->list[0]; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 556 | for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) { |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 557 | #ifdef DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | if (sfe->namelen != args->namelen) |
| 559 | continue; |
| 560 | if (memcmp(args->name, sfe->nameval, args->namelen) != 0) |
| 561 | continue; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 562 | if (!xfs_attr_namesp_match(args->flags, sfe->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | continue; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 564 | ASSERT(0); |
| 565 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | offset = (char *)sfe - (char *)sf; |
| 569 | size = XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen); |
| 570 | xfs_idata_realloc(dp, size, XFS_ATTR_FORK); |
| 571 | sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; |
| 572 | sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset); |
| 573 | |
| 574 | sfe->namelen = args->namelen; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 575 | sfe->valuelen = args->valuelen; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 576 | sfe->flags = XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | memcpy(sfe->nameval, args->name, args->namelen); |
| 578 | memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen); |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 579 | sf->hdr.count++; |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 580 | be16_add_cpu(&sf->hdr.totsize, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA); |
| 582 | |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 583 | xfs_sbversion_add_attr2(mp, args->trans); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | /* |
Christoph Hellwig | e1486de | 2009-02-04 09:36:00 +0100 | [diff] [blame] | 587 | * After the last attribute is removed revert to original inode format, |
| 588 | * making all literal area available to the data fork once more. |
| 589 | */ |
Dave Chinner | 6dfe5a0 | 2015-05-29 07:40:08 +1000 | [diff] [blame] | 590 | void |
| 591 | xfs_attr_fork_remove( |
Christoph Hellwig | e1486de | 2009-02-04 09:36:00 +0100 | [diff] [blame] | 592 | struct xfs_inode *ip, |
| 593 | struct xfs_trans *tp) |
| 594 | { |
| 595 | xfs_idestroy_fork(ip, XFS_ATTR_FORK); |
| 596 | ip->i_d.di_forkoff = 0; |
| 597 | ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS; |
| 598 | |
| 599 | ASSERT(ip->i_d.di_anextents == 0); |
| 600 | ASSERT(ip->i_afp == NULL); |
| 601 | |
Christoph Hellwig | e1486de | 2009-02-04 09:36:00 +0100 | [diff] [blame] | 602 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 603 | } |
| 604 | |
| 605 | /* |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 606 | * Remove an attribute from the shortform attribute list structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | */ |
| 608 | int |
| 609 | xfs_attr_shortform_remove(xfs_da_args_t *args) |
| 610 | { |
| 611 | xfs_attr_shortform_t *sf; |
| 612 | xfs_attr_sf_entry_t *sfe; |
| 613 | int base, size=0, end, totsize, i; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 614 | xfs_mount_t *mp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | xfs_inode_t *dp; |
| 616 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 617 | trace_xfs_attr_sf_remove(args); |
| 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | dp = args->dp; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 620 | mp = dp->i_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | base = sizeof(xfs_attr_sf_hdr_t); |
| 622 | sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data; |
| 623 | sfe = &sf->list[0]; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 624 | end = sf->hdr.count; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 625 | for (i = 0; i < end; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | base += size, i++) { |
| 627 | size = XFS_ATTR_SF_ENTSIZE(sfe); |
| 628 | if (sfe->namelen != args->namelen) |
| 629 | continue; |
| 630 | if (memcmp(sfe->nameval, args->name, args->namelen) != 0) |
| 631 | continue; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 632 | if (!xfs_attr_namesp_match(args->flags, sfe->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | continue; |
| 634 | break; |
| 635 | } |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 636 | if (i == end) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 637 | return -ENOATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 639 | /* |
| 640 | * Fix up the attribute fork data, covering the hole |
| 641 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | end = base + size; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 643 | totsize = be16_to_cpu(sf->hdr.totsize); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 644 | if (end != totsize) |
| 645 | memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end); |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 646 | sf->hdr.count--; |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 647 | be16_add_cpu(&sf->hdr.totsize, -size); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 648 | |
| 649 | /* |
| 650 | * Fix up the start offset of the attribute fork |
| 651 | */ |
| 652 | totsize -= size; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 653 | if (totsize == sizeof(xfs_attr_sf_hdr_t) && |
Christoph Hellwig | e1486de | 2009-02-04 09:36:00 +0100 | [diff] [blame] | 654 | (mp->m_flags & XFS_MOUNT_ATTR2) && |
| 655 | (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) && |
| 656 | !(args->op_flags & XFS_DA_OP_ADDNAME)) { |
Dave Chinner | 6dfe5a0 | 2015-05-29 07:40:08 +1000 | [diff] [blame] | 657 | xfs_attr_fork_remove(dp, args->trans); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 658 | } else { |
| 659 | xfs_idata_realloc(dp, -size, XFS_ATTR_FORK); |
| 660 | dp->i_d.di_forkoff = xfs_attr_shortform_bytesfit(dp, totsize); |
| 661 | ASSERT(dp->i_d.di_forkoff); |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 662 | ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) || |
| 663 | (args->op_flags & XFS_DA_OP_ADDNAME) || |
| 664 | !(mp->m_flags & XFS_MOUNT_ATTR2) || |
| 665 | dp->i_d.di_format == XFS_DINODE_FMT_BTREE); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 666 | xfs_trans_log_inode(args->trans, dp, |
| 667 | XFS_ILOG_CORE | XFS_ILOG_ADATA); |
| 668 | } |
| 669 | |
| 670 | xfs_sbversion_add_attr2(mp, args->trans); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 672 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | /* |
| 676 | * Look up a name in a shortform attribute list structure. |
| 677 | */ |
| 678 | /*ARGSUSED*/ |
| 679 | int |
| 680 | xfs_attr_shortform_lookup(xfs_da_args_t *args) |
| 681 | { |
| 682 | xfs_attr_shortform_t *sf; |
| 683 | xfs_attr_sf_entry_t *sfe; |
| 684 | int i; |
| 685 | xfs_ifork_t *ifp; |
| 686 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 687 | trace_xfs_attr_sf_lookup(args); |
| 688 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | ifp = args->dp->i_afp; |
| 690 | ASSERT(ifp->if_flags & XFS_IFINLINE); |
| 691 | sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; |
| 692 | sfe = &sf->list[0]; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 693 | for (i = 0; i < sf->hdr.count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) { |
| 695 | if (sfe->namelen != args->namelen) |
| 696 | continue; |
| 697 | if (memcmp(args->name, sfe->nameval, args->namelen) != 0) |
| 698 | continue; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 699 | if (!xfs_attr_namesp_match(args->flags, sfe->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | continue; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 701 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | } |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 703 | return -ENOATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | /* |
| 707 | * Look up a name in a shortform attribute list structure. |
| 708 | */ |
| 709 | /*ARGSUSED*/ |
| 710 | int |
| 711 | xfs_attr_shortform_getvalue(xfs_da_args_t *args) |
| 712 | { |
| 713 | xfs_attr_shortform_t *sf; |
| 714 | xfs_attr_sf_entry_t *sfe; |
| 715 | int i; |
| 716 | |
Eric Sandeen | 914ed44 | 2012-03-30 11:24:11 -0500 | [diff] [blame] | 717 | ASSERT(args->dp->i_afp->if_flags == XFS_IFINLINE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | sf = (xfs_attr_shortform_t *)args->dp->i_afp->if_u1.if_data; |
| 719 | sfe = &sf->list[0]; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 720 | for (i = 0; i < sf->hdr.count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) { |
| 722 | if (sfe->namelen != args->namelen) |
| 723 | continue; |
| 724 | if (memcmp(args->name, sfe->nameval, args->namelen) != 0) |
| 725 | continue; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 726 | if (!xfs_attr_namesp_match(args->flags, sfe->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | continue; |
| 728 | if (args->flags & ATTR_KERNOVAL) { |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 729 | args->valuelen = sfe->valuelen; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 730 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | } |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 732 | if (args->valuelen < sfe->valuelen) { |
| 733 | args->valuelen = sfe->valuelen; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 734 | return -ERANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 736 | args->valuelen = sfe->valuelen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | memcpy(args->value, &sfe->nameval[args->namelen], |
| 738 | args->valuelen); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 739 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | } |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 741 | return -ENOATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | /* |
Darrick J. Wong | 6e643cd | 2017-12-07 19:07:02 -0800 | [diff] [blame] | 745 | * Convert from using the shortform to the leaf. On success, return the |
| 746 | * buffer so that we can keep it locked until we're totally done with it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | */ |
| 748 | int |
Darrick J. Wong | 6e643cd | 2017-12-07 19:07:02 -0800 | [diff] [blame] | 749 | xfs_attr_shortform_to_leaf( |
| 750 | struct xfs_da_args *args, |
| 751 | struct xfs_buf **leaf_bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { |
| 753 | xfs_inode_t *dp; |
| 754 | xfs_attr_shortform_t *sf; |
| 755 | xfs_attr_sf_entry_t *sfe; |
| 756 | xfs_da_args_t nargs; |
| 757 | char *tmpbuffer; |
| 758 | int error, i, size; |
| 759 | xfs_dablk_t blkno; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 760 | struct xfs_buf *bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | xfs_ifork_t *ifp; |
| 762 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 763 | trace_xfs_attr_sf_to_leaf(args); |
| 764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | dp = args->dp; |
| 766 | ifp = dp->i_afp; |
| 767 | sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 768 | size = be16_to_cpu(sf->hdr.totsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | tmpbuffer = kmem_alloc(size, KM_SLEEP); |
| 770 | ASSERT(tmpbuffer != NULL); |
| 771 | memcpy(tmpbuffer, ifp->if_u1.if_data, size); |
| 772 | sf = (xfs_attr_shortform_t *)tmpbuffer; |
| 773 | |
| 774 | xfs_idata_realloc(dp, -size, XFS_ATTR_FORK); |
Dave Chinner | f3508bc | 2013-07-10 07:04:00 +1000 | [diff] [blame] | 775 | xfs_bmap_local_to_extents_empty(dp, XFS_ATTR_FORK); |
| 776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | bp = NULL; |
| 778 | error = xfs_da_grow_inode(args, &blkno); |
| 779 | if (error) { |
| 780 | /* |
| 781 | * If we hit an IO error middle of the transaction inside |
| 782 | * grow_inode(), we may have inconsistent data. Bail out. |
| 783 | */ |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 784 | if (error == -EIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | goto out; |
| 786 | xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */ |
| 787 | memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */ |
| 788 | goto out; |
| 789 | } |
| 790 | |
| 791 | ASSERT(blkno == 0); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 792 | error = xfs_attr3_leaf_create(args, blkno, &bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | if (error) { |
| 794 | error = xfs_da_shrink_inode(args, 0, bp); |
| 795 | bp = NULL; |
| 796 | if (error) |
| 797 | goto out; |
| 798 | xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */ |
| 799 | memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */ |
| 800 | goto out; |
| 801 | } |
| 802 | |
| 803 | memset((char *)&nargs, 0, sizeof(nargs)); |
| 804 | nargs.dp = dp; |
Dave Chinner | 0650b55 | 2014-06-06 15:01:58 +1000 | [diff] [blame] | 805 | nargs.geo = args->geo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | nargs.firstblock = args->firstblock; |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 807 | nargs.dfops = args->dfops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | nargs.total = args->total; |
| 809 | nargs.whichfork = XFS_ATTR_FORK; |
| 810 | nargs.trans = args->trans; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 811 | nargs.op_flags = XFS_DA_OP_OKNOENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
| 813 | sfe = &sf->list[0]; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 814 | for (i = 0; i < sf->hdr.count; i++) { |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 815 | nargs.name = sfe->nameval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | nargs.namelen = sfe->namelen; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 817 | nargs.value = &sfe->nameval[nargs.namelen]; |
Nathan Scott | 3b244aa | 2006-03-17 17:29:25 +1100 | [diff] [blame] | 818 | nargs.valuelen = sfe->valuelen; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 819 | nargs.hashval = xfs_da_hashname(sfe->nameval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | sfe->namelen); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 821 | nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 822 | error = xfs_attr3_leaf_lookup_int(bp, &nargs); /* set a->index */ |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 823 | ASSERT(error == -ENOATTR); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 824 | error = xfs_attr3_leaf_add(bp, &nargs); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 825 | ASSERT(error != -ENOSPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | if (error) |
| 827 | goto out; |
| 828 | sfe = XFS_ATTR_SF_NEXTENTRY(sfe); |
| 829 | } |
| 830 | error = 0; |
Darrick J. Wong | 6e643cd | 2017-12-07 19:07:02 -0800 | [diff] [blame] | 831 | *leaf_bp = bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | out: |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 833 | kmem_free(tmpbuffer); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 834 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | } |
| 836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | /* |
| 838 | * Check a leaf attribute block to see if all the entries would fit into |
| 839 | * a shortform attribute list. |
| 840 | */ |
| 841 | int |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 842 | xfs_attr_shortform_allfit( |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 843 | struct xfs_buf *bp, |
| 844 | struct xfs_inode *dp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 846 | struct xfs_attr_leafblock *leaf; |
| 847 | struct xfs_attr_leaf_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | xfs_attr_leaf_name_local_t *name_loc; |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 849 | struct xfs_attr3_icleaf_hdr leafhdr; |
| 850 | int bytes; |
| 851 | int i; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 852 | struct xfs_mount *mp = bp->b_target->bt_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 854 | leaf = bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 855 | xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf); |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 856 | entry = xfs_attr3_leaf_entryp(leaf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | bytes = sizeof(struct xfs_attr_sf_hdr); |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 859 | for (i = 0; i < leafhdr.count; entry++, i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | if (entry->flags & XFS_ATTR_INCOMPLETE) |
| 861 | continue; /* don't copy partial entries */ |
| 862 | if (!(entry->flags & XFS_ATTR_LOCAL)) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 863 | return 0; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 864 | name_loc = xfs_attr3_leaf_name_local(leaf, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 866 | return 0; |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 867 | if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 868 | return 0; |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 869 | bytes += sizeof(struct xfs_attr_sf_entry) - 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | + name_loc->namelen |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 871 | + be16_to_cpu(name_loc->valuelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
Nathan Scott | 13059ff | 2006-01-11 15:32:01 +1100 | [diff] [blame] | 873 | if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) && |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 874 | (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) && |
Nathan Scott | e0144ca | 2005-11-25 16:42:22 +1100 | [diff] [blame] | 875 | (bytes == sizeof(struct xfs_attr_sf_hdr))) |
Dave Chinner | b38958d | 2013-05-20 09:51:14 +1000 | [diff] [blame] | 876 | return -1; |
| 877 | return xfs_attr_shortform_bytesfit(dp, bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | } |
| 879 | |
Darrick J. Wong | 1e1bbd8 | 2018-01-08 10:51:05 -0800 | [diff] [blame] | 880 | /* Verify the consistency of an inline attribute fork. */ |
| 881 | xfs_failaddr_t |
| 882 | xfs_attr_shortform_verify( |
| 883 | struct xfs_inode *ip) |
| 884 | { |
| 885 | struct xfs_attr_shortform *sfp; |
| 886 | struct xfs_attr_sf_entry *sfep; |
| 887 | struct xfs_attr_sf_entry *next_sfep; |
| 888 | char *endp; |
| 889 | struct xfs_ifork *ifp; |
| 890 | int i; |
| 891 | int size; |
| 892 | |
| 893 | ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL); |
| 894 | ifp = XFS_IFORK_PTR(ip, XFS_ATTR_FORK); |
| 895 | sfp = (struct xfs_attr_shortform *)ifp->if_u1.if_data; |
| 896 | size = ifp->if_bytes; |
| 897 | |
| 898 | /* |
| 899 | * Give up if the attribute is way too short. |
| 900 | */ |
| 901 | if (size < sizeof(struct xfs_attr_sf_hdr)) |
| 902 | return __this_address; |
| 903 | |
| 904 | endp = (char *)sfp + size; |
| 905 | |
| 906 | /* Check all reported entries */ |
| 907 | sfep = &sfp->list[0]; |
| 908 | for (i = 0; i < sfp->hdr.count; i++) { |
| 909 | /* |
| 910 | * struct xfs_attr_sf_entry has a variable length. |
| 911 | * Check the fixed-offset parts of the structure are |
| 912 | * within the data buffer. |
| 913 | */ |
| 914 | if (((char *)sfep + sizeof(*sfep)) >= endp) |
| 915 | return __this_address; |
| 916 | |
| 917 | /* Don't allow names with known bad length. */ |
| 918 | if (sfep->namelen == 0) |
| 919 | return __this_address; |
| 920 | |
| 921 | /* |
| 922 | * Check that the variable-length part of the structure is |
| 923 | * within the data buffer. The next entry starts after the |
| 924 | * name component, so nextentry is an acceptable test. |
| 925 | */ |
| 926 | next_sfep = XFS_ATTR_SF_NEXTENTRY(sfep); |
| 927 | if ((char *)next_sfep > endp) |
| 928 | return __this_address; |
| 929 | |
| 930 | /* |
| 931 | * Check for unknown flags. Short form doesn't support |
| 932 | * the incomplete or local bits, so we can use the namespace |
| 933 | * mask here. |
| 934 | */ |
| 935 | if (sfep->flags & ~XFS_ATTR_NSP_ONDISK_MASK) |
| 936 | return __this_address; |
| 937 | |
| 938 | /* |
| 939 | * Check for invalid namespace combinations. We only allow |
| 940 | * one namespace flag per xattr, so we can just count the |
| 941 | * bits (i.e. hweight) here. |
| 942 | */ |
| 943 | if (hweight8(sfep->flags & XFS_ATTR_NSP_ONDISK_MASK) > 1) |
| 944 | return __this_address; |
| 945 | |
| 946 | sfep = next_sfep; |
| 947 | } |
| 948 | if ((void *)sfep != (void *)endp) |
| 949 | return __this_address; |
| 950 | |
| 951 | return NULL; |
| 952 | } |
| 953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | /* |
| 955 | * Convert a leaf attribute list to shortform attribute list |
| 956 | */ |
| 957 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 958 | xfs_attr3_leaf_to_shortform( |
| 959 | struct xfs_buf *bp, |
| 960 | struct xfs_da_args *args, |
| 961 | int forkoff) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 963 | struct xfs_attr_leafblock *leaf; |
| 964 | struct xfs_attr3_icleaf_hdr ichdr; |
| 965 | struct xfs_attr_leaf_entry *entry; |
| 966 | struct xfs_attr_leaf_name_local *name_loc; |
| 967 | struct xfs_da_args nargs; |
| 968 | struct xfs_inode *dp = args->dp; |
| 969 | char *tmpbuffer; |
| 970 | int error; |
| 971 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 973 | trace_xfs_attr_leaf_to_sf(args); |
| 974 | |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 975 | tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 976 | if (!tmpbuffer) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 977 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 979 | memcpy(tmpbuffer, bp->b_addr, args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | leaf = (xfs_attr_leafblock_t *)tmpbuffer; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 982 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 983 | entry = xfs_attr3_leaf_entryp(leaf); |
| 984 | |
| 985 | /* XXX (dgc): buffer is about to be marked stale - why zero it? */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 986 | memset(bp->b_addr, 0, args->geo->blksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | |
| 988 | /* |
| 989 | * Clean out the prior contents of the attribute list. |
| 990 | */ |
| 991 | error = xfs_da_shrink_inode(args, 0, bp); |
| 992 | if (error) |
| 993 | goto out; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 994 | |
| 995 | if (forkoff == -1) { |
Nathan Scott | 13059ff | 2006-01-11 15:32:01 +1100 | [diff] [blame] | 996 | ASSERT(dp->i_mount->m_flags & XFS_MOUNT_ATTR2); |
Barry Naujok | e5889e9 | 2007-02-10 18:35:58 +1100 | [diff] [blame] | 997 | ASSERT(dp->i_d.di_format != XFS_DINODE_FMT_BTREE); |
Dave Chinner | 6dfe5a0 | 2015-05-29 07:40:08 +1000 | [diff] [blame] | 998 | xfs_attr_fork_remove(dp, args->trans); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | goto out; |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1000 | } |
| 1001 | |
| 1002 | xfs_attr_shortform_create(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
| 1004 | /* |
| 1005 | * Copy the attributes |
| 1006 | */ |
| 1007 | memset((char *)&nargs, 0, sizeof(nargs)); |
Dave Chinner | 0650b55 | 2014-06-06 15:01:58 +1000 | [diff] [blame] | 1008 | nargs.geo = args->geo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | nargs.dp = dp; |
| 1010 | nargs.firstblock = args->firstblock; |
Darrick J. Wong | 2c3234d | 2016-08-03 11:19:29 +1000 | [diff] [blame] | 1011 | nargs.dfops = args->dfops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | nargs.total = args->total; |
| 1013 | nargs.whichfork = XFS_ATTR_FORK; |
| 1014 | nargs.trans = args->trans; |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 1015 | nargs.op_flags = XFS_DA_OP_OKNOENT; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1016 | |
| 1017 | for (i = 0; i < ichdr.count; entry++, i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | if (entry->flags & XFS_ATTR_INCOMPLETE) |
| 1019 | continue; /* don't copy partial entries */ |
| 1020 | if (!entry->nameidx) |
| 1021 | continue; |
| 1022 | ASSERT(entry->flags & XFS_ATTR_LOCAL); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1023 | name_loc = xfs_attr3_leaf_name_local(leaf, i); |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 1024 | nargs.name = name_loc->nameval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | nargs.namelen = name_loc->namelen; |
Dave Chinner | a9273ca | 2010-01-20 10:47:48 +1100 | [diff] [blame] | 1026 | nargs.value = &name_loc->nameval[nargs.namelen]; |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 1027 | nargs.valuelen = be16_to_cpu(name_loc->valuelen); |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 1028 | nargs.hashval = be32_to_cpu(entry->hashval); |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1029 | nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags); |
Nathan Scott | d8cc890 | 2005-11-02 10:34:53 +1100 | [diff] [blame] | 1030 | xfs_attr_shortform_add(&nargs, forkoff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | } |
| 1032 | error = 0; |
| 1033 | |
| 1034 | out: |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 1035 | kmem_free(tmpbuffer); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1036 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | /* |
| 1040 | * Convert from using a single leaf to a root node and a leaf. |
| 1041 | */ |
| 1042 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1043 | xfs_attr3_leaf_to_node( |
| 1044 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1046 | struct xfs_attr_leafblock *leaf; |
| 1047 | struct xfs_attr3_icleaf_hdr icleafhdr; |
| 1048 | struct xfs_attr_leaf_entry *entries; |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1049 | struct xfs_da_node_entry *btree; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1050 | struct xfs_da3_icnode_hdr icnodehdr; |
| 1051 | struct xfs_da_intnode *node; |
| 1052 | struct xfs_inode *dp = args->dp; |
| 1053 | struct xfs_mount *mp = dp->i_mount; |
| 1054 | struct xfs_buf *bp1 = NULL; |
| 1055 | struct xfs_buf *bp2 = NULL; |
| 1056 | xfs_dablk_t blkno; |
| 1057 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1059 | trace_xfs_attr_leaf_to_node(args); |
| 1060 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | error = xfs_da_grow_inode(args, &blkno); |
| 1062 | if (error) |
| 1063 | goto out; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1064 | error = xfs_attr3_leaf_read(args->trans, dp, 0, -1, &bp1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | if (error) |
| 1066 | goto out; |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 1067 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1068 | error = xfs_da_get_buf(args->trans, dp, blkno, -1, &bp2, XFS_ATTR_FORK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | if (error) |
| 1070 | goto out; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1071 | |
| 1072 | /* copy leaf to new buffer, update identifiers */ |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 1073 | xfs_trans_buf_set_type(args->trans, bp2, XFS_BLFT_ATTR_LEAF_BUF); |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 1074 | bp2->b_ops = bp1->b_ops; |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1075 | memcpy(bp2->b_addr, bp1->b_addr, args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1076 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 1077 | struct xfs_da3_blkinfo *hdr3 = bp2->b_addr; |
| 1078 | hdr3->blkno = cpu_to_be64(bp2->b_bn); |
| 1079 | } |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1080 | xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | |
| 1082 | /* |
| 1083 | * Set up the new root node. |
| 1084 | */ |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1085 | error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | if (error) |
| 1087 | goto out; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1088 | node = bp1->b_addr; |
Dave Chinner | 01ba43b | 2013-10-29 22:11:52 +1100 | [diff] [blame] | 1089 | dp->d_ops->node_hdr_from_disk(&icnodehdr, node); |
Dave Chinner | 4bceb18 | 2013-10-29 22:11:51 +1100 | [diff] [blame] | 1090 | btree = dp->d_ops->node_tree_p(node); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1091 | |
| 1092 | leaf = bp2->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1093 | xfs_attr3_leaf_hdr_from_disk(args->geo, &icleafhdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1094 | entries = xfs_attr3_leaf_entryp(leaf); |
| 1095 | |
| 1096 | /* both on-disk, don't endian-flip twice */ |
| 1097 | btree[0].hashval = entries[icleafhdr.count - 1].hashval; |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1098 | btree[0].before = cpu_to_be32(blkno); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1099 | icnodehdr.count = 1; |
Dave Chinner | 01ba43b | 2013-10-29 22:11:52 +1100 | [diff] [blame] | 1100 | dp->d_ops->node_hdr_to_disk(node, &icnodehdr); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1101 | xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | error = 0; |
| 1103 | out: |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1104 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | } |
| 1106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | /*======================================================================== |
| 1108 | * Routines used for growing the Btree. |
| 1109 | *========================================================================*/ |
| 1110 | |
| 1111 | /* |
| 1112 | * Create the initial contents of a leaf attribute list |
| 1113 | * or a leaf in a node attribute list. |
| 1114 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 1115 | STATIC int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1116 | xfs_attr3_leaf_create( |
| 1117 | struct xfs_da_args *args, |
| 1118 | xfs_dablk_t blkno, |
| 1119 | struct xfs_buf **bpp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1121 | struct xfs_attr_leafblock *leaf; |
| 1122 | struct xfs_attr3_icleaf_hdr ichdr; |
| 1123 | struct xfs_inode *dp = args->dp; |
| 1124 | struct xfs_mount *mp = dp->i_mount; |
| 1125 | struct xfs_buf *bp; |
| 1126 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1128 | trace_xfs_attr_leaf_create(args); |
| 1129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp, |
| 1131 | XFS_ATTR_FORK); |
| 1132 | if (error) |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1133 | return error; |
| 1134 | bp->b_ops = &xfs_attr3_leaf_buf_ops; |
Dave Chinner | 61fe135 | 2013-04-03 16:11:30 +1100 | [diff] [blame] | 1135 | xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1136 | leaf = bp->b_addr; |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1137 | memset(leaf, 0, args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1138 | |
| 1139 | memset(&ichdr, 0, sizeof(ichdr)); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1140 | ichdr.firstused = args->geo->blksize; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1141 | |
| 1142 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 1143 | struct xfs_da3_blkinfo *hdr3 = bp->b_addr; |
| 1144 | |
| 1145 | ichdr.magic = XFS_ATTR3_LEAF_MAGIC; |
| 1146 | |
| 1147 | hdr3->blkno = cpu_to_be64(bp->b_bn); |
| 1148 | hdr3->owner = cpu_to_be64(dp->i_ino); |
Eric Sandeen | ce748ea | 2015-07-29 11:53:31 +1000 | [diff] [blame] | 1149 | uuid_copy(&hdr3->uuid, &mp->m_sb.sb_meta_uuid); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1150 | |
| 1151 | ichdr.freemap[0].base = sizeof(struct xfs_attr3_leaf_hdr); |
| 1152 | } else { |
| 1153 | ichdr.magic = XFS_ATTR_LEAF_MAGIC; |
| 1154 | ichdr.freemap[0].base = sizeof(struct xfs_attr_leaf_hdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1156 | ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1158 | xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1159 | xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | |
| 1161 | *bpp = bp; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1162 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } |
| 1164 | |
| 1165 | /* |
| 1166 | * Split the leaf node, rebalance, then add the new entry. |
| 1167 | */ |
| 1168 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1169 | xfs_attr3_leaf_split( |
| 1170 | struct xfs_da_state *state, |
| 1171 | struct xfs_da_state_blk *oldblk, |
| 1172 | struct xfs_da_state_blk *newblk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | { |
| 1174 | xfs_dablk_t blkno; |
| 1175 | int error; |
| 1176 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1177 | trace_xfs_attr_leaf_split(state->args); |
| 1178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | /* |
| 1180 | * Allocate space for a new leaf node. |
| 1181 | */ |
| 1182 | ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC); |
| 1183 | error = xfs_da_grow_inode(state->args, &blkno); |
| 1184 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1185 | return error; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1186 | error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1188 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | newblk->blkno = blkno; |
| 1190 | newblk->magic = XFS_ATTR_LEAF_MAGIC; |
| 1191 | |
| 1192 | /* |
| 1193 | * Rebalance the entries across the two leaves. |
| 1194 | * NOTE: rebalance() currently depends on the 2nd block being empty. |
| 1195 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1196 | xfs_attr3_leaf_rebalance(state, oldblk, newblk); |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1197 | error = xfs_da3_blk_link(state, oldblk, newblk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1199 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | |
| 1201 | /* |
| 1202 | * Save info on "old" attribute for "atomic rename" ops, leaf_add() |
| 1203 | * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the |
| 1204 | * "new" attrs info. Will need the "old" info to remove it later. |
| 1205 | * |
| 1206 | * Insert the "new" entry in the correct block. |
| 1207 | */ |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1208 | if (state->inleaf) { |
| 1209 | trace_xfs_attr_leaf_add_old(state->args); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1210 | error = xfs_attr3_leaf_add(oldblk->bp, state->args); |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1211 | } else { |
| 1212 | trace_xfs_attr_leaf_add_new(state->args); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1213 | error = xfs_attr3_leaf_add(newblk->bp, state->args); |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
| 1216 | /* |
| 1217 | * Update last hashval in each block since we added the name. |
| 1218 | */ |
| 1219 | oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL); |
| 1220 | newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL); |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1221 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | } |
| 1223 | |
| 1224 | /* |
| 1225 | * Add a name to the leaf attribute list structure. |
| 1226 | */ |
| 1227 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1228 | xfs_attr3_leaf_add( |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1229 | struct xfs_buf *bp, |
| 1230 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1232 | struct xfs_attr_leafblock *leaf; |
| 1233 | struct xfs_attr3_icleaf_hdr ichdr; |
| 1234 | int tablesize; |
| 1235 | int entsize; |
| 1236 | int sum; |
| 1237 | int tmp; |
| 1238 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1240 | trace_xfs_attr_leaf_add(args); |
| 1241 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1242 | leaf = bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1243 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1244 | ASSERT(args->index >= 0 && args->index <= ichdr.count); |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 1245 | entsize = xfs_attr_leaf_newentsize(args, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | |
| 1247 | /* |
| 1248 | * Search through freemap for first-fit on new name length. |
| 1249 | * (may need to figure in size of entry struct too) |
| 1250 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1251 | tablesize = (ichdr.count + 1) * sizeof(xfs_attr_leaf_entry_t) |
| 1252 | + xfs_attr3_leaf_hdr_size(leaf); |
| 1253 | for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE - 1; i >= 0; i--) { |
| 1254 | if (tablesize > ichdr.firstused) { |
| 1255 | sum += ichdr.freemap[i].size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | continue; |
| 1257 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1258 | if (!ichdr.freemap[i].size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | continue; /* no space in this map */ |
| 1260 | tmp = entsize; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1261 | if (ichdr.freemap[i].base < ichdr.firstused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1262 | tmp += sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1263 | if (ichdr.freemap[i].size >= tmp) { |
| 1264 | tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i); |
| 1265 | goto out_log_hdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1267 | sum += ichdr.freemap[i].size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | } |
| 1269 | |
| 1270 | /* |
| 1271 | * If there are no holes in the address space of the block, |
| 1272 | * and we don't have enough freespace, then compaction will do us |
| 1273 | * no good and we should just give up. |
| 1274 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1275 | if (!ichdr.holes && sum < entsize) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1276 | return -ENOSPC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | |
| 1278 | /* |
| 1279 | * Compact the entries to coalesce free space. |
| 1280 | * This may change the hdr->count via dropping INCOMPLETE entries. |
| 1281 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1282 | xfs_attr3_leaf_compact(args, &ichdr, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | |
| 1284 | /* |
| 1285 | * After compaction, the block is guaranteed to have only one |
| 1286 | * free region, in freemap[0]. If it is not big enough, give up. |
| 1287 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1288 | if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) { |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1289 | tmp = -ENOSPC; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1290 | goto out_log_hdr; |
| 1291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1293 | tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0); |
| 1294 | |
| 1295 | out_log_hdr: |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1296 | xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1297 | xfs_trans_log_buf(args->trans, bp, |
| 1298 | XFS_DA_LOGRANGE(leaf, &leaf->hdr, |
| 1299 | xfs_attr3_leaf_hdr_size(leaf))); |
| 1300 | return tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | } |
| 1302 | |
| 1303 | /* |
| 1304 | * Add a name to a leaf attribute list structure. |
| 1305 | */ |
| 1306 | STATIC int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1307 | xfs_attr3_leaf_add_work( |
| 1308 | struct xfs_buf *bp, |
| 1309 | struct xfs_attr3_icleaf_hdr *ichdr, |
| 1310 | struct xfs_da_args *args, |
| 1311 | int mapindex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1313 | struct xfs_attr_leafblock *leaf; |
| 1314 | struct xfs_attr_leaf_entry *entry; |
| 1315 | struct xfs_attr_leaf_name_local *name_loc; |
| 1316 | struct xfs_attr_leaf_name_remote *name_rmt; |
| 1317 | struct xfs_mount *mp; |
| 1318 | int tmp; |
| 1319 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1321 | trace_xfs_attr_leaf_add_work(args); |
| 1322 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1323 | leaf = bp->b_addr; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1324 | ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE); |
| 1325 | ASSERT(args->index >= 0 && args->index <= ichdr->count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | |
| 1327 | /* |
| 1328 | * Force open some space in the entry array and fill it in. |
| 1329 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1330 | entry = &xfs_attr3_leaf_entryp(leaf)[args->index]; |
| 1331 | if (args->index < ichdr->count) { |
| 1332 | tmp = ichdr->count - args->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | tmp *= sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1334 | memmove(entry + 1, entry, tmp); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1335 | xfs_trans_log_buf(args->trans, bp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry))); |
| 1337 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1338 | ichdr->count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | |
| 1340 | /* |
| 1341 | * Allocate space for the new string (at the end of the run). |
| 1342 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | mp = args->trans->t_mountp; |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1344 | ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1345 | ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0); |
| 1346 | ASSERT(ichdr->freemap[mapindex].size >= |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 1347 | xfs_attr_leaf_newentsize(args, NULL)); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1348 | ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1349 | ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0); |
| 1350 | |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 1351 | ichdr->freemap[mapindex].size -= xfs_attr_leaf_newentsize(args, &tmp); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1352 | |
| 1353 | entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base + |
| 1354 | ichdr->freemap[mapindex].size); |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 1355 | entry->hashval = cpu_to_be32(args->hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | entry->flags = tmp ? XFS_ATTR_LOCAL : 0; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 1357 | entry->flags |= XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags); |
Barry Naujok | 6a17810 | 2008-05-21 16:42:05 +1000 | [diff] [blame] | 1358 | if (args->op_flags & XFS_DA_OP_RENAME) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | entry->flags |= XFS_ATTR_INCOMPLETE; |
| 1360 | if ((args->blkno2 == args->blkno) && |
| 1361 | (args->index2 <= args->index)) { |
| 1362 | args->index2++; |
| 1363 | } |
| 1364 | } |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1365 | xfs_trans_log_buf(args->trans, bp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry))); |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 1367 | ASSERT((args->index == 0) || |
| 1368 | (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval))); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1369 | ASSERT((args->index == ichdr->count - 1) || |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 1370 | (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | |
| 1372 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | * For "remote" attribute values, simply note that we need to |
| 1374 | * allocate space for the "remote" value. We can't actually |
| 1375 | * allocate the extents in this transaction, and we can't decide |
| 1376 | * which blocks they should be as we might allocate more blocks |
| 1377 | * as part of this transaction (a split operation for example). |
| 1378 | */ |
| 1379 | if (entry->flags & XFS_ATTR_LOCAL) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1380 | name_loc = xfs_attr3_leaf_name_local(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | name_loc->namelen = args->namelen; |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 1382 | name_loc->valuelen = cpu_to_be16(args->valuelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | memcpy((char *)name_loc->nameval, args->name, args->namelen); |
| 1384 | memcpy((char *)&name_loc->nameval[args->namelen], args->value, |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 1385 | be16_to_cpu(name_loc->valuelen)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1387 | name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | name_rmt->namelen = args->namelen; |
| 1389 | memcpy((char *)name_rmt->name, args->name, args->namelen); |
| 1390 | entry->flags |= XFS_ATTR_INCOMPLETE; |
| 1391 | /* just in case */ |
| 1392 | name_rmt->valuelen = 0; |
| 1393 | name_rmt->valueblk = 0; |
| 1394 | args->rmtblkno = 1; |
Dave Chinner | ad1858d | 2013-05-21 18:02:08 +1000 | [diff] [blame] | 1395 | args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen); |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 1396 | args->rmtvaluelen = args->valuelen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | } |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1398 | xfs_trans_log_buf(args->trans, bp, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1399 | XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | xfs_attr_leaf_entsize(leaf, args->index))); |
| 1401 | |
| 1402 | /* |
| 1403 | * Update the control info for this leaf node |
| 1404 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1405 | if (be16_to_cpu(entry->nameidx) < ichdr->firstused) |
| 1406 | ichdr->firstused = be16_to_cpu(entry->nameidx); |
| 1407 | |
| 1408 | ASSERT(ichdr->firstused >= ichdr->count * sizeof(xfs_attr_leaf_entry_t) |
| 1409 | + xfs_attr3_leaf_hdr_size(leaf)); |
| 1410 | tmp = (ichdr->count - 1) * sizeof(xfs_attr_leaf_entry_t) |
| 1411 | + xfs_attr3_leaf_hdr_size(leaf); |
| 1412 | |
| 1413 | for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) { |
| 1414 | if (ichdr->freemap[i].base == tmp) { |
| 1415 | ichdr->freemap[i].base += sizeof(xfs_attr_leaf_entry_t); |
| 1416 | ichdr->freemap[i].size -= sizeof(xfs_attr_leaf_entry_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | } |
| 1418 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1419 | ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index); |
| 1420 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | } |
| 1422 | |
| 1423 | /* |
| 1424 | * Garbage collect a leaf attribute list block by copying it to a new buffer. |
| 1425 | */ |
| 1426 | STATIC void |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1427 | xfs_attr3_leaf_compact( |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1428 | struct xfs_da_args *args, |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1429 | struct xfs_attr3_icleaf_hdr *ichdr_dst, |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1430 | struct xfs_buf *bp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | { |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1432 | struct xfs_attr_leafblock *leaf_src; |
| 1433 | struct xfs_attr_leafblock *leaf_dst; |
| 1434 | struct xfs_attr3_icleaf_hdr ichdr_src; |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1435 | struct xfs_trans *trans = args->trans; |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1436 | char *tmpbuffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1438 | trace_xfs_attr_leaf_compact(args); |
| 1439 | |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1440 | tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP); |
| 1441 | memcpy(tmpbuffer, bp->b_addr, args->geo->blksize); |
| 1442 | memset(bp->b_addr, 0, args->geo->blksize); |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1443 | leaf_src = (xfs_attr_leafblock_t *)tmpbuffer; |
| 1444 | leaf_dst = bp->b_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | |
| 1446 | /* |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1447 | * Copy the on-disk header back into the destination buffer to ensure |
| 1448 | * all the information in the header that is not part of the incore |
| 1449 | * header structure is preserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | */ |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1451 | memcpy(bp->b_addr, tmpbuffer, xfs_attr3_leaf_hdr_size(leaf_src)); |
| 1452 | |
| 1453 | /* Initialise the incore headers */ |
| 1454 | ichdr_src = *ichdr_dst; /* struct copy */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1455 | ichdr_dst->firstused = args->geo->blksize; |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1456 | ichdr_dst->usedbytes = 0; |
| 1457 | ichdr_dst->count = 0; |
| 1458 | ichdr_dst->holes = 0; |
| 1459 | ichdr_dst->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_src); |
| 1460 | ichdr_dst->freemap[0].size = ichdr_dst->firstused - |
| 1461 | ichdr_dst->freemap[0].base; |
| 1462 | |
Dave Chinner | d4c712b | 2013-05-21 18:02:06 +1000 | [diff] [blame] | 1463 | /* write the header back to initialise the underlying buffer */ |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1464 | xfs_attr3_leaf_hdr_to_disk(args->geo, leaf_dst, ichdr_dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
| 1466 | /* |
| 1467 | * Copy all entry's in the same (sorted) order, |
| 1468 | * but allocate name/value pairs packed and in sequence. |
| 1469 | */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1470 | xfs_attr3_leaf_moveents(args, leaf_src, &ichdr_src, 0, |
| 1471 | leaf_dst, ichdr_dst, 0, ichdr_src.count); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1472 | /* |
| 1473 | * this logs the entire buffer, but the caller must write the header |
| 1474 | * back to the buffer when it is finished modifying it. |
| 1475 | */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1476 | xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | |
Denys Vlasenko | f0e2d93 | 2008-05-19 16:31:57 +1000 | [diff] [blame] | 1478 | kmem_free(tmpbuffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | } |
| 1480 | |
| 1481 | /* |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1482 | * Compare two leaf blocks "order". |
| 1483 | * Return 0 unless leaf2 should go before leaf1. |
| 1484 | */ |
| 1485 | static int |
| 1486 | xfs_attr3_leaf_order( |
| 1487 | struct xfs_buf *leaf1_bp, |
| 1488 | struct xfs_attr3_icleaf_hdr *leaf1hdr, |
| 1489 | struct xfs_buf *leaf2_bp, |
| 1490 | struct xfs_attr3_icleaf_hdr *leaf2hdr) |
| 1491 | { |
| 1492 | struct xfs_attr_leaf_entry *entries1; |
| 1493 | struct xfs_attr_leaf_entry *entries2; |
| 1494 | |
| 1495 | entries1 = xfs_attr3_leaf_entryp(leaf1_bp->b_addr); |
| 1496 | entries2 = xfs_attr3_leaf_entryp(leaf2_bp->b_addr); |
| 1497 | if (leaf1hdr->count > 0 && leaf2hdr->count > 0 && |
| 1498 | ((be32_to_cpu(entries2[0].hashval) < |
| 1499 | be32_to_cpu(entries1[0].hashval)) || |
| 1500 | (be32_to_cpu(entries2[leaf2hdr->count - 1].hashval) < |
| 1501 | be32_to_cpu(entries1[leaf1hdr->count - 1].hashval)))) { |
| 1502 | return 1; |
| 1503 | } |
| 1504 | return 0; |
| 1505 | } |
| 1506 | |
| 1507 | int |
| 1508 | xfs_attr_leaf_order( |
| 1509 | struct xfs_buf *leaf1_bp, |
| 1510 | struct xfs_buf *leaf2_bp) |
| 1511 | { |
| 1512 | struct xfs_attr3_icleaf_hdr ichdr1; |
| 1513 | struct xfs_attr3_icleaf_hdr ichdr2; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1514 | struct xfs_mount *mp = leaf1_bp->b_target->bt_mount; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1515 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1516 | xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr1, leaf1_bp->b_addr); |
| 1517 | xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr2, leaf2_bp->b_addr); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1518 | return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2); |
| 1519 | } |
| 1520 | |
| 1521 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | * Redistribute the attribute list entries between two leaf nodes, |
| 1523 | * taking into account the size of the new entry. |
| 1524 | * |
| 1525 | * NOTE: if new block is empty, then it will get the upper half of the |
| 1526 | * old block. At present, all (one) callers pass in an empty second block. |
| 1527 | * |
| 1528 | * This code adjusts the args->index/blkno and args->index2/blkno2 fields |
| 1529 | * to match what it is doing in splitting the attribute leaf block. Those |
| 1530 | * values are used in "atomic rename" operations on attributes. Note that |
| 1531 | * the "new" and "old" values can end up in different blocks. |
| 1532 | */ |
| 1533 | STATIC void |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1534 | xfs_attr3_leaf_rebalance( |
| 1535 | struct xfs_da_state *state, |
| 1536 | struct xfs_da_state_blk *blk1, |
| 1537 | struct xfs_da_state_blk *blk2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1539 | struct xfs_da_args *args; |
| 1540 | struct xfs_attr_leafblock *leaf1; |
| 1541 | struct xfs_attr_leafblock *leaf2; |
| 1542 | struct xfs_attr3_icleaf_hdr ichdr1; |
| 1543 | struct xfs_attr3_icleaf_hdr ichdr2; |
| 1544 | struct xfs_attr_leaf_entry *entries1; |
| 1545 | struct xfs_attr_leaf_entry *entries2; |
| 1546 | int count; |
| 1547 | int totallen; |
| 1548 | int max; |
| 1549 | int space; |
| 1550 | int swap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | |
| 1552 | /* |
| 1553 | * Set up environment. |
| 1554 | */ |
| 1555 | ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC); |
| 1556 | ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1557 | leaf1 = blk1->bp->b_addr; |
| 1558 | leaf2 = blk2->bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1559 | xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr1, leaf1); |
| 1560 | xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, leaf2); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1561 | ASSERT(ichdr2.count == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | args = state->args; |
| 1563 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 1564 | trace_xfs_attr_leaf_rebalance(args); |
| 1565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | /* |
| 1567 | * Check ordering of blocks, reverse if it makes things simpler. |
| 1568 | * |
| 1569 | * NOTE: Given that all (current) callers pass in an empty |
| 1570 | * second block, this code should never set "swap". |
| 1571 | */ |
| 1572 | swap = 0; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1573 | if (xfs_attr3_leaf_order(blk1->bp, &ichdr1, blk2->bp, &ichdr2)) { |
| 1574 | struct xfs_da_state_blk *tmp_blk; |
| 1575 | struct xfs_attr3_icleaf_hdr tmp_ichdr; |
| 1576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | tmp_blk = blk1; |
| 1578 | blk1 = blk2; |
| 1579 | blk2 = tmp_blk; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1580 | |
| 1581 | /* struct copies to swap them rather than reconverting */ |
| 1582 | tmp_ichdr = ichdr1; |
| 1583 | ichdr1 = ichdr2; |
| 1584 | ichdr2 = tmp_ichdr; |
| 1585 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1586 | leaf1 = blk1->bp->b_addr; |
| 1587 | leaf2 = blk2->bp->b_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | swap = 1; |
| 1589 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | |
| 1591 | /* |
| 1592 | * Examine entries until we reduce the absolute difference in |
| 1593 | * byte usage between the two blocks to a minimum. Then get |
| 1594 | * the direction to copy and the number of elements to move. |
| 1595 | * |
| 1596 | * "inleaf" is true if the new entry should be inserted into blk1. |
| 1597 | * If "swap" is also true, then reverse the sense of "inleaf". |
| 1598 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1599 | state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1, |
| 1600 | blk2, &ichdr2, |
| 1601 | &count, &totallen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | if (swap) |
| 1603 | state->inleaf = !state->inleaf; |
| 1604 | |
| 1605 | /* |
| 1606 | * Move any entries required from leaf to leaf: |
| 1607 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1608 | if (count < ichdr1.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | /* |
| 1610 | * Figure the total bytes to be added to the destination leaf. |
| 1611 | */ |
| 1612 | /* number entries being moved */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1613 | count = ichdr1.count - count; |
| 1614 | space = ichdr1.usedbytes - totallen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | space += count * sizeof(xfs_attr_leaf_entry_t); |
| 1616 | |
| 1617 | /* |
| 1618 | * leaf2 is the destination, compact it if it looks tight. |
| 1619 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1620 | max = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1); |
| 1621 | max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1622 | if (space > max) |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1623 | xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | |
| 1625 | /* |
| 1626 | * Move high entries from leaf1 to low end of leaf2. |
| 1627 | */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1628 | xfs_attr3_leaf_moveents(args, leaf1, &ichdr1, |
| 1629 | ichdr1.count - count, leaf2, &ichdr2, 0, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1631 | } else if (count > ichdr1.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | /* |
| 1633 | * I assert that since all callers pass in an empty |
| 1634 | * second buffer, this code should never execute. |
| 1635 | */ |
Dave Chinner | 07428d7 | 2012-11-12 22:09:44 +1100 | [diff] [blame] | 1636 | ASSERT(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | |
| 1638 | /* |
| 1639 | * Figure the total bytes to be added to the destination leaf. |
| 1640 | */ |
| 1641 | /* number entries being moved */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1642 | count -= ichdr1.count; |
| 1643 | space = totallen - ichdr1.usedbytes; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | space += count * sizeof(xfs_attr_leaf_entry_t); |
| 1645 | |
| 1646 | /* |
| 1647 | * leaf1 is the destination, compact it if it looks tight. |
| 1648 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1649 | max = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1); |
| 1650 | max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1651 | if (space > max) |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1652 | xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | |
| 1654 | /* |
| 1655 | * Move low entries from leaf2 to high end of leaf1. |
| 1656 | */ |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1657 | xfs_attr3_leaf_moveents(args, leaf2, &ichdr2, 0, leaf1, &ichdr1, |
| 1658 | ichdr1.count, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | } |
| 1660 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1661 | xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf1, &ichdr1); |
| 1662 | xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf2, &ichdr2); |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 1663 | xfs_trans_log_buf(args->trans, blk1->bp, 0, args->geo->blksize - 1); |
| 1664 | xfs_trans_log_buf(args->trans, blk2->bp, 0, args->geo->blksize - 1); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | /* |
| 1667 | * Copy out last hashval in each block for B-tree code. |
| 1668 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1669 | entries1 = xfs_attr3_leaf_entryp(leaf1); |
| 1670 | entries2 = xfs_attr3_leaf_entryp(leaf2); |
| 1671 | blk1->hashval = be32_to_cpu(entries1[ichdr1.count - 1].hashval); |
| 1672 | blk2->hashval = be32_to_cpu(entries2[ichdr2.count - 1].hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | |
| 1674 | /* |
| 1675 | * Adjust the expected index for insertion. |
| 1676 | * NOTE: this code depends on the (current) situation that the |
| 1677 | * second block was originally empty. |
| 1678 | * |
| 1679 | * If the insertion point moved to the 2nd block, we must adjust |
| 1680 | * the index. We must also track the entry just following the |
| 1681 | * new entry for use in an "atomic rename" operation, that entry |
| 1682 | * is always the "old" entry and the "new" entry is what we are |
| 1683 | * inserting. The index/blkno fields refer to the "old" entry, |
| 1684 | * while the index2/blkno2 fields refer to the "new" entry. |
| 1685 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1686 | if (blk1->index > ichdr1.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1687 | ASSERT(state->inleaf == 0); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1688 | blk2->index = blk1->index - ichdr1.count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | args->index = args->index2 = blk2->index; |
| 1690 | args->blkno = args->blkno2 = blk2->blkno; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1691 | } else if (blk1->index == ichdr1.count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | if (state->inleaf) { |
| 1693 | args->index = blk1->index; |
| 1694 | args->blkno = blk1->blkno; |
| 1695 | args->index2 = 0; |
| 1696 | args->blkno2 = blk2->blkno; |
| 1697 | } else { |
Dave Chinner | 07428d7 | 2012-11-12 22:09:44 +1100 | [diff] [blame] | 1698 | /* |
| 1699 | * On a double leaf split, the original attr location |
| 1700 | * is already stored in blkno2/index2, so don't |
| 1701 | * overwrite it overwise we corrupt the tree. |
| 1702 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1703 | blk2->index = blk1->index - ichdr1.count; |
Dave Chinner | 07428d7 | 2012-11-12 22:09:44 +1100 | [diff] [blame] | 1704 | args->index = blk2->index; |
| 1705 | args->blkno = blk2->blkno; |
| 1706 | if (!state->extravalid) { |
| 1707 | /* |
| 1708 | * set the new attr location to match the old |
| 1709 | * one and let the higher level split code |
| 1710 | * decide where in the leaf to place it. |
| 1711 | */ |
| 1712 | args->index2 = blk2->index; |
| 1713 | args->blkno2 = blk2->blkno; |
| 1714 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | } |
| 1716 | } else { |
| 1717 | ASSERT(state->inleaf == 1); |
| 1718 | args->index = args->index2 = blk1->index; |
| 1719 | args->blkno = args->blkno2 = blk1->blkno; |
| 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | /* |
| 1724 | * Examine entries until we reduce the absolute difference in |
| 1725 | * byte usage between the two blocks to a minimum. |
| 1726 | * GROT: Is this really necessary? With other than a 512 byte blocksize, |
| 1727 | * GROT: there will always be enough room in either block for a new entry. |
| 1728 | * GROT: Do a double-split for this case? |
| 1729 | */ |
| 1730 | STATIC int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1731 | xfs_attr3_leaf_figure_balance( |
| 1732 | struct xfs_da_state *state, |
| 1733 | struct xfs_da_state_blk *blk1, |
| 1734 | struct xfs_attr3_icleaf_hdr *ichdr1, |
| 1735 | struct xfs_da_state_blk *blk2, |
| 1736 | struct xfs_attr3_icleaf_hdr *ichdr2, |
| 1737 | int *countarg, |
| 1738 | int *usedbytesarg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1740 | struct xfs_attr_leafblock *leaf1 = blk1->bp->b_addr; |
| 1741 | struct xfs_attr_leafblock *leaf2 = blk2->bp->b_addr; |
| 1742 | struct xfs_attr_leaf_entry *entry; |
| 1743 | int count; |
| 1744 | int max; |
| 1745 | int index; |
| 1746 | int totallen = 0; |
| 1747 | int half; |
| 1748 | int lastdelta; |
| 1749 | int foundit = 0; |
| 1750 | int tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | |
| 1752 | /* |
| 1753 | * Examine entries until we reduce the absolute difference in |
| 1754 | * byte usage between the two blocks to a minimum. |
| 1755 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1756 | max = ichdr1->count + ichdr2->count; |
| 1757 | half = (max + 1) * sizeof(*entry); |
| 1758 | half += ichdr1->usedbytes + ichdr2->usedbytes + |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 1759 | xfs_attr_leaf_newentsize(state->args, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | half /= 2; |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 1761 | lastdelta = state->args->geo->blksize; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1762 | entry = xfs_attr3_leaf_entryp(leaf1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | for (count = index = 0; count < max; entry++, index++, count++) { |
| 1764 | |
| 1765 | #define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A)) |
| 1766 | /* |
| 1767 | * The new entry is in the first block, account for it. |
| 1768 | */ |
| 1769 | if (count == blk1->index) { |
| 1770 | tmp = totallen + sizeof(*entry) + |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 1771 | xfs_attr_leaf_newentsize(state->args, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | if (XFS_ATTR_ABS(half - tmp) > lastdelta) |
| 1773 | break; |
| 1774 | lastdelta = XFS_ATTR_ABS(half - tmp); |
| 1775 | totallen = tmp; |
| 1776 | foundit = 1; |
| 1777 | } |
| 1778 | |
| 1779 | /* |
| 1780 | * Wrap around into the second block if necessary. |
| 1781 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1782 | if (count == ichdr1->count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | leaf1 = leaf2; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1784 | entry = xfs_attr3_leaf_entryp(leaf1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | index = 0; |
| 1786 | } |
| 1787 | |
| 1788 | /* |
| 1789 | * Figure out if next leaf entry would be too much. |
| 1790 | */ |
| 1791 | tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1, |
| 1792 | index); |
| 1793 | if (XFS_ATTR_ABS(half - tmp) > lastdelta) |
| 1794 | break; |
| 1795 | lastdelta = XFS_ATTR_ABS(half - tmp); |
| 1796 | totallen = tmp; |
| 1797 | #undef XFS_ATTR_ABS |
| 1798 | } |
| 1799 | |
| 1800 | /* |
| 1801 | * Calculate the number of usedbytes that will end up in lower block. |
| 1802 | * If new entry not in lower block, fix up the count. |
| 1803 | */ |
| 1804 | totallen -= count * sizeof(*entry); |
| 1805 | if (foundit) { |
| 1806 | totallen -= sizeof(*entry) + |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 1807 | xfs_attr_leaf_newentsize(state->args, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | *countarg = count; |
| 1811 | *usedbytesarg = totallen; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1812 | return foundit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | } |
| 1814 | |
| 1815 | /*======================================================================== |
| 1816 | * Routines used for shrinking the Btree. |
| 1817 | *========================================================================*/ |
| 1818 | |
| 1819 | /* |
| 1820 | * Check a leaf block and its neighbors to see if the block should be |
| 1821 | * collapsed into one or the other neighbor. Always keep the block |
| 1822 | * with the smaller block number. |
| 1823 | * If the current block is over 50% full, don't try to join it, return 0. |
| 1824 | * If the block is empty, fill in the state structure and return 2. |
| 1825 | * If it can be collapsed, fill in the state structure and return 1. |
| 1826 | * If nothing can be done, return 0. |
| 1827 | * |
| 1828 | * GROT: allow for INCOMPLETE entries in calculation. |
| 1829 | */ |
| 1830 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1831 | xfs_attr3_leaf_toosmall( |
| 1832 | struct xfs_da_state *state, |
| 1833 | int *action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1835 | struct xfs_attr_leafblock *leaf; |
| 1836 | struct xfs_da_state_blk *blk; |
| 1837 | struct xfs_attr3_icleaf_hdr ichdr; |
| 1838 | struct xfs_buf *bp; |
| 1839 | xfs_dablk_t blkno; |
| 1840 | int bytes; |
| 1841 | int forward; |
| 1842 | int error; |
| 1843 | int retval; |
| 1844 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1846 | trace_xfs_attr_leaf_toosmall(state->args); |
| 1847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | /* |
| 1849 | * Check for the degenerate case of the block being over 50% full. |
| 1850 | * If so, it's not worth even looking to see if we might be able |
| 1851 | * to coalesce with a sibling. |
| 1852 | */ |
| 1853 | blk = &state->path.blk[ state->path.active-1 ]; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1854 | leaf = blk->bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1855 | xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1856 | bytes = xfs_attr3_leaf_hdr_size(leaf) + |
| 1857 | ichdr.count * sizeof(xfs_attr_leaf_entry_t) + |
| 1858 | ichdr.usedbytes; |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 1859 | if (bytes > (state->args->geo->blksize >> 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | *action = 0; /* blk over 50%, don't try to join */ |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1861 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | } |
| 1863 | |
| 1864 | /* |
| 1865 | * Check for the degenerate case of the block being empty. |
| 1866 | * If the block is empty, we'll simply delete it, no need to |
Nathan Scott | c41564b | 2006-03-29 08:55:14 +1000 | [diff] [blame] | 1867 | * coalesce it with a sibling block. We choose (arbitrarily) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | * to merge with the forward block unless it is NULL. |
| 1869 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1870 | if (ichdr.count == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | /* |
| 1872 | * Make altpath point to the block we want to keep and |
| 1873 | * path point to the block we want to drop (this one). |
| 1874 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1875 | forward = (ichdr.forw != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | memcpy(&state->altpath, &state->path, sizeof(state->path)); |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1877 | error = xfs_da3_path_shift(state, &state->altpath, forward, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | 0, &retval); |
| 1879 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1880 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | if (retval) { |
| 1882 | *action = 0; |
| 1883 | } else { |
| 1884 | *action = 2; |
| 1885 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1886 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | /* |
| 1890 | * Examine each sibling block to see if we can coalesce with |
| 1891 | * at least 25% free space to spare. We need to figure out |
| 1892 | * whether to merge with the forward or the backward block. |
| 1893 | * We prefer coalescing with the lower numbered sibling so as |
| 1894 | * to shrink an attribute list over time. |
| 1895 | */ |
| 1896 | /* start with smaller blk num */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1897 | forward = ichdr.forw < ichdr.back; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | for (i = 0; i < 2; forward = !forward, i++) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1899 | struct xfs_attr3_icleaf_hdr ichdr2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | if (forward) |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1901 | blkno = ichdr.forw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | else |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1903 | blkno = ichdr.back; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | if (blkno == 0) |
| 1905 | continue; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1906 | error = xfs_attr3_leaf_read(state->args->trans, state->args->dp, |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 1907 | blkno, -1, &bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1909 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1911 | xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, bp->b_addr); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1912 | |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 1913 | bytes = state->args->geo->blksize - |
| 1914 | (state->args->geo->blksize >> 2) - |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1915 | ichdr.usedbytes - ichdr2.usedbytes - |
| 1916 | ((ichdr.count + ichdr2.count) * |
| 1917 | sizeof(xfs_attr_leaf_entry_t)) - |
| 1918 | xfs_attr3_leaf_hdr_size(leaf); |
| 1919 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1920 | xfs_trans_brelse(state->args->trans, bp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | if (bytes >= 0) |
| 1922 | break; /* fits with at least 25% to spare */ |
| 1923 | } |
| 1924 | if (i >= 2) { |
| 1925 | *action = 0; |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1926 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | /* |
| 1930 | * Make altpath point to the block we want to keep (the lower |
| 1931 | * numbered block) and path point to the block we want to drop. |
| 1932 | */ |
| 1933 | memcpy(&state->altpath, &state->path, sizeof(state->path)); |
| 1934 | if (blkno < blk->blkno) { |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1935 | error = xfs_da3_path_shift(state, &state->altpath, forward, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | 0, &retval); |
| 1937 | } else { |
Dave Chinner | f5ea110 | 2013-04-24 18:58:02 +1000 | [diff] [blame] | 1938 | error = xfs_da3_path_shift(state, &state->path, forward, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | 0, &retval); |
| 1940 | } |
| 1941 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1942 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | if (retval) { |
| 1944 | *action = 0; |
| 1945 | } else { |
| 1946 | *action = 1; |
| 1947 | } |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 1948 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | } |
| 1950 | |
| 1951 | /* |
| 1952 | * Remove a name from the leaf attribute list structure. |
| 1953 | * |
| 1954 | * Return 1 if leaf is less than 37% full, 0 if >= 37% full. |
| 1955 | * If two leaves are 37% full, when combined they will leave 25% free. |
| 1956 | */ |
| 1957 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1958 | xfs_attr3_leaf_remove( |
| 1959 | struct xfs_buf *bp, |
| 1960 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1962 | struct xfs_attr_leafblock *leaf; |
| 1963 | struct xfs_attr3_icleaf_hdr ichdr; |
| 1964 | struct xfs_attr_leaf_entry *entry; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1965 | int before; |
| 1966 | int after; |
| 1967 | int smallest; |
| 1968 | int entsize; |
| 1969 | int tablesize; |
| 1970 | int tmp; |
| 1971 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | |
Dave Chinner | ee73259 | 2012-11-12 22:53:53 +1100 | [diff] [blame] | 1973 | trace_xfs_attr_leaf_remove(args); |
| 1974 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 1975 | leaf = bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 1976 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1977 | |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1978 | ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1979 | ASSERT(args->index >= 0 && args->index < ichdr.count); |
| 1980 | ASSERT(ichdr.firstused >= ichdr.count * sizeof(*entry) + |
| 1981 | xfs_attr3_leaf_hdr_size(leaf)); |
| 1982 | |
| 1983 | entry = &xfs_attr3_leaf_entryp(leaf)[args->index]; |
| 1984 | |
| 1985 | ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 1986 | ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | |
| 1988 | /* |
| 1989 | * Scan through free region table: |
| 1990 | * check for adjacency of free'd entry with an existing one, |
| 1991 | * find smallest free region in case we need to replace it, |
| 1992 | * adjust any map that borders the entry table, |
| 1993 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 1994 | tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t) |
| 1995 | + xfs_attr3_leaf_hdr_size(leaf); |
| 1996 | tmp = ichdr.freemap[0].size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | before = after = -1; |
| 1998 | smallest = XFS_ATTR_LEAF_MAPSIZE - 1; |
| 1999 | entsize = xfs_attr_leaf_entsize(leaf, args->index); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2000 | for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) { |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2001 | ASSERT(ichdr.freemap[i].base < args->geo->blksize); |
| 2002 | ASSERT(ichdr.freemap[i].size < args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2003 | if (ichdr.freemap[i].base == tablesize) { |
| 2004 | ichdr.freemap[i].base -= sizeof(xfs_attr_leaf_entry_t); |
| 2005 | ichdr.freemap[i].size += sizeof(xfs_attr_leaf_entry_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | } |
| 2007 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2008 | if (ichdr.freemap[i].base + ichdr.freemap[i].size == |
| 2009 | be16_to_cpu(entry->nameidx)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | before = i; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2011 | } else if (ichdr.freemap[i].base == |
| 2012 | (be16_to_cpu(entry->nameidx) + entsize)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | after = i; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2014 | } else if (ichdr.freemap[i].size < tmp) { |
| 2015 | tmp = ichdr.freemap[i].size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | smallest = i; |
| 2017 | } |
| 2018 | } |
| 2019 | |
| 2020 | /* |
| 2021 | * Coalesce adjacent freemap regions, |
| 2022 | * or replace the smallest region. |
| 2023 | */ |
| 2024 | if ((before >= 0) || (after >= 0)) { |
| 2025 | if ((before >= 0) && (after >= 0)) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2026 | ichdr.freemap[before].size += entsize; |
| 2027 | ichdr.freemap[before].size += ichdr.freemap[after].size; |
| 2028 | ichdr.freemap[after].base = 0; |
| 2029 | ichdr.freemap[after].size = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | } else if (before >= 0) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2031 | ichdr.freemap[before].size += entsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2033 | ichdr.freemap[after].base = be16_to_cpu(entry->nameidx); |
| 2034 | ichdr.freemap[after].size += entsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | } |
| 2036 | } else { |
| 2037 | /* |
| 2038 | * Replace smallest region (if it is smaller than free'd entry) |
| 2039 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2040 | if (ichdr.freemap[smallest].size < entsize) { |
| 2041 | ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx); |
| 2042 | ichdr.freemap[smallest].size = entsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | } |
| 2044 | } |
| 2045 | |
| 2046 | /* |
| 2047 | * Did we remove the first entry? |
| 2048 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2049 | if (be16_to_cpu(entry->nameidx) == ichdr.firstused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | smallest = 1; |
| 2051 | else |
| 2052 | smallest = 0; |
| 2053 | |
| 2054 | /* |
| 2055 | * Compress the remaining entries and zero out the removed stuff. |
| 2056 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2057 | memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize); |
| 2058 | ichdr.usedbytes -= entsize; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2059 | xfs_trans_log_buf(args->trans, bp, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2060 | XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | entsize)); |
| 2062 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2063 | tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t); |
| 2064 | memmove(entry, entry + 1, tmp); |
| 2065 | ichdr.count--; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2066 | xfs_trans_log_buf(args->trans, bp, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2067 | XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(xfs_attr_leaf_entry_t))); |
| 2068 | |
| 2069 | entry = &xfs_attr3_leaf_entryp(leaf)[ichdr.count]; |
| 2070 | memset(entry, 0, sizeof(xfs_attr_leaf_entry_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | |
| 2072 | /* |
| 2073 | * If we removed the first entry, re-find the first used byte |
| 2074 | * in the name area. Note that if the entry was the "firstused", |
| 2075 | * then we don't have a "hole" in our block resulting from |
| 2076 | * removing the name. |
| 2077 | */ |
| 2078 | if (smallest) { |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2079 | tmp = args->geo->blksize; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2080 | entry = xfs_attr3_leaf_entryp(leaf); |
| 2081 | for (i = ichdr.count - 1; i >= 0; entry++, i--) { |
| 2082 | ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2083 | ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize); |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2084 | |
| 2085 | if (be16_to_cpu(entry->nameidx) < tmp) |
| 2086 | tmp = be16_to_cpu(entry->nameidx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2088 | ichdr.firstused = tmp; |
Brian Foster | 66db810 | 2015-04-13 11:27:59 +1000 | [diff] [blame] | 2089 | ASSERT(ichdr.firstused != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2091 | ichdr.holes = 1; /* mark as needing compaction */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | } |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2093 | xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2094 | xfs_trans_log_buf(args->trans, bp, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2095 | XFS_DA_LOGRANGE(leaf, &leaf->hdr, |
| 2096 | xfs_attr3_leaf_hdr_size(leaf))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | |
| 2098 | /* |
| 2099 | * Check if leaf is less than 50% full, caller may want to |
| 2100 | * "join" the leaf with a sibling if so. |
| 2101 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2102 | tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) + |
| 2103 | ichdr.count * sizeof(xfs_attr_leaf_entry_t); |
| 2104 | |
Dave Chinner | ed358c0 | 2014-06-06 15:18:10 +1000 | [diff] [blame] | 2105 | return tmp < args->geo->magicpct; /* leaf is < 37% full */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | } |
| 2107 | |
| 2108 | /* |
| 2109 | * Move all the attribute list entries from drop_leaf into save_leaf. |
| 2110 | */ |
| 2111 | void |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2112 | xfs_attr3_leaf_unbalance( |
| 2113 | struct xfs_da_state *state, |
| 2114 | struct xfs_da_state_blk *drop_blk, |
| 2115 | struct xfs_da_state_blk *save_blk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2117 | struct xfs_attr_leafblock *drop_leaf = drop_blk->bp->b_addr; |
| 2118 | struct xfs_attr_leafblock *save_leaf = save_blk->bp->b_addr; |
| 2119 | struct xfs_attr3_icleaf_hdr drophdr; |
| 2120 | struct xfs_attr3_icleaf_hdr savehdr; |
| 2121 | struct xfs_attr_leaf_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 2123 | trace_xfs_attr_leaf_unbalance(state->args); |
| 2124 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2125 | drop_leaf = drop_blk->bp->b_addr; |
| 2126 | save_leaf = save_blk->bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2127 | xfs_attr3_leaf_hdr_from_disk(state->args->geo, &drophdr, drop_leaf); |
| 2128 | xfs_attr3_leaf_hdr_from_disk(state->args->geo, &savehdr, save_leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2129 | entry = xfs_attr3_leaf_entryp(drop_leaf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | |
| 2131 | /* |
| 2132 | * Save last hashval from dying block for later Btree fixup. |
| 2133 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2134 | drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | |
| 2136 | /* |
| 2137 | * Check if we need a temp buffer, or can we do it in place. |
| 2138 | * Note that we don't check "leaf" for holes because we will |
| 2139 | * always be dropping it, toosmall() decided that for us already. |
| 2140 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2141 | if (savehdr.holes == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | /* |
| 2143 | * dest leaf has no holes, so we add there. May need |
| 2144 | * to make some room in the entry array. |
| 2145 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2146 | if (xfs_attr3_leaf_order(save_blk->bp, &savehdr, |
| 2147 | drop_blk->bp, &drophdr)) { |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2148 | xfs_attr3_leaf_moveents(state->args, |
| 2149 | drop_leaf, &drophdr, 0, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2150 | save_leaf, &savehdr, 0, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2151 | drophdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | } else { |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2153 | xfs_attr3_leaf_moveents(state->args, |
| 2154 | drop_leaf, &drophdr, 0, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2155 | save_leaf, &savehdr, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2156 | savehdr.count, drophdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | } |
| 2158 | } else { |
| 2159 | /* |
| 2160 | * Destination has holes, so we make a temporary copy |
| 2161 | * of the leaf and add them both to that. |
| 2162 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2163 | struct xfs_attr_leafblock *tmp_leaf; |
| 2164 | struct xfs_attr3_icleaf_hdr tmphdr; |
| 2165 | |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 2166 | tmp_leaf = kmem_zalloc(state->args->geo->blksize, KM_SLEEP); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2167 | |
Dave Chinner | 8517de2 | 2013-05-21 18:02:05 +1000 | [diff] [blame] | 2168 | /* |
| 2169 | * Copy the header into the temp leaf so that all the stuff |
| 2170 | * not in the incore header is present and gets copied back in |
| 2171 | * once we've moved all the entries. |
| 2172 | */ |
| 2173 | memcpy(tmp_leaf, save_leaf, xfs_attr3_leaf_hdr_size(save_leaf)); |
| 2174 | |
| 2175 | memset(&tmphdr, 0, sizeof(tmphdr)); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2176 | tmphdr.magic = savehdr.magic; |
| 2177 | tmphdr.forw = savehdr.forw; |
| 2178 | tmphdr.back = savehdr.back; |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 2179 | tmphdr.firstused = state->args->geo->blksize; |
Dave Chinner | 8517de2 | 2013-05-21 18:02:05 +1000 | [diff] [blame] | 2180 | |
| 2181 | /* write the header to the temp buffer to initialise it */ |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2182 | xfs_attr3_leaf_hdr_to_disk(state->args->geo, tmp_leaf, &tmphdr); |
Dave Chinner | 8517de2 | 2013-05-21 18:02:05 +1000 | [diff] [blame] | 2183 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2184 | if (xfs_attr3_leaf_order(save_blk->bp, &savehdr, |
| 2185 | drop_blk->bp, &drophdr)) { |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2186 | xfs_attr3_leaf_moveents(state->args, |
| 2187 | drop_leaf, &drophdr, 0, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2188 | tmp_leaf, &tmphdr, 0, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2189 | drophdr.count); |
| 2190 | xfs_attr3_leaf_moveents(state->args, |
| 2191 | save_leaf, &savehdr, 0, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2192 | tmp_leaf, &tmphdr, tmphdr.count, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2193 | savehdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | } else { |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2195 | xfs_attr3_leaf_moveents(state->args, |
| 2196 | save_leaf, &savehdr, 0, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2197 | tmp_leaf, &tmphdr, 0, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2198 | savehdr.count); |
| 2199 | xfs_attr3_leaf_moveents(state->args, |
| 2200 | drop_leaf, &drophdr, 0, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2201 | tmp_leaf, &tmphdr, tmphdr.count, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2202 | drophdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | } |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 2204 | memcpy(save_leaf, tmp_leaf, state->args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2205 | savehdr = tmphdr; /* struct copy */ |
| 2206 | kmem_free(tmp_leaf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | } |
| 2208 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2209 | xfs_attr3_leaf_hdr_to_disk(state->args->geo, save_leaf, &savehdr); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2210 | xfs_trans_log_buf(state->args->trans, save_blk->bp, 0, |
Dave Chinner | b2a21e7 | 2014-06-06 15:22:04 +1000 | [diff] [blame] | 2211 | state->args->geo->blksize - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | |
| 2213 | /* |
| 2214 | * Copy out last hashval in each block for B-tree code. |
| 2215 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2216 | entry = xfs_attr3_leaf_entryp(save_leaf); |
| 2217 | save_blk->hashval = be32_to_cpu(entry[savehdr.count - 1].hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | } |
| 2219 | |
| 2220 | /*======================================================================== |
| 2221 | * Routines used for finding things in the Btree. |
| 2222 | *========================================================================*/ |
| 2223 | |
| 2224 | /* |
| 2225 | * Look up a name in a leaf attribute list structure. |
| 2226 | * This is the internal routine, it uses the caller's buffer. |
| 2227 | * |
| 2228 | * Note that duplicate keys are allowed, but only check within the |
| 2229 | * current leaf node. The Btree code must check in adjacent leaf nodes. |
| 2230 | * |
| 2231 | * Return in args->index the index into the entry[] array of either |
| 2232 | * the found entry, or where the entry should have been (insert before |
| 2233 | * that entry). |
| 2234 | * |
| 2235 | * Don't change the args->value unless we find the attribute. |
| 2236 | */ |
| 2237 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2238 | xfs_attr3_leaf_lookup_int( |
| 2239 | struct xfs_buf *bp, |
| 2240 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2242 | struct xfs_attr_leafblock *leaf; |
| 2243 | struct xfs_attr3_icleaf_hdr ichdr; |
| 2244 | struct xfs_attr_leaf_entry *entry; |
| 2245 | struct xfs_attr_leaf_entry *entries; |
| 2246 | struct xfs_attr_leaf_name_local *name_loc; |
| 2247 | struct xfs_attr_leaf_name_remote *name_rmt; |
| 2248 | xfs_dahash_t hashval; |
| 2249 | int probe; |
| 2250 | int span; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 2252 | trace_xfs_attr_leaf_lookup(args); |
| 2253 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2254 | leaf = bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2255 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2256 | entries = xfs_attr3_leaf_entryp(leaf); |
Darrick J. Wong | 8ba92d4 | 2018-01-08 10:51:07 -0800 | [diff] [blame] | 2257 | if (ichdr.count >= args->geo->blksize / 8) |
| 2258 | return -EFSCORRUPTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | |
| 2260 | /* |
| 2261 | * Binary search. (note: small blocks will skip this loop) |
| 2262 | */ |
| 2263 | hashval = args->hashval; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2264 | probe = span = ichdr.count / 2; |
| 2265 | for (entry = &entries[probe]; span > 4; entry = &entries[probe]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | span /= 2; |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2267 | if (be32_to_cpu(entry->hashval) < hashval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | probe += span; |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2269 | else if (be32_to_cpu(entry->hashval) > hashval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | probe -= span; |
| 2271 | else |
| 2272 | break; |
| 2273 | } |
Darrick J. Wong | 8ba92d4 | 2018-01-08 10:51:07 -0800 | [diff] [blame] | 2274 | if (!(probe >= 0 && (!ichdr.count || probe < ichdr.count))) |
| 2275 | return -EFSCORRUPTED; |
| 2276 | if (!(span <= 4 || be32_to_cpu(entry->hashval) == hashval)) |
| 2277 | return -EFSCORRUPTED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | |
| 2279 | /* |
| 2280 | * Since we may have duplicate hashval's, find the first matching |
| 2281 | * hashval in the leaf. |
| 2282 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2283 | while (probe > 0 && be32_to_cpu(entry->hashval) >= hashval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | entry--; |
| 2285 | probe--; |
| 2286 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2287 | while (probe < ichdr.count && |
| 2288 | be32_to_cpu(entry->hashval) < hashval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | entry++; |
| 2290 | probe++; |
| 2291 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2292 | if (probe == ichdr.count || be32_to_cpu(entry->hashval) != hashval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | args->index = probe; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2294 | return -ENOATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | } |
| 2296 | |
| 2297 | /* |
| 2298 | * Duplicate keys may be present, so search all of them for a match. |
| 2299 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2300 | for (; probe < ichdr.count && (be32_to_cpu(entry->hashval) == hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | entry++, probe++) { |
| 2302 | /* |
| 2303 | * GROT: Add code to remove incomplete entries. |
| 2304 | */ |
| 2305 | /* |
| 2306 | * If we are looking for INCOMPLETE entries, show only those. |
| 2307 | * If we are looking for complete entries, show only those. |
| 2308 | */ |
| 2309 | if ((args->flags & XFS_ATTR_INCOMPLETE) != |
| 2310 | (entry->flags & XFS_ATTR_INCOMPLETE)) { |
| 2311 | continue; |
| 2312 | } |
| 2313 | if (entry->flags & XFS_ATTR_LOCAL) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2314 | name_loc = xfs_attr3_leaf_name_local(leaf, probe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | if (name_loc->namelen != args->namelen) |
| 2316 | continue; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2317 | if (memcmp(args->name, name_loc->nameval, |
| 2318 | args->namelen) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | continue; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 2320 | if (!xfs_attr_namesp_match(args->flags, entry->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | continue; |
| 2322 | args->index = probe; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2323 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2324 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2325 | name_rmt = xfs_attr3_leaf_name_remote(leaf, probe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | if (name_rmt->namelen != args->namelen) |
| 2327 | continue; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2328 | if (memcmp(args->name, name_rmt->name, |
| 2329 | args->namelen) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2330 | continue; |
Tim Shimmin | 726801b | 2006-09-28 11:01:37 +1000 | [diff] [blame] | 2331 | if (!xfs_attr_namesp_match(args->flags, entry->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | continue; |
| 2333 | args->index = probe; |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2334 | args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen); |
Nathan Scott | c0f054e | 2006-03-17 17:29:18 +1100 | [diff] [blame] | 2335 | args->rmtblkno = be32_to_cpu(name_rmt->valueblk); |
Dave Chinner | ad1858d | 2013-05-21 18:02:08 +1000 | [diff] [blame] | 2336 | args->rmtblkcnt = xfs_attr3_rmt_blocks( |
| 2337 | args->dp->i_mount, |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2338 | args->rmtvaluelen); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2339 | return -EEXIST; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | } |
| 2341 | } |
| 2342 | args->index = probe; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2343 | return -ENOATTR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | } |
| 2345 | |
| 2346 | /* |
| 2347 | * Get the value associated with an attribute name from a leaf attribute |
| 2348 | * list structure. |
| 2349 | */ |
| 2350 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2351 | xfs_attr3_leaf_getvalue( |
| 2352 | struct xfs_buf *bp, |
| 2353 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2355 | struct xfs_attr_leafblock *leaf; |
| 2356 | struct xfs_attr3_icleaf_hdr ichdr; |
| 2357 | struct xfs_attr_leaf_entry *entry; |
| 2358 | struct xfs_attr_leaf_name_local *name_loc; |
| 2359 | struct xfs_attr_leaf_name_remote *name_rmt; |
| 2360 | int valuelen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2362 | leaf = bp->b_addr; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2363 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2364 | ASSERT(ichdr.count < args->geo->blksize / 8); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2365 | ASSERT(args->index < ichdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2367 | entry = &xfs_attr3_leaf_entryp(leaf)[args->index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | if (entry->flags & XFS_ATTR_LOCAL) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2369 | name_loc = xfs_attr3_leaf_name_local(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | ASSERT(name_loc->namelen == args->namelen); |
| 2371 | ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0); |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 2372 | valuelen = be16_to_cpu(name_loc->valuelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | if (args->flags & ATTR_KERNOVAL) { |
| 2374 | args->valuelen = valuelen; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2375 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | } |
| 2377 | if (args->valuelen < valuelen) { |
| 2378 | args->valuelen = valuelen; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2379 | return -ERANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | } |
| 2381 | args->valuelen = valuelen; |
| 2382 | memcpy(args->value, &name_loc->nameval[args->namelen], valuelen); |
| 2383 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2384 | name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | ASSERT(name_rmt->namelen == args->namelen); |
| 2386 | ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0); |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2387 | args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen); |
Nathan Scott | c0f054e | 2006-03-17 17:29:18 +1100 | [diff] [blame] | 2388 | args->rmtblkno = be32_to_cpu(name_rmt->valueblk); |
Dave Chinner | ad1858d | 2013-05-21 18:02:08 +1000 | [diff] [blame] | 2389 | args->rmtblkcnt = xfs_attr3_rmt_blocks(args->dp->i_mount, |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2390 | args->rmtvaluelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | if (args->flags & ATTR_KERNOVAL) { |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2392 | args->valuelen = args->rmtvaluelen; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2393 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | } |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2395 | if (args->valuelen < args->rmtvaluelen) { |
| 2396 | args->valuelen = args->rmtvaluelen; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2397 | return -ERANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | } |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2399 | args->valuelen = args->rmtvaluelen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2401 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2402 | } |
| 2403 | |
| 2404 | /*======================================================================== |
| 2405 | * Utility routines. |
| 2406 | *========================================================================*/ |
| 2407 | |
| 2408 | /* |
| 2409 | * Move the indicated entries from one leaf to another. |
| 2410 | * NOTE: this routine modifies both source and destination leaves. |
| 2411 | */ |
| 2412 | /*ARGSUSED*/ |
| 2413 | STATIC void |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2414 | xfs_attr3_leaf_moveents( |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2415 | struct xfs_da_args *args, |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2416 | struct xfs_attr_leafblock *leaf_s, |
| 2417 | struct xfs_attr3_icleaf_hdr *ichdr_s, |
| 2418 | int start_s, |
| 2419 | struct xfs_attr_leafblock *leaf_d, |
| 2420 | struct xfs_attr3_icleaf_hdr *ichdr_d, |
| 2421 | int start_d, |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2422 | int count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2424 | struct xfs_attr_leaf_entry *entry_s; |
| 2425 | struct xfs_attr_leaf_entry *entry_d; |
| 2426 | int desti; |
| 2427 | int tmp; |
| 2428 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2429 | |
| 2430 | /* |
| 2431 | * Check for nothing to do. |
| 2432 | */ |
| 2433 | if (count == 0) |
| 2434 | return; |
| 2435 | |
| 2436 | /* |
| 2437 | * Set up environment. |
| 2438 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2439 | ASSERT(ichdr_s->magic == XFS_ATTR_LEAF_MAGIC || |
| 2440 | ichdr_s->magic == XFS_ATTR3_LEAF_MAGIC); |
| 2441 | ASSERT(ichdr_s->magic == ichdr_d->magic); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2442 | ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2443 | ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s)) |
| 2444 | + xfs_attr3_leaf_hdr_size(leaf_s)); |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2445 | ASSERT(ichdr_d->count < args->geo->blksize / 8); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2446 | ASSERT(ichdr_d->firstused >= (ichdr_d->count * sizeof(*entry_d)) |
| 2447 | + xfs_attr3_leaf_hdr_size(leaf_d)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2449 | ASSERT(start_s < ichdr_s->count); |
| 2450 | ASSERT(start_d <= ichdr_d->count); |
| 2451 | ASSERT(count <= ichdr_s->count); |
| 2452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | |
| 2454 | /* |
| 2455 | * Move the entries in the destination leaf up to make a hole? |
| 2456 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2457 | if (start_d < ichdr_d->count) { |
| 2458 | tmp = ichdr_d->count - start_d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | tmp *= sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2460 | entry_s = &xfs_attr3_leaf_entryp(leaf_d)[start_d]; |
| 2461 | entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d + count]; |
| 2462 | memmove(entry_d, entry_s, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | } |
| 2464 | |
| 2465 | /* |
| 2466 | * Copy all entry's in the same (sorted) order, |
| 2467 | * but allocate attribute info packed and in sequence. |
| 2468 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2469 | entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s]; |
| 2470 | entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2471 | desti = start_d; |
| 2472 | for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2473 | ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2474 | tmp = xfs_attr_leaf_entsize(leaf_s, start_s + i); |
| 2475 | #ifdef GROT |
| 2476 | /* |
| 2477 | * Code to drop INCOMPLETE entries. Difficult to use as we |
| 2478 | * may also need to change the insertion index. Code turned |
| 2479 | * off for 6.2, should be revisited later. |
| 2480 | */ |
| 2481 | if (entry_s->flags & XFS_ATTR_INCOMPLETE) { /* skip partials? */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2482 | memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp); |
| 2483 | ichdr_s->usedbytes -= tmp; |
| 2484 | ichdr_s->count -= 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | entry_d--; /* to compensate for ++ in loop hdr */ |
| 2486 | desti--; |
| 2487 | if ((start_s + i) < offset) |
| 2488 | result++; /* insertion index adjustment */ |
| 2489 | } else { |
| 2490 | #endif /* GROT */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2491 | ichdr_d->firstused -= tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | /* both on-disk, don't endian flip twice */ |
| 2493 | entry_d->hashval = entry_s->hashval; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2494 | entry_d->nameidx = cpu_to_be16(ichdr_d->firstused); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | entry_d->flags = entry_s->flags; |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2496 | ASSERT(be16_to_cpu(entry_d->nameidx) + tmp |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2497 | <= args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2498 | memmove(xfs_attr3_leaf_name(leaf_d, desti), |
| 2499 | xfs_attr3_leaf_name(leaf_s, start_s + i), tmp); |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2500 | ASSERT(be16_to_cpu(entry_s->nameidx) + tmp |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2501 | <= args->geo->blksize); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2502 | memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp); |
| 2503 | ichdr_s->usedbytes -= tmp; |
| 2504 | ichdr_d->usedbytes += tmp; |
| 2505 | ichdr_s->count -= 1; |
| 2506 | ichdr_d->count += 1; |
| 2507 | tmp = ichdr_d->count * sizeof(xfs_attr_leaf_entry_t) |
| 2508 | + xfs_attr3_leaf_hdr_size(leaf_d); |
| 2509 | ASSERT(ichdr_d->firstused >= tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | #ifdef GROT |
| 2511 | } |
| 2512 | #endif /* GROT */ |
| 2513 | } |
| 2514 | |
| 2515 | /* |
| 2516 | * Zero out the entries we just copied. |
| 2517 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2518 | if (start_s == ichdr_s->count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | tmp = count * sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2520 | entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2521 | ASSERT(((char *)entry_s + tmp) <= |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2522 | ((char *)leaf_s + args->geo->blksize)); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2523 | memset(entry_s, 0, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2524 | } else { |
| 2525 | /* |
| 2526 | * Move the remaining entries down to fill the hole, |
| 2527 | * then zero the entries at the top. |
| 2528 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2529 | tmp = (ichdr_s->count - count) * sizeof(xfs_attr_leaf_entry_t); |
| 2530 | entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s + count]; |
| 2531 | entry_d = &xfs_attr3_leaf_entryp(leaf_s)[start_s]; |
| 2532 | memmove(entry_d, entry_s, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | |
| 2534 | tmp = count * sizeof(xfs_attr_leaf_entry_t); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2535 | entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2536 | ASSERT(((char *)entry_s + tmp) <= |
Dave Chinner | c2c4c47 | 2014-06-06 15:21:45 +1000 | [diff] [blame] | 2537 | ((char *)leaf_s + args->geo->blksize)); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2538 | memset(entry_s, 0, tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | } |
| 2540 | |
| 2541 | /* |
| 2542 | * Fill in the freemap information |
| 2543 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2544 | ichdr_d->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_d); |
| 2545 | ichdr_d->freemap[0].base += ichdr_d->count * sizeof(xfs_attr_leaf_entry_t); |
| 2546 | ichdr_d->freemap[0].size = ichdr_d->firstused - ichdr_d->freemap[0].base; |
| 2547 | ichdr_d->freemap[1].base = 0; |
| 2548 | ichdr_d->freemap[2].base = 0; |
| 2549 | ichdr_d->freemap[1].size = 0; |
| 2550 | ichdr_d->freemap[2].size = 0; |
| 2551 | ichdr_s->holes = 1; /* leaf may not be compact */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | } |
| 2553 | |
| 2554 | /* |
| 2555 | * Pick up the last hashvalue from a leaf block. |
| 2556 | */ |
| 2557 | xfs_dahash_t |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2558 | xfs_attr_leaf_lasthash( |
| 2559 | struct xfs_buf *bp, |
| 2560 | int *count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2562 | struct xfs_attr3_icleaf_hdr ichdr; |
| 2563 | struct xfs_attr_leaf_entry *entries; |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2564 | struct xfs_mount *mp = bp->b_target->bt_mount; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2566 | xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, bp->b_addr); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2567 | entries = xfs_attr3_leaf_entryp(bp->b_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | if (count) |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2569 | *count = ichdr.count; |
| 2570 | if (!ichdr.count) |
| 2571 | return 0; |
| 2572 | return be32_to_cpu(entries[ichdr.count - 1].hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 | } |
| 2574 | |
| 2575 | /* |
| 2576 | * Calculate the number of bytes used to store the indicated attribute |
| 2577 | * (whether local or remote only calculate bytes in this block). |
| 2578 | */ |
Christoph Hellwig | ba0f32d | 2005-06-21 15:36:52 +1000 | [diff] [blame] | 2579 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index) |
| 2581 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2582 | struct xfs_attr_leaf_entry *entries; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2583 | xfs_attr_leaf_name_local_t *name_loc; |
| 2584 | xfs_attr_leaf_name_remote_t *name_rmt; |
| 2585 | int size; |
| 2586 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2587 | entries = xfs_attr3_leaf_entryp(leaf); |
| 2588 | if (entries[index].flags & XFS_ATTR_LOCAL) { |
| 2589 | name_loc = xfs_attr3_leaf_name_local(leaf, index); |
Eric Sandeen | c9fb86a | 2009-01-01 16:40:11 -0600 | [diff] [blame] | 2590 | size = xfs_attr_leaf_entsize_local(name_loc->namelen, |
Nathan Scott | 053b575 | 2006-03-17 17:29:09 +1100 | [diff] [blame] | 2591 | be16_to_cpu(name_loc->valuelen)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2592 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2593 | name_rmt = xfs_attr3_leaf_name_remote(leaf, index); |
Eric Sandeen | c9fb86a | 2009-01-01 16:40:11 -0600 | [diff] [blame] | 2594 | size = xfs_attr_leaf_entsize_remote(name_rmt->namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | } |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2596 | return size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | } |
| 2598 | |
| 2599 | /* |
| 2600 | * Calculate the number of bytes that would be required to store the new |
| 2601 | * attribute (whether local or remote only calculate bytes in this block). |
| 2602 | * This routine decides as a side effect whether the attribute will be |
| 2603 | * a "local" or a "remote" attribute. |
| 2604 | */ |
| 2605 | int |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 2606 | xfs_attr_leaf_newentsize( |
| 2607 | struct xfs_da_args *args, |
| 2608 | int *local) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | { |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 2610 | int size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 2612 | size = xfs_attr_leaf_entsize_local(args->namelen, args->valuelen); |
| 2613 | if (size < xfs_attr_leaf_entsize_local_max(args->geo->blksize)) { |
| 2614 | if (local) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | *local = 1; |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 2616 | return size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | } |
Dave Chinner | c59f0ad | 2014-06-06 15:21:27 +1000 | [diff] [blame] | 2618 | if (local) |
| 2619 | *local = 0; |
| 2620 | return xfs_attr_leaf_entsize_remote(args->namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | } |
| 2622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | |
| 2624 | /*======================================================================== |
| 2625 | * Manage the INCOMPLETE flag in a leaf entry |
| 2626 | *========================================================================*/ |
| 2627 | |
| 2628 | /* |
| 2629 | * Clear the INCOMPLETE flag on an entry in a leaf block. |
| 2630 | */ |
| 2631 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2632 | xfs_attr3_leaf_clearflag( |
| 2633 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2634 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2635 | struct xfs_attr_leafblock *leaf; |
| 2636 | struct xfs_attr_leaf_entry *entry; |
| 2637 | struct xfs_attr_leaf_name_remote *name_rmt; |
| 2638 | struct xfs_buf *bp; |
| 2639 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | #ifdef DEBUG |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2641 | struct xfs_attr3_icleaf_hdr ichdr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | xfs_attr_leaf_name_local_t *name_loc; |
| 2643 | int namelen; |
| 2644 | char *name; |
| 2645 | #endif /* DEBUG */ |
| 2646 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 2647 | trace_xfs_attr_leaf_clearflag(args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2648 | /* |
| 2649 | * Set up the operation. |
| 2650 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2651 | error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp); |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 2652 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 2653 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2655 | leaf = bp->b_addr; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2656 | entry = &xfs_attr3_leaf_entryp(leaf)[args->index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2657 | ASSERT(entry->flags & XFS_ATTR_INCOMPLETE); |
| 2658 | |
| 2659 | #ifdef DEBUG |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2660 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2661 | ASSERT(args->index < ichdr.count); |
| 2662 | ASSERT(args->index >= 0); |
| 2663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2664 | if (entry->flags & XFS_ATTR_LOCAL) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2665 | name_loc = xfs_attr3_leaf_name_local(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | namelen = name_loc->namelen; |
| 2667 | name = (char *)name_loc->nameval; |
| 2668 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2669 | name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | namelen = name_rmt->namelen; |
| 2671 | name = (char *)name_rmt->name; |
| 2672 | } |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2673 | ASSERT(be32_to_cpu(entry->hashval) == args->hashval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | ASSERT(namelen == args->namelen); |
| 2675 | ASSERT(memcmp(name, args->name, namelen) == 0); |
| 2676 | #endif /* DEBUG */ |
| 2677 | |
| 2678 | entry->flags &= ~XFS_ATTR_INCOMPLETE; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2679 | xfs_trans_log_buf(args->trans, bp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2680 | XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry))); |
| 2681 | |
| 2682 | if (args->rmtblkno) { |
| 2683 | ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2684 | name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index); |
Nathan Scott | c0f054e | 2006-03-17 17:29:18 +1100 | [diff] [blame] | 2685 | name_rmt->valueblk = cpu_to_be32(args->rmtblkno); |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2686 | name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2687 | xfs_trans_log_buf(args->trans, bp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt))); |
| 2689 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | |
| 2691 | /* |
| 2692 | * Commit the flag value change and start the next trans in series. |
| 2693 | */ |
Christoph Hellwig | 411350d | 2017-08-28 10:21:03 -0700 | [diff] [blame] | 2694 | return xfs_trans_roll_inode(&args->trans, args->dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | } |
| 2696 | |
| 2697 | /* |
| 2698 | * Set the INCOMPLETE flag on an entry in a leaf block. |
| 2699 | */ |
| 2700 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2701 | xfs_attr3_leaf_setflag( |
| 2702 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2703 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2704 | struct xfs_attr_leafblock *leaf; |
| 2705 | struct xfs_attr_leaf_entry *entry; |
| 2706 | struct xfs_attr_leaf_name_remote *name_rmt; |
| 2707 | struct xfs_buf *bp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | int error; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2709 | #ifdef DEBUG |
| 2710 | struct xfs_attr3_icleaf_hdr ichdr; |
| 2711 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2712 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 2713 | trace_xfs_attr_leaf_setflag(args); |
| 2714 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | /* |
| 2716 | * Set up the operation. |
| 2717 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2718 | error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp); |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 2719 | if (error) |
Eric Sandeen | d99831f | 2014-06-22 15:03:54 +1000 | [diff] [blame] | 2720 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2722 | leaf = bp->b_addr; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2723 | #ifdef DEBUG |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2724 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2725 | ASSERT(args->index < ichdr.count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2726 | ASSERT(args->index >= 0); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2727 | #endif |
| 2728 | entry = &xfs_attr3_leaf_entryp(leaf)[args->index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | |
| 2730 | ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0); |
| 2731 | entry->flags |= XFS_ATTR_INCOMPLETE; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2732 | xfs_trans_log_buf(args->trans, bp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry))); |
| 2734 | if ((entry->flags & XFS_ATTR_LOCAL) == 0) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2735 | name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | name_rmt->valueblk = 0; |
| 2737 | name_rmt->valuelen = 0; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2738 | xfs_trans_log_buf(args->trans, bp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt))); |
| 2740 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | |
| 2742 | /* |
| 2743 | * Commit the flag value change and start the next trans in series. |
| 2744 | */ |
Christoph Hellwig | 411350d | 2017-08-28 10:21:03 -0700 | [diff] [blame] | 2745 | return xfs_trans_roll_inode(&args->trans, args->dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | } |
| 2747 | |
| 2748 | /* |
| 2749 | * In a single transaction, clear the INCOMPLETE flag on the leaf entry |
| 2750 | * given by args->blkno/index and set the INCOMPLETE flag on the leaf |
| 2751 | * entry given by args->blkno2/index2. |
| 2752 | * |
| 2753 | * Note that they could be in different blocks, or in the same block. |
| 2754 | */ |
| 2755 | int |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2756 | xfs_attr3_leaf_flipflags( |
| 2757 | struct xfs_da_args *args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2759 | struct xfs_attr_leafblock *leaf1; |
| 2760 | struct xfs_attr_leafblock *leaf2; |
| 2761 | struct xfs_attr_leaf_entry *entry1; |
| 2762 | struct xfs_attr_leaf_entry *entry2; |
| 2763 | struct xfs_attr_leaf_name_remote *name_rmt; |
| 2764 | struct xfs_buf *bp1; |
| 2765 | struct xfs_buf *bp2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2766 | int error; |
| 2767 | #ifdef DEBUG |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2768 | struct xfs_attr3_icleaf_hdr ichdr1; |
| 2769 | struct xfs_attr3_icleaf_hdr ichdr2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2770 | xfs_attr_leaf_name_local_t *name_loc; |
| 2771 | int namelen1, namelen2; |
| 2772 | char *name1, *name2; |
| 2773 | #endif /* DEBUG */ |
| 2774 | |
Dave Chinner | 5a5881c | 2012-03-22 05:15:13 +0000 | [diff] [blame] | 2775 | trace_xfs_attr_leaf_flipflags(args); |
| 2776 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2777 | /* |
| 2778 | * Read the block containing the "old" attr |
| 2779 | */ |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2780 | error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp1); |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 2781 | if (error) |
| 2782 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2783 | |
| 2784 | /* |
| 2785 | * Read the block containing the "new" attr, if it is different |
| 2786 | */ |
| 2787 | if (args->blkno2 != args->blkno) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2788 | error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno2, |
Dave Chinner | ad14c33 | 2012-11-12 22:54:16 +1100 | [diff] [blame] | 2789 | -1, &bp2); |
| 2790 | if (error) |
| 2791 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | } else { |
| 2793 | bp2 = bp1; |
| 2794 | } |
| 2795 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2796 | leaf1 = bp1->b_addr; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2797 | entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2798 | |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2799 | leaf2 = bp2->b_addr; |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2800 | entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | |
| 2802 | #ifdef DEBUG |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2803 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr1, leaf1); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2804 | ASSERT(args->index < ichdr1.count); |
| 2805 | ASSERT(args->index >= 0); |
| 2806 | |
Brian Foster | 2f66124 | 2015-04-13 11:26:02 +1000 | [diff] [blame] | 2807 | xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr2, leaf2); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2808 | ASSERT(args->index2 < ichdr2.count); |
| 2809 | ASSERT(args->index2 >= 0); |
| 2810 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | if (entry1->flags & XFS_ATTR_LOCAL) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2812 | name_loc = xfs_attr3_leaf_name_local(leaf1, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | namelen1 = name_loc->namelen; |
| 2814 | name1 = (char *)name_loc->nameval; |
| 2815 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2816 | name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | namelen1 = name_rmt->namelen; |
| 2818 | name1 = (char *)name_rmt->name; |
| 2819 | } |
| 2820 | if (entry2->flags & XFS_ATTR_LOCAL) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2821 | name_loc = xfs_attr3_leaf_name_local(leaf2, args->index2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | namelen2 = name_loc->namelen; |
| 2823 | name2 = (char *)name_loc->nameval; |
| 2824 | } else { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2825 | name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2826 | namelen2 = name_rmt->namelen; |
| 2827 | name2 = (char *)name_rmt->name; |
| 2828 | } |
Nathan Scott | 6b19f2d | 2006-03-17 17:29:02 +1100 | [diff] [blame] | 2829 | ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | ASSERT(namelen1 == namelen2); |
| 2831 | ASSERT(memcmp(name1, name2, namelen1) == 0); |
| 2832 | #endif /* DEBUG */ |
| 2833 | |
| 2834 | ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE); |
| 2835 | ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0); |
| 2836 | |
| 2837 | entry1->flags &= ~XFS_ATTR_INCOMPLETE; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2838 | xfs_trans_log_buf(args->trans, bp1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1))); |
| 2840 | if (args->rmtblkno) { |
| 2841 | ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0); |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2842 | name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index); |
Nathan Scott | c0f054e | 2006-03-17 17:29:18 +1100 | [diff] [blame] | 2843 | name_rmt->valueblk = cpu_to_be32(args->rmtblkno); |
Dave Chinner | 8275cdd | 2014-05-06 07:37:31 +1000 | [diff] [blame] | 2844 | name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen); |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2845 | xfs_trans_log_buf(args->trans, bp1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt))); |
| 2847 | } |
| 2848 | |
| 2849 | entry2->flags |= XFS_ATTR_INCOMPLETE; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2850 | xfs_trans_log_buf(args->trans, bp2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2851 | XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2))); |
| 2852 | if ((entry2->flags & XFS_ATTR_LOCAL) == 0) { |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2853 | name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2854 | name_rmt->valueblk = 0; |
| 2855 | name_rmt->valuelen = 0; |
Dave Chinner | 1d9025e | 2012-06-22 18:50:14 +1000 | [diff] [blame] | 2856 | xfs_trans_log_buf(args->trans, bp2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt))); |
| 2858 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | |
| 2860 | /* |
| 2861 | * Commit the flag value change and start the next trans in series. |
| 2862 | */ |
Christoph Hellwig | 411350d | 2017-08-28 10:21:03 -0700 | [diff] [blame] | 2863 | error = xfs_trans_roll_inode(&args->trans, args->dp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2864 | |
Dave Chinner | 517c222 | 2013-04-24 18:58:55 +1000 | [diff] [blame] | 2865 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | } |