blob: 20de88d1bf86205d126d5e27b43298af9b836a79 [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;
103 if (!uuid_equal(&rmt->rm_uuid, &mp->m_sb.sb_uuid))
104 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) +
Jie Liubba719b2014-01-01 19:28:03 +0800110 be32_to_cpu(rmt->rm_bytes) > 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;
162 struct xfs_buf_log_item *bip = bp->b_fspriv;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000163 char *ptr;
164 int len;
165 xfs_daddr_t bno;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000166 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100167
168 /* no verification of non-crc buffers */
169 if (!xfs_sb_version_hascrc(&mp->m_sb))
170 return;
171
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000172 ptr = bp->b_addr;
173 bno = bp->b_bn;
174 len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000175 ASSERT(len >= blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100176
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000177 while (len > 0) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000178 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) {
Dave Chinner24513372014-06-25 14:58:08 +1000179 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100180 xfs_verifier_error(bp);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000181 return;
182 }
183 if (bip) {
184 struct xfs_attr3_rmt_hdr *rmt;
185
186 rmt = (struct xfs_attr3_rmt_hdr *)ptr;
187 rmt->rm_lsn = cpu_to_be64(bip->bli_item.li_lsn);
188 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000189 xfs_update_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000190
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000191 len -= blksize;
192 ptr += blksize;
193 bno += BTOBB(blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100194 }
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000195 ASSERT(len == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100196}
197
198const struct xfs_buf_ops xfs_attr3_rmt_buf_ops = {
199 .verify_read = xfs_attr3_rmt_read_verify,
200 .verify_write = xfs_attr3_rmt_write_verify,
201};
202
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000203STATIC int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100204xfs_attr3_rmt_hdr_set(
205 struct xfs_mount *mp,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000206 void *ptr,
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100207 xfs_ino_t ino,
208 uint32_t offset,
209 uint32_t size,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000210 xfs_daddr_t bno)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100211{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000212 struct xfs_attr3_rmt_hdr *rmt = ptr;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100213
214 if (!xfs_sb_version_hascrc(&mp->m_sb))
215 return 0;
216
217 rmt->rm_magic = cpu_to_be32(XFS_ATTR3_RMT_MAGIC);
218 rmt->rm_offset = cpu_to_be32(offset);
219 rmt->rm_bytes = cpu_to_be32(size);
220 uuid_copy(&rmt->rm_uuid, &mp->m_sb.sb_uuid);
221 rmt->rm_owner = cpu_to_be64(ino);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000222 rmt->rm_blkno = cpu_to_be64(bno);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100223
224 return sizeof(struct xfs_attr3_rmt_hdr);
225}
226
227/*
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000228 * Helper functions to copy attribute data in and out of the one disk extents
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100229 */
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000230STATIC int
231xfs_attr_rmtval_copyout(
232 struct xfs_mount *mp,
233 struct xfs_buf *bp,
234 xfs_ino_t ino,
235 int *offset,
236 int *valuelen,
Dave Chinner836a94a2013-08-12 20:49:44 +1000237 __uint8_t **dst)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100238{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000239 char *src = bp->b_addr;
240 xfs_daddr_t bno = bp->b_bn;
241 int len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000242 int blksize = mp->m_attr_geo->blksize;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100243
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000244 ASSERT(len >= blksize);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100245
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000246 while (len > 0 && *valuelen > 0) {
247 int hdr_size = 0;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000248 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000249
Dave Chinnerc5c249b2013-08-12 20:49:43 +1000250 byte_cnt = min(*valuelen, byte_cnt);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000251
252 if (xfs_sb_version_hascrc(&mp->m_sb)) {
Eric Sandeen6d0081a2014-04-14 18:58:29 +1000253 if (!xfs_attr3_rmt_hdr_ok(src, ino, *offset,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000254 byte_cnt, bno)) {
255 xfs_alert(mp,
256"remote attribute header mismatch bno/off/len/owner (0x%llx/0x%x/Ox%x/0x%llx)",
257 bno, *offset, byte_cnt, ino);
Dave Chinner24513372014-06-25 14:58:08 +1000258 return -EFSCORRUPTED;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000259 }
260 hdr_size = sizeof(struct xfs_attr3_rmt_hdr);
261 }
262
263 memcpy(*dst, src + hdr_size, byte_cnt);
264
265 /* roll buffer forwards */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000266 len -= blksize;
267 src += blksize;
268 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000269
270 /* roll attribute data forwards */
271 *valuelen -= byte_cnt;
272 *dst += byte_cnt;
273 *offset += byte_cnt;
274 }
275 return 0;
276}
277
278STATIC void
279xfs_attr_rmtval_copyin(
280 struct xfs_mount *mp,
281 struct xfs_buf *bp,
282 xfs_ino_t ino,
283 int *offset,
284 int *valuelen,
Dave Chinner836a94a2013-08-12 20:49:44 +1000285 __uint8_t **src)
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000286{
287 char *dst = bp->b_addr;
288 xfs_daddr_t bno = bp->b_bn;
289 int len = BBTOB(bp->b_length);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000290 int blksize = mp->m_attr_geo->blksize;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000291
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000292 ASSERT(len >= blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000293
294 while (len > 0 && *valuelen > 0) {
295 int hdr_size;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000296 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000297
298 byte_cnt = min(*valuelen, byte_cnt);
299 hdr_size = xfs_attr3_rmt_hdr_set(mp, dst, ino, *offset,
300 byte_cnt, bno);
301
302 memcpy(dst + hdr_size, *src, byte_cnt);
303
304 /*
305 * If this is the last block, zero the remainder of it.
306 * Check that we are actually the last block, too.
307 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000308 if (byte_cnt + hdr_size < blksize) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000309 ASSERT(*valuelen - byte_cnt == 0);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000310 ASSERT(len == blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000311 memset(dst + hdr_size + byte_cnt, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000312 blksize - hdr_size - byte_cnt);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000313 }
314
315 /* roll buffer forwards */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000316 len -= blksize;
317 dst += blksize;
318 bno += BTOBB(blksize);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000319
320 /* roll attribute data forwards */
321 *valuelen -= byte_cnt;
322 *src += byte_cnt;
323 *offset += byte_cnt;
324 }
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100325}
326
327/*
Dave Chinner95920cd2013-04-03 16:11:27 +1100328 * Read the value associated with an attribute from the out-of-line buffer
329 * that we stored it in.
330 */
331int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100332xfs_attr_rmtval_get(
333 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100334{
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100335 struct xfs_bmbt_irec map[ATTR_RMTVALUE_MAPSIZE];
336 struct xfs_mount *mp = args->dp->i_mount;
337 struct xfs_buf *bp;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100338 xfs_dablk_t lblkno = args->rmtblkno;
Dave Chinner836a94a2013-08-12 20:49:44 +1000339 __uint8_t *dst = args->value;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000340 int valuelen;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100341 int nmap;
342 int error;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000343 int blkcnt = args->rmtblkcnt;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100344 int i;
345 int offset = 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100346
347 trace_xfs_attr_rmtval_get(args);
348
349 ASSERT(!(args->flags & ATTR_KERNOVAL));
Dave Chinner8275cdd2014-05-06 07:37:31 +1000350 ASSERT(args->rmtvaluelen == args->valuelen);
Dave Chinner95920cd2013-04-03 16:11:27 +1100351
Dave Chinner8275cdd2014-05-06 07:37:31 +1000352 valuelen = args->rmtvaluelen;
Dave Chinner95920cd2013-04-03 16:11:27 +1100353 while (valuelen > 0) {
354 nmap = ATTR_RMTVALUE_MAPSIZE;
355 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
Dave Chinner551b3822013-05-21 18:02:02 +1000356 blkcnt, map, &nmap,
Dave Chinner95920cd2013-04-03 16:11:27 +1100357 XFS_BMAPI_ATTRFORK);
358 if (error)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100359 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100360 ASSERT(nmap >= 1);
361
362 for (i = 0; (i < nmap) && (valuelen > 0); i++) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000363 xfs_daddr_t dblkno;
364 int dblkcnt;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100365
Dave Chinner95920cd2013-04-03 16:11:27 +1100366 ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
367 (map[i].br_startblock != HOLESTARTBLOCK));
368 dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000369 dblkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100370 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000371 dblkno, dblkcnt, 0, &bp,
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100372 &xfs_attr3_rmt_buf_ops);
Dave Chinner95920cd2013-04-03 16:11:27 +1100373 if (error)
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100374 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100375
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000376 error = xfs_attr_rmtval_copyout(mp, bp, args->dp->i_ino,
377 &offset, &valuelen,
378 &dst);
Dave Chinner95920cd2013-04-03 16:11:27 +1100379 xfs_buf_relse(bp);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000380 if (error)
381 return error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100382
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000383 /* roll attribute extent map forwards */
Dave Chinner95920cd2013-04-03 16:11:27 +1100384 lblkno += map[i].br_blockcount;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000385 blkcnt -= map[i].br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100386 }
387 }
388 ASSERT(valuelen == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100389 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100390}
391
392/*
393 * Write the value associated with an attribute into the out-of-line buffer
394 * that we have defined for it.
395 */
396int
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100397xfs_attr_rmtval_set(
398 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100399{
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100400 struct xfs_inode *dp = args->dp;
401 struct xfs_mount *mp = dp->i_mount;
402 struct xfs_bmbt_irec map;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100403 xfs_dablk_t lblkno;
404 xfs_fileoff_t lfileoff = 0;
Dave Chinner836a94a2013-08-12 20:49:44 +1000405 __uint8_t *src = args->value;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100406 int blkcnt;
407 int valuelen;
408 int nmap;
409 int error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100410 int offset = 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100411
412 trace_xfs_attr_rmtval_set(args);
413
Dave Chinner95920cd2013-04-03 16:11:27 +1100414 /*
415 * Find a "hole" in the attribute address space large enough for
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100416 * us to drop the new attribute's value into. Because CRC enable
417 * attributes have headers, we can't just do a straight byte to FSB
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000418 * conversion and have to take the header space into account.
Dave Chinner95920cd2013-04-03 16:11:27 +1100419 */
Dave Chinner8275cdd2014-05-06 07:37:31 +1000420 blkcnt = xfs_attr3_rmt_blocks(mp, args->rmtvaluelen);
Dave Chinner95920cd2013-04-03 16:11:27 +1100421 error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
422 XFS_ATTR_FORK);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100423 if (error)
424 return error;
425
Dave Chinner95920cd2013-04-03 16:11:27 +1100426 args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
427 args->rmtblkcnt = blkcnt;
428
429 /*
430 * Roll through the "value", allocating blocks on disk as required.
431 */
432 while (blkcnt > 0) {
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100433 int committed;
434
Dave Chinner95920cd2013-04-03 16:11:27 +1100435 /*
436 * Allocate a single extent, up to the size of the value.
437 */
438 xfs_bmap_init(args->flist, args->firstblock);
439 nmap = 1;
440 error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno,
441 blkcnt,
442 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
443 args->firstblock, args->total, &map, &nmap,
444 args->flist);
445 if (!error) {
446 error = xfs_bmap_finish(&args->trans, args->flist,
447 &committed);
448 }
449 if (error) {
450 ASSERT(committed);
451 args->trans = NULL;
452 xfs_bmap_cancel(args->flist);
Eric Sandeend99831f2014-06-22 15:03:54 +1000453 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100454 }
455
456 /*
457 * bmap_finish() may have committed the last trans and started
458 * a new one. We need the inode to be in all transactions.
459 */
460 if (committed)
461 xfs_trans_ijoin(args->trans, dp, 0);
462
463 ASSERT(nmap == 1);
464 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
465 (map.br_startblock != HOLESTARTBLOCK));
466 lblkno += map.br_blockcount;
467 blkcnt -= map.br_blockcount;
468
469 /*
470 * Start the next trans in the chain.
471 */
472 error = xfs_trans_roll(&args->trans, dp);
473 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000474 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100475 }
476
477 /*
478 * Roll through the "value", copying the attribute value to the
479 * already-allocated blocks. Blocks are written synchronously
480 * so that we can know they are all on disk before we turn off
481 * the INCOMPLETE flag.
482 */
483 lblkno = args->rmtblkno;
Dave Chinner26f71442013-05-21 18:02:03 +1000484 blkcnt = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000485 valuelen = args->rmtvaluelen;
Dave Chinner95920cd2013-04-03 16:11:27 +1100486 while (valuelen > 0) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000487 struct xfs_buf *bp;
488 xfs_daddr_t dblkno;
489 int dblkcnt;
Dave Chinner95920cd2013-04-03 16:11:27 +1100490
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000491 ASSERT(blkcnt > 0);
492
Dave Chinner95920cd2013-04-03 16:11:27 +1100493 xfs_bmap_init(args->flist, args->firstblock);
494 nmap = 1;
495 error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno,
Dave Chinner26f71442013-05-21 18:02:03 +1000496 blkcnt, &map, &nmap,
Dave Chinner95920cd2013-04-03 16:11:27 +1100497 XFS_BMAPI_ATTRFORK);
498 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000499 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100500 ASSERT(nmap == 1);
501 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
502 (map.br_startblock != HOLESTARTBLOCK));
503
504 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
Dave Chinner26f71442013-05-21 18:02:03 +1000505 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100506
Dave Chinner26f71442013-05-21 18:02:03 +1000507 bp = xfs_buf_get(mp->m_ddev_targp, dblkno, dblkcnt, 0);
Dave Chinner95920cd2013-04-03 16:11:27 +1100508 if (!bp)
Dave Chinner24513372014-06-25 14:58:08 +1000509 return -ENOMEM;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100510 bp->b_ops = &xfs_attr3_rmt_buf_ops;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100511
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000512 xfs_attr_rmtval_copyin(mp, bp, args->dp->i_ino, &offset,
513 &valuelen, &src);
Dave Chinner95920cd2013-04-03 16:11:27 +1100514
515 error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */
516 xfs_buf_relse(bp);
517 if (error)
518 return error;
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100519
Dave Chinner95920cd2013-04-03 16:11:27 +1100520
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000521 /* roll attribute extent map forwards */
Dave Chinner95920cd2013-04-03 16:11:27 +1100522 lblkno += map.br_blockcount;
Dave Chinner26f71442013-05-21 18:02:03 +1000523 blkcnt -= map.br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100524 }
525 ASSERT(valuelen == 0);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100526 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100527}
528
529/*
530 * Remove the value associated with an attribute by deleting the
531 * out-of-line buffer that it is stored on.
532 */
533int
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000534xfs_attr_rmtval_remove(
535 struct xfs_da_args *args)
Dave Chinner95920cd2013-04-03 16:11:27 +1100536{
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000537 struct xfs_mount *mp = args->dp->i_mount;
538 xfs_dablk_t lblkno;
539 int blkcnt;
540 int error;
541 int done;
Dave Chinner95920cd2013-04-03 16:11:27 +1100542
543 trace_xfs_attr_rmtval_remove(args);
544
Dave Chinner95920cd2013-04-03 16:11:27 +1100545 /*
Dave Chinner58a72282013-05-21 18:02:04 +1000546 * Roll through the "value", invalidating the attribute value's blocks.
Dave Chinner95920cd2013-04-03 16:11:27 +1100547 */
548 lblkno = args->rmtblkno;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000549 blkcnt = args->rmtblkcnt;
550 while (blkcnt > 0) {
551 struct xfs_bmbt_irec map;
552 struct xfs_buf *bp;
553 xfs_daddr_t dblkno;
554 int dblkcnt;
555 int nmap;
Dave Chinner58a72282013-05-21 18:02:04 +1000556
Dave Chinner95920cd2013-04-03 16:11:27 +1100557 /*
558 * Try to remember where we decided to put the value.
559 */
560 nmap = 1;
561 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
Dave Chinner58a72282013-05-21 18:02:04 +1000562 blkcnt, &map, &nmap, XFS_BMAPI_ATTRFORK);
Dave Chinner95920cd2013-04-03 16:11:27 +1100563 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000564 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100565 ASSERT(nmap == 1);
566 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
567 (map.br_startblock != HOLESTARTBLOCK));
568
569 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
Dave Chinner58a72282013-05-21 18:02:04 +1000570 dblkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
Dave Chinner95920cd2013-04-03 16:11:27 +1100571
572 /*
573 * If the "remote" value is in the cache, remove it.
574 */
Dave Chinner58a72282013-05-21 18:02:04 +1000575 bp = xfs_incore(mp->m_ddev_targp, dblkno, dblkcnt, XBF_TRYLOCK);
Dave Chinner95920cd2013-04-03 16:11:27 +1100576 if (bp) {
577 xfs_buf_stale(bp);
578 xfs_buf_relse(bp);
579 bp = NULL;
580 }
581
Dave Chinner95920cd2013-04-03 16:11:27 +1100582 lblkno += map.br_blockcount;
Dave Chinner58a72282013-05-21 18:02:04 +1000583 blkcnt -= map.br_blockcount;
Dave Chinner95920cd2013-04-03 16:11:27 +1100584 }
585
586 /*
587 * Keep de-allocating extents until the remote-value region is gone.
588 */
589 lblkno = args->rmtblkno;
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000590 blkcnt = args->rmtblkcnt;
Dave Chinner95920cd2013-04-03 16:11:27 +1100591 done = 0;
592 while (!done) {
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000593 int committed;
594
Dave Chinner95920cd2013-04-03 16:11:27 +1100595 xfs_bmap_init(args->flist, args->firstblock);
596 error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
597 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
598 1, args->firstblock, args->flist,
599 &done);
600 if (!error) {
601 error = xfs_bmap_finish(&args->trans, args->flist,
602 &committed);
603 }
604 if (error) {
605 ASSERT(committed);
606 args->trans = NULL;
607 xfs_bmap_cancel(args->flist);
Dave Chinnerd2e448d2013-04-03 16:11:28 +1100608 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100609 }
610
611 /*
612 * bmap_finish() may have committed the last trans and started
613 * a new one. We need the inode to be in all transactions.
614 */
615 if (committed)
616 xfs_trans_ijoin(args->trans, args->dp, 0);
617
618 /*
619 * Close out trans and start the next one in the chain.
620 */
621 error = xfs_trans_roll(&args->trans, args->dp);
622 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000623 return error;
Dave Chinner95920cd2013-04-03 16:11:27 +1100624 }
Eric Sandeend99831f2014-06-22 15:03:54 +1000625 return 0;
Dave Chinner95920cd2013-04-03 16:11:27 +1100626}