blob: a14dbca5974ecd77c56c2b5f133d5dc8df72e7a6 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Mason065631f2008-02-20 12:07:25 -050021#include <linux/pagemap.h>
22#include <linux/highmem.h>
Chris Mason1e1d2702007-03-15 19:03:33 -040023#include "ctree.h"
Chris Masondee26a92007-03-26 16:00:06 -040024#include "disk-io.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040025#include "transaction.h"
Chris Mason1de037a2007-05-29 15:17:08 -040026#include "print-tree.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040027
Chris Masond3977122009-01-05 21:25:51 -050028#define MAX_CSUM_ITEMS(r, size) ((((BTRFS_LEAF_DATA_SIZE(r) - \
Josef Bacik607d4322008-12-02 07:17:45 -050029 sizeof(struct btrfs_item) * 2) / \
30 size) - 1))
Yan Zheng07d400a2009-01-06 11:42:00 -050031
32#define MAX_ORDERED_SUM_BYTES(r) ((PAGE_SIZE - \
33 sizeof(struct btrfs_ordered_sum)) / \
34 sizeof(struct btrfs_sector_sum) * \
35 (r)->sectorsize - (r)->sectorsize)
36
Chris Masonb18c6682007-04-17 13:26:50 -040037int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -040038 struct btrfs_root *root,
39 u64 objectid, u64 pos,
40 u64 disk_offset, u64 disk_num_bytes,
Chris Masonc8b97812008-10-29 14:49:59 -040041 u64 num_bytes, u64 offset, u64 ram_bytes,
42 u8 compression, u8 encryption, u16 other_encoding)
Chris Mason9f5fae22007-03-20 14:38:32 -040043{
Chris Masondee26a92007-03-26 16:00:06 -040044 int ret = 0;
45 struct btrfs_file_extent_item *item;
46 struct btrfs_key file_key;
Chris Mason5caf2a02007-04-02 11:20:42 -040047 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040048 struct extent_buffer *leaf;
Chris Masondee26a92007-03-26 16:00:06 -040049
Chris Mason5caf2a02007-04-02 11:20:42 -040050 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +000051 if (!path)
52 return -ENOMEM;
Chris Masondee26a92007-03-26 16:00:06 -040053 file_key.objectid = objectid;
Chris Masonb18c6682007-04-17 13:26:50 -040054 file_key.offset = pos;
Chris Masondee26a92007-03-26 16:00:06 -040055 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
56
Chris Masonb9473432009-03-13 11:00:37 -040057 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -040058 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masondee26a92007-03-26 16:00:06 -040059 sizeof(*item));
Chris Mason54aa1f42007-06-22 14:16:25 -040060 if (ret < 0)
61 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +010062 BUG_ON(ret); /* Can't happen */
Chris Mason5f39d392007-10-15 16:14:19 -040063 leaf = path->nodes[0];
64 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masondee26a92007-03-26 16:00:06 -040065 struct btrfs_file_extent_item);
Sage Weilf2eb0a22008-05-02 14:43:14 -040066 btrfs_set_file_extent_disk_bytenr(leaf, item, disk_offset);
Chris Masondb945352007-10-15 16:15:53 -040067 btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
Sage Weilf2eb0a22008-05-02 14:43:14 -040068 btrfs_set_file_extent_offset(leaf, item, offset);
Chris Masondb945352007-10-15 16:15:53 -040069 btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
Chris Masonc8b97812008-10-29 14:49:59 -040070 btrfs_set_file_extent_ram_bytes(leaf, item, ram_bytes);
Chris Mason5f39d392007-10-15 16:14:19 -040071 btrfs_set_file_extent_generation(leaf, item, trans->transid);
72 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
Chris Masonc8b97812008-10-29 14:49:59 -040073 btrfs_set_file_extent_compression(leaf, item, compression);
74 btrfs_set_file_extent_encryption(leaf, item, encryption);
75 btrfs_set_file_extent_other_encoding(leaf, item, other_encoding);
76
Chris Mason5f39d392007-10-15 16:14:19 -040077 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -040078out:
Chris Mason5caf2a02007-04-02 11:20:42 -040079 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -040080 return ret;
Chris Mason9f5fae22007-03-20 14:38:32 -040081}
Chris Masondee26a92007-03-26 16:00:06 -040082
Chris Masonb18c6682007-04-17 13:26:50 -040083struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
84 struct btrfs_root *root,
85 struct btrfs_path *path,
Chris Masond20f7042008-12-08 16:58:54 -050086 u64 bytenr, int cow)
Chris Mason6567e832007-04-16 09:22:45 -040087{
88 int ret;
89 struct btrfs_key file_key;
90 struct btrfs_key found_key;
91 struct btrfs_csum_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040092 struct extent_buffer *leaf;
Chris Mason6567e832007-04-16 09:22:45 -040093 u64 csum_offset = 0;
David Sterba6c417612011-04-13 15:41:04 +020094 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Masona429e512007-04-18 16:15:28 -040095 int csums_in_item;
Chris Mason6567e832007-04-16 09:22:45 -040096
Chris Masond20f7042008-12-08 16:58:54 -050097 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
98 file_key.offset = bytenr;
99 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masonb18c6682007-04-17 13:26:50 -0400100 ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
Chris Mason6567e832007-04-16 09:22:45 -0400101 if (ret < 0)
102 goto fail;
Chris Mason5f39d392007-10-15 16:14:19 -0400103 leaf = path->nodes[0];
Chris Mason6567e832007-04-16 09:22:45 -0400104 if (ret > 0) {
105 ret = 1;
Chris Mason70b2bef2007-04-17 15:39:32 -0400106 if (path->slots[0] == 0)
Chris Mason6567e832007-04-16 09:22:45 -0400107 goto fail;
108 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400109 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500110 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY)
Chris Mason6567e832007-04-16 09:22:45 -0400111 goto fail;
Chris Masond20f7042008-12-08 16:58:54 -0500112
113 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400114 root->fs_info->sb->s_blocksize_bits;
Chris Mason5f39d392007-10-15 16:14:19 -0400115 csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500116 csums_in_item /= csum_size;
Chris Masona429e512007-04-18 16:15:28 -0400117
118 if (csum_offset >= csums_in_item) {
119 ret = -EFBIG;
Chris Mason6567e832007-04-16 09:22:45 -0400120 goto fail;
121 }
122 }
123 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Mason509659c2007-05-10 12:36:17 -0400124 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500125 csum_offset * csum_size);
Chris Mason6567e832007-04-16 09:22:45 -0400126 return item;
127fail:
128 if (ret > 0)
Chris Masonb18c6682007-04-17 13:26:50 -0400129 ret = -ENOENT;
Chris Mason6567e832007-04-16 09:22:45 -0400130 return ERR_PTR(ret);
131}
132
133
Chris Masondee26a92007-03-26 16:00:06 -0400134int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path, u64 objectid,
Chris Mason9773a782007-03-27 11:26:26 -0400137 u64 offset, int mod)
Chris Masondee26a92007-03-26 16:00:06 -0400138{
139 int ret;
140 struct btrfs_key file_key;
141 int ins_len = mod < 0 ? -1 : 0;
142 int cow = mod != 0;
143
144 file_key.objectid = objectid;
Chris Mason70b2bef2007-04-17 15:39:32 -0400145 file_key.offset = offset;
Chris Masondee26a92007-03-26 16:00:06 -0400146 btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
147 ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
148 return ret;
149}
Chris Masonf254e522007-03-29 15:15:27 -0400150
Yan Zheng17d217f2008-12-12 10:03:38 -0500151
Josef Bacik4b46fce2010-05-23 11:00:55 -0400152static int __btrfs_lookup_bio_sums(struct btrfs_root *root,
153 struct inode *inode, struct bio *bio,
154 u64 logical_offset, u32 *dst, int dio)
Chris Mason61b49442008-07-31 15:42:53 -0400155{
156 u32 sum;
157 struct bio_vec *bvec = bio->bi_io_vec;
158 int bio_index = 0;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400159 u64 offset = 0;
Chris Mason61b49442008-07-31 15:42:53 -0400160 u64 item_start_offset = 0;
161 u64 item_last_offset = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500162 u64 disk_bytenr;
Chris Mason61b49442008-07-31 15:42:53 -0400163 u32 diff;
David Sterba6c417612011-04-13 15:41:04 +0200164 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason61b49442008-07-31 15:42:53 -0400165 int ret;
166 struct btrfs_path *path;
167 struct btrfs_csum_item *item = NULL;
168 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
169
170 path = btrfs_alloc_path();
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000171 if (!path)
172 return -ENOMEM;
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400173 if (bio->bi_size > PAGE_CACHE_SIZE * 8)
174 path->reada = 2;
Chris Mason61b49442008-07-31 15:42:53 -0400175
176 WARN_ON(bio->bi_vcnt <= 0);
177
Chris Mason2cf85722011-07-26 15:35:09 -0400178 /*
179 * the free space stuff is only read when it hasn't been
180 * updated in the current transaction. So, we can safely
181 * read from the commit root and sidestep a nasty deadlock
182 * between reading the free space cache and updating the csum tree.
183 */
Josef Bacikddf23b32011-09-11 10:52:24 -0400184 if (btrfs_is_free_space_inode(root, inode)) {
Chris Mason2cf85722011-07-26 15:35:09 -0400185 path->search_commit_root = 1;
Josef Bacikddf23b32011-09-11 10:52:24 -0400186 path->skip_locking = 1;
187 }
Chris Mason2cf85722011-07-26 15:35:09 -0400188
Chris Masond20f7042008-12-08 16:58:54 -0500189 disk_bytenr = (u64)bio->bi_sector << 9;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400190 if (dio)
191 offset = logical_offset;
Chris Masond3977122009-01-05 21:25:51 -0500192 while (bio_index < bio->bi_vcnt) {
Josef Bacik4b46fce2010-05-23 11:00:55 -0400193 if (!dio)
194 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
Chris Masond20f7042008-12-08 16:58:54 -0500195 ret = btrfs_find_ordered_sum(inode, offset, disk_bytenr, &sum);
Chris Mason61b49442008-07-31 15:42:53 -0400196 if (ret == 0)
197 goto found;
198
Chris Masond20f7042008-12-08 16:58:54 -0500199 if (!item || disk_bytenr < item_start_offset ||
200 disk_bytenr >= item_last_offset) {
Chris Mason61b49442008-07-31 15:42:53 -0400201 struct btrfs_key found_key;
202 u32 item_size;
203
204 if (item)
David Sterbab3b4aa72011-04-21 01:20:15 +0200205 btrfs_release_path(path);
Chris Masond20f7042008-12-08 16:58:54 -0500206 item = btrfs_lookup_csum(NULL, root->fs_info->csum_root,
207 path, disk_bytenr, 0);
Chris Mason61b49442008-07-31 15:42:53 -0400208 if (IS_ERR(item)) {
209 ret = PTR_ERR(item);
210 if (ret == -ENOENT || ret == -EFBIG)
211 ret = 0;
212 sum = 0;
Yan Zheng17d217f2008-12-12 10:03:38 -0500213 if (BTRFS_I(inode)->root->root_key.objectid ==
214 BTRFS_DATA_RELOC_TREE_OBJECTID) {
215 set_extent_bits(io_tree, offset,
216 offset + bvec->bv_len - 1,
217 EXTENT_NODATASUM, GFP_NOFS);
218 } else {
Chris Masond3977122009-01-05 21:25:51 -0500219 printk(KERN_INFO "btrfs no csum found "
Li Zefan33345d012011-04-20 10:31:50 +0800220 "for inode %llu start %llu\n",
221 (unsigned long long)
222 btrfs_ino(inode),
Yan Zheng17d217f2008-12-12 10:03:38 -0500223 (unsigned long long)offset);
224 }
Chris Mason6dab8152008-08-04 08:35:53 -0400225 item = NULL;
David Sterbab3b4aa72011-04-21 01:20:15 +0200226 btrfs_release_path(path);
Chris Mason61b49442008-07-31 15:42:53 -0400227 goto found;
228 }
229 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
230 path->slots[0]);
231
232 item_start_offset = found_key.offset;
233 item_size = btrfs_item_size_nr(path->nodes[0],
234 path->slots[0]);
235 item_last_offset = item_start_offset +
Josef Bacik607d4322008-12-02 07:17:45 -0500236 (item_size / csum_size) *
Chris Mason61b49442008-07-31 15:42:53 -0400237 root->sectorsize;
238 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
239 struct btrfs_csum_item);
240 }
241 /*
242 * this byte range must be able to fit inside
243 * a single leaf so it will also fit inside a u32
244 */
Chris Masond20f7042008-12-08 16:58:54 -0500245 diff = disk_bytenr - item_start_offset;
Chris Mason61b49442008-07-31 15:42:53 -0400246 diff = diff / root->sectorsize;
Josef Bacik607d4322008-12-02 07:17:45 -0500247 diff = diff * csum_size;
Chris Mason61b49442008-07-31 15:42:53 -0400248
249 read_extent_buffer(path->nodes[0], &sum,
Chris Mason3de9d6b2008-08-04 23:17:27 -0400250 ((unsigned long)item) + diff,
Josef Bacik607d4322008-12-02 07:17:45 -0500251 csum_size);
Chris Mason61b49442008-07-31 15:42:53 -0400252found:
Chris Masond20f7042008-12-08 16:58:54 -0500253 if (dst)
254 *dst++ = sum;
255 else
256 set_state_private(io_tree, offset, sum);
257 disk_bytenr += bvec->bv_len;
Josef Bacik4b46fce2010-05-23 11:00:55 -0400258 offset += bvec->bv_len;
Chris Mason61b49442008-07-31 15:42:53 -0400259 bio_index++;
260 bvec++;
261 }
262 btrfs_free_path(path);
263 return 0;
264}
265
Josef Bacik4b46fce2010-05-23 11:00:55 -0400266int btrfs_lookup_bio_sums(struct btrfs_root *root, struct inode *inode,
267 struct bio *bio, u32 *dst)
268{
269 return __btrfs_lookup_bio_sums(root, inode, bio, 0, dst, 0);
270}
271
272int btrfs_lookup_bio_sums_dio(struct btrfs_root *root, struct inode *inode,
273 struct bio *bio, u64 offset, u32 *dst)
274{
275 return __btrfs_lookup_bio_sums(root, inode, bio, offset, dst, 1);
276}
277
Yan Zheng17d217f2008-12-12 10:03:38 -0500278int btrfs_lookup_csums_range(struct btrfs_root *root, u64 start, u64 end,
Arne Jansena2de7332011-03-08 14:14:00 +0100279 struct list_head *list, int search_commit)
Yan Zheng17d217f2008-12-12 10:03:38 -0500280{
281 struct btrfs_key key;
282 struct btrfs_path *path;
283 struct extent_buffer *leaf;
284 struct btrfs_ordered_sum *sums;
285 struct btrfs_sector_sum *sector_sum;
286 struct btrfs_csum_item *item;
Mark Fasheh0678b612011-08-05 15:46:16 -0700287 LIST_HEAD(tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500288 unsigned long offset;
289 int ret;
290 size_t size;
291 u64 csum_end;
David Sterba6c417612011-04-13 15:41:04 +0200292 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Yan Zheng17d217f2008-12-12 10:03:38 -0500293
294 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700295 if (!path)
296 return -ENOMEM;
Yan Zheng17d217f2008-12-12 10:03:38 -0500297
Arne Jansena2de7332011-03-08 14:14:00 +0100298 if (search_commit) {
299 path->skip_locking = 1;
300 path->reada = 2;
301 path->search_commit_root = 1;
302 }
303
Yan Zheng17d217f2008-12-12 10:03:38 -0500304 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
305 key.offset = start;
306 key.type = BTRFS_EXTENT_CSUM_KEY;
307
Yan Zheng07d400a2009-01-06 11:42:00 -0500308 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan Zheng17d217f2008-12-12 10:03:38 -0500309 if (ret < 0)
310 goto fail;
311 if (ret > 0 && path->slots[0] > 0) {
312 leaf = path->nodes[0];
313 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
314 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
315 key.type == BTRFS_EXTENT_CSUM_KEY) {
316 offset = (start - key.offset) >>
317 root->fs_info->sb->s_blocksize_bits;
318 if (offset * csum_size <
319 btrfs_item_size_nr(leaf, path->slots[0] - 1))
320 path->slots[0]--;
321 }
322 }
323
324 while (start <= end) {
325 leaf = path->nodes[0];
326 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
Yan Zheng07d400a2009-01-06 11:42:00 -0500327 ret = btrfs_next_leaf(root, path);
Yan Zheng17d217f2008-12-12 10:03:38 -0500328 if (ret < 0)
329 goto fail;
330 if (ret > 0)
331 break;
332 leaf = path->nodes[0];
333 }
334
335 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
336 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
337 key.type != BTRFS_EXTENT_CSUM_KEY)
338 break;
339
340 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
341 if (key.offset > end)
342 break;
343
344 if (key.offset > start)
345 start = key.offset;
346
347 size = btrfs_item_size_nr(leaf, path->slots[0]);
348 csum_end = key.offset + (size / csum_size) * root->sectorsize;
Yan Zheng87b29b22008-12-17 10:21:48 -0500349 if (csum_end <= start) {
350 path->slots[0]++;
351 continue;
352 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500353
Yan Zheng07d400a2009-01-06 11:42:00 -0500354 csum_end = min(csum_end, end + 1);
Yan Zheng17d217f2008-12-12 10:03:38 -0500355 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
356 struct btrfs_csum_item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500357 while (start < csum_end) {
358 size = min_t(size_t, csum_end - start,
359 MAX_ORDERED_SUM_BYTES(root));
360 sums = kzalloc(btrfs_ordered_sum_size(root, size),
361 GFP_NOFS);
Mark Fasheh0678b612011-08-05 15:46:16 -0700362 if (!sums) {
363 ret = -ENOMEM;
364 goto fail;
365 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500366
Yan Zheng07d400a2009-01-06 11:42:00 -0500367 sector_sum = sums->sums;
368 sums->bytenr = start;
369 sums->len = size;
370
371 offset = (start - key.offset) >>
372 root->fs_info->sb->s_blocksize_bits;
373 offset *= csum_size;
374
375 while (size > 0) {
376 read_extent_buffer(path->nodes[0],
377 &sector_sum->sum,
378 ((unsigned long)item) +
379 offset, csum_size);
380 sector_sum->bytenr = start;
381
382 size -= root->sectorsize;
383 start += root->sectorsize;
384 offset += csum_size;
385 sector_sum++;
386 }
Mark Fasheh0678b612011-08-05 15:46:16 -0700387 list_add_tail(&sums->list, &tmplist);
Yan Zheng17d217f2008-12-12 10:03:38 -0500388 }
Yan Zheng17d217f2008-12-12 10:03:38 -0500389 path->slots[0]++;
390 }
391 ret = 0;
392fail:
Mark Fasheh0678b612011-08-05 15:46:16 -0700393 while (ret < 0 && !list_empty(&tmplist)) {
394 sums = list_entry(&tmplist, struct btrfs_ordered_sum, list);
395 list_del(&sums->list);
396 kfree(sums);
397 }
398 list_splice_tail(&tmplist, list);
399
Yan Zheng17d217f2008-12-12 10:03:38 -0500400 btrfs_free_path(path);
401 return ret;
402}
403
Chris Mason3edf7d32008-07-18 06:17:13 -0400404int btrfs_csum_one_bio(struct btrfs_root *root, struct inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500405 struct bio *bio, u64 file_start, int contig)
Chris Masone0156402008-04-16 11:15:20 -0400406{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400407 struct btrfs_ordered_sum *sums;
408 struct btrfs_sector_sum *sector_sum;
Chris Mason3edf7d32008-07-18 06:17:13 -0400409 struct btrfs_ordered_extent *ordered;
Chris Masone0156402008-04-16 11:15:20 -0400410 char *data;
411 struct bio_vec *bvec = bio->bi_io_vec;
412 int bio_index = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400413 unsigned long total_bytes = 0;
414 unsigned long this_sum_bytes = 0;
415 u64 offset;
Chris Masond20f7042008-12-08 16:58:54 -0500416 u64 disk_bytenr;
Chris Masone0156402008-04-16 11:15:20 -0400417
Chris Masone6dcd2d2008-07-17 12:53:50 -0400418 WARN_ON(bio->bi_vcnt <= 0);
419 sums = kzalloc(btrfs_ordered_sum_size(root, bio->bi_size), GFP_NOFS);
Chris Masone0156402008-04-16 11:15:20 -0400420 if (!sums)
421 return -ENOMEM;
Chris Mason3edf7d32008-07-18 06:17:13 -0400422
Chris Masoned98b562008-07-22 23:06:42 -0400423 sector_sum = sums->sums;
Chris Masond20f7042008-12-08 16:58:54 -0500424 disk_bytenr = (u64)bio->bi_sector << 9;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400425 sums->len = bio->bi_size;
426 INIT_LIST_HEAD(&sums->list);
Chris Masond20f7042008-12-08 16:58:54 -0500427
428 if (contig)
429 offset = file_start;
430 else
431 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
432
433 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100434 BUG_ON(!ordered); /* Logic error */
Chris Masond20f7042008-12-08 16:58:54 -0500435 sums->bytenr = ordered->start;
Chris Masone0156402008-04-16 11:15:20 -0400436
Chris Masond3977122009-01-05 21:25:51 -0500437 while (bio_index < bio->bi_vcnt) {
Chris Masond20f7042008-12-08 16:58:54 -0500438 if (!contig)
439 offset = page_offset(bvec->bv_page) + bvec->bv_offset;
440
441 if (!contig && (offset >= ordered->file_offset + ordered->len ||
442 offset < ordered->file_offset)) {
Chris Mason3edf7d32008-07-18 06:17:13 -0400443 unsigned long bytes_left;
444 sums->len = this_sum_bytes;
445 this_sum_bytes = 0;
446 btrfs_add_ordered_sum(inode, ordered, sums);
447 btrfs_put_ordered_extent(ordered);
448
449 bytes_left = bio->bi_size - total_bytes;
450
451 sums = kzalloc(btrfs_ordered_sum_size(root, bytes_left),
452 GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100453 BUG_ON(!sums); /* -ENOMEM */
Chris Masoned98b562008-07-22 23:06:42 -0400454 sector_sum = sums->sums;
Chris Mason3edf7d32008-07-18 06:17:13 -0400455 sums->len = bytes_left;
Chris Masond20f7042008-12-08 16:58:54 -0500456 ordered = btrfs_lookup_ordered_extent(inode, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100457 BUG_ON(!ordered); /* Logic error */
Chris Masond20f7042008-12-08 16:58:54 -0500458 sums->bytenr = ordered->start;
Chris Mason3edf7d32008-07-18 06:17:13 -0400459 }
460
Chris Masone0156402008-04-16 11:15:20 -0400461 data = kmap_atomic(bvec->bv_page, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400462 sector_sum->sum = ~(u32)0;
463 sector_sum->sum = btrfs_csum_data(root,
464 data + bvec->bv_offset,
465 sector_sum->sum,
466 bvec->bv_len);
Chris Masone0156402008-04-16 11:15:20 -0400467 kunmap_atomic(data, KM_USER0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400468 btrfs_csum_final(sector_sum->sum,
469 (char *)&sector_sum->sum);
Chris Masond20f7042008-12-08 16:58:54 -0500470 sector_sum->bytenr = disk_bytenr;
Chris Masoned98b562008-07-22 23:06:42 -0400471
Chris Masone6dcd2d2008-07-17 12:53:50 -0400472 sector_sum++;
Chris Masone0156402008-04-16 11:15:20 -0400473 bio_index++;
Chris Mason3edf7d32008-07-18 06:17:13 -0400474 total_bytes += bvec->bv_len;
475 this_sum_bytes += bvec->bv_len;
Chris Masond20f7042008-12-08 16:58:54 -0500476 disk_bytenr += bvec->bv_len;
477 offset += bvec->bv_len;
Chris Masone0156402008-04-16 11:15:20 -0400478 bvec++;
479 }
Chris Masoned98b562008-07-22 23:06:42 -0400480 this_sum_bytes = 0;
Chris Mason3edf7d32008-07-18 06:17:13 -0400481 btrfs_add_ordered_sum(inode, ordered, sums);
482 btrfs_put_ordered_extent(ordered);
Chris Masone0156402008-04-16 11:15:20 -0400483 return 0;
484}
485
Chris Mason459931e2008-12-10 09:10:46 -0500486/*
487 * helper function for csum removal, this expects the
488 * key to describe the csum pointed to by the path, and it expects
489 * the csum to overlap the range [bytenr, len]
490 *
491 * The csum should not be entirely contained in the range and the
492 * range should not be entirely contained in the csum.
493 *
494 * This calls btrfs_truncate_item with the correct args based on the
495 * overlap, and fixes up the key as required.
496 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100497static noinline void truncate_one_csum(struct btrfs_trans_handle *trans,
498 struct btrfs_root *root,
499 struct btrfs_path *path,
500 struct btrfs_key *key,
501 u64 bytenr, u64 len)
Chris Mason459931e2008-12-10 09:10:46 -0500502{
503 struct extent_buffer *leaf;
David Sterba6c417612011-04-13 15:41:04 +0200504 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500505 u64 csum_end;
506 u64 end_byte = bytenr + len;
507 u32 blocksize_bits = root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500508
509 leaf = path->nodes[0];
510 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
511 csum_end <<= root->fs_info->sb->s_blocksize_bits;
512 csum_end += key->offset;
513
514 if (key->offset < bytenr && csum_end <= end_byte) {
515 /*
516 * [ bytenr - len ]
517 * [ ]
518 * [csum ]
519 * A simple truncate off the end of the item
520 */
521 u32 new_size = (bytenr - key->offset) >> blocksize_bits;
522 new_size *= csum_size;
Jeff Mahoney143bede2012-03-01 14:56:26 +0100523 btrfs_truncate_item(trans, root, path, new_size, 1);
Chris Mason459931e2008-12-10 09:10:46 -0500524 } else if (key->offset >= bytenr && csum_end > end_byte &&
525 end_byte > key->offset) {
526 /*
527 * [ bytenr - len ]
528 * [ ]
529 * [csum ]
530 * we need to truncate from the beginning of the csum
531 */
532 u32 new_size = (csum_end - end_byte) >> blocksize_bits;
533 new_size *= csum_size;
534
Jeff Mahoney143bede2012-03-01 14:56:26 +0100535 btrfs_truncate_item(trans, root, path, new_size, 0);
Chris Mason459931e2008-12-10 09:10:46 -0500536
537 key->offset = end_byte;
Jeff Mahoney143bede2012-03-01 14:56:26 +0100538 btrfs_set_item_key_safe(trans, root, path, key);
Chris Mason459931e2008-12-10 09:10:46 -0500539 } else {
540 BUG();
541 }
Chris Mason459931e2008-12-10 09:10:46 -0500542}
543
544/*
545 * deletes the csum items from the csum tree for a given
546 * range of bytes.
547 */
548int btrfs_del_csums(struct btrfs_trans_handle *trans,
549 struct btrfs_root *root, u64 bytenr, u64 len)
550{
551 struct btrfs_path *path;
552 struct btrfs_key key;
553 u64 end_byte = bytenr + len;
554 u64 csum_end;
555 struct extent_buffer *leaf;
556 int ret;
David Sterba6c417612011-04-13 15:41:04 +0200557 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason459931e2008-12-10 09:10:46 -0500558 int blocksize_bits = root->fs_info->sb->s_blocksize_bits;
559
560 root = root->fs_info->csum_root;
561
562 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000563 if (!path)
564 return -ENOMEM;
Chris Mason459931e2008-12-10 09:10:46 -0500565
Chris Masond3977122009-01-05 21:25:51 -0500566 while (1) {
Chris Mason459931e2008-12-10 09:10:46 -0500567 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
568 key.offset = end_byte - 1;
569 key.type = BTRFS_EXTENT_CSUM_KEY;
570
Chris Masonb9473432009-03-13 11:00:37 -0400571 path->leave_spinning = 1;
Chris Mason459931e2008-12-10 09:10:46 -0500572 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
573 if (ret > 0) {
574 if (path->slots[0] == 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000575 break;
Chris Mason459931e2008-12-10 09:10:46 -0500576 path->slots[0]--;
Josef Bacikad0397a2011-01-28 18:44:44 +0000577 } else if (ret < 0) {
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000578 break;
Chris Mason459931e2008-12-10 09:10:46 -0500579 }
Josef Bacikad0397a2011-01-28 18:44:44 +0000580
Chris Mason459931e2008-12-10 09:10:46 -0500581 leaf = path->nodes[0];
582 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
583
584 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
585 key.type != BTRFS_EXTENT_CSUM_KEY) {
586 break;
587 }
588
589 if (key.offset >= end_byte)
590 break;
591
592 csum_end = btrfs_item_size_nr(leaf, path->slots[0]) / csum_size;
593 csum_end <<= blocksize_bits;
594 csum_end += key.offset;
595
596 /* this csum ends before we start, we're done */
597 if (csum_end <= bytenr)
598 break;
599
600 /* delete the entire item, it is inside our range */
601 if (key.offset >= bytenr && csum_end <= end_byte) {
602 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000603 if (ret)
604 goto out;
Chris Masondcbdd4d2008-12-16 13:51:01 -0500605 if (key.offset == bytenr)
606 break;
Chris Mason459931e2008-12-10 09:10:46 -0500607 } else if (key.offset < bytenr && csum_end > end_byte) {
608 unsigned long offset;
609 unsigned long shift_len;
610 unsigned long item_offset;
611 /*
612 * [ bytenr - len ]
613 * [csum ]
614 *
615 * Our bytes are in the middle of the csum,
616 * we need to split this item and insert a new one.
617 *
618 * But we can't drop the path because the
619 * csum could change, get removed, extended etc.
620 *
621 * The trick here is the max size of a csum item leaves
622 * enough room in the tree block for a single
623 * item header. So, we split the item in place,
624 * adding a new header pointing to the existing
625 * bytes. Then we loop around again and we have
626 * a nicely formed csum item that we can neatly
627 * truncate.
628 */
629 offset = (bytenr - key.offset) >> blocksize_bits;
630 offset *= csum_size;
631
632 shift_len = (len >> blocksize_bits) * csum_size;
633
634 item_offset = btrfs_item_ptr_offset(leaf,
635 path->slots[0]);
636
637 memset_extent_buffer(leaf, 0, item_offset + offset,
638 shift_len);
639 key.offset = bytenr;
640
641 /*
642 * btrfs_split_item returns -EAGAIN when the
643 * item changed size or key
644 */
645 ret = btrfs_split_item(trans, root, path, &key, offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100646 if (ret && ret != -EAGAIN) {
647 btrfs_abort_transaction(trans, root, ret);
648 goto out;
649 }
Chris Mason459931e2008-12-10 09:10:46 -0500650
651 key.offset = end_byte - 1;
652 } else {
Jeff Mahoney143bede2012-03-01 14:56:26 +0100653 truncate_one_csum(trans, root, path, &key, bytenr, len);
Chris Masondcbdd4d2008-12-16 13:51:01 -0500654 if (key.offset < bytenr)
655 break;
Chris Mason459931e2008-12-10 09:10:46 -0500656 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200657 btrfs_release_path(path);
Chris Mason459931e2008-12-10 09:10:46 -0500658 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000659 ret = 0;
Chris Mason459931e2008-12-10 09:10:46 -0500660out:
661 btrfs_free_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000662 return ret;
Chris Mason459931e2008-12-10 09:10:46 -0500663}
664
Chris Mason065631f2008-02-20 12:07:25 -0500665int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
Chris Masond20f7042008-12-08 16:58:54 -0500666 struct btrfs_root *root,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400667 struct btrfs_ordered_sum *sums)
Chris Masonf254e522007-03-29 15:15:27 -0400668{
Chris Masond20f7042008-12-08 16:58:54 -0500669 u64 bytenr;
Chris Masonf254e522007-03-29 15:15:27 -0400670 int ret;
671 struct btrfs_key file_key;
Chris Mason6567e832007-04-16 09:22:45 -0400672 struct btrfs_key found_key;
Chris Mason065631f2008-02-20 12:07:25 -0500673 u64 next_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400674 u64 total_bytes = 0;
Chris Mason065631f2008-02-20 12:07:25 -0500675 int found_next;
Chris Mason5caf2a02007-04-02 11:20:42 -0400676 struct btrfs_path *path;
Chris Masonf254e522007-03-29 15:15:27 -0400677 struct btrfs_csum_item *item;
Chris Mason065631f2008-02-20 12:07:25 -0500678 struct btrfs_csum_item *item_end;
Chris Masonff79f812007-10-15 16:22:25 -0400679 struct extent_buffer *leaf = NULL;
Chris Mason6567e832007-04-16 09:22:45 -0400680 u64 csum_offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400681 struct btrfs_sector_sum *sector_sum;
Chris Masonf578d4b2007-10-25 15:42:56 -0400682 u32 nritems;
683 u32 ins_size;
David Sterba6c417612011-04-13 15:41:04 +0200684 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
Chris Mason6e92f5e2008-02-20 12:07:25 -0500685
Chris Mason5caf2a02007-04-02 11:20:42 -0400686 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700687 if (!path)
688 return -ENOMEM;
689
Chris Masoned98b562008-07-22 23:06:42 -0400690 sector_sum = sums->sums;
Chris Mason065631f2008-02-20 12:07:25 -0500691again:
692 next_offset = (u64)-1;
693 found_next = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500694 file_key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
695 file_key.offset = sector_sum->bytenr;
696 bytenr = sector_sum->bytenr;
697 btrfs_set_key_type(&file_key, BTRFS_EXTENT_CSUM_KEY);
Chris Masona429e512007-04-18 16:15:28 -0400698
Chris Masond20f7042008-12-08 16:58:54 -0500699 item = btrfs_lookup_csum(trans, root, path, sector_sum->bytenr, 1);
Chris Masonff79f812007-10-15 16:22:25 -0400700 if (!IS_ERR(item)) {
701 leaf = path->nodes[0];
Chris Mason639cb582008-08-28 06:15:25 -0400702 ret = 0;
Chris Masona429e512007-04-18 16:15:28 -0400703 goto found;
Chris Masonff79f812007-10-15 16:22:25 -0400704 }
Chris Masona429e512007-04-18 16:15:28 -0400705 ret = PTR_ERR(item);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400706 if (ret != -EFBIG && ret != -ENOENT)
707 goto fail_unlock;
708
Chris Masona429e512007-04-18 16:15:28 -0400709 if (ret == -EFBIG) {
710 u32 item_size;
711 /* we found one, but it isn't big enough yet */
Chris Mason5f39d392007-10-15 16:14:19 -0400712 leaf = path->nodes[0];
713 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Josef Bacik607d4322008-12-02 07:17:45 -0500714 if ((item_size / csum_size) >=
715 MAX_CSUM_ITEMS(root, csum_size)) {
Chris Masona429e512007-04-18 16:15:28 -0400716 /* already at max size, make a new one */
717 goto insert;
718 }
719 } else {
Chris Masonf578d4b2007-10-25 15:42:56 -0400720 int slot = path->slots[0] + 1;
Chris Masona429e512007-04-18 16:15:28 -0400721 /* we didn't find a csum item, insert one */
Chris Masonf578d4b2007-10-25 15:42:56 -0400722 nritems = btrfs_header_nritems(path->nodes[0]);
723 if (path->slots[0] >= nritems - 1) {
724 ret = btrfs_next_leaf(root, path);
Yanb56baf52007-10-29 12:01:05 -0400725 if (ret == 1)
Chris Masonf578d4b2007-10-25 15:42:56 -0400726 found_next = 1;
Yanb56baf52007-10-29 12:01:05 -0400727 if (ret != 0)
Chris Masonf578d4b2007-10-25 15:42:56 -0400728 goto insert;
Yanb56baf52007-10-29 12:01:05 -0400729 slot = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400730 }
731 btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
Chris Masond20f7042008-12-08 16:58:54 -0500732 if (found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
733 found_key.type != BTRFS_EXTENT_CSUM_KEY) {
Chris Masonf578d4b2007-10-25 15:42:56 -0400734 found_next = 1;
735 goto insert;
736 }
737 next_offset = found_key.offset;
738 found_next = 1;
Chris Masona429e512007-04-18 16:15:28 -0400739 goto insert;
740 }
741
742 /*
743 * at this point, we know the tree has an item, but it isn't big
744 * enough yet to put our csum in. Grow it
745 */
David Sterbab3b4aa72011-04-21 01:20:15 +0200746 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400747 ret = btrfs_search_slot(trans, root, &file_key, path,
Josef Bacik607d4322008-12-02 07:17:45 -0500748 csum_size, 1);
Chris Mason6567e832007-04-16 09:22:45 -0400749 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400750 goto fail_unlock;
Chris Mason459931e2008-12-10 09:10:46 -0500751
752 if (ret > 0) {
753 if (path->slots[0] == 0)
754 goto insert;
755 path->slots[0]--;
Chris Mason6567e832007-04-16 09:22:45 -0400756 }
Chris Mason459931e2008-12-10 09:10:46 -0500757
Chris Mason5f39d392007-10-15 16:14:19 -0400758 leaf = path->nodes[0];
759 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Masond20f7042008-12-08 16:58:54 -0500760 csum_offset = (bytenr - found_key.offset) >>
Chris Mason6567e832007-04-16 09:22:45 -0400761 root->fs_info->sb->s_blocksize_bits;
Chris Mason459931e2008-12-10 09:10:46 -0500762
Chris Masond20f7042008-12-08 16:58:54 -0500763 if (btrfs_key_type(&found_key) != BTRFS_EXTENT_CSUM_KEY ||
764 found_key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
Josef Bacik607d4322008-12-02 07:17:45 -0500765 csum_offset >= MAX_CSUM_ITEMS(root, csum_size)) {
Chris Mason6567e832007-04-16 09:22:45 -0400766 goto insert;
767 }
Chris Mason459931e2008-12-10 09:10:46 -0500768
Chris Mason5f39d392007-10-15 16:14:19 -0400769 if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
Josef Bacik607d4322008-12-02 07:17:45 -0500770 csum_size) {
771 u32 diff = (csum_offset + 1) * csum_size;
Chris Mason459931e2008-12-10 09:10:46 -0500772
773 /*
774 * is the item big enough already? we dropped our lock
775 * before and need to recheck
776 */
777 if (diff < btrfs_item_size_nr(leaf, path->slots[0]))
778 goto csum;
779
Chris Mason5f39d392007-10-15 16:14:19 -0400780 diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500781 if (diff != csum_size)
Chris Mason3a686372007-05-24 13:35:57 -0400782 goto insert;
Chris Mason459931e2008-12-10 09:10:46 -0500783
Jeff Mahoney143bede2012-03-01 14:56:26 +0100784 btrfs_extend_item(trans, root, path, diff);
Chris Mason6567e832007-04-16 09:22:45 -0400785 goto csum;
786 }
787
788insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200789 btrfs_release_path(path);
Chris Mason6567e832007-04-16 09:22:45 -0400790 csum_offset = 0;
Chris Masonf578d4b2007-10-25 15:42:56 -0400791 if (found_next) {
Chris Masond20f7042008-12-08 16:58:54 -0500792 u64 tmp = total_bytes + root->sectorsize;
793 u64 next_sector = sector_sum->bytenr;
794 struct btrfs_sector_sum *next = sector_sum + 1;
795
Chris Masond3977122009-01-05 21:25:51 -0500796 while (tmp < sums->len) {
Chris Masond20f7042008-12-08 16:58:54 -0500797 if (next_sector + root->sectorsize != next->bytenr)
798 break;
799 tmp += root->sectorsize;
800 next_sector = next->bytenr;
801 next++;
802 }
803 tmp = min(tmp, next_offset - file_key.offset);
Chris Masonf578d4b2007-10-25 15:42:56 -0400804 tmp >>= root->fs_info->sb->s_blocksize_bits;
805 tmp = max((u64)1, tmp);
Josef Bacik607d4322008-12-02 07:17:45 -0500806 tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root, csum_size));
807 ins_size = csum_size * tmp;
Chris Masonf578d4b2007-10-25 15:42:56 -0400808 } else {
Josef Bacik607d4322008-12-02 07:17:45 -0500809 ins_size = csum_size;
Chris Masonf578d4b2007-10-25 15:42:56 -0400810 }
Chris Masonb9473432009-03-13 11:00:37 -0400811 path->leave_spinning = 1;
Chris Mason5caf2a02007-04-02 11:20:42 -0400812 ret = btrfs_insert_empty_item(trans, root, path, &file_key,
Chris Masonf578d4b2007-10-25 15:42:56 -0400813 ins_size);
Chris Masonb9473432009-03-13 11:00:37 -0400814 path->leave_spinning = 0;
Chris Mason54aa1f42007-06-22 14:16:25 -0400815 if (ret < 0)
Chris Mason53863232008-08-15 15:34:18 -0400816 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400817 if (ret != 0) {
Chris Masona429e512007-04-18 16:15:28 -0400818 WARN_ON(1);
Chris Mason53863232008-08-15 15:34:18 -0400819 goto fail_unlock;
Chris Masona429e512007-04-18 16:15:28 -0400820 }
Chris Mason6567e832007-04-16 09:22:45 -0400821csum:
Chris Mason5f39d392007-10-15 16:14:19 -0400822 leaf = path->nodes[0];
823 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
Chris Masonf254e522007-03-29 15:15:27 -0400824 ret = 0;
Chris Mason509659c2007-05-10 12:36:17 -0400825 item = (struct btrfs_csum_item *)((unsigned char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500826 csum_offset * csum_size);
Chris Masonb18c6682007-04-17 13:26:50 -0400827found:
Chris Mason065631f2008-02-20 12:07:25 -0500828 item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
829 item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
830 btrfs_item_size_nr(leaf, path->slots[0]));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400831next_sector:
Chris Masonaadfeb62008-01-29 09:10:27 -0500832
Chris Masona6591712011-07-19 12:04:14 -0400833 write_extent_buffer(leaf, &sector_sum->sum, (unsigned long)item, csum_size);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400834
Chris Masone6dcd2d2008-07-17 12:53:50 -0400835 total_bytes += root->sectorsize;
836 sector_sum++;
837 if (total_bytes < sums->len) {
Chris Mason6e92f5e2008-02-20 12:07:25 -0500838 item = (struct btrfs_csum_item *)((char *)item +
Josef Bacik607d4322008-12-02 07:17:45 -0500839 csum_size);
Chris Masond20f7042008-12-08 16:58:54 -0500840 if (item < item_end && bytenr + PAGE_CACHE_SIZE ==
841 sector_sum->bytenr) {
842 bytenr = sector_sum->bytenr;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400843 goto next_sector;
Chris Mason2e1a9922008-02-20 15:44:32 -0500844 }
Chris Mason065631f2008-02-20 12:07:25 -0500845 }
Chris Masona6591712011-07-19 12:04:14 -0400846
Chris Mason5caf2a02007-04-02 11:20:42 -0400847 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400848 if (total_bytes < sums->len) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200849 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -0400850 cond_resched();
Chris Mason065631f2008-02-20 12:07:25 -0500851 goto again;
852 }
Chris Mason53863232008-08-15 15:34:18 -0400853out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400854 btrfs_free_path(path);
Chris Masonf254e522007-03-29 15:15:27 -0400855 return ret;
Chris Mason53863232008-08-15 15:34:18 -0400856
857fail_unlock:
Chris Mason53863232008-08-15 15:34:18 -0400858 goto out;
Chris Masonf254e522007-03-29 15:15:27 -0400859}