sbin/mount_hammer: Cleanup blocks with a single statement
[dragonfly.git] / sbin / mount_hammer / mount_hammer.c
blobd1f68974016a7b5fdae2cfa89eec2a1c5d3cb6ee
1 /*
2 * Copyright (c) 2007 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
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.
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.
35 #include <sys/types.h>
36 #include <sys/stat.h>
37 #include <sys/syslimits.h>
38 #include <vfs/hammer/hammer_mount.h>
39 #include <vfs/hammer/hammer_disk.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <stdarg.h>
44 #include <stddef.h>
45 #include <unistd.h>
46 #include <string.h>
47 #include <fcntl.h>
48 #include <err.h>
49 #include <mntopts.h>
51 static void test_master_id(int master_id);
52 static void extract_volumes(struct hammer_mount_info *info, char **av, int ac);
53 static void free_volumes(struct hammer_mount_info *info);
54 static void test_volumes(struct hammer_mount_info *info);
55 static void usage(void);
57 #define hwarnx(format, args...) warnx("WARNING: "format,## args)
59 #define MOPT_HAMMEROPTS \
60 { "history", 1, HMNT_NOHISTORY, 1 }, \
61 { "master=", 0, HMNT_MASTERID, 1 }, \
62 { "mirror", 1, HMNT_NOMIRROR, 1 }
64 static struct mntopt mopts[] = { MOPT_STDOPTS, MOPT_HAMMEROPTS,
65 MOPT_UPDATE, MOPT_NULL };
67 int
68 main(int ac, char **av)
70 struct hammer_mount_info info;
71 struct vfsconf vfc;
72 int mount_flags = 0;
73 int init_flags = 0;
74 int error;
75 int ch;
76 char *mountpt;
77 char *ptr;
79 bzero(&info, sizeof(info));
81 while ((ch = getopt(ac, av, "o:T:u")) != -1) {
82 switch(ch) {
83 case 'T':
84 info.asof = strtoull(optarg, NULL, 0);
85 break;
86 case 'o':
87 getmntopts(optarg, mopts, &mount_flags, &info.hflags);
90 * Handle extended flags with parameters.
92 if (info.hflags & HMNT_MASTERID) {
93 ptr = strstr(optarg, "master=");
94 if (ptr) {
95 info.master_id = strtol(ptr + 7, NULL, 0);
96 test_master_id(info.master_id);
99 if (info.hflags & HMNT_NOMIRROR) {
100 ptr = strstr(optarg, "nomirror");
101 if (ptr)
102 info.master_id = -1;
104 break;
105 case 'u':
106 init_flags |= MNT_UPDATE;
107 break;
108 default:
109 usage();
110 /* not reached */
113 ac -= optind;
114 av += optind;
115 mount_flags |= init_flags;
118 * Only the mount point need be specified in update mode.
120 if (init_flags & MNT_UPDATE) {
121 if (ac != 1) {
122 usage();
123 /* not reached */
125 mountpt = av[0];
126 if (mount(vfc.vfc_name, mountpt, mount_flags, &info))
127 err(1, "mountpoint %s", mountpt);
128 exit(0);
131 if (ac < 2) {
132 usage();
133 /* not reached */
137 * Mount arguments: vol [vol...] mountpt
139 extract_volumes(&info, av, ac - 1);
140 mountpt = av[ac - 1];
143 * Load the hammer module if necessary (this bit stolen from
144 * mount_null).
146 error = getvfsbyname("hammer", &vfc);
147 if (error && vfsisloadable("hammer")) {
148 if (vfsload("hammer") != 0)
149 err(1, "vfsload(hammer)");
150 endvfsent();
151 error = getvfsbyname("hammer", &vfc);
153 if (error)
154 errx(1, "hammer filesystem is not available");
156 if (mount(vfc.vfc_name, mountpt, mount_flags, &info)) {
157 perror("mount");
158 test_volumes(&info);
159 exit(1);
161 free_volumes(&info);
163 return(0);
166 static void test_master_id(int master_id)
168 switch (master_id) {
169 case 0:
170 hwarnx("A master id of 0 is the default, "
171 "explicit settings should use 1-15");
172 break;
173 case -1:
174 hwarnx("A master id of -1 is nomirror mode, "
175 "equivalent to -o nomirror option");
176 break;
177 case 1 ... 15: /* gcc */
178 /* Expected values via -o master= option */
179 break;
180 default:
181 /* This will eventually fail in hammer_vfs_mount() */
182 hwarnx("A master id of %d is not supported", master_id);
183 break;
188 * Extract a volume list
190 static
191 void
192 extract_volumes(struct hammer_mount_info *info, char **av, int ac)
194 int idx = 0;
195 int arymax = 32;
196 char **ary = malloc(sizeof(char *) * arymax);
197 char *ptr;
198 char *next;
199 char *orig;
201 while (ac) {
202 if (idx == arymax) {
203 arymax += 32;
204 ary = realloc(ary, sizeof(char *) * arymax);
206 if (strchr(*av, ':') == NULL) {
207 ary[idx++] = strdup(*av);
208 } else {
209 orig = next = strdup(*av);
210 while ((ptr = next) != NULL) {
211 if (idx == arymax) {
212 arymax += 32;
213 ary = realloc(ary, sizeof(char *) *
214 arymax);
216 if ((next = strchr(ptr, ':')) != NULL)
217 *next++ = 0;
218 ary[idx++] = strdup(ptr);
220 free(orig);
222 --ac;
223 ++av;
225 info->nvolumes = idx;
226 info->volumes = ary;
229 static
230 void
231 free_volumes(struct hammer_mount_info *info)
233 int i;
235 for (i = 0; i < info->nvolumes; i++)
236 free(info->volumes[i]);
237 free(info->volumes);
241 * This function is based on __verify_volume() in sbin/hammer/ondisk.c.
243 static
244 void
245 __verify_volume(hammer_volume_ondisk_t ondisk,
246 const char *vol_name, int vol_count)
248 if (ondisk->vol_signature != HAMMER_FSBUF_VOLUME)
249 errx(1, "%s: Invalid volume signature %016jx",
250 vol_name, ondisk->vol_signature);
251 if (ondisk->vol_count != vol_count)
252 errx(1, "%s: Invalid volume count %d, "
253 "volume header says %d volumes",
254 vol_name, vol_count, ondisk->vol_count);
255 if (ondisk->vol_rootvol != HAMMER_ROOT_VOLNO)
256 errx(1, "%s: Invalid root volume# %d",
257 vol_name, ondisk->vol_rootvol);
261 * This function prints a possible reason that mount(2) failed,
262 * which isn't really necessary as the real reason is likely to
263 * be in dmesg anyway, but was originally added by 1a607e3e.
265 static
266 void
267 test_volumes(struct hammer_mount_info *info)
269 int i, fd;
270 char buf[2048]; /* sizeof(*ondisk) is 1928 */
271 hammer_volume_ondisk_t ondisk = (hammer_volume_ondisk_t)buf;
273 for (i = 0; i < info->nvolumes; i++) {
274 const char *vol = info->volumes[i];
275 fd = open(vol, O_RDONLY);
276 if (fd < 0)
277 err(1, "%s: Failed to open", vol);
279 bzero(buf, sizeof(buf));
280 if (pread(fd, buf, sizeof(buf), 0) != sizeof(buf))
281 err(1, "%s: Failed to read volume header", vol);
283 __verify_volume(ondisk, vol, info->nvolumes);
284 close(fd);
288 static
289 void
290 usage(void)
292 fprintf(stderr, "usage: mount_hammer [-o options] [-T transaction-id] "
293 "special ... node\n");
294 fprintf(stderr, " mount_hammer [-o options] [-T transaction-id] "
295 "special[:special]* node\n");
296 fprintf(stderr, " mount_hammer -u [-o options] node\n");
297 exit(1);