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
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
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
35 #include <sys/types.h>
37 #include <sys/syslimits.h>
38 #include <vfs/hammer/hammer_mount.h>
39 #include <vfs/hammer/hammer_disk.h>
51 static void extract_volumes(struct hammer_mount_info
*info
, char **av
, int ac
);
52 static void free_volumes(struct hammer_mount_info
*info
);
53 static void test_volumes(struct hammer_mount_info
*info
);
54 static void usage(void);
56 #define MOPT_HAMMEROPTS \
57 { "history", 1, HMNT_NOHISTORY, 1 }, \
58 { "master=", 0, HMNT_MASTERID, 1 }, \
59 { "mirror", 1, HMNT_NOMIRROR, 1 }
61 static struct mntopt mopts
[] = { MOPT_STDOPTS
, MOPT_HAMMEROPTS
,
62 MOPT_UPDATE
, MOPT_NULL
};
65 main(int ac
, char **av
)
67 struct hammer_mount_info info
;
76 bzero(&info
, sizeof(info
));
78 while ((ch
= getopt(ac
, av
, "o:T:u")) != -1) {
81 info
.asof
= strtoull(optarg
, NULL
, 0);
84 getmntopts(optarg
, mopts
, &mount_flags
, &info
.hflags
);
87 * Handle extended flags with parameters.
89 if (info
.hflags
& HMNT_MASTERID
) {
90 ptr
= strstr(optarg
, "master=");
92 info
.master_id
= strtol(ptr
+ 7, NULL
, 0);
93 if (info
.master_id
== 0) {
95 "mount_hammer: Warning: a master id of 0 is the default, explicit\n"
96 "settings should probably use 1-15\n");
100 if (info
.hflags
& HMNT_NOMIRROR
) {
101 ptr
= strstr(optarg
, "nomirror");
107 init_flags
|= MNT_UPDATE
;
116 mount_flags
|= init_flags
;
119 * Only the mount point need be specified in update mode.
121 if (init_flags
& MNT_UPDATE
) {
127 if (mount(vfc
.vfc_name
, mountpt
, mount_flags
, &info
))
128 err(1, "mountpoint %s", mountpt
);
138 * Mount arguments: vol [vol...] mountpt
140 extract_volumes(&info
, av
, ac
- 1);
141 mountpt
= av
[ac
- 1];
144 * Load the hammer module if necessary (this bit stolen from
147 error
= getvfsbyname("hammer", &vfc
);
148 if (error
&& vfsisloadable("hammer")) {
149 if (vfsload("hammer") != 0)
150 err(1, "vfsload(hammer)");
152 error
= getvfsbyname("hammer", &vfc
);
155 errx(1, "hammer filesystem is not available");
157 if (mount(vfc
.vfc_name
, mountpt
, mount_flags
, &info
)) {
167 * Extract a volume list
171 extract_volumes(struct hammer_mount_info
*info
, char **av
, int ac
)
175 char **ary
= malloc(sizeof(char *) * arymax
);
183 ary
= realloc(ary
, sizeof(char *) * arymax
);
185 if (strchr(*av
, ':') == NULL
) {
186 ary
[idx
++] = strdup(*av
);
188 orig
= next
= strdup(*av
);
189 while ((ptr
= next
) != NULL
) {
192 ary
= realloc(ary
, sizeof(char *) *
195 if ((next
= strchr(ptr
, ':')) != NULL
)
197 ary
[idx
++] = strdup(ptr
);
204 info
->nvolumes
= idx
;
210 free_volumes(struct hammer_mount_info
*info
)
214 for (i
= 0; i
< info
->nvolumes
; i
++)
215 free(info
->volumes
[i
]);
221 test_volumes(struct hammer_mount_info
*info
)
225 char buf
[HAMMER_BUFSIZE
];
226 hammer_volume_ondisk_t ondisk
;
228 for (i
= 0; i
< info
->nvolumes
; i
++) {
229 vol
= info
->volumes
[i
];
230 fd
= open(vol
, O_RDONLY
);
232 fprintf(stderr
, "%s: Failed to open\n", vol
);
236 bzero(buf
, HAMMER_BUFSIZE
);
237 ret
= pread(fd
, buf
, HAMMER_BUFSIZE
, 0);
238 if (ret
!= HAMMER_BUFSIZE
) {
240 "%s: Failed to read volume header\n", vol
);
244 ondisk
= (hammer_volume_ondisk_t
)buf
;
245 if (ondisk
->vol_signature
!= HAMMER_FSBUF_VOLUME
) {
247 "%s: Not a valid HAMMER filesystem\n", vol
);
250 if (ondisk
->vol_count
!= info
->nvolumes
) {
252 "%s: Volume header says %d volumes\n",
253 vol
, ondisk
->vol_count
);
265 fprintf(stderr
, "usage: mount_hammer [-o options] [-T transaction-id] "
266 "special ... node\n");
267 fprintf(stderr
, " mount_hammer [-o options] [-T transaction-id] "
268 "special[:special]* node\n");
269 fprintf(stderr
, " mount_hammer -u [-o options] node\n");