file-item.c 7.4 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.
 */

C
Chris Mason 已提交
19
#include "ctree.h"
C
Chris Mason 已提交
20
#include "disk-io.h"
21
#include "transaction.h"
C
Chris Mason 已提交
22
#include "print-tree.h"
C
Chris Mason 已提交
23

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

38 39
	path = btrfs_alloc_path();
	BUG_ON(!path);
C
Chris Mason 已提交
40
	file_key.objectid = objectid;
C
Chris Mason 已提交
41
	file_key.offset = pos;
C
Chris Mason 已提交
42 43 44
	file_key.flags = 0;
	btrfs_set_key_type(&file_key, BTRFS_EXTENT_DATA_KEY);

45
	ret = btrfs_insert_empty_item(trans, root, path, &file_key,
C
Chris Mason 已提交
46
				      sizeof(*item));
47 48
	if (ret < 0)
		goto out;
C
Chris Mason 已提交
49
	BUG_ON(ret);
50
	item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
C
Chris Mason 已提交
51
			      struct btrfs_file_extent_item);
C
Chris Mason 已提交
52
	btrfs_set_file_extent_disk_blocknr(item, offset);
C
Chris Mason 已提交
53
	btrfs_set_file_extent_disk_num_blocks(item, disk_num_blocks);
C
Chris Mason 已提交
54
	btrfs_set_file_extent_offset(item, 0);
C
Chris Mason 已提交
55
	btrfs_set_file_extent_num_blocks(item, num_blocks);
56
	btrfs_set_file_extent_generation(item, trans->transid);
57
	btrfs_set_file_extent_type(item, BTRFS_FILE_EXTENT_REG);
58
	btrfs_mark_buffer_dirty(path->nodes[0]);
59
out:
60
	btrfs_free_path(path);
61
	return ret;
62
}
C
Chris Mason 已提交
63

C
Chris Mason 已提交
64 65 66 67 68
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)
69 70 71 72 73 74 75
{
	int ret;
	struct btrfs_key file_key;
	struct btrfs_key found_key;
	struct btrfs_csum_item *item;
	struct btrfs_leaf *leaf;
	u64 csum_offset = 0;
76
	int csums_in_item;
77 78 79 80 81

	file_key.objectid = objectid;
	file_key.offset = offset;
	file_key.flags = 0;
	btrfs_set_key_type(&file_key, BTRFS_CSUM_ITEM_KEY);
C
Chris Mason 已提交
82
	ret = btrfs_search_slot(trans, root, &file_key, path, 0, cow);
83 84 85 86 87
	if (ret < 0)
		goto fail;
	leaf = btrfs_buffer_leaf(path->nodes[0]);
	if (ret > 0) {
		ret = 1;
88
		if (path->slots[0] == 0)
89 90 91 92 93 94 95 96 97 98
			goto fail;
		path->slots[0]--;
		btrfs_disk_key_to_cpu(&found_key,
				      &leaf->items[path->slots[0]].key);
		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;
99
		csums_in_item = btrfs_item_size(leaf->items + path->slots[0]);
100
		csums_in_item /= BTRFS_CRC32_SIZE;
101 102 103

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


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

	file_key.objectid = objectid;
129
	file_key.offset = offset;
C
Chris Mason 已提交
130 131 132 133 134
	file_key.flags = 0;
	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 已提交
135 136 137 138 139 140 141 142

int btrfs_csum_file_block(struct btrfs_trans_handle *trans,
			  struct btrfs_root *root,
			  u64 objectid, u64 offset,
			  char *data, size_t len)
{
	int ret;
	struct btrfs_key file_key;
143
	struct btrfs_key found_key;
144
	struct btrfs_path *path;
C
Chris Mason 已提交
145
	struct btrfs_csum_item *item;
146 147
	struct btrfs_leaf *leaf;
	u64 csum_offset;
C
Chris Mason 已提交
148

149 150
	path = btrfs_alloc_path();
	BUG_ON(!path);
C
Chris Mason 已提交
151

C
Chris Mason 已提交
152 153 154 155
	file_key.objectid = objectid;
	file_key.offset = offset;
	file_key.flags = 0;
	btrfs_set_key_type(&file_key, BTRFS_CSUM_ITEM_KEY);
156 157 158 159 160 161 162 163 164 165

	item = btrfs_lookup_csum(trans, root, path, objectid, offset, 1);
	if (!IS_ERR(item))
		goto found;
	ret = PTR_ERR(item);
	if (ret == -EFBIG) {
		u32 item_size;
		/* we found one, but it isn't big enough yet */
		leaf = btrfs_buffer_leaf(path->nodes[0]);
		item_size = btrfs_item_size(leaf->items + path->slots[0]);
166
		if ((item_size / BTRFS_CRC32_SIZE) >= MAX_CSUM_ITEMS(root)) {
167 168 169 170 171 172 173 174 175 176 177 178 179
			/* already at max size, make a new one */
			goto insert;
		}
	} else {
		/* we didn't find a csum item, insert one */
		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);
180
	ret = btrfs_search_slot(trans, root, &file_key, path,
181
				BTRFS_CRC32_SIZE, 1);
182 183 184
	if (ret < 0)
		goto fail;
	if (ret == 0) {
C
Chris Mason 已提交
185
		BUG();
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
	}
	if (path->slots[0] == 0) {
		goto insert;
	}
	path->slots[0]--;
	leaf = btrfs_buffer_leaf(path->nodes[0]);
	btrfs_disk_key_to_cpu(&found_key, &leaf->items[path->slots[0]].key);
	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;
	}
	if (csum_offset >= btrfs_item_size(leaf->items + path->slots[0]) /
201 202
	    BTRFS_CRC32_SIZE) {
		u32 diff = (csum_offset + 1) * BTRFS_CRC32_SIZE;
203
		diff = diff - btrfs_item_size(leaf->items + path->slots[0]);
C
Chris Mason 已提交
204 205
		if (diff != BTRFS_CRC32_SIZE)
			goto insert;
206
		ret = btrfs_extend_item(trans, root, path, diff);
207 208 209 210 211
		BUG_ON(ret);
		goto csum;
	}

insert:
212
	btrfs_release_path(root, path);
213
	csum_offset = 0;
214
	ret = btrfs_insert_empty_item(trans, root, path, &file_key,
215
				      BTRFS_CRC32_SIZE);
216 217
	if (ret < 0)
		goto fail;
218 219
	if (ret != 0) {
		WARN_ON(1);
C
Chris Mason 已提交
220
		goto fail;
221
	}
222
csum:
223
	item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), path->slots[0],
C
Chris Mason 已提交
224 225
			      struct btrfs_csum_item);
	ret = 0;
226 227
	item = (struct btrfs_csum_item *)((unsigned char *)item +
					  csum_offset * BTRFS_CRC32_SIZE);
C
Chris Mason 已提交
228
found:
229 230 231 232
	btrfs_check_bounds(&item->csum, BTRFS_CRC32_SIZE,
			   path->nodes[0]->b_data,
			   root->fs_info->sb->s_blocksize);
	ret = btrfs_csum_data(root, data, len, &item->csum);
233
	btrfs_mark_buffer_dirty(path->nodes[0]);
C
Chris Mason 已提交
234
fail:
235 236
	btrfs_release_path(root, path);
	btrfs_free_path(path);
C
Chris Mason 已提交
237 238 239
	return ret;
}

C
Chris Mason 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
int btrfs_csum_truncate(struct btrfs_trans_handle *trans,
			struct btrfs_root *root, struct btrfs_path *path,
			u64 isize)
{
	struct btrfs_key key;
	struct btrfs_leaf *leaf = btrfs_buffer_leaf(path->nodes[0]);
	int slot = path->slots[0];
	int ret;
	u32 new_item_size;
	u64 new_item_span;
	u64 blocks;

	btrfs_disk_key_to_cpu(&key, &leaf->items[slot].key);
	if (isize <= key.offset)
		return 0;
	new_item_span = isize - key.offset;
C
Chris Mason 已提交
256 257
	blocks = (new_item_span + root->blocksize - 1) >>
		root->fs_info->sb->s_blocksize_bits;
C
Chris Mason 已提交
258 259 260 261 262 263 264 265
	new_item_size = blocks * BTRFS_CRC32_SIZE;
	if (new_item_size >= btrfs_item_size(leaf->items + slot))
		return 0;
	ret = btrfs_truncate_item(trans, root, path, new_item_size);
	BUG_ON(ret);
	return ret;
}