2 * Copyright (C) 2012 Alexander Block. All rights reserved.
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.
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.
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.
19 #include <sys/ioctl.h>
22 #include "send-utils.h"
24 #include "btrfs-list.h"
26 static struct rb_node *tree_insert(struct rb_root *root,
27 struct subvol_info *si,
28 enum subvol_search_type type)
30 struct rb_node ** p = &root->rb_node;
31 struct rb_node * parent = NULL;
32 struct subvol_info *entry;
37 if (type == subvol_search_by_received_uuid) {
38 entry = rb_entry(parent, struct subvol_info,
41 comp = memcmp(entry->received_uuid, si->received_uuid,
44 if (entry->stransid < si->stransid)
46 else if (entry->stransid > si->stransid)
51 } else if (type == subvol_search_by_uuid) {
52 entry = rb_entry(parent, struct subvol_info,
54 comp = memcmp(entry->uuid, si->uuid, BTRFS_UUID_SIZE);
55 } else if (type == subvol_search_by_root_id) {
56 entry = rb_entry(parent, struct subvol_info,
58 comp = entry->root_id - si->root_id;
59 } else if (type == subvol_search_by_path) {
60 entry = rb_entry(parent, struct subvol_info,
62 comp = strcmp(entry->path, si->path);
75 if (type == subvol_search_by_received_uuid) {
76 rb_link_node(&si->rb_received_node, parent, p);
77 rb_insert_color(&si->rb_received_node, root);
78 } else if (type == subvol_search_by_uuid) {
79 rb_link_node(&si->rb_local_node, parent, p);
80 rb_insert_color(&si->rb_local_node, root);
81 } else if (type == subvol_search_by_root_id) {
82 rb_link_node(&si->rb_root_id_node, parent, p);
83 rb_insert_color(&si->rb_root_id_node, root);
84 } else if (type == subvol_search_by_path) {
85 rb_link_node(&si->rb_path_node, parent, p);
86 rb_insert_color(&si->rb_path_node, root);
91 static struct subvol_info *tree_search(struct rb_root *root,
92 u64 root_id, const u8 *uuid,
93 u64 stransid, const char *path,
94 enum subvol_search_type type)
96 struct rb_node * n = root->rb_node;
97 struct subvol_info *entry;
101 if (type == subvol_search_by_received_uuid) {
102 entry = rb_entry(n, struct subvol_info,
104 comp = memcmp(entry->received_uuid, uuid,
107 if (entry->stransid < stransid)
109 else if (entry->stransid > stransid)
114 } else if (type == subvol_search_by_uuid) {
115 entry = rb_entry(n, struct subvol_info, rb_local_node);
116 comp = memcmp(entry->uuid, uuid, BTRFS_UUID_SIZE);
117 } else if (type == subvol_search_by_root_id) {
118 entry = rb_entry(n, struct subvol_info, rb_root_id_node);
119 comp = entry->root_id - root_id;
120 } else if (type == subvol_search_by_path) {
121 entry = rb_entry(n, struct subvol_info, rb_path_node);
122 comp = strcmp(entry->path, path);
136 static int count_bytes(void *buf, int len, char b)
140 for (i = 0; i < len; i++) {
141 if (((char*)buf)[i] == b)
147 void subvol_uuid_search_add(struct subvol_uuid_search *s,
148 struct subvol_info *si)
152 tree_insert(&s->root_id_subvols, si, subvol_search_by_root_id);
153 tree_insert(&s->path_subvols, si, subvol_search_by_path);
155 cnt = count_bytes(si->uuid, BTRFS_UUID_SIZE, 0);
156 if (cnt != BTRFS_UUID_SIZE)
157 tree_insert(&s->local_subvols, si, subvol_search_by_uuid);
158 cnt = count_bytes(si->received_uuid, BTRFS_UUID_SIZE, 0);
159 if (cnt != BTRFS_UUID_SIZE)
160 tree_insert(&s->received_subvols, si,
161 subvol_search_by_received_uuid);
164 struct subvol_info *subvol_uuid_search(struct subvol_uuid_search *s,
165 u64 root_id, const u8 *uuid, u64 transid,
167 enum subvol_search_type type)
169 struct rb_root *root;
170 if (type == subvol_search_by_received_uuid)
171 root = &s->received_subvols;
172 else if (type == subvol_search_by_uuid)
173 root = &s->local_subvols;
174 else if (type == subvol_search_by_root_id)
175 root = &s->root_id_subvols;
176 else if (type == subvol_search_by_path)
177 root = &s->path_subvols;
180 return tree_search(root, root_id, uuid, transid, path, type);
183 int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s)
186 struct btrfs_ioctl_search_args args;
187 struct btrfs_ioctl_search_key *sk = &args.key;
188 struct btrfs_ioctl_search_header *sh;
189 struct btrfs_root_item *root_item_ptr;
190 struct btrfs_root_item root_item;
191 struct subvol_info *si = NULL;
192 int root_item_valid = 0;
193 unsigned long off = 0;
198 memset(&args, 0, sizeof(args));
200 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
202 sk->max_objectid = (u64)-1;
203 sk->max_offset = (u64)-1;
204 sk->max_transid = (u64)-1;
205 sk->min_type = BTRFS_ROOT_ITEM_KEY;
206 sk->max_type = BTRFS_ROOT_BACKREF_KEY;
210 ret = ioctl(mnt_fd, BTRFS_IOC_TREE_SEARCH, &args);
213 fprintf(stderr, "ERROR: can't perform the search- %s\n",
217 if (sk->nr_items == 0)
222 for (i = 0; i < sk->nr_items; i++) {
223 sh = (struct btrfs_ioctl_search_header *)(args.buf +
227 if ((sh->objectid != 5 &&
228 sh->objectid < BTRFS_FIRST_FREE_OBJECTID) ||
229 sh->objectid == BTRFS_FREE_INO_OBJECTID)
232 if (sh->type == BTRFS_ROOT_ITEM_KEY) {
233 /* older kernels don't have uuids+times */
234 if (sh->len < sizeof(root_item)) {
238 root_item_ptr = (struct btrfs_root_item *)
240 memcpy(&root_item, root_item_ptr,
243 } else if (sh->type == BTRFS_ROOT_BACKREF_KEY ||
245 if (!root_item_valid)
248 path = btrfs_list_path_for_root(mnt_fd,
254 fprintf(stderr, "ERROR: unable to "
261 si = calloc(1, sizeof(*si));
262 si->root_id = sh->objectid;
263 memcpy(si->uuid, root_item.uuid,
265 memcpy(si->parent_uuid, root_item.parent_uuid,
267 memcpy(si->received_uuid,
268 root_item.received_uuid,
270 si->ctransid = btrfs_root_ctransid(&root_item);
271 si->otransid = btrfs_root_otransid(&root_item);
272 si->stransid = btrfs_root_stransid(&root_item);
273 si->rtransid = btrfs_root_rtransid(&root_item);
275 subvol_uuid_search_add(s, si);
285 * record the mins in sk so we can make sure the
286 * next search doesn't repeat this root
288 sk->min_objectid = sh->objectid;
289 sk->min_offset = sh->offset;
290 sk->min_type = sh->type;
293 if (sk->min_offset < (u64)-1)
295 else if (sk->min_objectid < (u64)-1) {
308 char *path_cat(const char *p1, const char *p2)
310 int p1_len = strlen(p1);
311 int p2_len = strlen(p2);
312 char *new = malloc(p1_len + p2_len + 3);
314 if (p1_len && p1[p1_len - 1] == '/')
316 if (p2_len && p2[p2_len - 1] == '/')
318 sprintf(new, "%.*s/%.*s", p1_len, p1, p2_len, p2);
323 char *path_cat3(const char *p1, const char *p2, const char *p3)
325 int p1_len = strlen(p1);
326 int p2_len = strlen(p2);
327 int p3_len = strlen(p3);
328 char *new = malloc(p1_len + p2_len + p3_len + 4);
330 if (p1_len && p1[p1_len - 1] == '/')
332 if (p2_len && p2[p2_len - 1] == '/')
334 if (p3_len && p3[p3_len - 1] == '/')
336 sprintf(new, "%.*s/%.*s/%.*s", p1_len, p1, p2_len, p2, p3_len, p3);