blob: b11abfad81a5bb8f8634c2d347d6441aae6cdfb0 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason065631f2008-02-20 12:07:25 -050019#include <linux/bio.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
Chris Mason1e1d2702007-03-15 19:03:33 -040022#include "ctree.h"
Chris Masondee26a92007-03-26 16:00:06 -040023#include "disk-io.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040024#include "transaction.h"
Chris Mason1de037a2007-05-29 15:17:08 -040025#include "print-tree.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040026
Chris Masond3977122009-01-05 21:25:51 -050027#define MAX_CSUM_ITEMS(r, size) ((((BTRFS_LEAF_DATA_SIZE(r) - \
Josef Bacik607d4322008-12-02 07:17:45 -050028 sizeof(struct btrfs_item) * 2) / \
29 size) - 1))
Chris Masonb18c6682007-04-17 13:26:50 -040030int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040031 struct btrfs_root *root,
32 u64 objectid, u64 pos,
33 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040034 u64 num_bytes, u64 offset, u64 ram_bytes,
35 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040036{
Chris Masondee26a92007-03-26 16:00:06 -040037 int ret = 0;
38 struct btrfs_file_extent_item *item;
39 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040040 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040041 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040042
Chris Mason5caf2a02007-04-02 11:20:42 -040043 path = btrfs_alloc_path();
44 BUG_ON(!path);
Chris Masondee26a92007-03-26 16:00:06 -040045 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040046 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040047 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
48
Chris Mason5caf2a02007-04-02 11:20:42 -040049 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040050 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040051 if (ret < 0)
52 goto out;
Chris Mason9773a782007-03-27 11:26:26 -040053 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -040054 leaf = path->nodes[0];
55 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040056 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040057 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040058 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040059 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040060 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040061 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040062 btrfs_set_file_extent_generation(leaf, item, trans->transid);
63 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040064 btrfs_set_file_extent_compression(leaf, item, compression);
65 btrfs_set_file_extent_encryption(leaf, item, encryption);
66 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
67
Chris Mason5f39d392007-10-15 16:14:19 -040068 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040069out:
Chris Mason5caf2a02007-04-02 11:20:42 -040070 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040071 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040072}
Chris Masondee26a92007-03-26 16:00:06 -040073
Chris Masonb18c6682007-04-17 13:26:50 -040074struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
75 struct btrfs_root *root,
76 struct btrfs_path *path,
Chris Masond20f7042008-12-08 16:58:54 -050077 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040078{
79 int ret;
80 struct btrfs_key file_key;
81 struct btrfs_key found_key;
82 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040083 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040084 u64 csum_offset = 0;
Josef Bacik607d4322008-12-02 07:17:45 -050085 u16 csum_size =
86 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040087 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040088
Chris Masond20f7042008-12-08 16:58:54 -050089 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
90 file_key.offset = bytenr;
91 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -040092 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -040093 if (ret < 0)
94 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -040095 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -040096 if (ret > 0) {
97 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -040098 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -040099 goto fail;
100 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400101 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500102 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400103 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500104
105 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400106 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400107 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500108 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400109
110 if (csum_offset >= csums_in_item) {
111 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400112 goto fail;
113 }
114 }
115 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400116 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500117 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400118 return item;
119fail:
120 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400121 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400122 return ERR_PTR(ret);
123}
124
125
Chris Masondee26a92007-03-26 16:00:06 -0400126int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
127 struct btrfs_root *root,
128 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400129 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400130{
131 int ret;
132 struct btrfs_key file_key;
133 int ins_len = mod < 0 ? -1 : 0;
134 int cow = mod != 0;
135
136 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400137 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400138 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
139 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
140 return ret;
141}
Chris Masonf254e522007-03-29 15:15:27 -0400142
Yan Zheng17d217f2008-12-12 10:03:38 -0500143
Chris Mason61b49442008-07-31 15:42:53 -0400144int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500145 struct bio *bio, u32 *dst)
Chris Mason61b49442008-07-31 15:42:53 -0400146{
147 u32 sum;
148 struct bio_vec *bvec = bio->bi_io_vec;
149 int bio_index = 0;
150 u64 offset;
151 u64 item_start_offset = 0;
152 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500153 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400154 u32 diff;
Josef Bacik607d4322008-12-02 07:17:45 -0500155 u16 csum_size =
156 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400157 int ret;
158 struct btrfs_path *path;
159 struct btrfs_csum_item *item = NULL;
160 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
161
162 path = btrfs_alloc_path();
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400163 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
164 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400165
166 WARN_ON(bio->bi_vcnt <= 0);
167
Chris Masond20f7042008-12-08 16:58:54 -0500168 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masond3977122009-01-05 21:25:51 -0500169 while (bio_index < bio->bi_vcnt) {
Chris Mason61b49442008-07-31 15:42:53 -0400170 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500171 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400172 if (ret == 0)
173 goto found;
174
Chris Masond20f7042008-12-08 16:58:54 -0500175 if (!item || disk_bytenr < item_start_offset ||
176 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400177 struct btrfs_key found_key;
178 u32 item_size;
179
180 if (item)
181 btrfs_release_path(root, path);
Chris Masond20f7042008-12-08 16:58:54 -0500182 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
183 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400184 if (IS_ERR(item)) {
185 ret = PTR_ERR(item);
186 if (ret == -ENOENT || ret == -EFBIG)
187 ret = 0;
188 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500189 if (BTRFS_I(inode)->root->root_key.objectid ==
190 BTRFS_DATA_RELOC_TREE_OBJECTID) {
191 set_extent_bits(io_tree, offset,
192 offset + bvec->bv_len - 1,
193 EXTENT_NODATASUM, GFP_NOFS);
194 } else {
Chris Masond3977122009-01-05 21:25:51 -0500195 printk(KERN_INFO "btrfs no csum found "
196 "for inode %lu start %llu\n",
197 inode->i_ino,
Yan Zheng17d217f2008-12-12 10:03:38 -0500198 (unsigned long long)offset);
199 }
Chris Mason6dab8152008-08-04 08:35:53 -0400200 item = NULL;
Chris Mason39be25c2008-11-10 11:50:50 -0500201 btrfs_release_path(root, path);
Chris Mason61b49442008-07-31 15:42:53 -0400202 goto found;
203 }
204 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
205 path->slots[0]);
206
207 item_start_offset = found_key.offset;
208 item_size = btrfs_item_size_nr(path->nodes[0],
209 path->slots[0]);
210 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500211 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400212 root->sectorsize;
213 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
214 struct btrfs_csum_item);
215 }
216 /*
217 * this byte range must be able to fit inside
218 * a single leaf so it will also fit inside a u32
219 */
Chris Masond20f7042008-12-08 16:58:54 -0500220 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400221 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500222 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400223
224 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400225 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500226 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400227found:
Chris Masond20f7042008-12-08 16:58:54 -0500228 if (dst)
229 *dst++ = sum;
230 else
231 set_state_private(io_tree, offset, sum);
232 disk_bytenr += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400233 bio_index++;
234 bvec++;
235 }
236 btrfs_free_path(path);
237 return 0;
238}
239
Yan Zheng17d217f2008-12-12 10:03:38 -0500240int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
241 struct list_head *list)
242{
243 struct btrfs_key key;
244 struct btrfs_path *path;
245 struct extent_buffer *leaf;
246 struct btrfs_ordered_sum *sums;
247 struct btrfs_sector_sum *sector_sum;
248 struct btrfs_csum_item *item;
249 unsigned long offset;
250 int ret;
251 size_t size;
252 u64 csum_end;
253 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
254
255 path = btrfs_alloc_path();
256 BUG_ON(!path);
257
258 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
259 key.offset = start;
260 key.type = BTRFS_EXTENT_CSUM_KEY;
261
262 ret = btrfs_search_slot(NULL, root->fs_info->csum_root,
263 &key, path, 0, 0);
264 if (ret < 0)
265 goto fail;
266 if (ret > 0 && path->slots[0] > 0) {
267 leaf = path->nodes[0];
268 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
269 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
270 key.type == BTRFS_EXTENT_CSUM_KEY) {
271 offset = (start - key.offset) >>
272 root->fs_info->sb->s_blocksize_bits;
273 if (offset * csum_size <
274 btrfs_item_size_nr(leaf, path->slots[0] - 1))
275 path->slots[0]--;
276 }
277 }
278
279 while (start <= end) {
280 leaf = path->nodes[0];
281 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
282 ret = btrfs_next_leaf(root->fs_info->csum_root, path);
283 if (ret < 0)
284 goto fail;
285 if (ret > 0)
286 break;
287 leaf = path->nodes[0];
288 }
289
290 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
291 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
292 key.type != BTRFS_EXTENT_CSUM_KEY)
293 break;
294
295 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
296 if (key.offset > end)
297 break;
298
299 if (key.offset > start)
300 start = key.offset;
301
302 size = btrfs_item_size_nr(leaf, path->slots[0]);
303 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500304 if (csum_end <= start) {
305 path->slots[0]++;
306 continue;
307 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500308
309 size = min(csum_end, end + 1) - start;
310 sums = kzalloc(btrfs_ordered_sum_size(root, size), GFP_NOFS);
311 BUG_ON(!sums);
312
313 sector_sum = sums->sums;
314 sums->bytenr = start;
315 sums->len = size;
316
317 offset = (start - key.offset) >>
318 root->fs_info->sb->s_blocksize_bits;
319 offset *= csum_size;
320
321 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
322 struct btrfs_csum_item);
323 while (size > 0) {
324 read_extent_buffer(path->nodes[0], &sector_sum->sum,
325 ((unsigned long)item) + offset,
326 csum_size);
327 sector_sum->bytenr = start;
328
329 size -= root->sectorsize;
330 start += root->sectorsize;
331 offset += csum_size;
332 sector_sum++;
333 }
334 list_add_tail(&sums->list, list);
335
336 path->slots[0]++;
337 }
338 ret = 0;
339fail:
340 btrfs_free_path(path);
341 return ret;
342}
343
Chris Mason3edf7d32008-07-18 06:17:13 -0400344int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500345 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400346{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400347 struct btrfs_ordered_sum *sums;
348 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400349 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400350 char *data;
351 struct bio_vec *bvec = bio->bi_io_vec;
352 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400353 unsigned long total_bytes = 0;
354 unsigned long this_sum_bytes = 0;
355 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500356 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400357
Chris Masone6dcd2d2008-07-17 12:53:50 -0400358 WARN_ON(bio->bi_vcnt <= 0);
359 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400360 if (!sums)
361 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400362
Chris Masoned98b562008-07-22 23:06:42 -0400363 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500364 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400365 sums->len = bio->bi_size;
366 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500367
368 if (contig)
369 offset = file_start;
370 else
371 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
372
373 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400374 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500375 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400376
Chris Masond3977122009-01-05 21:25:51 -0500377 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500378 if (!contig)
379 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
380
381 if (!contig && (offset >= ordered->file_offset + ordered->len ||
382 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400383 unsigned long bytes_left;
384 sums->len = this_sum_bytes;
385 this_sum_bytes = 0;
386 btrfs_add_ordered_sum(inode, ordered, sums);
387 btrfs_put_ordered_extent(ordered);
388
389 bytes_left = bio->bi_size - total_bytes;
390
391 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
392 GFP_NOFS);
393 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400394 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400395 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500396 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400397 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500398 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400399 }
400
Chris Masone0156402008-04-16 11:15:20 -0400401 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400402 sector_sum->sum = ~(u32)0;
403 sector_sum->sum = btrfs_csum_data(root,
404 data + bvec->bv_offset,
405 sector_sum->sum,
406 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400407 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400408 btrfs_csum_final(sector_sum->sum,
409 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500410 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400411
Chris Masone6dcd2d2008-07-17 12:53:50 -0400412 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400413 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400414 total_bytes += bvec->bv_len;
415 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500416 disk_bytenr += bvec->bv_len;
417 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400418 bvec++;
419 }
Chris Masoned98b562008-07-22 23:06:42 -0400420 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400421 btrfs_add_ordered_sum(inode, ordered, sums);
422 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400423 return 0;
424}
425
Chris Mason459931e2008-12-10 09:10:46 -0500426/*
427 * helper function for csum removal, this expects the
428 * key to describe the csum pointed to by the path, and it expects
429 * the csum to overlap the range [bytenr, len]
430 *
431 * The csum should not be entirely contained in the range and the
432 * range should not be entirely contained in the csum.
433 *
434 * This calls btrfs_truncate_item with the correct args based on the
435 * overlap, and fixes up the key as required.
436 */
437static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
438 struct btrfs_root *root,
439 struct btrfs_path *path,
440 struct btrfs_key *key,
441 u64 bytenr, u64 len)
442{
443 struct extent_buffer *leaf;
444 u16 csum_size =
445 btrfs_super_csum_size(&root->fs_info->super_copy);
446 u64 csum_end;
447 u64 end_byte = bytenr + len;
448 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
449 int ret;
450
451 leaf = path->nodes[0];
452 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
453 csum_end <<= root->fs_info->sb->s_blocksize_bits;
454 csum_end += key->offset;
455
456 if (key->offset < bytenr && csum_end <= end_byte) {
457 /*
458 * [ bytenr - len ]
459 * [ ]
460 * [csum ]
461 * A simple truncate off the end of the item
462 */
463 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
464 new_size *= csum_size;
465 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
466 BUG_ON(ret);
467 } else if (key->offset >= bytenr && csum_end > end_byte &&
468 end_byte > key->offset) {
469 /*
470 * [ bytenr - len ]
471 * [ ]
472 * [csum ]
473 * we need to truncate from the beginning of the csum
474 */
475 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
476 new_size *= csum_size;
477
478 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
479 BUG_ON(ret);
480
481 key->offset = end_byte;
482 ret = btrfs_set_item_key_safe(trans, root, path, key);
483 BUG_ON(ret);
484 } else {
485 BUG();
486 }
487 return 0;
488}
489
490/*
491 * deletes the csum items from the csum tree for a given
492 * range of bytes.
493 */
494int btrfs_del_csums(struct btrfs_trans_handle *trans,
495 struct btrfs_root *root, u64 bytenr, u64 len)
496{
497 struct btrfs_path *path;
498 struct btrfs_key key;
499 u64 end_byte = bytenr + len;
500 u64 csum_end;
501 struct extent_buffer *leaf;
502 int ret;
503 u16 csum_size =
504 btrfs_super_csum_size(&root->fs_info->super_copy);
505 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
506
507 root = root->fs_info->csum_root;
508
509 path = btrfs_alloc_path();
510
Chris Masond3977122009-01-05 21:25:51 -0500511 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500512 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
513 key.offset = end_byte - 1;
514 key.type = BTRFS_EXTENT_CSUM_KEY;
515
516 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
517 if (ret > 0) {
518 if (path->slots[0] == 0)
519 goto out;
520 path->slots[0]--;
521 }
522 leaf = path->nodes[0];
523 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
524
525 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
526 key.type != BTRFS_EXTENT_CSUM_KEY) {
527 break;
528 }
529
530 if (key.offset >= end_byte)
531 break;
532
533 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
534 csum_end <<= blocksize_bits;
535 csum_end += key.offset;
536
537 /* this csum ends before we start, we're done */
538 if (csum_end <= bytenr)
539 break;
540
541 /* delete the entire item, it is inside our range */
542 if (key.offset >= bytenr && csum_end <= end_byte) {
543 ret = btrfs_del_item(trans, root, path);
544 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500545 if (key.offset == bytenr)
546 break;
Chris Mason459931e2008-12-10 09:10:46 -0500547 } else if (key.offset < bytenr && csum_end > end_byte) {
548 unsigned long offset;
549 unsigned long shift_len;
550 unsigned long item_offset;
551 /*
552 * [ bytenr - len ]
553 * [csum ]
554 *
555 * Our bytes are in the middle of the csum,
556 * we need to split this item and insert a new one.
557 *
558 * But we can't drop the path because the
559 * csum could change, get removed, extended etc.
560 *
561 * The trick here is the max size of a csum item leaves
562 * enough room in the tree block for a single
563 * item header. So, we split the item in place,
564 * adding a new header pointing to the existing
565 * bytes. Then we loop around again and we have
566 * a nicely formed csum item that we can neatly
567 * truncate.
568 */
569 offset = (bytenr - key.offset) >> blocksize_bits;
570 offset *= csum_size;
571
572 shift_len = (len >> blocksize_bits) * csum_size;
573
574 item_offset = btrfs_item_ptr_offset(leaf,
575 path->slots[0]);
576
577 memset_extent_buffer(leaf, 0, item_offset + offset,
578 shift_len);
579 key.offset = bytenr;
580
581 /*
582 * btrfs_split_item returns -EAGAIN when the
583 * item changed size or key
584 */
585 ret = btrfs_split_item(trans, root, path, &key, offset);
586 BUG_ON(ret && ret != -EAGAIN);
587
588 key.offset = end_byte - 1;
589 } else {
590 ret = truncate_one_csum(trans, root, path,
591 &key, bytenr, len);
592 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500593 if (key.offset < bytenr)
594 break;
Chris Mason459931e2008-12-10 09:10:46 -0500595 }
596 btrfs_release_path(root, path);
597 }
598out:
599 btrfs_free_path(path);
600 return 0;
601}
602
Chris Mason065631f2008-02-20 12:07:25 -0500603int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500604 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400605 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400606{
Chris Masond20f7042008-12-08 16:58:54 -0500607 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400608 int ret;
609 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400610 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500611 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400612 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500613 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400614 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400615 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500616 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400617 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400618 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400619 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400620 u32 nritems;
621 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500622 char *eb_map;
623 char *eb_token;
624 unsigned long map_len;
625 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500626 u16 csum_size =
627 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500628
Chris Mason5caf2a02007-04-02 11:20:42 -0400629 path = btrfs_alloc_path();
630 BUG_ON(!path);
Chris Masoned98b562008-07-22 23:06:42 -0400631 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500632again:
633 next_offset = (u64)-1;
634 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500635 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
636 file_key.offset = sector_sum->bytenr;
637 bytenr = sector_sum->bytenr;
638 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400639
Chris Masond20f7042008-12-08 16:58:54 -0500640 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400641 if (!IS_ERR(item)) {
642 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400643 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400644 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400645 }
Chris Masona429e512007-04-18 16:15:28 -0400646 ret = PTR_ERR(item);
647 if (ret == -EFBIG) {
648 u32 item_size;
649 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400650 leaf = path->nodes[0];
651 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500652 if ((item_size / csum_size) >=
653 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400654 /* already at max size, make a new one */
655 goto insert;
656 }
657 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400658 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400659 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400660 nritems = btrfs_header_nritems(path->nodes[0]);
661 if (path->slots[0] >= nritems - 1) {
662 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400663 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400664 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400665 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400666 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400667 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400668 }
669 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500670 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
671 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400672 found_next = 1;
673 goto insert;
674 }
675 next_offset = found_key.offset;
676 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400677 goto insert;
678 }
679
680 /*
681 * at this point, we know the tree has an item, but it isn't big
682 * enough yet to put our csum in. Grow it
683 */
684 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400685 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500686 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400687 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400688 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500689
690 if (ret > 0) {
691 if (path->slots[0] == 0)
692 goto insert;
693 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400694 }
Chris Mason459931e2008-12-10 09:10:46 -0500695
Chris Mason5f39d392007-10-15 16:14:19 -0400696 leaf = path->nodes[0];
697 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500698 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400699 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500700
Chris Masond20f7042008-12-08 16:58:54 -0500701 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
702 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500703 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400704 goto insert;
705 }
Chris Mason459931e2008-12-10 09:10:46 -0500706
Chris Mason5f39d392007-10-15 16:14:19 -0400707 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500708 csum_size) {
709 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500710
711 /*
712 * is the item big enough already? we dropped our lock
713 * before and need to recheck
714 */
715 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
716 goto csum;
717
Chris Mason5f39d392007-10-15 16:14:19 -0400718 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500719 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400720 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500721
Chris Masona429e512007-04-18 16:15:28 -0400722 ret = btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400723 BUG_ON(ret);
724 goto csum;
725 }
726
727insert:
Chris Masona429e512007-04-18 16:15:28 -0400728 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400729 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400730 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500731 u64 tmp = total_bytes + root->sectorsize;
732 u64 next_sector = sector_sum->bytenr;
733 struct btrfs_sector_sum *next = sector_sum + 1;
734
Chris Masond3977122009-01-05 21:25:51 -0500735 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500736 if (next_sector + root->sectorsize != next->bytenr)
737 break;
738 tmp += root->sectorsize;
739 next_sector = next->bytenr;
740 next++;
741 }
742 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400743 tmp >>= root->fs_info->sb->s_blocksize_bits;
744 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500745 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
746 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400747 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500748 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400749 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400750 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400751 ins_size);
Chris Mason54aa1f42007-06-22 14:16:25 -0400752 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400753 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400754 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400755 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400756 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400757 }
Chris Mason6567e832007-04-16 09:22:45 -0400758csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400759 leaf = path->nodes[0];
760 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400761 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400762 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500763 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400764found:
Chris Mason065631f2008-02-20 12:07:25 -0500765 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
766 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
767 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Mason6e92f5e2008-02-20 12:07:25 -0500768 eb_token = NULL;
Chris Mason53863232008-08-15 15:34:18 -0400769 cond_resched();
Chris Masone6dcd2d2008-07-17 12:53:50 -0400770next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500771
Chris Mason6e92f5e2008-02-20 12:07:25 -0500772 if (!eb_token ||
Josef Bacik607d4322008-12-02 07:17:45 -0500773 (unsigned long)item + csum_size >= map_start + map_len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500774 int err;
775
776 if (eb_token)
Chris Masoneb209782008-02-21 09:30:08 -0500777 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500778 eb_token = NULL;
779 err = map_private_extent_buffer(leaf, (unsigned long)item,
Josef Bacik607d4322008-12-02 07:17:45 -0500780 csum_size,
Chris Mason6e92f5e2008-02-20 12:07:25 -0500781 &eb_token, &eb_map,
Chris Masoneb209782008-02-21 09:30:08 -0500782 &map_start, &map_len, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500783 if (err)
784 eb_token = NULL;
785 }
786 if (eb_token) {
787 memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
Josef Bacik607d4322008-12-02 07:17:45 -0500788 &sector_sum->sum, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500789 } else {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400790 write_extent_buffer(leaf, &sector_sum->sum,
Josef Bacik607d4322008-12-02 07:17:45 -0500791 (unsigned long)item, csum_size);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500792 }
Chris Mason7f3c74f2008-07-18 12:01:11 -0400793
Chris Masone6dcd2d2008-07-17 12:53:50 -0400794 total_bytes += root->sectorsize;
795 sector_sum++;
796 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500797 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500798 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500799 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
800 sector_sum->bytenr) {
801 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400802 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500803 }
Chris Mason065631f2008-02-20 12:07:25 -0500804 }
Chris Mason6e92f5e2008-02-20 12:07:25 -0500805 if (eb_token) {
Chris Masoneb209782008-02-21 09:30:08 -0500806 unmap_extent_buffer(leaf, eb_token, KM_USER1);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500807 eb_token = NULL;
808 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400809 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason53863232008-08-15 15:34:18 -0400810 cond_resched();
Chris Masone6dcd2d2008-07-17 12:53:50 -0400811 if (total_bytes < sums->len) {
Chris Mason065631f2008-02-20 12:07:25 -0500812 btrfs_release_path(root, path);
813 goto again;
814 }
Chris Mason53863232008-08-15 15:34:18 -0400815out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400816 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400817 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400818
819fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400820 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400821}