blob: b5adfecbb8ee897bc3745beb0103aa4635663012 [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_sb.h"
27#include "xfs_ag.h"
28#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110029#include "xfs_da_format.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110030#include "xfs_da_btree.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110031#include "xfs_inode.h"
32#include "xfs_alloc.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110034#include "xfs_inode_item.h"
35#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100036#include "xfs_bmap_util.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110037#include "xfs_attr.h"
38#include "xfs_attr_leaf.h"
39#include "xfs_attr_remote.h"
40#include "xfs_trans_space.h"
41#include "xfs_trace.h"
Dave Chinnerd2e448d2013-04-03 16:11:28 +110042#include "xfs_cksum.h"
43#include "xfs_buf_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110044#include "xfs_error.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110045
46#define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */
47
48/*
Dave Chinnerd2e448d2013-04-03 16:11:28 +110049 * Each contiguous block has a header, so it is not just a simple attribute
50 * length to FSB conversion.
51 */
Dave Chinner7bc0dc22013-05-21 18:02:08 +100052int
Dave Chinnerd2e448d2013-04-03 16:11:28 +110053xfs_attr3_rmt_blocks(
54 struct xfs_mount *mp,
55 int attrlen)
56{
Dave Chinner551b3822013-05-21 18:02:02 +100057 if (xfs_sb_version_hascrc(&mp->m_sb)) {
58 int buflen = XFS_ATTR3_RMT_BUF_SPACE(mp, mp->m_sb.sb_blocksize);
59 return (attrlen + buflen - 1) / buflen;
60 }
61 return XFS_B_TO_FSB(mp, attrlen);
Dave Chinnerd2e448d2013-04-03 16:11:28 +110062}
63
Dave Chinner7bc0dc22013-05-21 18:02:08 +100064/*
65 * Checking of the remote attribute header is split into two parts. The verifier
66 * does CRC, location and bounds checking, the unpacking function checks the
67 * attribute parameters and owner.
68 */
69static bool
70xfs_attr3_rmt_hdr_ok(
Dave Chinner7bc0dc22013-05-21 18:02:08 +100071 void *ptr,
72 xfs_ino_t ino,
73 uint32_t offset,
74 uint32_t size,
75 xfs_daddr_t bno)
76{
77 struct xfs_attr3_rmt_hdr *rmt = ptr;
78
79 if (bno != be64_to_cpu(rmt->rm_blkno))
80 return false;
81 if (offset != be32_to_cpu(rmt->rm_offset))
82 return false;
83 if (size != be32_to_cpu(rmt->rm_bytes))
84 return false;
85 if (ino != be64_to_cpu(rmt->rm_owner))
86 return false;
87
88 /* ok */
89 return true;
90}
91
Dave Chinnerd2e448d2013-04-03 16:11:28 +110092static bool
93xfs_attr3_rmt_verify(
Dave Chinner7bc0dc22013-05-21 18:02:08 +100094 struct xfs_mount *mp,
95 void *ptr,
96 int fsbsize,
97 xfs_daddr_t bno)
Dave Chinnerd2e448d2013-04-03 16:11:28 +110098{
Dave Chinner7bc0dc22013-05-21 18:02:08 +100099 struct xfs_attr3_rmt_hdr *rmt = ptr;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100100
101 if (!xfs_sb_version_hascrc(&mp->m_sb))
102 return false;
103 if (rmt->rm_magic != cpu_to_be32(XFS_ATTR3_RMT_MAGIC))
104 return false;
105 if (!uuid_equal(&rmt->rm_uuid, &mp->m_sb.sb_uuid))
106 return false;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000107 if (be64_to_cpu(rmt->rm_blkno) != bno)
108 return false;
109 if (be32_to_cpu(rmt->rm_bytes) > fsbsize - sizeof(*rmt))
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100110 return false;
111 if (be32_to_cpu(rmt->rm_offset) +
Jie Liubba719b2014-01-01 19:28:03 +0800112 be32_to_cpu(rmt->rm_bytes) > XATTR_SIZE_MAX)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100113 return false;
114 if (rmt->rm_owner == 0)
115 return false;
116
117 return true;
118}
119
120static void
121xfs_attr3_rmt_read_verify(
122 struct xfs_buf *bp)
123{
124 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000125 char *ptr;
126 int len;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000127 xfs_daddr_t bno;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000128 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100129
130 /* no verification of non-crc buffers */
131 if (!xfs_sb_version_hascrc(&mp->m_sb))
132 return;
133
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000134 ptr = bp->b_addr;
135 bno = bp->b_bn;
136 len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000137 ASSERT(len >= blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000138
139 while (len > 0) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000140 if (!xfs_verify_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF)) {
Eric Sandeence5028c2014-02-27 15:23:10 +1100141 xfs_buf_ioerror(bp, EFSBADCRC);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000142 break;
143 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000144 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
Eric Sandeence5028c2014-02-27 15:23:10 +1100145 xfs_buf_ioerror(bp, EFSCORRUPTED);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000146 break;
147 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000148 len -= blksize;
149 ptr += blksize;
150 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000151 }
152
Eric Sandeence5028c2014-02-27 15:23:10 +1100153 if (bp->b_error)
154 xfs_verifier_error(bp);
155 else
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000156 ASSERT(len == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100157}
158
159static void
160xfs_attr3_rmt_write_verify(
161 struct xfs_buf *bp)
162{
163 struct xfs_mount *mp = bp->b_target->bt_mount;
164 struct xfs_buf_log_item *bip = bp->b_fspriv;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000165 char *ptr;
166 int len;
167 xfs_daddr_t bno;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000168 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100169
170 /* no verification of non-crc buffers */
171 if (!xfs_sb_version_hascrc(&mp->m_sb))
172 return;
173
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000174 ptr = bp->b_addr;
175 bno = bp->b_bn;
176 len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000177 ASSERT(len >= blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100178
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000179 while (len > 0) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000180 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000181 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100182 xfs_verifier_error(bp);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000183 return;
184 }
185 if (bip) {
186 struct xfs_attr3_rmt_hdr *rmt;
187
188 rmt = (struct xfs_attr3_rmt_hdr *)ptr;
189 rmt->rm_lsn = cpu_to_be64(bip->bli_item.li_lsn);
190 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000191 xfs_update_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000192
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000193 len -= blksize;
194 ptr += blksize;
195 bno += BTOBB(blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100196 }
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000197 ASSERT(len == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100198}
199
200const struct xfs_buf_ops xfs_attr3_rmt_buf_ops = {
201 .verify_read = xfs_attr3_rmt_read_verify,
202 .verify_write = xfs_attr3_rmt_write_verify,
203};
204
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000205STATIC int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100206xfs_attr3_rmt_hdr_set(
207 struct xfs_mount *mp,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000208 void *ptr,
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100209 xfs_ino_t ino,
210 uint32_t offset,
211 uint32_t size,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000212 xfs_daddr_t bno)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100213{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000214 struct xfs_attr3_rmt_hdr *rmt = ptr;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100215
216 if (!xfs_sb_version_hascrc(&mp->m_sb))
217 return 0;
218
219 rmt->rm_magic = cpu_to_be32(XFS_ATTR3_RMT_MAGIC);
220 rmt->rm_offset = cpu_to_be32(offset);
221 rmt->rm_bytes = cpu_to_be32(size);
222 uuid_copy(&rmt->rm_uuid, &mp->m_sb.sb_uuid);
223 rmt->rm_owner = cpu_to_be64(ino);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000224 rmt->rm_blkno = cpu_to_be64(bno);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100225
226 return sizeof(struct xfs_attr3_rmt_hdr);
227}
228
229/*
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000230 * Helper functions to copy attribute data in and out of the one disk extents
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100231 */
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000232STATIC int
233xfs_attr_rmtval_copyout(
234 struct xfs_mount *mp,
235 struct xfs_buf *bp,
236 xfs_ino_t ino,
237 int *offset,
238 int *valuelen,
Dave Chinner836a94a2013-08-12 20:49:44 +1000239 __uint8_t **dst)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100240{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000241 char *src = bp->b_addr;
242 xfs_daddr_t bno = bp->b_bn;
243 int len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000244 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100245
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000246 ASSERT(len >= blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100247
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000248 while (len > 0 && *valuelen > 0) {
249 int hdr_size = 0;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000250 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000251
Dave Chinnerc5c249b2013-08-12 20:49:43 +1000252 byte_cnt = min(*valuelen, byte_cnt);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000253
254 if (xfs_sb_version_hascrc(&mp->m_sb)) {
Eric Sandeen6d0081a2014-04-14 18:58:29 +1000255 if (!xfs_attr3_rmt_hdr_ok(src, ino, *offset,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000256 byte_cnt, bno)) {
257 xfs_alert(mp,
258"remote attribute header mismatch bno/off/len/owner (0x%llx/0x%x/Ox%x/0x%llx)",
259 bno, *offset, byte_cnt, ino);
260 return EFSCORRUPTED;
261 }
262 hdr_size = sizeof(struct xfs_attr3_rmt_hdr);
263 }
264
265 memcpy(*dst, src + hdr_size, byte_cnt);
266
267 /* roll buffer forwards */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000268 len -= blksize;
269 src += blksize;
270 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000271
272 /* roll attribute data forwards */
273 *valuelen -= byte_cnt;
274 *dst += byte_cnt;
275 *offset += byte_cnt;
276 }
277 return 0;
278}
279
280STATIC void
281xfs_attr_rmtval_copyin(
282 struct xfs_mount *mp,
283 struct xfs_buf *bp,
284 xfs_ino_t ino,
285 int *offset,
286 int *valuelen,
Dave Chinner836a94a2013-08-12 20:49:44 +1000287 __uint8_t **src)
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000288{
289 char *dst = bp->b_addr;
290 xfs_daddr_t bno = bp->b_bn;
291 int len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000292 int blksize = mp->m_attr_geo->blksize;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000293
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000294 ASSERT(len >= blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000295
296 while (len > 0 && *valuelen > 0) {
297 int hdr_size;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000298 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000299
300 byte_cnt = min(*valuelen, byte_cnt);
301 hdr_size = xfs_attr3_rmt_hdr_set(mp, dst, ino, *offset,
302 byte_cnt, bno);
303
304 memcpy(dst + hdr_size, *src, byte_cnt);
305
306 /*
307 * If this is the last block, zero the remainder of it.
308 * Check that we are actually the last block, too.
309 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000310 if (byte_cnt + hdr_size < blksize) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000311 ASSERT(*valuelen - byte_cnt == 0);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000312 ASSERT(len == blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000313 memset(dst + hdr_size + byte_cnt, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000314 blksize - hdr_size - byte_cnt);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000315 }
316
317 /* roll buffer forwards */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000318 len -= blksize;
319 dst += blksize;
320 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000321
322 /* roll attribute data forwards */
323 *valuelen -= byte_cnt;
324 *src += byte_cnt;
325 *offset += byte_cnt;
326 }
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100327}
328
329/*
Dave Chinner95920cd2013-04-03 16:11:27 +1100330 * Read the value associated with an attribute from the out-of-line buffer
331 * that we stored it in.
332 */
333int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100334xfs_attr_rmtval_get(
335 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100336{
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100337 struct xfs_bmbt_irec map[ATTR_RMTVALUE_MAPSIZE];
338 struct xfs_mount *mp = args->dp->i_mount;
339 struct xfs_buf *bp;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100340 xfs_dablk_t lblkno = args->rmtblkno;
Dave Chinner836a94a2013-08-12 20:49:44 +1000341 __uint8_t *dst = args->value;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000342 int valuelen;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100343 int nmap;
344 int error;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000345 int blkcnt = args->rmtblkcnt;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100346 int i;
347 int offset = 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100348
349 trace_xfs_attr_rmtval_get(args);
350
351 ASSERT(!(args->flags & ATTR_KERNOVAL));
Dave Chinner8275cdd2014-05-06 07:37:31 +1000352 ASSERT(args->rmtvaluelen == args->valuelen);
Dave Chinner95920cd2013-04-03 16:11:27 +1100353
Dave Chinner8275cdd2014-05-06 07:37:31 +1000354 valuelen = args->rmtvaluelen;
Dave Chinner95920cd2013-04-03 16:11:27 +1100355 while (valuelen > 0) {
356 nmap = ATTR_RMTVALUE_MAPSIZE;
357 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
Dave Chinner551b3822013-05-21 18:02:02 +1000358 blkcnt, map, &nmap,
Dave Chinner95920cd2013-04-03 16:11:27 +1100359 XFS_BMAPI_ATTRFORK);
360 if (error)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100361 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100362 ASSERT(nmap >= 1);
363
364 for (i = 0; (i < nmap) && (valuelen > 0); i++) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000365 xfs_daddr_t dblkno;
366 int dblkcnt;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100367
Dave Chinner95920cd2013-04-03 16:11:27 +1100368 ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
369 (map[i].br_startblock != HOLESTARTBLOCK));
370 dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000371 dblkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100372 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000373 dblkno, dblkcnt, 0, &bp,
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100374 &xfs_attr3_rmt_buf_ops);
Dave Chinner95920cd2013-04-03 16:11:27 +1100375 if (error)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100376 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100377
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000378 error = xfs_attr_rmtval_copyout(mp, bp, args->dp->i_ino,
379 &offset, &valuelen,
380 &dst);
Dave Chinner95920cd2013-04-03 16:11:27 +1100381 xfs_buf_relse(bp);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000382 if (error)
383 return error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100384
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000385 /* roll attribute extent map forwards */
Dave Chinner95920cd2013-04-03 16:11:27 +1100386 lblkno += map[i].br_blockcount;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000387 blkcnt -= map[i].br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100388 }
389 }
390 ASSERT(valuelen == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100391 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100392}
393
394/*
395 * Write the value associated with an attribute into the out-of-line buffer
396 * that we have defined for it.
397 */
398int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100399xfs_attr_rmtval_set(
400 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100401{
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100402 struct xfs_inode *dp = args->dp;
403 struct xfs_mount *mp = dp->i_mount;
404 struct xfs_bmbt_irec map;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100405 xfs_dablk_t lblkno;
406 xfs_fileoff_t lfileoff = 0;
Dave Chinner836a94a2013-08-12 20:49:44 +1000407 __uint8_t *src = args->value;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100408 int blkcnt;
409 int valuelen;
410 int nmap;
411 int error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100412 int offset = 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100413
414 trace_xfs_attr_rmtval_set(args);
415
Dave Chinner95920cd2013-04-03 16:11:27 +1100416 /*
417 * Find a "hole" in the attribute address space large enough for
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100418 * us to drop the new attribute's value into. Because CRC enable
419 * attributes have headers, we can't just do a straight byte to FSB
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000420 * conversion and have to take the header space into account.
Dave Chinner95920cd2013-04-03 16:11:27 +1100421 */
Dave Chinner8275cdd2014-05-06 07:37:31 +1000422 blkcnt = xfs_attr3_rmt_blocks(mp, args->rmtvaluelen);
Dave Chinner95920cd2013-04-03 16:11:27 +1100423 error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
424 XFS_ATTR_FORK);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100425 if (error)
426 return error;
427
Dave Chinner95920cd2013-04-03 16:11:27 +1100428 args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
429 args->rmtblkcnt = blkcnt;
430
431 /*
432 * Roll through the "value", allocating blocks on disk as required.
433 */
434 while (blkcnt > 0) {
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100435 int committed;
436
Dave Chinner95920cd2013-04-03 16:11:27 +1100437 /*
438 * Allocate a single extent, up to the size of the value.
439 */
440 xfs_bmap_init(args->flist, args->firstblock);
441 nmap = 1;
442 error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno,
443 blkcnt,
444 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
445 args->firstblock, args->total, &map, &nmap,
446 args->flist);
447 if (!error) {
448 error = xfs_bmap_finish(&args->trans, args->flist,
449 &committed);
450 }
451 if (error) {
452 ASSERT(committed);
453 args->trans = NULL;
454 xfs_bmap_cancel(args->flist);
455 return(error);
456 }
457
458 /*
459 * bmap_finish() may have committed the last trans and started
460 * a new one. We need the inode to be in all transactions.
461 */
462 if (committed)
463 xfs_trans_ijoin(args->trans, dp, 0);
464
465 ASSERT(nmap == 1);
466 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
467 (map.br_startblock != HOLESTARTBLOCK));
468 lblkno += map.br_blockcount;
469 blkcnt -= map.br_blockcount;
470
471 /*
472 * Start the next trans in the chain.
473 */
474 error = xfs_trans_roll(&args->trans, dp);
475 if (error)
476 return (error);
477 }
478
479 /*
480 * Roll through the "value", copying the attribute value to the
481 * already-allocated blocks. Blocks are written synchronously
482 * so that we can know they are all on disk before we turn off
483 * the INCOMPLETE flag.
484 */
485 lblkno = args->rmtblkno;
Dave Chinner26f71442013-05-21 18:02:03 +1000486 blkcnt = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000487 valuelen = args->rmtvaluelen;
Dave Chinner95920cd2013-04-03 16:11:27 +1100488 while (valuelen > 0) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000489 struct xfs_buf *bp;
490 xfs_daddr_t dblkno;
491 int dblkcnt;
Dave Chinner95920cd2013-04-03 16:11:27 +1100492
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000493 ASSERT(blkcnt > 0);
494
Dave Chinner95920cd2013-04-03 16:11:27 +1100495 xfs_bmap_init(args->flist, args->firstblock);
496 nmap = 1;
497 error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno,
Dave Chinner26f71442013-05-21 18:02:03 +1000498 blkcnt, &map, &nmap,
Dave Chinner95920cd2013-04-03 16:11:27 +1100499 XFS_BMAPI_ATTRFORK);
500 if (error)
501 return(error);
502 ASSERT(nmap == 1);
503 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
504 (map.br_startblock != HOLESTARTBLOCK));
505
506 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
Dave Chinner26f71442013-05-21 18:02:03 +1000507 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100508
Dave Chinner26f71442013-05-21 18:02:03 +1000509 bp = xfs_buf_get(mp->m_ddev_targp, dblkno, dblkcnt, 0);
Dave Chinner95920cd2013-04-03 16:11:27 +1100510 if (!bp)
511 return ENOMEM;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100512 bp->b_ops = &xfs_attr3_rmt_buf_ops;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100513
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000514 xfs_attr_rmtval_copyin(mp, bp, args->dp->i_ino, &offset,
515 &valuelen, &src);
Dave Chinner95920cd2013-04-03 16:11:27 +1100516
517 error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */
518 xfs_buf_relse(bp);
519 if (error)
520 return error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100521
Dave Chinner95920cd2013-04-03 16:11:27 +1100522
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000523 /* roll attribute extent map forwards */
Dave Chinner95920cd2013-04-03 16:11:27 +1100524 lblkno += map.br_blockcount;
Dave Chinner26f71442013-05-21 18:02:03 +1000525 blkcnt -= map.br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100526 }
527 ASSERT(valuelen == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100528 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100529}
530
531/*
532 * Remove the value associated with an attribute by deleting the
533 * out-of-line buffer that it is stored on.
534 */
535int
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000536xfs_attr_rmtval_remove(
537 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100538{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000539 struct xfs_mount *mp = args->dp->i_mount;
540 xfs_dablk_t lblkno;
541 int blkcnt;
542 int error;
543 int done;
Dave Chinner95920cd2013-04-03 16:11:27 +1100544
545 trace_xfs_attr_rmtval_remove(args);
546
Dave Chinner95920cd2013-04-03 16:11:27 +1100547 /*
Dave Chinner58a72282013-05-21 18:02:04 +1000548 * Roll through the "value", invalidating the attribute value's blocks.
Dave Chinner95920cd2013-04-03 16:11:27 +1100549 */
550 lblkno = args->rmtblkno;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000551 blkcnt = args->rmtblkcnt;
552 while (blkcnt > 0) {
553 struct xfs_bmbt_irec map;
554 struct xfs_buf *bp;
555 xfs_daddr_t dblkno;
556 int dblkcnt;
557 int nmap;
Dave Chinner58a72282013-05-21 18:02:04 +1000558
Dave Chinner95920cd2013-04-03 16:11:27 +1100559 /*
560 * Try to remember where we decided to put the value.
561 */
562 nmap = 1;
563 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
Dave Chinner58a72282013-05-21 18:02:04 +1000564 blkcnt, &map, &nmap, XFS_BMAPI_ATTRFORK);
Dave Chinner95920cd2013-04-03 16:11:27 +1100565 if (error)
566 return(error);
567 ASSERT(nmap == 1);
568 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
569 (map.br_startblock != HOLESTARTBLOCK));
570
571 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
Dave Chinner58a72282013-05-21 18:02:04 +1000572 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100573
574 /*
575 * If the "remote" value is in the cache, remove it.
576 */
Dave Chinner58a72282013-05-21 18:02:04 +1000577 bp = xfs_incore(mp->m_ddev_targp, dblkno, dblkcnt, XBF_TRYLOCK);
Dave Chinner95920cd2013-04-03 16:11:27 +1100578 if (bp) {
579 xfs_buf_stale(bp);
580 xfs_buf_relse(bp);
581 bp = NULL;
582 }
583
Dave Chinner95920cd2013-04-03 16:11:27 +1100584 lblkno += map.br_blockcount;
Dave Chinner58a72282013-05-21 18:02:04 +1000585 blkcnt -= map.br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100586 }
587
588 /*
589 * Keep de-allocating extents until the remote-value region is gone.
590 */
591 lblkno = args->rmtblkno;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000592 blkcnt = args->rmtblkcnt;
Dave Chinner95920cd2013-04-03 16:11:27 +1100593 done = 0;
594 while (!done) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000595 int committed;
596
Dave Chinner95920cd2013-04-03 16:11:27 +1100597 xfs_bmap_init(args->flist, args->firstblock);
598 error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
599 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
600 1, args->firstblock, args->flist,
601 &done);
602 if (!error) {
603 error = xfs_bmap_finish(&args->trans, args->flist,
604 &committed);
605 }
606 if (error) {
607 ASSERT(committed);
608 args->trans = NULL;
609 xfs_bmap_cancel(args->flist);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100610 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100611 }
612
613 /*
614 * bmap_finish() may have committed the last trans and started
615 * a new one. We need the inode to be in all transactions.
616 */
617 if (committed)
618 xfs_trans_ijoin(args->trans, args->dp, 0);
619
620 /*
621 * Close out trans and start the next one in the chain.
622 */
623 error = xfs_trans_roll(&args->trans, args->dp);
624 if (error)
625 return (error);
626 }
627 return(0);
628}