]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - tools/tools/zfsboottest/zfsboottest.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / tools / tools / zfsboottest / zfsboottest.c
1 /*-
2  * Copyright (c) 2010 Doug Rabson
3  * Copyright (c) 2011 Andriy Gapon
4  * Copyright (c) 2011 Pawel Jakub Dawidek <pawel@dawidek.net>
5  * All rights reserved.
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  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 /* $FreeBSD$ */
29
30 #include <sys/param.h>
31 #include <sys/queue.h>
32 #include <err.h>
33 #include <errno.h>
34 #include <fcntl.h>
35 #include <md5.h>
36 #include <stdint.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include <stdarg.h>
40 #include <stddef.h>
41 #include <stdlib.h>
42 #include <unistd.h>
43
44 #define NBBY 8
45
46 void
47 pager_output(const char *line)
48 {
49
50         fprintf(stderr, "%s", line);
51 }
52
53 #define ZFS_TEST
54 #define printf(...)      fprintf(stderr, __VA_ARGS__)
55 #include "zfsimpl.c"
56 #undef printf
57
58 static int
59 vdev_read(vdev_t *vdev, void *priv, off_t off, void *buf, size_t bytes)
60 {
61         int fd = *(int *)priv;
62
63         if (pread(fd, buf, bytes, off) != bytes)
64                 return (-1);
65         return (0);
66 }
67
68 static int
69 zfs_read(spa_t *spa, dnode_phys_t *dn, void *buf, size_t size, off_t off)
70 {
71         const znode_phys_t *zp = (const znode_phys_t *) dn->dn_bonus;
72         size_t n;
73         int rc;
74
75         n = size;
76         if (off + n > zp->zp_size)
77                 n = zp->zp_size - off;
78
79         rc = dnode_read(spa, dn, off, buf, n);
80         if (rc != 0)
81                 return (-rc);
82
83         return (n);
84 }
85
86 int
87 main(int argc, char** argv)
88 {
89         char buf[512], hash[33];
90         MD5_CTX ctx;
91         struct stat sb;
92         struct zfsmount zfsmnt;
93         dnode_phys_t dn;
94 #if 0
95         uint64_t rootobj;
96 #endif
97         spa_t *spa;
98         off_t off;
99         ssize_t n;
100         int i, failures, *fd;
101
102         zfs_init();
103         if (argc == 1) {
104                 static char *av[] = {
105                         "zfsboottest",
106                         "/dev/gpt/system0",
107                         "/dev/gpt/system1",
108                         "-",
109                         "/boot/zfsloader",
110                         "/boot/support.4th",
111                         "/boot/kernel/kernel",
112                         NULL,
113                 };
114                 argc = sizeof(av) / sizeof(av[0]) - 1;
115                 argv = av;
116         }
117         for (i = 1; i < argc; i++) {
118                 if (strcmp(argv[i], "-") == 0)
119                         break;
120         }
121         fd = malloc(sizeof(fd[0]) * (i - 1));
122         if (fd == NULL)
123                 errx(1, "Unable to allocate memory.");
124         for (i = 1; i < argc; i++) {
125                 if (strcmp(argv[i], "-") == 0)
126                         break;
127                 fd[i - 1] = open(argv[i], O_RDONLY);
128                 if (fd[i - 1] == -1) {
129                         warn("open(%s) failed", argv[i]);
130                         continue;
131                 }
132                 if (vdev_probe(vdev_read, &fd[i - 1], NULL) != 0) {
133                         warnx("vdev_probe(%s) failed", argv[i]);
134                         close(fd[i - 1]);
135                 }
136         }
137         spa_all_status();
138
139         spa = STAILQ_FIRST(&zfs_pools);
140         if (spa == NULL) {
141                 fprintf(stderr, "no pools\n");
142                 exit(1);
143         }
144
145         if (zfs_spa_init(spa)) {
146                 fprintf(stderr, "can't init pool\n");
147                 exit(1);
148         }
149
150 #if 0
151         if (zfs_get_root(spa, &rootobj)) {
152                 fprintf(stderr, "can't get root\n");
153                 exit(1);
154         }
155
156         if (zfs_mount(spa, rootobj, &zfsmnt)) {
157 #else
158         if (zfs_mount(spa, 0, &zfsmnt)) {
159                 fprintf(stderr, "can't mount\n");
160                 exit(1);
161         }
162 #endif
163
164         printf("\n");
165         for (++i, failures = 0; i < argc; i++) {
166                 if (zfs_lookup(&zfsmnt, argv[i], &dn)) {
167                         fprintf(stderr, "%s: can't lookup\n", argv[i]);
168                         failures++;
169                         continue;
170                 }
171
172                 if (zfs_dnode_stat(spa, &dn, &sb)) {
173                         fprintf(stderr, "%s: can't stat\n", argv[i]);
174                         failures++;
175                         continue;
176                 }
177
178                 off = 0;
179                 MD5Init(&ctx);
180                 do {
181                         n = sb.st_size - off;
182                         n = n > sizeof(buf) ? sizeof(buf) : n;
183                         n = zfs_read(spa, &dn, buf, n, off);
184                         if (n < 0) {
185                                 fprintf(stderr, "%s: zfs_read failed\n",
186                                     argv[i]);
187                                 failures++;
188                                 break;
189                         }
190                         MD5Update(&ctx, buf, n);
191                         off += n;
192                 } while (off < sb.st_size);
193                 if (off < sb.st_size)
194                         continue;
195                 MD5End(&ctx, hash);
196                 printf("%s %s\n", hash, argv[i]);
197         }
198
199         return (failures == 0 ? 0 : 1);
200 }