file-item.c 9.9 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

19 20 21
#include <linux/bio.h>
#include <linux/pagemap.h>
#include <linux/highmem.h>
C
Chris Mason 已提交
22
#include "ctree.h"
C
Chris Mason 已提交
23
#include "disk-io.h"
24
#include "transaction.h"
C
Chris Mason 已提交
25
#include "print-tree.h"
C
Chris Mason 已提交
26

27
#define MAX_CSUM_ITEMS(r) ((((BTRFS_LEAF_DATA_SIZE(r) - \
28 29
			       sizeof(struct btrfs_item) * 2) / \
			       BTRFS_CRC32_SIZE) - 1))
C
Chris Mason 已提交
30
int btrfs_insert_file_extent(struct btrfs_trans_handle *trans,
C
Chris Mason 已提交
31
			       struct btrfs_root *root,
C
Chris Mason 已提交
32
			       u64 objectid, u64 pos,
33 34
			       u64 offset, u64 disk_num_bytes,
			       u64 num_bytes)
35
{
C
Chris Mason 已提交
36 37 38
	int ret = 0;
	struct btrfs_file_extent_item *item;
	struct btrfs_key file_key;
39
	struct btrfs_path *path;
40
	struct extent_buffer *leaf;
C
Chris Mason 已提交
41

42 43
	path = btrfs_alloc_path();
	BUG_ON(!path);
C
Chris Mason 已提交
44
	file_key.objectid = objectid;
C
Chris Mason 已提交
45
	file_key.offset = pos;
C
Chris Mason 已提交
46 47
	btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);

48
	ret = btrfs_insert_empty_item(trans, root, path, &file_key,
C
Chris Mason 已提交
49
				      sizeof(*item));
50 51
	if (ret < 0)
		goto out;
C
Chris Mason 已提交
52
	BUG_ON(ret);
53 54
	leaf = path->nodes[0];
	item = btrfs_item_ptr(leaf, path->slots[0],
C
Chris Mason 已提交
55
			      struct btrfs_file_extent_item);
56 57
	btrfs_set_file_extent_disk_bytenr(leaf, item, offset);
	btrfs_set_file_extent_disk_num_bytes(leaf, item, disk_num_bytes);
58
	btrfs_set_file_extent_offset(leaf, item, 0);
59
	btrfs_set_file_extent_num_bytes(leaf, item, num_bytes);
60 61 62
	btrfs_set_file_extent_generation(leaf, item, trans->transid);
	btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
	btrfs_mark_buffer_dirty(leaf);
63
out:
64
	btrfs_free_path(path);
65
	return ret;
66
}
C
Chris Mason 已提交
67

C
Chris Mason 已提交
68 69 70 71 72
struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_trans_handle *trans,
					  struct btrfs_root *root,
					  struct btrfs_path *path,
					  u64 objectid, u64 offset,
					  int cow)
73 74 75 76 77
{
	int ret;
	struct btrfs_key file_key;
	struct btrfs_key found_key;
	struct btrfs_csum_item *item;
78
	struct extent_buffer *leaf;
79
	u64 csum_offset = 0;
80
	int csums_in_item;
81 82 83 84

	file_key.objectid = objectid;
	file_key.offset = offset;
	btrfs_set_key_type(&file_key, BTRFS_CSUM_ITEM_KEY);
C
Chris Mason 已提交
85
	ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
86 87
	if (ret < 0)
		goto fail;
88
	leaf = path->nodes[0];
89 90
	if (ret > 0) {
		ret = 1;
91
		if (path->slots[0] == 0)
92 93
			goto fail;
		path->slots[0]--;
94
		btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
95 96 97 98 99 100
		if (btrfs_key_type(&found_key) != BTRFS_CSUM_ITEM_KEY ||
		    found_key.objectid != objectid) {
			goto fail;
		}
		csum_offset = (offset - found_key.offset) >>
				root->fs_info->sb->s_blocksize_bits;
101
		csums_in_item = btrfs_item_size_nr(leaf, path->slots[0]);
102
		csums_in_item /= BTRFS_CRC32_SIZE;
103 104 105

		if (csum_offset >= csums_in_item) {
			ret = -EFBIG;
106 107 108 109
			goto fail;
		}
	}
	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
110 111
	item = (struct btrfs_csum_item *)((unsigned char *)item +
					  csum_offset * BTRFS_CRC32_SIZE);
112 113 114
	return item;
fail:
	if (ret > 0)
C
Chris Mason 已提交
115
		ret = -ENOENT;
116 117 118 119
	return ERR_PTR(ret);
}


C
Chris Mason 已提交
120 121 122
int btrfs_lookup_file_extent(struct btrfs_trans_handle *trans,
			     struct btrfs_root *root,
			     struct btrfs_path *path, u64 objectid,
C
Chris Mason 已提交
123
			     u64 offset, int mod)
C
Chris Mason 已提交
124 125 126 127 128 129 130
{
	int ret;
	struct btrfs_key file_key;
	int ins_len = mod < 0 ? -1 : 0;
	int cow = mod != 0;

	file_key.objectid = objectid;
131
	file_key.offset = offset;
C
Chris Mason 已提交
132 133 134 135
	btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);
	ret = btrfs_search_slot(trans, root, &file_key, path, ins_len, cow);
	return ret;
}
C
Chris Mason 已提交
136

137 138 139
int btrfs_csum_file_blocks(struct btrfs_trans_handle *trans,
			   struct btrfs_root *root, struct inode *inode,
			   struct bio *bio)
C
Chris Mason 已提交
140
{
141 142
	u64 objectid = inode->i_ino;
	u64 offset;
C
Chris Mason 已提交
143 144
	int ret;
	struct btrfs_key file_key;
145
	struct btrfs_key found_key;
146 147
	u64 next_offset;
	int found_next;
148
	struct btrfs_path *path;
C
Chris Mason 已提交
149
	struct btrfs_csum_item *item;
150
	struct btrfs_csum_item *item_end;
151
	struct extent_buffer *leaf = NULL;
152
	u64 csum_offset;
153
	u32 csum_result;
154 155
	u32 nritems;
	u32 ins_size;
156 157 158
	int bio_index = 0;
	struct bio_vec *bvec = bio->bi_io_vec;
	char *data;
159 160 161 162 163
	char *eb_map;
	char *eb_token;
	unsigned long map_len;
	unsigned long map_start;

164 165
	path = btrfs_alloc_path();
	BUG_ON(!path);
166 167 168 169
again:
	next_offset = (u64)-1;
	found_next = 0;
	offset = page_offset(bvec->bv_page) + bvec->bv_offset;
C
Chris Mason 已提交
170 171 172
	file_key.objectid = objectid;
	file_key.offset = offset;
	btrfs_set_key_type(&file_key, BTRFS_CSUM_ITEM_KEY);
173 174

	item = btrfs_lookup_csum(trans, root, path, objectid, offset, 1);
175 176
	if (!IS_ERR(item)) {
		leaf = path->nodes[0];
177
		goto found;
178
	}
179 180 181 182
	ret = PTR_ERR(item);
	if (ret == -EFBIG) {
		u32 item_size;
		/* we found one, but it isn't big enough yet */
183 184
		leaf = path->nodes[0];
		item_size = btrfs_item_size_nr(leaf, path->slots[0]);
185
		if ((item_size / BTRFS_CRC32_SIZE) >= MAX_CSUM_ITEMS(root)) {
186 187 188 189
			/* already at max size, make a new one */
			goto insert;
		}
	} else {
190
		int slot = path->slots[0] + 1;
191
		/* we didn't find a csum item, insert one */
192 193 194
		nritems = btrfs_header_nritems(path->nodes[0]);
		if (path->slots[0] >= nritems - 1) {
			ret = btrfs_next_leaf(root, path);
Y
Yan 已提交
195
			if (ret == 1)
196
				found_next = 1;
Y
Yan 已提交
197
			if (ret != 0)
198
				goto insert;
Y
Yan 已提交
199
			slot = 0;
200 201 202 203 204 205 206 207 208
		}
		btrfs_item_key_to_cpu(path->nodes[0], &found_key, slot);
		if (found_key.objectid != objectid ||
		    found_key.type != BTRFS_CSUM_ITEM_KEY) {
			found_next = 1;
			goto insert;
		}
		next_offset = found_key.offset;
		found_next = 1;
209 210 211 212 213 214 215 216
		goto insert;
	}

	/*
	 * at this point, we know the tree has an item, but it isn't big
	 * enough yet to put our csum in.  Grow it
	 */
	btrfs_release_path(root, path);
217
	ret = btrfs_search_slot(trans, root, &file_key, path,
218
				BTRFS_CRC32_SIZE, 1);
219 220 221
	if (ret < 0)
		goto fail;
	if (ret == 0) {
C
Chris Mason 已提交
222
		BUG();
223 224 225 226 227
	}
	if (path->slots[0] == 0) {
		goto insert;
	}
	path->slots[0]--;
228 229
	leaf = path->nodes[0];
	btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
230 231 232 233 234 235 236
	csum_offset = (offset - found_key.offset) >>
			root->fs_info->sb->s_blocksize_bits;
	if (btrfs_key_type(&found_key) != BTRFS_CSUM_ITEM_KEY ||
	    found_key.objectid != objectid ||
	    csum_offset >= MAX_CSUM_ITEMS(root)) {
		goto insert;
	}
237
	if (csum_offset >= btrfs_item_size_nr(leaf, path->slots[0]) /
238 239
	    BTRFS_CRC32_SIZE) {
		u32 diff = (csum_offset + 1) * BTRFS_CRC32_SIZE;
240
		diff = diff - btrfs_item_size_nr(leaf, path->slots[0]);
C
Chris Mason 已提交
241 242
		if (diff != BTRFS_CRC32_SIZE)
			goto insert;
243
		ret = btrfs_extend_item(trans, root, path, diff);
244 245 246 247 248
		BUG_ON(ret);
		goto csum;
	}

insert:
249
	btrfs_release_path(root, path);
250
	csum_offset = 0;
251 252
	if (found_next) {
		u64 tmp = min((u64)i_size_read(inode), next_offset);
Y
Yan 已提交
253
		tmp -= offset & ~((u64)root->sectorsize -1);
254 255 256 257 258 259 260
		tmp >>= root->fs_info->sb->s_blocksize_bits;
		tmp = max((u64)1, tmp);
		tmp = min(tmp, (u64)MAX_CSUM_ITEMS(root));
		ins_size = BTRFS_CRC32_SIZE * tmp;
	} else {
		ins_size = BTRFS_CRC32_SIZE;
	}
261
	ret = btrfs_insert_empty_item(trans, root, path, &file_key,
262
				      ins_size);
263 264
	if (ret < 0)
		goto fail;
265 266
	if (ret != 0) {
		WARN_ON(1);
C
Chris Mason 已提交
267
		goto fail;
268
	}
269
csum:
270 271
	leaf = path->nodes[0];
	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
C
Chris Mason 已提交
272
	ret = 0;
273 274
	item = (struct btrfs_csum_item *)((unsigned char *)item +
					  csum_offset * BTRFS_CRC32_SIZE);
C
Chris Mason 已提交
275
found:
276 277 278
	item_end = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_csum_item);
	item_end = (struct btrfs_csum_item *)((unsigned char *)item_end +
				      btrfs_item_size_nr(leaf, path->slots[0]));
279
	eb_token = NULL;
280 281 282 283 284 285
next_bvec:
	data = kmap_atomic(bvec->bv_page, KM_IRQ0);
	csum_result = ~(u32)0;
	csum_result = btrfs_csum_data(root, data + bvec->bv_offset,
				      csum_result, bvec->bv_len);
	kunmap_atomic(data, KM_IRQ0);
286
	btrfs_csum_final(csum_result, (char *)&csum_result);
287 288 289 290
	if (csum_result == 0) {
		printk("csum result is 0 for inode %lu offset %Lu\n", inode->i_ino, offset);
	}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
	if (!eb_token ||
	   (unsigned long)item  + BTRFS_CRC32_SIZE >= map_start + map_len) {
		int err;

		if (eb_token)
			unmap_extent_buffer(leaf, eb_token, KM_IRQ1);
		eb_token = NULL;
		err = map_private_extent_buffer(leaf, (unsigned long)item,
						BTRFS_CRC32_SIZE,
						&eb_token, &eb_map,
						&map_start, &map_len, KM_IRQ1);
		if (err)
			eb_token = NULL;
	}
	if (eb_token) {
		memcpy(eb_token + ((unsigned long)item & (PAGE_CACHE_SIZE - 1)),
		       &csum_result, BTRFS_CRC32_SIZE);
	} else {
		write_extent_buffer(leaf, &csum_result, (unsigned long)item,
				    BTRFS_CRC32_SIZE);
	}
312 313 314
	bio_index++;
	bvec++;
	if (bio_index < bio->bi_vcnt) {
315 316
		item = (struct btrfs_csum_item *)((char *)item +
						  BTRFS_CRC32_SIZE);
317 318 319
		if (item < item_end && offset + PAGE_CACHE_SIZE ==
		    page_offset(bvec->bv_page)) {
			offset = page_offset(bvec->bv_page);
320
			goto next_bvec;
321
		}
322
	}
323 324 325 326
	if (eb_token) {
		unmap_extent_buffer(leaf, eb_token, KM_IRQ1);
		eb_token = NULL;
	}
327
	btrfs_mark_buffer_dirty(path->nodes[0]);
328 329 330 331
	if (bio_index < bio->bi_vcnt) {
		btrfs_release_path(root, path);
		goto again;
	}
C
Chris Mason 已提交
332
fail:
333
	btrfs_free_path(path);
C
Chris Mason 已提交
334 335 336
	return ret;
}

C
Chris Mason 已提交
337 338 339 340 341
int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
			struct btrfs_root *root, struct btrfs_path *path,
			u64 isize)
{
	struct btrfs_key key;
342
	struct extent_buffer *leaf = path->nodes[0];
C
Chris Mason 已提交
343 344 345 346 347 348
	int slot = path->slots[0];
	int ret;
	u32 new_item_size;
	u64 new_item_span;
	u64 blocks;

349
	btrfs_item_key_to_cpu(leaf, &key, slot);
C
Chris Mason 已提交
350 351 352
	if (isize <= key.offset)
		return 0;
	new_item_span = isize - key.offset;
353
	blocks = (new_item_span + root->sectorsize - 1) >>
C
Chris Mason 已提交
354
		root->fs_info->sb->s_blocksize_bits;
C
Chris Mason 已提交
355
	new_item_size = blocks * BTRFS_CRC32_SIZE;
356
	if (new_item_size >= btrfs_item_size_nr(leaf, slot))
C
Chris Mason 已提交
357
		return 0;
358
	ret = btrfs_truncate_item(trans, root, path, new_item_size, 1);
C
Chris Mason 已提交
359 360 361 362
	BUG_ON(ret);
	return ret;
}