HAMMER Utilities: Sync with 58A
[dragonfly.git] / sbin / mount_hammer / mount_hammer.c
1 /*
2  * Copyright (c) 2007 The DragonFly Project.  All rights reserved.
3  * 
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  * 
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  * 
34  * $DragonFly: src/sbin/mount_hammer/mount_hammer.c,v 1.5 2008/06/23 21:31:57 dillon Exp $
35  */
36
37 #include <sys/types.h>
38 #include <sys/diskslice.h>
39 #include <sys/diskmbr.h>
40 #include <sys/stat.h>
41 #include <sys/time.h>
42 #include <vfs/hammer/hammer_mount.h>
43
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <stdarg.h>
47 #include <stddef.h>
48 #include <unistd.h>
49 #include <string.h>
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <uuid.h>
53 #include <err.h>
54 #include <assert.h>
55 #include <ctype.h>
56
57 #include "mntopts.h"
58
59 typedef const char **ary_ptr_t;
60
61 static void extract_volumes(ary_ptr_t *aryp, int *countp, char **av, int ac);
62
63 #define MOPT_UPDATE         { "update",     0, MNT_UPDATE, 0 }
64
65 #define MOPT_HAMMEROPTS         \
66         { "history", 1, HMNT_NOHISTORY, 1 },    \
67         { "master=", 0, HMNT_MASTERID, 1 }
68
69 static struct mntopt mopts[] = { MOPT_STDOPTS, MOPT_HAMMEROPTS,
70                                  MOPT_UPDATE, MOPT_NULL };
71
72 static void usage(void);
73
74 int
75 main(int ac, char **av)
76 {
77         struct hammer_mount_info info;
78         struct vfsconf vfc;
79         int mount_flags = 0;
80         int error;
81         int ch;
82         int init_flags = 0;
83         char *mountpt;
84         char *ptr;
85
86         bzero(&info, sizeof(info));
87         info.asof = 0;
88         mount_flags = 0;
89         info.hflags = 0;
90
91         while ((ch = getopt(ac, av, "o:T:u")) != -1) {
92                 switch(ch) {
93                 case 'T':
94                         info.asof = strtoull(optarg, NULL, 0);
95                         break;
96                 case 'o':
97                         getmntopts(optarg, mopts, &mount_flags, &info.hflags);
98
99                         /*
100                          * Handle extended flags with parameters.
101                          */
102                         if (info.hflags & HMNT_MASTERID) {
103                                 ptr = strstr(optarg, "master=");
104                                 assert(ptr);
105                                 info.masterid = strtol(ptr + 7, NULL, 0);
106                         }
107
108                         break;
109                 case 'u':
110                         init_flags |= MNT_UPDATE;
111                         break;
112                 default:
113                         usage();
114                         /* not reached */
115                 }
116         }
117         ac -= optind;
118         av += optind;
119         mount_flags |= init_flags;
120
121         /*
122          * Only the mount point need be specified in update mode.
123          */
124         if (init_flags & MNT_UPDATE) {
125                 if (ac != 1) {
126                         usage();
127                         /* not reached */
128                 }
129                 mountpt = av[0];
130                 if (mount(vfc.vfc_name, mountpt, mount_flags, &info))
131                         err(1, NULL);
132                 exit(0);
133         }
134
135         if (ac < 2) {
136                 usage();
137                 /* not reached */
138         }
139
140         /*
141          * Mount arguments: vol [vol...] mountpt
142          */
143         extract_volumes(&info.volumes, &info.nvolumes, av, ac - 1);
144         mountpt = av[ac - 1];
145
146         /*
147          * Load the hammer module if necessary (this bit stolen from
148          * mount_null).
149          */
150         error = getvfsbyname("hammer", &vfc);
151         if (error && vfsisloadable("hammer")) {
152                 if (vfsload("hammer") != 0)
153                         err(1, "vfsload(hammer)");
154                 endvfsent();
155                 error = getvfsbyname("hammer", &vfc);
156         }
157         if (error)
158                 errx(1, "hammer filesystem is not available");
159
160         if (mount(vfc.vfc_name, mountpt, mount_flags, &info))
161                 err(1, NULL);
162         exit(0);
163 }
164
165 /*
166  * Extract a volume list
167  */
168 static void
169 extract_volumes(ary_ptr_t *aryp, int *countp, char **av, int ac)
170 {
171         int idx = 0;
172         int arymax = 32;
173         const char **ary = malloc(sizeof(char *) * 32);
174         char *ptr;
175         char *next;
176
177         while (ac) {
178                 if (idx == arymax) {
179                         arymax += 32;
180                         ary = realloc(ary, sizeof(char *) * arymax);
181                 }
182                 if (strchr(*av, ':') == NULL) {
183                         ary[idx++] = *av;
184                 } else {
185                         next = strdup(*av);
186                         while ((ptr = next) != NULL) {
187                                 if (idx == arymax) {
188                                         arymax += 32;
189                                         ary = realloc(ary, sizeof(char *) *
190                                                       arymax);
191                                 }
192                                 if ((next = strchr(ptr, ':')) != NULL)
193                                         *next++ = 0;
194                                 ary[idx++] = ptr;
195                         }
196                 }
197                 --ac;
198                 ++av;
199                 
200         }
201         *aryp = ary;
202         *countp = idx;
203 }
204
205 static
206 void
207 usage(void)
208 {
209         fprintf(stderr, "mount_hammer [-T time] [-o options] "
210                         "volume [volume...] mount_pt");
211         fprintf(stderr, "mount_hammer -u [-o options] mount_pt");
212         fprintf(stderr, "    time: +n[s/m/h/D/M/Y]\n"
213                         "    time: yyyymmdd[:hhmmss]\n");
214         exit(1);
215 }