blob: 3d4bf6833f2a2be6b46610a27b02360e6e5f20df [file] [log] [blame]
Chris Masoneb60cea2007-02-02 09:18:22 -05001#define _XOPEN_SOURCE 500
2#include <stdio.h>
3#include <stdlib.h>
4#include <sys/types.h>
5#include <sys/stat.h>
6#include <fcntl.h>
7#include <unistd.h>
8#include "kerncompat.h"
9#include "radix-tree.h"
10#include "ctree.h"
11#include "disk-io.h"
12
13static int allocated_blocks = 0;
Chris Masoned2ff2c2007-03-01 18:59:40 -050014int cache_max = 10000;
Chris Masoneb60cea2007-02-02 09:18:22 -050015
Chris Mason234b63a2007-03-13 10:46:10 -040016static int check_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -050017{
Chris Mason7518a232007-03-12 12:01:18 -040018 if (buf->blocknr != btrfs_header_blocknr(&buf->node.header))
Chris Mason9a8dd152007-02-23 08:38:36 -050019 BUG();
Chris Mason7518a232007-03-12 12:01:18 -040020 if (root->node && btrfs_header_parentid(&buf->node.header) !=
21 btrfs_header_parentid(&root->node->node.header))
Chris Mason9a8dd152007-02-23 08:38:36 -050022 BUG();
23 return 0;
Chris Masoneb60cea2007-02-02 09:18:22 -050024}
25
Chris Mason234b63a2007-03-13 10:46:10 -040026static int free_some_buffers(struct btrfs_root *root)
Chris Masoned2ff2c2007-03-01 18:59:40 -050027{
28 struct list_head *node, *next;
Chris Mason234b63a2007-03-13 10:46:10 -040029 struct btrfs_buffer *b;
Chris Masoned2ff2c2007-03-01 18:59:40 -050030 if (root->cache_size < cache_max)
31 return 0;
32 list_for_each_safe(node, next, &root->cache) {
Chris Mason234b63a2007-03-13 10:46:10 -040033 b = list_entry(node, struct btrfs_buffer, cache);
Chris Masoned2ff2c2007-03-01 18:59:40 -050034 if (b->count == 1) {
35 BUG_ON(!list_empty(&b->dirty));
36 list_del_init(&b->cache);
Chris Mason234b63a2007-03-13 10:46:10 -040037 btrfs_block_release(root, b);
Chris Masoned2ff2c2007-03-01 18:59:40 -050038 if (root->cache_size < cache_max)
Chris Mason77ce6842007-03-02 10:06:43 -050039 break;
Chris Masoned2ff2c2007-03-01 18:59:40 -050040 }
41 }
42 return 0;
43}
44
Chris Mason234b63a2007-03-13 10:46:10 -040045struct btrfs_buffer *alloc_tree_block(struct btrfs_root *root, u64 blocknr)
Chris Masoneb60cea2007-02-02 09:18:22 -050046{
Chris Mason234b63a2007-03-13 10:46:10 -040047 struct btrfs_buffer *buf;
Chris Masoneb60cea2007-02-02 09:18:22 -050048 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -040049 buf = malloc(sizeof(struct btrfs_buffer));
Chris Masoneb60cea2007-02-02 09:18:22 -050050 if (!buf)
51 return buf;
52 allocated_blocks++;
53 buf->blocknr = blocknr;
Chris Masoned2ff2c2007-03-01 18:59:40 -050054 buf->count = 2;
55 INIT_LIST_HEAD(&buf->dirty);
56 free_some_buffers(root);
Chris Masoneb60cea2007-02-02 09:18:22 -050057 radix_tree_preload(GFP_KERNEL);
58 ret = radix_tree_insert(&root->cache_radix, blocknr, buf);
59 radix_tree_preload_end();
Chris Masoned2ff2c2007-03-01 18:59:40 -050060 list_add_tail(&buf->cache, &root->cache);
61 root->cache_size++;
Chris Masoneb60cea2007-02-02 09:18:22 -050062 if (ret) {
63 free(buf);
64 return NULL;
65 }
66 return buf;
67}
68
Chris Mason234b63a2007-03-13 10:46:10 -040069struct btrfs_buffer *find_tree_block(struct btrfs_root *root, u64 blocknr)
Chris Masoneb60cea2007-02-02 09:18:22 -050070{
Chris Mason234b63a2007-03-13 10:46:10 -040071 struct btrfs_buffer *buf;
Chris Mason9a8dd152007-02-23 08:38:36 -050072 buf = radix_tree_lookup(&root->cache_radix, blocknr);
73 if (buf) {
74 buf->count++;
75 } else {
76 buf = alloc_tree_block(root, blocknr);
77 if (!buf) {
78 BUG();
79 return NULL;
80 }
Chris Masoneb60cea2007-02-02 09:18:22 -050081 }
Chris Masoneb60cea2007-02-02 09:18:22 -050082 return buf;
83}
84
Chris Mason234b63a2007-03-13 10:46:10 -040085struct btrfs_buffer *read_tree_block(struct btrfs_root *root, u64 blocknr)
Chris Masoneb60cea2007-02-02 09:18:22 -050086{
Chris Mason234b63a2007-03-13 10:46:10 -040087 loff_t offset = blocknr * BTRFS_BLOCKSIZE;
88 struct btrfs_buffer *buf;
Chris Masoneb60cea2007-02-02 09:18:22 -050089 int ret;
90
91 buf = radix_tree_lookup(&root->cache_radix, blocknr);
92 if (buf) {
93 buf->count++;
Chris Mason9a8dd152007-02-23 08:38:36 -050094 } else {
95 buf = alloc_tree_block(root, blocknr);
96 if (!buf)
97 return NULL;
Chris Mason234b63a2007-03-13 10:46:10 -040098 ret = pread(root->fp, &buf->node, BTRFS_BLOCKSIZE, offset);
99 if (ret != BTRFS_BLOCKSIZE) {
Chris Mason9a8dd152007-02-23 08:38:36 -0500100 free(buf);
101 return NULL;
102 }
Chris Masoneb60cea2007-02-02 09:18:22 -0500103 }
Chris Mason9a8dd152007-02-23 08:38:36 -0500104 if (check_tree_block(root, buf))
Chris Masoncfaa7292007-02-21 17:04:57 -0500105 BUG();
Chris Masoneb60cea2007-02-02 09:18:22 -0500106 return buf;
107}
108
Chris Mason234b63a2007-03-13 10:46:10 -0400109int dirty_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500110{
111 if (!list_empty(&buf->dirty))
112 return 0;
113 list_add_tail(&buf->dirty, &root->trans);
114 buf->count++;
115 return 0;
116}
117
Chris Mason234b63a2007-03-13 10:46:10 -0400118int clean_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500119{
120 if (!list_empty(&buf->dirty)) {
121 list_del_init(&buf->dirty);
Chris Mason234b63a2007-03-13 10:46:10 -0400122 btrfs_block_release(root, buf);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500123 }
124 return 0;
125}
126
Chris Mason234b63a2007-03-13 10:46:10 -0400127int write_tree_block(struct btrfs_root *root, struct btrfs_buffer *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -0500128{
129 u64 blocknr = buf->blocknr;
Chris Mason234b63a2007-03-13 10:46:10 -0400130 loff_t offset = blocknr * BTRFS_BLOCKSIZE;
Chris Masoneb60cea2007-02-02 09:18:22 -0500131 int ret;
132
Chris Mason7518a232007-03-12 12:01:18 -0400133 if (buf->blocknr != btrfs_header_blocknr(&buf->node.header))
Chris Masoneb60cea2007-02-02 09:18:22 -0500134 BUG();
Chris Mason234b63a2007-03-13 10:46:10 -0400135 ret = pwrite(root->fp, &buf->node, BTRFS_BLOCKSIZE, offset);
136 if (ret != BTRFS_BLOCKSIZE)
Chris Masoneb60cea2007-02-02 09:18:22 -0500137 return ret;
Chris Masoneb60cea2007-02-02 09:18:22 -0500138 return 0;
139}
140
Chris Mason234b63a2007-03-13 10:46:10 -0400141static int __commit_transaction(struct btrfs_root *root)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500142{
Chris Mason234b63a2007-03-13 10:46:10 -0400143 struct btrfs_buffer *b;
Chris Masoned2ff2c2007-03-01 18:59:40 -0500144 int ret = 0;
145 int wret;
146 while(!list_empty(&root->trans)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400147 b = list_entry(root->trans.next, struct btrfs_buffer, dirty);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500148 list_del_init(&b->dirty);
149 wret = write_tree_block(root, b);
150 if (wret)
151 ret = wret;
Chris Mason234b63a2007-03-13 10:46:10 -0400152 btrfs_block_release(root, b);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500153 }
154 return ret;
155}
156
Chris Mason3768f362007-03-13 16:47:54 -0400157static int commit_extent_and_tree_roots(struct btrfs_root *tree_root,
158 struct btrfs_root *extent_root)
159{
160 int ret;
161 u64 old_extent_block;
162
163 while(1) {
164 old_extent_block = btrfs_root_blocknr(&extent_root->root_item);
165 if (old_extent_block == extent_root->node->blocknr)
166 break;
167 btrfs_set_root_blocknr(&extent_root->root_item,
168 extent_root->node->blocknr);
169 ret = btrfs_update_root(tree_root,
170 &extent_root->root_key,
171 &extent_root->root_item);
172 BUG_ON(ret);
173 }
174 __commit_transaction(extent_root);
175 __commit_transaction(tree_root);
176 return 0;
177}
178
Chris Mason234b63a2007-03-13 10:46:10 -0400179int btrfs_commit_transaction(struct btrfs_root *root,
180 struct btrfs_super_block *s)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500181{
Chris Masona28ec192007-03-06 20:08:01 -0500182 int ret = 0;
Chris Mason3768f362007-03-13 16:47:54 -0400183 struct btrfs_buffer *snap = root->commit_root;
184 struct btrfs_key snap_key;
Chris Masona28ec192007-03-06 20:08:01 -0500185
Chris Masoned2ff2c2007-03-01 18:59:40 -0500186 ret = __commit_transaction(root);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500187 BUG_ON(ret);
Chris Mason3768f362007-03-13 16:47:54 -0400188
189 if (root->commit_root == root->node)
190 return 0;
191
192 memcpy(&snap_key, &root->root_key, sizeof(snap_key));
193 root->root_key.offset++;
194
195 btrfs_set_root_blocknr(&root->root_item, root->node->blocknr);
196 ret = btrfs_insert_root(root->tree_root, &root->root_key,
197 &root->root_item);
198 BUG_ON(ret);
199
200 ret = commit_extent_and_tree_roots(root->tree_root, root->extent_root);
201 BUG_ON(ret);
202
Chris Masona28ec192007-03-06 20:08:01 -0500203 write_ctree_super(root, s);
Chris Mason3768f362007-03-13 16:47:54 -0400204 btrfs_finish_extent_commit(root->extent_root);
205 btrfs_finish_extent_commit(root->tree_root);
206
207 root->commit_root = root->node;
208 root->node->count++;
209 ret = btrfs_drop_snapshot(root, snap);
210 BUG_ON(ret);
211
212 ret = btrfs_del_root(root->tree_root, &snap_key);
213 BUG_ON(ret);
214
Chris Masoned2ff2c2007-03-01 18:59:40 -0500215 return ret;
216}
217
Chris Mason3768f362007-03-13 16:47:54 -0400218static int __setup_root(struct btrfs_root *root, u64 objectid, int fp)
Chris Masond97e63b2007-02-20 16:40:44 -0500219{
Chris Masoned2ff2c2007-03-01 18:59:40 -0500220 INIT_LIST_HEAD(&root->trans);
221 INIT_LIST_HEAD(&root->cache);
Chris Masona28ec192007-03-06 20:08:01 -0500222 root->cache_size = 0;
Chris Masond97e63b2007-02-20 16:40:44 -0500223 root->fp = fp;
Chris Masoncfaa7292007-02-21 17:04:57 -0500224 root->node = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500225 root->commit_root = NULL;
Chris Masona28ec192007-03-06 20:08:01 -0500226 memset(&root->current_insert, 0, sizeof(root->current_insert));
Chris Mason0579da42007-03-07 16:15:30 -0500227 memset(&root->last_insert, 0, sizeof(root->last_insert));
Chris Mason3768f362007-03-13 16:47:54 -0400228 memset(&root->root_key, 0, sizeof(root->root_key));
229 memset(&root->root_item, 0, sizeof(root->root_item));
230 return 0;
231}
232
233static int find_and_setup_root(struct btrfs_root *tree_root, u64 objectid,
234 struct btrfs_root *root, int fp)
235{
236 int ret;
237
238 __setup_root(root, objectid, fp);
239 ret = btrfs_find_last_root(tree_root, objectid,
240 &root->root_item, &root->root_key);
241 BUG_ON(ret);
242
243 root->node = read_tree_block(root,
244 btrfs_root_blocknr(&root->root_item));
245 root->ref_cows = 0;
246 BUG_ON(!root->node);
Chris Masond97e63b2007-02-20 16:40:44 -0500247 return 0;
248}
249
Chris Mason234b63a2007-03-13 10:46:10 -0400250struct btrfs_root *open_ctree(char *filename, struct btrfs_super_block *super)
Chris Masoneb60cea2007-02-02 09:18:22 -0500251{
Chris Mason234b63a2007-03-13 10:46:10 -0400252 struct btrfs_root *root = malloc(sizeof(struct btrfs_root));
253 struct btrfs_root *extent_root = malloc(sizeof(struct btrfs_root));
Chris Mason3768f362007-03-13 16:47:54 -0400254 struct btrfs_root *tree_root = malloc(sizeof(struct btrfs_root));
Chris Masoneb60cea2007-02-02 09:18:22 -0500255 int fp;
Chris Masoneb60cea2007-02-02 09:18:22 -0500256 int ret;
257
Chris Mason3768f362007-03-13 16:47:54 -0400258 root->extent_root = extent_root;
259 root->tree_root = tree_root;
260
261 extent_root->extent_root = extent_root;
262 extent_root->tree_root = tree_root;
263
264 tree_root->extent_root = extent_root;
265 tree_root->tree_root = tree_root;
266
Chris Masonc6730242007-02-26 10:46:55 -0500267 fp = open(filename, O_CREAT | O_RDWR, 0600);
Chris Masoneb60cea2007-02-02 09:18:22 -0500268 if (fp < 0) {
269 free(root);
270 return NULL;
271 }
Chris Mason9a8dd152007-02-23 08:38:36 -0500272 INIT_RADIX_TREE(&root->cache_radix, GFP_KERNEL);
Chris Masona28ec192007-03-06 20:08:01 -0500273 INIT_RADIX_TREE(&root->pinned_radix, GFP_KERNEL);
274 INIT_RADIX_TREE(&extent_root->pinned_radix, GFP_KERNEL);
Chris Mason9a8dd152007-02-23 08:38:36 -0500275 INIT_RADIX_TREE(&extent_root->cache_radix, GFP_KERNEL);
Chris Mason3768f362007-03-13 16:47:54 -0400276 INIT_RADIX_TREE(&tree_root->pinned_radix, GFP_KERNEL);
277 INIT_RADIX_TREE(&tree_root->cache_radix, GFP_KERNEL);
278
Chris Mason234b63a2007-03-13 10:46:10 -0400279 ret = pread(fp, super, sizeof(struct btrfs_super_block),
280 BTRFS_SUPER_INFO_OFFSET(BTRFS_BLOCKSIZE));
Chris Mason3768f362007-03-13 16:47:54 -0400281 if (ret == 0 || btrfs_super_root(super) == 0) {
Chris Mason5c680ed2007-02-22 11:39:13 -0500282 printf("making new FS!\n");
Chris Mason3768f362007-03-13 16:47:54 -0400283 ret = mkfs(fp, 0, BTRFS_BLOCKSIZE);
Chris Masond97e63b2007-02-20 16:40:44 -0500284 if (ret)
285 return NULL;
Chris Mason234b63a2007-03-13 10:46:10 -0400286 ret = pread(fp, super, sizeof(struct btrfs_super_block),
287 BTRFS_SUPER_INFO_OFFSET(BTRFS_BLOCKSIZE));
288 if (ret != sizeof(struct btrfs_super_block))
Chris Masond97e63b2007-02-20 16:40:44 -0500289 return NULL;
290 }
291 BUG_ON(ret < 0);
Chris Mason3768f362007-03-13 16:47:54 -0400292
293 __setup_root(tree_root, BTRFS_ROOT_TREE_OBJECTID, fp);
294 tree_root->node = read_tree_block(tree_root, btrfs_super_root(super));
295 BUG_ON(!tree_root->node);
296
297 ret = find_and_setup_root(tree_root, BTRFS_EXTENT_TREE_OBJECTID,
298 extent_root, fp);
299 BUG_ON(ret);
300
301 ret = find_and_setup_root(tree_root, BTRFS_FS_TREE_OBJECTID,
302 root, fp);
303 BUG_ON(ret);
304
Chris Masona28ec192007-03-06 20:08:01 -0500305 root->commit_root = root->node;
306 root->node->count++;
Chris Mason3768f362007-03-13 16:47:54 -0400307 root->ref_cows = 1;
Chris Masoneb60cea2007-02-02 09:18:22 -0500308 return root;
309}
310
Chris Mason234b63a2007-03-13 10:46:10 -0400311int write_ctree_super(struct btrfs_root *root, struct btrfs_super_block *s)
Chris Masoncfaa7292007-02-21 17:04:57 -0500312{
313 int ret;
Chris Mason3768f362007-03-13 16:47:54 -0400314 btrfs_set_super_root(s, root->tree_root->node->blocknr);
Chris Mason234b63a2007-03-13 10:46:10 -0400315 ret = pwrite(root->fp, s, sizeof(*s),
316 BTRFS_SUPER_INFO_OFFSET(BTRFS_BLOCKSIZE));
Chris Masoncfaa7292007-02-21 17:04:57 -0500317 if (ret != sizeof(*s)) {
318 fprintf(stderr, "failed to write new super block err %d\n", ret);
319 return ret;
320 }
321 return 0;
322}
323
Chris Mason234b63a2007-03-13 10:46:10 -0400324static int drop_cache(struct btrfs_root *root)
Chris Masoned2ff2c2007-03-01 18:59:40 -0500325{
326 while(!list_empty(&root->cache)) {
Chris Mason234b63a2007-03-13 10:46:10 -0400327 struct btrfs_buffer *b = list_entry(root->cache.next,
328 struct btrfs_buffer, cache);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500329 list_del_init(&b->cache);
Chris Mason234b63a2007-03-13 10:46:10 -0400330 btrfs_block_release(root, b);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500331 }
332 return 0;
333}
Chris Mason234b63a2007-03-13 10:46:10 -0400334int close_ctree(struct btrfs_root *root, struct btrfs_super_block *s)
Chris Masoneb60cea2007-02-02 09:18:22 -0500335{
Chris Mason3768f362007-03-13 16:47:54 -0400336 int ret;
Chris Mason234b63a2007-03-13 10:46:10 -0400337 btrfs_commit_transaction(root, s);
Chris Mason3768f362007-03-13 16:47:54 -0400338 ret = commit_extent_and_tree_roots(root->tree_root, root->extent_root);
339 BUG_ON(ret);
Chris Masona28ec192007-03-06 20:08:01 -0500340 write_ctree_super(root, s);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500341 drop_cache(root->extent_root);
Chris Mason3768f362007-03-13 16:47:54 -0400342 drop_cache(root->tree_root);
Chris Masoned2ff2c2007-03-01 18:59:40 -0500343 drop_cache(root);
344 BUG_ON(!list_empty(&root->trans));
345 BUG_ON(!list_empty(&root->extent_root->trans));
Chris Mason3768f362007-03-13 16:47:54 -0400346 BUG_ON(!list_empty(&root->tree_root->trans));
Chris Masoned2ff2c2007-03-01 18:59:40 -0500347
Chris Masoneb60cea2007-02-02 09:18:22 -0500348 close(root->fp);
349 if (root->node)
Chris Mason234b63a2007-03-13 10:46:10 -0400350 btrfs_block_release(root, root->node);
Chris Masoncfaa7292007-02-21 17:04:57 -0500351 if (root->extent_root->node)
Chris Mason234b63a2007-03-13 10:46:10 -0400352 btrfs_block_release(root->extent_root, root->extent_root->node);
Chris Mason3768f362007-03-13 16:47:54 -0400353 if (root->tree_root->node)
354 btrfs_block_release(root->tree_root, root->tree_root->node);
Chris Mason234b63a2007-03-13 10:46:10 -0400355 btrfs_block_release(root, root->commit_root);
Chris Masoneb60cea2007-02-02 09:18:22 -0500356 free(root);
357 printf("on close %d blocks are allocated\n", allocated_blocks);
358 return 0;
359}
360
Chris Mason234b63a2007-03-13 10:46:10 -0400361void btrfs_block_release(struct btrfs_root *root, struct btrfs_buffer *buf)
Chris Masoneb60cea2007-02-02 09:18:22 -0500362{
Chris Masoneb60cea2007-02-02 09:18:22 -0500363 buf->count--;
Chris Masoncfaa7292007-02-21 17:04:57 -0500364 if (buf->count < 0)
365 BUG();
Chris Masoneb60cea2007-02-02 09:18:22 -0500366 if (buf->count == 0) {
Chris Mason02217ed2007-03-02 16:08:05 -0500367 BUG_ON(!list_empty(&buf->cache));
368 BUG_ON(!list_empty(&buf->dirty));
Chris Masoneb60cea2007-02-02 09:18:22 -0500369 if (!radix_tree_lookup(&root->cache_radix, buf->blocknr))
370 BUG();
371 radix_tree_delete(&root->cache_radix, buf->blocknr);
372 memset(buf, 0, sizeof(*buf));
373 free(buf);
374 BUG_ON(allocated_blocks == 0);
375 allocated_blocks--;
Chris Masoned2ff2c2007-03-01 18:59:40 -0500376 BUG_ON(root->cache_size == 0);
377 root->cache_size--;
Chris Masoneb60cea2007-02-02 09:18:22 -0500378 }
379}
380