9a73bab705b02d7ebc06d9f0688b1428bf8d6a7b
[dragonfly.git] / sbin / hammer2 / hammer2.h
1 /*
2  * Copyright (c) 2011-2012 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@dragonflybsd.org>
6  * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35
36 /*
37  * Rollup headers for hammer2 utility
38  */
39 #include <sys/types.h>
40 #include <sys/uio.h>
41 #include <sys/queue.h>
42 #include <sys/mount.h>
43 #include <sys/file.h>
44 #include <sys/socket.h>
45 #include <sys/time.h>
46 #include <sys/wait.h>
47 #include <sys/tty.h>
48 #include <sys/endian.h>
49 #include <sys/sysctl.h>
50 #include <sys/udev.h>
51 #include <sys/diskslice.h>
52 #include <sys/dtype.h>
53 #include <dmsg.h>
54 #include <dirent.h>
55
56 #include <netinet/in.h>
57 #include <netinet/ip.h>
58 #include <netinet/tcp.h>
59 #include <arpa/inet.h>
60 #include <netdb.h>
61
62 #include <vfs/hammer2/hammer2_disk.h>
63 #include <vfs/hammer2/hammer2_mount.h>
64 #include <vfs/hammer2/hammer2_ioctl.h>
65 #include <vfs/hammer2/hammer2_xxhash.h>
66
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <stdarg.h>
70 #include <stddef.h>
71
72 #include <errno.h>
73 #include <fcntl.h>
74 #include <signal.h>
75 #include <string.h>
76 #include <unistd.h>
77 #include <ctype.h>
78 #include <uuid.h>
79 #include <assert.h>
80 #include <pthread.h>
81 #include <poll.h>
82
83 #include <libutil.h>
84
85 #define HAMMER2_DEFAULT_DIR     "/etc/hammer2"
86 #define HAMMER2_PATH_REMOTE     HAMMER2_DEFAULT_DIR "/remote"
87 #ifndef UDEV_DEVICE_PATH
88 #define UDEV_DEVICE_PATH        "/dev/udev"
89 #endif
90
91 struct hammer2_idmap {
92         struct hammer2_idmap *next;
93         uint32_t ran_beg;       /* inclusive */
94         uint32_t ran_end;       /* inclusive */
95 };
96
97 typedef struct hammer2_idmap hammer2_idmap_t;
98
99 /*
100  * UDP broadcast structure (must be endian neutral)
101  */
102 struct hammer2_udppkt {
103         char    key[8];         /* HAMMER2.01 */
104         char    gen[8];
105         char    label[64];
106 };
107
108 typedef struct hammer2_udppkt hammer2_udppkt_t;
109
110 extern int DebugOpt;
111 extern int ForceOpt;
112 extern int RecurseOpt;
113 extern int VerboseOpt;
114 extern int QuietOpt;
115 extern int NormalExit;
116
117 /*
118  * Hammer2 command APIs
119  */
120 int hammer2_ioctl_handle(const char *sel_path);
121 void hammer2_demon(void *(*func)(void *), void *arg);
122
123 int cmd_remote_connect(const char *sel_path, const char *url);
124 int cmd_remote_disconnect(const char *sel_path, const char *url);
125 int cmd_remote_status(const char *sel_path, int all_opt);
126
127 int cmd_pfs_getid(const char *sel_path, const char *name, int privateid);
128 int cmd_pfs_list(int ac, const char **av);
129 int cmd_pfs_create(const char *sel_path, const char *name,
130                         uint8_t pfs_type, const char *uuid_str);
131 int cmd_pfs_delete(const char *sel_path, const char *name);
132 int cmd_pfs_snapshot(const char *sel_path, const char *name, const char *label);
133
134 int cmd_service(void);
135 int cmd_hash(int ac, const char **av);
136 int cmd_info(int ac, const char **av);
137 int cmd_mountall(int ac, const char **av);
138 int cmd_stat(int ac, const char **av);
139 int cmd_leaf(const char *sel_path);
140 int cmd_shell(const char *hostname);
141 int cmd_debugspan(const char *hostname);
142 int cmd_chaindump(const char *path);
143 int cmd_show(const char *devpath, int dofreemap);
144 int cmd_rsainit(const char *dir_path);
145 int cmd_rsaenc(const char **keys, int nkeys);
146 int cmd_rsadec(const char **keys, int nkeys);
147 int cmd_setcomp(const char *comp_str, char **paths);
148 int cmd_setcheck(const char *comp_str, char **paths);
149 int cmd_bulkfree(const char *dir_path);
150
151 /*
152  * Misc functions
153  */
154 const char *hammer2_time64_to_str(uint64_t htime64, char **strp);
155 const char *hammer2_uuid_to_str(uuid_t *uuid, char **strp);
156 const char *hammer2_iptype_to_str(uint8_t type);
157 const char *hammer2_pfstype_to_str(uint8_t type);
158 const char *sizetostr(hammer2_off_t size);
159 const char *counttostr(hammer2_off_t size);
160 hammer2_key_t dirhash(const unsigned char *name, size_t len);
161
162 uint32_t hammer2_icrc32(const void *buf, size_t size);
163 uint32_t hammer2_icrc32c(const void *buf, size_t size, uint32_t crc);
164
165 void hammer2_shell_parse(dmsg_msg_t *msg, int unmanaged);
166 void print_inode(char* inode_string);