blob: 5ab95ffa4ae9f6ee38ff4b56a5f1ca0d61e38e67 [file] [log] [blame]
Dave Chinner95920cd2013-04-03 16:11:27 +11001/*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinnerd2e448d2013-04-03 16:11:28 +11003 * Copyright (c) 2013 Red Hat, Inc.
Dave Chinner95920cd2013-04-03 16:11:27 +11004 * All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19#include "xfs.h"
20#include "xfs_fs.h"
Dave Chinner632b89e2013-10-29 22:11:58 +110021#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110022#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110025#include "xfs_bit.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110028#include "xfs_da_btree.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110029#include "xfs_inode.h"
30#include "xfs_alloc.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110032#include "xfs_inode_item.h"
33#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100034#include "xfs_bmap_util.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110035#include "xfs_attr.h"
36#include "xfs_attr_leaf.h"
37#include "xfs_attr_remote.h"
38#include "xfs_trans_space.h"
39#include "xfs_trace.h"
Dave Chinnerd2e448d2013-04-03 16:11:28 +110040#include "xfs_cksum.h"
41#include "xfs_buf_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110042#include "xfs_error.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110043
44#define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */
45
46/*
Dave Chinnerd2e448d2013-04-03 16:11:28 +110047 * Each contiguous block has a header, so it is not just a simple attribute
48 * length to FSB conversion.
49 */
Dave Chinner7bc0dc22013-05-21 18:02:08 +100050int
Dave Chinnerd2e448d2013-04-03 16:11:28 +110051xfs_attr3_rmt_blocks(
52 struct xfs_mount *mp,
53 int attrlen)
54{
Dave Chinner551b3822013-05-21 18:02:02 +100055 if (xfs_sb_version_hascrc(&mp->m_sb)) {
56 int buflen = XFS_ATTR3_RMT_BUF_SPACE(mp, mp->m_sb.sb_blocksize);
57 return (attrlen + buflen - 1) / buflen;
58 }
59 return XFS_B_TO_FSB(mp, attrlen);
Dave Chinnerd2e448d2013-04-03 16:11:28 +110060}
61
Dave Chinner7bc0dc22013-05-21 18:02:08 +100062/*
63 * Checking of the remote attribute header is split into two parts. The verifier
64 * does CRC, location and bounds checking, the unpacking function checks the
65 * attribute parameters and owner.
66 */
67static bool
68xfs_attr3_rmt_hdr_ok(
Dave Chinner7bc0dc22013-05-21 18:02:08 +100069 void *ptr,
70 xfs_ino_t ino,
71 uint32_t offset,
72 uint32_t size,
73 xfs_daddr_t bno)
74{
75 struct xfs_attr3_rmt_hdr *rmt = ptr;
76
77 if (bno != be64_to_cpu(rmt->rm_blkno))
78 return false;
79 if (offset != be32_to_cpu(rmt->rm_offset))
80 return false;
81 if (size != be32_to_cpu(rmt->rm_bytes))
82 return false;
83 if (ino != be64_to_cpu(rmt->rm_owner))
84 return false;
85
86 /* ok */
87 return true;
88}
89
Dave Chinnerd2e448d2013-04-03 16:11:28 +110090static bool
91xfs_attr3_rmt_verify(
Dave Chinner7bc0dc22013-05-21 18:02:08 +100092 struct xfs_mount *mp,
93 void *ptr,
94 int fsbsize,
95 xfs_daddr_t bno)
Dave Chinnerd2e448d2013-04-03 16:11:28 +110096{
Dave Chinner7bc0dc22013-05-21 18:02:08 +100097 struct xfs_attr3_rmt_hdr *rmt = ptr;
Dave Chinnerd2e448d2013-04-03 16:11:28 +110098
99 if (!xfs_sb_version_hascrc(&mp->m_sb))
100 return false;
101 if (rmt->rm_magic != cpu_to_be32(XFS_ATTR3_RMT_MAGIC))
102 return false;
Eric Sandeence748ea2015-07-29 11:53:31 +1000103 if (!uuid_equal(&rmt->rm_uuid, &mp->m_sb.sb_meta_uuid))
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100104 return false;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000105 if (be64_to_cpu(rmt->rm_blkno) != bno)
106 return false;
107 if (be32_to_cpu(rmt->rm_bytes) > fsbsize - sizeof(*rmt))
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100108 return false;
109 if (be32_to_cpu(rmt->rm_offset) +
Jan Tulak51fcbfe2015-10-12 16:03:59 +1100110 be32_to_cpu(rmt->rm_bytes) > XFS_XATTR_SIZE_MAX)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100111 return false;
112 if (rmt->rm_owner == 0)
113 return false;
114
115 return true;
116}
117
118static void
119xfs_attr3_rmt_read_verify(
120 struct xfs_buf *bp)
121{
122 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000123 char *ptr;
124 int len;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000125 xfs_daddr_t bno;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000126 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100127
128 /* no verification of non-crc buffers */
129 if (!xfs_sb_version_hascrc(&mp->m_sb))
130 return;
131
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000132 ptr = bp->b_addr;
133 bno = bp->b_bn;
134 len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000135 ASSERT(len >= blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000136
137 while (len > 0) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000138 if (!xfs_verify_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF)) {
Dave Chinner24513372014-06-25 14:58:08 +1000139 xfs_buf_ioerror(bp, -EFSBADCRC);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000140 break;
141 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000142 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
Dave Chinner24513372014-06-25 14:58:08 +1000143 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000144 break;
145 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000146 len -= blksize;
147 ptr += blksize;
148 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000149 }
150
Eric Sandeence5028c2014-02-27 15:23:10 +1100151 if (bp->b_error)
152 xfs_verifier_error(bp);
153 else
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000154 ASSERT(len == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100155}
156
157static void
158xfs_attr3_rmt_write_verify(
159 struct xfs_buf *bp)
160{
161 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinnere3c32ee2015-07-29 11:48:01 +1000162 int blksize = mp->m_attr_geo->blksize;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000163 char *ptr;
164 int len;
165 xfs_daddr_t bno;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100166
167 /* no verification of non-crc buffers */
168 if (!xfs_sb_version_hascrc(&mp->m_sb))
169 return;
170
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000171 ptr = bp->b_addr;
172 bno = bp->b_bn;
173 len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000174 ASSERT(len >= blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100175
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000176 while (len > 0) {
Dave Chinnere3c32ee2015-07-29 11:48:01 +1000177 struct xfs_attr3_rmt_hdr *rmt = (struct xfs_attr3_rmt_hdr *)ptr;
178
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000179 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
Dave Chinner24513372014-06-25 14:58:08 +1000180 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100181 xfs_verifier_error(bp);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000182 return;
183 }
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000184
Dave Chinnere3c32ee2015-07-29 11:48:01 +1000185 /*
186 * Ensure we aren't writing bogus LSNs to disk. See
187 * xfs_attr3_rmt_hdr_set() for the explanation.
188 */
189 if (rmt->rm_lsn != cpu_to_be64(NULLCOMMITLSN)) {
190 xfs_buf_ioerror(bp, -EFSCORRUPTED);
191 xfs_verifier_error(bp);
192 return;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000193 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000194 xfs_update_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000195
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000196 len -= blksize;
197 ptr += blksize;
198 bno += BTOBB(blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100199 }
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000200 ASSERT(len == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100201}
202
203const struct xfs_buf_ops xfs_attr3_rmt_buf_ops = {
204 .verify_read = xfs_attr3_rmt_read_verify,
205 .verify_write = xfs_attr3_rmt_write_verify,
206};
207
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000208STATIC int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100209xfs_attr3_rmt_hdr_set(
210 struct xfs_mount *mp,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000211 void *ptr,
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100212 xfs_ino_t ino,
213 uint32_t offset,
214 uint32_t size,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000215 xfs_daddr_t bno)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100216{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000217 struct xfs_attr3_rmt_hdr *rmt = ptr;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100218
219 if (!xfs_sb_version_hascrc(&mp->m_sb))
220 return 0;
221
222 rmt->rm_magic = cpu_to_be32(XFS_ATTR3_RMT_MAGIC);
223 rmt->rm_offset = cpu_to_be32(offset);
224 rmt->rm_bytes = cpu_to_be32(size);
Eric Sandeence748ea2015-07-29 11:53:31 +1000225 uuid_copy(&rmt->rm_uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100226 rmt->rm_owner = cpu_to_be64(ino);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000227 rmt->rm_blkno = cpu_to_be64(bno);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100228
Dave Chinnere3c32ee2015-07-29 11:48:01 +1000229 /*
230 * Remote attribute blocks are written synchronously, so we don't
231 * have an LSN that we can stamp in them that makes any sense to log
232 * recovery. To ensure that log recovery handles overwrites of these
233 * blocks sanely (i.e. once they've been freed and reallocated as some
234 * other type of metadata) we need to ensure that the LSN has a value
235 * that tells log recovery to ignore the LSN and overwrite the buffer
236 * with whatever is in it's log. To do this, we use the magic
237 * NULLCOMMITLSN to indicate that the LSN is invalid.
238 */
239 rmt->rm_lsn = cpu_to_be64(NULLCOMMITLSN);
240
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100241 return sizeof(struct xfs_attr3_rmt_hdr);
242}
243
244/*
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000245 * Helper functions to copy attribute data in and out of the one disk extents
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100246 */
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000247STATIC int
248xfs_attr_rmtval_copyout(
249 struct xfs_mount *mp,
250 struct xfs_buf *bp,
251 xfs_ino_t ino,
252 int *offset,
253 int *valuelen,
Dave Chinner836a94a2013-08-12 20:49:44 +1000254 __uint8_t **dst)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100255{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000256 char *src = bp->b_addr;
257 xfs_daddr_t bno = bp->b_bn;
258 int len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000259 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100260
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000261 ASSERT(len >= blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100262
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000263 while (len > 0 && *valuelen > 0) {
264 int hdr_size = 0;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000265 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000266
Dave Chinnerc5c249b2013-08-12 20:49:43 +1000267 byte_cnt = min(*valuelen, byte_cnt);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000268
269 if (xfs_sb_version_hascrc(&mp->m_sb)) {
Eric Sandeen6d0081a2014-04-14 18:58:29 +1000270 if (!xfs_attr3_rmt_hdr_ok(src, ino, *offset,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000271 byte_cnt, bno)) {
272 xfs_alert(mp,
273"remote attribute header mismatch bno/off/len/owner (0x%llx/0x%x/Ox%x/0x%llx)",
274 bno, *offset, byte_cnt, ino);
Dave Chinner24513372014-06-25 14:58:08 +1000275 return -EFSCORRUPTED;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000276 }
277 hdr_size = sizeof(struct xfs_attr3_rmt_hdr);
278 }
279
280 memcpy(*dst, src + hdr_size, byte_cnt);
281
282 /* roll buffer forwards */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000283 len -= blksize;
284 src += blksize;
285 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000286
287 /* roll attribute data forwards */
288 *valuelen -= byte_cnt;
289 *dst += byte_cnt;
290 *offset += byte_cnt;
291 }
292 return 0;
293}
294
295STATIC void
296xfs_attr_rmtval_copyin(
297 struct xfs_mount *mp,
298 struct xfs_buf *bp,
299 xfs_ino_t ino,
300 int *offset,
301 int *valuelen,
Dave Chinner836a94a2013-08-12 20:49:44 +1000302 __uint8_t **src)
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000303{
304 char *dst = bp->b_addr;
305 xfs_daddr_t bno = bp->b_bn;
306 int len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000307 int blksize = mp->m_attr_geo->blksize;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000308
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000309 ASSERT(len >= blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000310
311 while (len > 0 && *valuelen > 0) {
312 int hdr_size;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000313 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000314
315 byte_cnt = min(*valuelen, byte_cnt);
316 hdr_size = xfs_attr3_rmt_hdr_set(mp, dst, ino, *offset,
317 byte_cnt, bno);
318
319 memcpy(dst + hdr_size, *src, byte_cnt);
320
321 /*
322 * If this is the last block, zero the remainder of it.
323 * Check that we are actually the last block, too.
324 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000325 if (byte_cnt + hdr_size < blksize) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000326 ASSERT(*valuelen - byte_cnt == 0);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000327 ASSERT(len == blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000328 memset(dst + hdr_size + byte_cnt, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000329 blksize - hdr_size - byte_cnt);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000330 }
331
332 /* roll buffer forwards */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000333 len -= blksize;
334 dst += blksize;
335 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000336
337 /* roll attribute data forwards */
338 *valuelen -= byte_cnt;
339 *src += byte_cnt;
340 *offset += byte_cnt;
341 }
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100342}
343
344/*
Dave Chinner95920cd2013-04-03 16:11:27 +1100345 * Read the value associated with an attribute from the out-of-line buffer
346 * that we stored it in.
347 */
348int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100349xfs_attr_rmtval_get(
350 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100351{
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100352 struct xfs_bmbt_irec map[ATTR_RMTVALUE_MAPSIZE];
353 struct xfs_mount *mp = args->dp->i_mount;
354 struct xfs_buf *bp;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100355 xfs_dablk_t lblkno = args->rmtblkno;
Dave Chinner836a94a2013-08-12 20:49:44 +1000356 __uint8_t *dst = args->value;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000357 int valuelen;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100358 int nmap;
359 int error;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000360 int blkcnt = args->rmtblkcnt;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100361 int i;
362 int offset = 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100363
364 trace_xfs_attr_rmtval_get(args);
365
366 ASSERT(!(args->flags & ATTR_KERNOVAL));
Dave Chinner8275cdd2014-05-06 07:37:31 +1000367 ASSERT(args->rmtvaluelen == args->valuelen);
Dave Chinner95920cd2013-04-03 16:11:27 +1100368
Dave Chinner8275cdd2014-05-06 07:37:31 +1000369 valuelen = args->rmtvaluelen;
Dave Chinner95920cd2013-04-03 16:11:27 +1100370 while (valuelen > 0) {
371 nmap = ATTR_RMTVALUE_MAPSIZE;
372 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
Dave Chinner551b3822013-05-21 18:02:02 +1000373 blkcnt, map, &nmap,
Dave Chinner95920cd2013-04-03 16:11:27 +1100374 XFS_BMAPI_ATTRFORK);
375 if (error)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100376 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100377 ASSERT(nmap >= 1);
378
379 for (i = 0; (i < nmap) && (valuelen > 0); i++) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000380 xfs_daddr_t dblkno;
381 int dblkcnt;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100382
Dave Chinner95920cd2013-04-03 16:11:27 +1100383 ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
384 (map[i].br_startblock != HOLESTARTBLOCK));
385 dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000386 dblkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100387 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000388 dblkno, dblkcnt, 0, &bp,
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100389 &xfs_attr3_rmt_buf_ops);
Dave Chinner95920cd2013-04-03 16:11:27 +1100390 if (error)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100391 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100392
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000393 error = xfs_attr_rmtval_copyout(mp, bp, args->dp->i_ino,
394 &offset, &valuelen,
395 &dst);
Dave Chinner95920cd2013-04-03 16:11:27 +1100396 xfs_buf_relse(bp);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000397 if (error)
398 return error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100399
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000400 /* roll attribute extent map forwards */
Dave Chinner95920cd2013-04-03 16:11:27 +1100401 lblkno += map[i].br_blockcount;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000402 blkcnt -= map[i].br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100403 }
404 }
405 ASSERT(valuelen == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100406 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100407}
408
409/*
410 * Write the value associated with an attribute into the out-of-line buffer
411 * that we have defined for it.
412 */
413int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100414xfs_attr_rmtval_set(
415 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100416{
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100417 struct xfs_inode *dp = args->dp;
418 struct xfs_mount *mp = dp->i_mount;
419 struct xfs_bmbt_irec map;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100420 xfs_dablk_t lblkno;
421 xfs_fileoff_t lfileoff = 0;
Dave Chinner836a94a2013-08-12 20:49:44 +1000422 __uint8_t *src = args->value;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100423 int blkcnt;
424 int valuelen;
425 int nmap;
426 int error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100427 int offset = 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100428
429 trace_xfs_attr_rmtval_set(args);
430
Dave Chinner95920cd2013-04-03 16:11:27 +1100431 /*
432 * Find a "hole" in the attribute address space large enough for
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100433 * us to drop the new attribute's value into. Because CRC enable
434 * attributes have headers, we can't just do a straight byte to FSB
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000435 * conversion and have to take the header space into account.
Dave Chinner95920cd2013-04-03 16:11:27 +1100436 */
Dave Chinner8275cdd2014-05-06 07:37:31 +1000437 blkcnt = xfs_attr3_rmt_blocks(mp, args->rmtvaluelen);
Dave Chinner95920cd2013-04-03 16:11:27 +1100438 error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
439 XFS_ATTR_FORK);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100440 if (error)
441 return error;
442
Dave Chinner95920cd2013-04-03 16:11:27 +1100443 args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
444 args->rmtblkcnt = blkcnt;
445
446 /*
447 * Roll through the "value", allocating blocks on disk as required.
448 */
449 while (blkcnt > 0) {
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100450 int committed;
451
Dave Chinner95920cd2013-04-03 16:11:27 +1100452 /*
453 * Allocate a single extent, up to the size of the value.
Dave Chinnerdf150ed12015-07-29 11:48:02 +1000454 *
455 * Note that we have to consider this a data allocation as we
456 * write the remote attribute without logging the contents.
457 * Hence we must ensure that we aren't using blocks that are on
458 * the busy list so that we don't overwrite blocks which have
459 * recently been freed but their transactions are not yet
460 * committed to disk. If we overwrite the contents of a busy
461 * extent and then crash then the block may not contain the
462 * correct metadata after log recovery occurs.
Dave Chinner95920cd2013-04-03 16:11:27 +1100463 */
464 xfs_bmap_init(args->flist, args->firstblock);
465 nmap = 1;
466 error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno,
Dave Chinnerdf150ed12015-07-29 11:48:02 +1000467 blkcnt, XFS_BMAPI_ATTRFORK, args->firstblock,
468 args->total, &map, &nmap, args->flist);
Dave Chinner95920cd2013-04-03 16:11:27 +1100469 if (!error) {
470 error = xfs_bmap_finish(&args->trans, args->flist,
471 &committed);
472 }
473 if (error) {
474 ASSERT(committed);
475 args->trans = NULL;
476 xfs_bmap_cancel(args->flist);
Eric Sandeend99831f2014-06-22 15:03:54 +1000477 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100478 }
479
480 /*
481 * bmap_finish() may have committed the last trans and started
482 * a new one. We need the inode to be in all transactions.
483 */
484 if (committed)
485 xfs_trans_ijoin(args->trans, dp, 0);
486
487 ASSERT(nmap == 1);
488 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
489 (map.br_startblock != HOLESTARTBLOCK));
490 lblkno += map.br_blockcount;
491 blkcnt -= map.br_blockcount;
492
493 /*
494 * Start the next trans in the chain.
495 */
496 error = xfs_trans_roll(&args->trans, dp);
497 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000498 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100499 }
500
501 /*
502 * Roll through the "value", copying the attribute value to the
503 * already-allocated blocks. Blocks are written synchronously
504 * so that we can know they are all on disk before we turn off
505 * the INCOMPLETE flag.
506 */
507 lblkno = args->rmtblkno;
Dave Chinner26f71442013-05-21 18:02:03 +1000508 blkcnt = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000509 valuelen = args->rmtvaluelen;
Dave Chinner95920cd2013-04-03 16:11:27 +1100510 while (valuelen > 0) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000511 struct xfs_buf *bp;
512 xfs_daddr_t dblkno;
513 int dblkcnt;
Dave Chinner95920cd2013-04-03 16:11:27 +1100514
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000515 ASSERT(blkcnt > 0);
516
Dave Chinner95920cd2013-04-03 16:11:27 +1100517 xfs_bmap_init(args->flist, args->firstblock);
518 nmap = 1;
519 error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno,
Dave Chinner26f71442013-05-21 18:02:03 +1000520 blkcnt, &map, &nmap,
Dave Chinner95920cd2013-04-03 16:11:27 +1100521 XFS_BMAPI_ATTRFORK);
522 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000523 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100524 ASSERT(nmap == 1);
525 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
526 (map.br_startblock != HOLESTARTBLOCK));
527
528 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
Dave Chinner26f71442013-05-21 18:02:03 +1000529 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100530
Dave Chinner26f71442013-05-21 18:02:03 +1000531 bp = xfs_buf_get(mp->m_ddev_targp, dblkno, dblkcnt, 0);
Dave Chinner95920cd2013-04-03 16:11:27 +1100532 if (!bp)
Dave Chinner24513372014-06-25 14:58:08 +1000533 return -ENOMEM;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100534 bp->b_ops = &xfs_attr3_rmt_buf_ops;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100535
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000536 xfs_attr_rmtval_copyin(mp, bp, args->dp->i_ino, &offset,
537 &valuelen, &src);
Dave Chinner95920cd2013-04-03 16:11:27 +1100538
539 error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */
540 xfs_buf_relse(bp);
541 if (error)
542 return error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100543
Dave Chinner95920cd2013-04-03 16:11:27 +1100544
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000545 /* roll attribute extent map forwards */
Dave Chinner95920cd2013-04-03 16:11:27 +1100546 lblkno += map.br_blockcount;
Dave Chinner26f71442013-05-21 18:02:03 +1000547 blkcnt -= map.br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100548 }
549 ASSERT(valuelen == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100550 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100551}
552
553/*
554 * Remove the value associated with an attribute by deleting the
555 * out-of-line buffer that it is stored on.
556 */
557int
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000558xfs_attr_rmtval_remove(
559 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100560{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000561 struct xfs_mount *mp = args->dp->i_mount;
562 xfs_dablk_t lblkno;
563 int blkcnt;
564 int error;
565 int done;
Dave Chinner95920cd2013-04-03 16:11:27 +1100566
567 trace_xfs_attr_rmtval_remove(args);
568
Dave Chinner95920cd2013-04-03 16:11:27 +1100569 /*
Dave Chinner58a72282013-05-21 18:02:04 +1000570 * Roll through the "value", invalidating the attribute value's blocks.
Dave Chinner95920cd2013-04-03 16:11:27 +1100571 */
572 lblkno = args->rmtblkno;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000573 blkcnt = args->rmtblkcnt;
574 while (blkcnt > 0) {
575 struct xfs_bmbt_irec map;
576 struct xfs_buf *bp;
577 xfs_daddr_t dblkno;
578 int dblkcnt;
579 int nmap;
Dave Chinner58a72282013-05-21 18:02:04 +1000580
Dave Chinner95920cd2013-04-03 16:11:27 +1100581 /*
582 * Try to remember where we decided to put the value.
583 */
584 nmap = 1;
585 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
Dave Chinner58a72282013-05-21 18:02:04 +1000586 blkcnt, &map, &nmap, XFS_BMAPI_ATTRFORK);
Dave Chinner95920cd2013-04-03 16:11:27 +1100587 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000588 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100589 ASSERT(nmap == 1);
590 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
591 (map.br_startblock != HOLESTARTBLOCK));
592
593 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
Dave Chinner58a72282013-05-21 18:02:04 +1000594 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100595
596 /*
597 * If the "remote" value is in the cache, remove it.
598 */
Dave Chinner58a72282013-05-21 18:02:04 +1000599 bp = xfs_incore(mp->m_ddev_targp, dblkno, dblkcnt, XBF_TRYLOCK);
Dave Chinner95920cd2013-04-03 16:11:27 +1100600 if (bp) {
601 xfs_buf_stale(bp);
602 xfs_buf_relse(bp);
603 bp = NULL;
604 }
605
Dave Chinner95920cd2013-04-03 16:11:27 +1100606 lblkno += map.br_blockcount;
Dave Chinner58a72282013-05-21 18:02:04 +1000607 blkcnt -= map.br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100608 }
609
610 /*
611 * Keep de-allocating extents until the remote-value region is gone.
612 */
613 lblkno = args->rmtblkno;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000614 blkcnt = args->rmtblkcnt;
Dave Chinner95920cd2013-04-03 16:11:27 +1100615 done = 0;
616 while (!done) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000617 int committed;
618
Dave Chinner95920cd2013-04-03 16:11:27 +1100619 xfs_bmap_init(args->flist, args->firstblock);
620 error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
Dave Chinnerab7bb612015-07-29 11:51:01 +1000621 XFS_BMAPI_ATTRFORK, 1, args->firstblock,
622 args->flist, &done);
Dave Chinner95920cd2013-04-03 16:11:27 +1100623 if (!error) {
624 error = xfs_bmap_finish(&args->trans, args->flist,
625 &committed);
626 }
627 if (error) {
628 ASSERT(committed);
629 args->trans = NULL;
630 xfs_bmap_cancel(args->flist);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100631 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100632 }
633
634 /*
635 * bmap_finish() may have committed the last trans and started
636 * a new one. We need the inode to be in all transactions.
637 */
638 if (committed)
639 xfs_trans_ijoin(args->trans, args->dp, 0);
640
641 /*
642 * Close out trans and start the next one in the chain.
643 */
644 error = xfs_trans_roll(&args->trans, args->dp);
645 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000646 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100647 }
Eric Sandeend99831f2014-06-22 15:03:54 +1000648 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100649}