Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame^] | 1 | /* |
| 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 Mason | 2e635a2 | 2007-03-21 11:12:56 -0400 | [diff] [blame] | 19 | #include <linux/module.h> |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 20 | #include "ctree.h" |
| 21 | #include "disk-io.h" |
| 22 | #include "print-tree.h" |
| 23 | |
| 24 | int btrfs_find_last_root(struct btrfs_root *root, u64 objectid, |
| 25 | struct btrfs_root_item *item, struct btrfs_key *key) |
| 26 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 27 | struct btrfs_path *path; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 28 | struct btrfs_key search_key; |
| 29 | struct btrfs_leaf *l; |
| 30 | int ret; |
| 31 | int slot; |
| 32 | |
| 33 | search_key.objectid = objectid; |
| 34 | search_key.flags = (u32)-1; |
| 35 | search_key.offset = (u32)-1; |
| 36 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 37 | path = btrfs_alloc_path(); |
| 38 | BUG_ON(!path); |
| 39 | btrfs_init_path(path); |
| 40 | ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 41 | if (ret < 0) |
| 42 | goto out; |
| 43 | BUG_ON(ret == 0); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 44 | l = btrfs_buffer_leaf(path->nodes[0]); |
| 45 | BUG_ON(path->slots[0] == 0); |
| 46 | slot = path->slots[0] - 1; |
Chris Mason | 62e2749 | 2007-03-15 12:56:47 -0400 | [diff] [blame] | 47 | if (btrfs_disk_key_objectid(&l->items[slot].key) != objectid) { |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 48 | ret = 1; |
| 49 | goto out; |
| 50 | } |
Chris Mason | 123abc8 | 2007-03-14 14:14:43 -0400 | [diff] [blame] | 51 | memcpy(item, btrfs_item_ptr(l, slot, struct btrfs_root_item), |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 52 | sizeof(*item)); |
| 53 | btrfs_disk_key_to_cpu(key, &l->items[slot].key); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 54 | ret = 0; |
| 55 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 56 | btrfs_release_path(root, path); |
| 57 | btrfs_free_path(path); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 58 | return ret; |
| 59 | } |
| 60 | |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 61 | int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root |
| 62 | *root, struct btrfs_key *key, struct btrfs_root_item |
| 63 | *item) |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 64 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 65 | struct btrfs_path *path; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 66 | struct btrfs_leaf *l; |
| 67 | int ret; |
| 68 | int slot; |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 69 | struct btrfs_root_item *update_item; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 70 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 71 | path = btrfs_alloc_path(); |
| 72 | BUG_ON(!path); |
| 73 | btrfs_init_path(path); |
| 74 | ret = btrfs_search_slot(trans, root, key, path, 0, 1); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 75 | if (ret < 0) |
| 76 | goto out; |
| 77 | BUG_ON(ret != 0); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 78 | l = btrfs_buffer_leaf(path->nodes[0]); |
| 79 | slot = path->slots[0]; |
Chris Mason | d602557 | 2007-03-30 14:27:56 -0400 | [diff] [blame] | 80 | update_item = btrfs_item_ptr(l, slot, struct btrfs_root_item); |
| 81 | btrfs_memcpy(root, l, update_item, item, sizeof(*item)); |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 82 | btrfs_mark_buffer_dirty(path->nodes[0]); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 83 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 84 | btrfs_release_path(root, path); |
| 85 | btrfs_free_path(path); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 86 | return ret; |
| 87 | } |
| 88 | |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 89 | int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root |
| 90 | *root, struct btrfs_key *key, struct btrfs_root_item |
| 91 | *item) |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 92 | { |
| 93 | int ret; |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 94 | ret = btrfs_insert_item(trans, root, key, item, sizeof(*item)); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 95 | BUG_ON(ret); |
| 96 | return ret; |
| 97 | } |
| 98 | |
Chris Mason | e089f05 | 2007-03-16 16:20:31 -0400 | [diff] [blame] | 99 | int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, |
| 100 | struct btrfs_key *key) |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 101 | { |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 102 | struct btrfs_path *path; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 103 | int ret; |
Chris Mason | c5739bb | 2007-04-10 09:27:04 -0400 | [diff] [blame] | 104 | u32 refs; |
| 105 | struct btrfs_root_item *ri; |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 106 | |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 107 | path = btrfs_alloc_path(); |
| 108 | BUG_ON(!path); |
| 109 | btrfs_init_path(path); |
| 110 | ret = btrfs_search_slot(trans, root, key, path, -1, 1); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 111 | if (ret < 0) |
| 112 | goto out; |
| 113 | BUG_ON(ret != 0); |
Chris Mason | c5739bb | 2007-04-10 09:27:04 -0400 | [diff] [blame] | 114 | ri = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]), |
| 115 | path->slots[0], struct btrfs_root_item); |
| 116 | |
| 117 | refs = btrfs_root_refs(ri); |
| 118 | BUG_ON(refs == 0); |
| 119 | if (refs == 1) { |
| 120 | ret = btrfs_del_item(trans, root, path); |
Chris Mason | c5739bb | 2007-04-10 09:27:04 -0400 | [diff] [blame] | 121 | } else { |
| 122 | btrfs_set_root_refs(ri, refs - 1); |
Chris Mason | 5af3981 | 2007-06-12 07:50:13 -0400 | [diff] [blame] | 123 | WARN_ON(1); |
Chris Mason | c5739bb | 2007-04-10 09:27:04 -0400 | [diff] [blame] | 124 | mark_buffer_dirty(path->nodes[0]); |
| 125 | } |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 126 | out: |
Chris Mason | 5caf2a0 | 2007-04-02 11:20:42 -0400 | [diff] [blame] | 127 | btrfs_release_path(root, path); |
| 128 | btrfs_free_path(path); |
Chris Mason | 3768f36 | 2007-03-13 16:47:54 -0400 | [diff] [blame] | 129 | return ret; |
| 130 | } |