blob: cc6e0b6de9497ad07101b4d08a5cef6600b620dc [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
Josef Bacik607d4322008-12-02 07:17:45 -050027#define MAX_CSUM_ITEMS(r,size) ((((BTRFS_LEAF_DATA_SIZE(r) - \
28 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 Mason61b49442008-07-31 15:42:53 -0400169 while(bio_index < bio->bi_vcnt) {
170 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 {
195 printk("no csum found for inode %lu "
196 "start %llu\n", inode->i_ino,
197 (unsigned long long)offset);
198 }
Chris Mason6dab8152008-08-04 08:35:53 -0400199 item = NULL;
Chris Mason39be25c2008-11-10 11:50:50 -0500200 btrfs_release_path(root, path);
Chris Mason61b49442008-07-31 15:42:53 -0400201 goto found;
202 }
203 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
204 path->slots[0]);
205
206 item_start_offset = found_key.offset;
207 item_size = btrfs_item_size_nr(path->nodes[0],
208 path->slots[0]);
209 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500210 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400211 root->sectorsize;
212 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
213 struct btrfs_csum_item);
214 }
215 /*
216 * this byte range must be able to fit inside
217 * a single leaf so it will also fit inside a u32
218 */
Chris Masond20f7042008-12-08 16:58:54 -0500219 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400220 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500221 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400222
223 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400224 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500225 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400226found:
Chris Masond20f7042008-12-08 16:58:54 -0500227 if (dst)
228 *dst++ = sum;
229 else
230 set_state_private(io_tree, offset, sum);
231 disk_bytenr += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400232 bio_index++;
233 bvec++;
234 }
235 btrfs_free_path(path);
236 return 0;
237}
238
Yan Zheng17d217f2008-12-12 10:03:38 -0500239int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
240 struct list_head *list)
241{
242 struct btrfs_key key;
243 struct btrfs_path *path;
244 struct extent_buffer *leaf;
245 struct btrfs_ordered_sum *sums;
246 struct btrfs_sector_sum *sector_sum;
247 struct btrfs_csum_item *item;
248 unsigned long offset;
249 int ret;
250 size_t size;
251 u64 csum_end;
252 u16 csum_size = btrfs_super_csum_size(&root->fs_info->super_copy);
253
254 path = btrfs_alloc_path();
255 BUG_ON(!path);
256
257 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
258 key.offset = start;
259 key.type = BTRFS_EXTENT_CSUM_KEY;
260
261 ret = btrfs_search_slot(NULL, root->fs_info->csum_root,
262 &key, path, 0, 0);
263 if (ret < 0)
264 goto fail;
265 if (ret > 0 && path->slots[0] > 0) {
266 leaf = path->nodes[0];
267 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
268 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
269 key.type == BTRFS_EXTENT_CSUM_KEY) {
270 offset = (start - key.offset) >>
271 root->fs_info->sb->s_blocksize_bits;
272 if (offset * csum_size <
273 btrfs_item_size_nr(leaf, path->slots[0] - 1))
274 path->slots[0]--;
275 }
276 }
277
278 while (start <= end) {
279 leaf = path->nodes[0];
280 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
281 ret = btrfs_next_leaf(root->fs_info->csum_root, path);
282 if (ret < 0)
283 goto fail;
284 if (ret > 0)
285 break;
286 leaf = path->nodes[0];
287 }
288
289 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
290 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
291 key.type != BTRFS_EXTENT_CSUM_KEY)
292 break;
293
294 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
295 if (key.offset > end)
296 break;
297
298 if (key.offset > start)
299 start = key.offset;
300
301 size = btrfs_item_size_nr(leaf, path->slots[0]);
302 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500303 if (csum_end <= start) {
304 path->slots[0]++;
305 continue;
306 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500307
308 size = min(csum_end, end + 1) - start;
309 sums = kzalloc(btrfs_ordered_sum_size(root, size), GFP_NOFS);
310 BUG_ON(!sums);
311
312 sector_sum = sums->sums;
313 sums->bytenr = start;
314 sums->len = size;
315
316 offset = (start - key.offset) >>
317 root->fs_info->sb->s_blocksize_bits;
318 offset *= csum_size;
319
320 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
321 struct btrfs_csum_item);
322 while (size > 0) {
323 read_extent_buffer(path->nodes[0], &sector_sum->sum,
324 ((unsigned long)item) + offset,
325 csum_size);
326 sector_sum->bytenr = start;
327
328 size -= root->sectorsize;
329 start += root->sectorsize;
330 offset += csum_size;
331 sector_sum++;
332 }
333 list_add_tail(&sums->list, list);
334
335 path->slots[0]++;
336 }
337 ret = 0;
338fail:
339 btrfs_free_path(path);
340 return ret;
341}
342
Chris Mason3edf7d32008-07-18 06:17:13 -0400343int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500344 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400345{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400346 struct btrfs_ordered_sum *sums;
347 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400348 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400349 char *data;
350 struct bio_vec *bvec = bio->bi_io_vec;
351 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400352 unsigned long total_bytes = 0;
353 unsigned long this_sum_bytes = 0;
354 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500355 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400356
Chris Masone6dcd2d2008-07-17 12:53:50 -0400357 WARN_ON(bio->bi_vcnt <= 0);
358 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400359 if (!sums)
360 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400361
Chris Masoned98b562008-07-22 23:06:42 -0400362 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500363 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400364 sums->len = bio->bi_size;
365 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500366
367 if (contig)
368 offset = file_start;
369 else
370 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
371
372 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400373 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500374 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400375
376 while(bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500377 if (!contig)
378 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
379
380 if (!contig && (offset >= ordered->file_offset + ordered->len ||
381 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400382 unsigned long bytes_left;
383 sums->len = this_sum_bytes;
384 this_sum_bytes = 0;
385 btrfs_add_ordered_sum(inode, ordered, sums);
386 btrfs_put_ordered_extent(ordered);
387
388 bytes_left = bio->bi_size - total_bytes;
389
390 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
391 GFP_NOFS);
392 BUG_ON(!sums);
Chris Masoned98b562008-07-22 23:06:42 -0400393 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400394 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500395 ordered = btrfs_lookup_ordered_extent(inode, offset);
Chris Mason3edf7d32008-07-18 06:17:13 -0400396 BUG_ON(!ordered);
Chris Masond20f7042008-12-08 16:58:54 -0500397 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400398 }
399
Chris Masone0156402008-04-16 11:15:20 -0400400 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400401 sector_sum->sum = ~(u32)0;
402 sector_sum->sum = btrfs_csum_data(root,
403 data + bvec->bv_offset,
404 sector_sum->sum,
405 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400406 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400407 btrfs_csum_final(sector_sum->sum,
408 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500409 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400410
Chris Masone6dcd2d2008-07-17 12:53:50 -0400411 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400412 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400413 total_bytes += bvec->bv_len;
414 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500415 disk_bytenr += bvec->bv_len;
416 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400417 bvec++;
418 }
Chris Masoned98b562008-07-22 23:06:42 -0400419 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400420 btrfs_add_ordered_sum(inode, ordered, sums);
421 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400422 return 0;
423}
424
Chris Mason459931e2008-12-10 09:10:46 -0500425/*
426 * helper function for csum removal, this expects the
427 * key to describe the csum pointed to by the path, and it expects
428 * the csum to overlap the range [bytenr, len]
429 *
430 * The csum should not be entirely contained in the range and the
431 * range should not be entirely contained in the csum.
432 *
433 * This calls btrfs_truncate_item with the correct args based on the
434 * overlap, and fixes up the key as required.
435 */
436static noinline int truncate_one_csum(struct btrfs_trans_handle *trans,
437 struct btrfs_root *root,
438 struct btrfs_path *path,
439 struct btrfs_key *key,
440 u64 bytenr, u64 len)
441{
442 struct extent_buffer *leaf;
443 u16 csum_size =
444 btrfs_super_csum_size(&root->fs_info->super_copy);
445 u64 csum_end;
446 u64 end_byte = bytenr + len;
447 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
448 int ret;
449
450 leaf = path->nodes[0];
451 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
452 csum_end <<= root->fs_info->sb->s_blocksize_bits;
453 csum_end += key->offset;
454
455 if (key->offset < bytenr && csum_end <= end_byte) {
456 /*
457 * [ bytenr - len ]
458 * [ ]
459 * [csum ]
460 * A simple truncate off the end of the item
461 */
462 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
463 new_size *= csum_size;
464 ret = btrfs_truncate_item(trans, root, path, new_size, 1);
465 BUG_ON(ret);
466 } else if (key->offset >= bytenr && csum_end > end_byte &&
467 end_byte > key->offset) {
468 /*
469 * [ bytenr - len ]
470 * [ ]
471 * [csum ]
472 * we need to truncate from the beginning of the csum
473 */
474 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
475 new_size *= csum_size;
476
477 ret = btrfs_truncate_item(trans, root, path, new_size, 0);
478 BUG_ON(ret);
479
480 key->offset = end_byte;
481 ret = btrfs_set_item_key_safe(trans, root, path, key);
482 BUG_ON(ret);
483 } else {
484 BUG();
485 }
486 return 0;
487}
488
489/*
490 * deletes the csum items from the csum tree for a given
491 * range of bytes.
492 */
493int btrfs_del_csums(struct btrfs_trans_handle *trans,
494 struct btrfs_root *root, u64 bytenr, u64 len)
495{
496 struct btrfs_path *path;
497 struct btrfs_key key;
498 u64 end_byte = bytenr + len;
499 u64 csum_end;
500 struct extent_buffer *leaf;
501 int ret;
502 u16 csum_size =
503 btrfs_super_csum_size(&root->fs_info->super_copy);
504 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
505
506 root = root->fs_info->csum_root;
507
508 path = btrfs_alloc_path();
509
510 while(1) {
511 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
512 key.offset = end_byte - 1;
513 key.type = BTRFS_EXTENT_CSUM_KEY;
514
515 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
516 if (ret > 0) {
517 if (path->slots[0] == 0)
518 goto out;
519 path->slots[0]--;
520 }
521 leaf = path->nodes[0];
522 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
523
524 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
525 key.type != BTRFS_EXTENT_CSUM_KEY) {
526 break;
527 }
528
529 if (key.offset >= end_byte)
530 break;
531
532 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
533 csum_end <<= blocksize_bits;
534 csum_end += key.offset;
535
536 /* this csum ends before we start, we're done */
537 if (csum_end <= bytenr)
538 break;
539
540 /* delete the entire item, it is inside our range */
541 if (key.offset >= bytenr && csum_end <= end_byte) {
542 ret = btrfs_del_item(trans, root, path);
543 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500544 if (key.offset == bytenr)
545 break;
Chris Mason459931e2008-12-10 09:10:46 -0500546 } else if (key.offset < bytenr && csum_end > end_byte) {
547 unsigned long offset;
548 unsigned long shift_len;
549 unsigned long item_offset;
550 /*
551 * [ bytenr - len ]
552 * [csum ]
553 *
554 * Our bytes are in the middle of the csum,
555 * we need to split this item and insert a new one.
556 *
557 * But we can't drop the path because the
558 * csum could change, get removed, extended etc.
559 *
560 * The trick here is the max size of a csum item leaves
561 * enough room in the tree block for a single
562 * item header. So, we split the item in place,
563 * adding a new header pointing to the existing
564 * bytes. Then we loop around again and we have
565 * a nicely formed csum item that we can neatly
566 * truncate.
567 */
568 offset = (bytenr - key.offset) >> blocksize_bits;
569 offset *= csum_size;
570
571 shift_len = (len >> blocksize_bits) * csum_size;
572
573 item_offset = btrfs_item_ptr_offset(leaf,
574 path->slots[0]);
575
576 memset_extent_buffer(leaf, 0, item_offset + offset,
577 shift_len);
578 key.offset = bytenr;
579
580 /*
581 * btrfs_split_item returns -EAGAIN when the
582 * item changed size or key
583 */
584 ret = btrfs_split_item(trans, root, path, &key, offset);
585 BUG_ON(ret && ret != -EAGAIN);
586
587 key.offset = end_byte - 1;
588 } else {
589 ret = truncate_one_csum(trans, root, path,
590 &key, bytenr, len);
591 BUG_ON(ret);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500592 if (key.offset < bytenr)
593 break;
Chris Mason459931e2008-12-10 09:10:46 -0500594 }
595 btrfs_release_path(root, path);
596 }
597out:
598 btrfs_free_path(path);
599 return 0;
600}
601
Chris Mason065631f2008-02-20 12:07:25 -0500602int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500603 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400604 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400605{
Chris Masond20f7042008-12-08 16:58:54 -0500606 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400607 int ret;
608 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400609 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500610 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400611 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500612 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400613 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400614 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500615 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400616 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400617 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400618 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400619 u32 nritems;
620 u32 ins_size;
Chris Mason6e92f5e2008-02-20 12:07:25 -0500621 char *eb_map;
622 char *eb_token;
623 unsigned long map_len;
624 unsigned long map_start;
Josef Bacik607d4322008-12-02 07:17:45 -0500625 u16 csum_size =
626 btrfs_super_csum_size(&root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500627
Chris Mason5caf2a02007-04-02 11:20:42 -0400628 path = btrfs_alloc_path();
629 BUG_ON(!path);
Chris Masoned98b562008-07-22 23:06:42 -0400630 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500631again:
632 next_offset = (u64)-1;
633 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500634 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
635 file_key.offset = sector_sum->bytenr;
636 bytenr = sector_sum->bytenr;
637 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400638
Chris Masond20f7042008-12-08 16:58:54 -0500639 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400640 if (!IS_ERR(item)) {
641 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400642 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400643 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400644 }
Chris Masona429e512007-04-18 16:15:28 -0400645 ret = PTR_ERR(item);
646 if (ret == -EFBIG) {
647 u32 item_size;
648 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400649 leaf = path->nodes[0];
650 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500651 if ((item_size / csum_size) >=
652 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400653 /* already at max size, make a new one */
654 goto insert;
655 }
656 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400657 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400658 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400659 nritems = btrfs_header_nritems(path->nodes[0]);
660 if (path->slots[0] >= nritems - 1) {
661 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400662 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400663 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400664 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400665 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400666 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400667 }
668 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500669 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
670 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400671 found_next = 1;
672 goto insert;
673 }
674 next_offset = found_key.offset;
675 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400676 goto insert;
677 }
678
679 /*
680 * at this point, we know the tree has an item, but it isn't big
681 * enough yet to put our csum in. Grow it
682 */
683 btrfs_release_path(root, path);
Chris Mason6567e832007-04-16 09:22:45 -0400684 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500685 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400686 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400687 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500688
689 if (ret > 0) {
690 if (path->slots[0] == 0)
691 goto insert;
692 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400693 }
Chris Mason459931e2008-12-10 09:10:46 -0500694
Chris Mason5f39d392007-10-15 16:14:19 -0400695 leaf = path->nodes[0];
696 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500697 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400698 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500699
Chris Masond20f7042008-12-08 16:58:54 -0500700 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
701 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500702 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400703 goto insert;
704 }
Chris Mason459931e2008-12-10 09:10:46 -0500705
Chris Mason5f39d392007-10-15 16:14:19 -0400706 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500707 csum_size) {
708 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500709
710 /*
711 * is the item big enough already? we dropped our lock
712 * before and need to recheck
713 */
714 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
715 goto csum;
716
Chris Mason5f39d392007-10-15 16:14:19 -0400717 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Mason459931e2008-12-10 09:10:46 -0500718 if (diff != csum_size) {
Chris Mason3a686372007-05-24 13:35:57 -0400719 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500720 }
721
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
735 while(tmp < sums->len) {
736 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}