Btrfs-progs: add a function to free subvol_uuid_search memory
[platform/upstream/btrfs-progs.git] / send-utils.h
1 /*
2  * Copyright (C) 2012 Alexander Block.  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 #ifndef SEND_UTILS_H_
19 #define SEND_UTILS_H_
20
21 #if BTRFS_FLAT_INCLUDES
22 #include "ctree.h"
23 #include "rbtree.h"
24 #else
25 #include <btrfs/ctree.h>
26 #include <btrfs/rbtree.h>
27 #endif /* BTRFS_FLAT_INCLUDES */
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 enum subvol_search_type {
34         subvol_search_by_root_id,
35         subvol_search_by_uuid,
36         subvol_search_by_received_uuid,
37         subvol_search_by_path,
38 };
39
40 struct subvol_info {
41         struct rb_node rb_root_id_node;
42         struct rb_node rb_local_node;
43         struct rb_node rb_received_node;
44         struct rb_node rb_path_node;
45         u64 root_id;
46         u8 uuid[BTRFS_UUID_SIZE];
47         u8 parent_uuid[BTRFS_UUID_SIZE];
48         u8 received_uuid[BTRFS_UUID_SIZE];
49         u64 ctransid;
50         u64 otransid;
51         u64 stransid;
52         u64 rtransid;
53
54         char *path;
55 };
56
57 struct subvol_uuid_search {
58         struct rb_root root_id_subvols;
59         struct rb_root local_subvols;
60         struct rb_root received_subvols;
61         struct rb_root path_subvols;
62 };
63
64 int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s);
65 void subvol_uuid_search_finit(struct subvol_uuid_search *s);
66 struct subvol_info *subvol_uuid_search(struct subvol_uuid_search *s,
67                                        u64 root_id, const u8 *uuid, u64 transid,
68                                        const char *path,
69                                        enum subvol_search_type type);
70 void subvol_uuid_search_add(struct subvol_uuid_search *s,
71                             struct subvol_info *si);
72
73
74
75 char *path_cat(const char *p1, const char *p2);
76 char *path_cat3(const char *p1, const char *p2, const char *p3);
77
78 #ifdef __cplusplus
79 }
80 #endif
81
82 #endif /* SEND_UTILS_H_ */