scan_ffs.c revision 1.19 1 1.19 xtraeme /* $NetBSD: scan_ffs.c,v 1.19 2007/10/06 07:21:02 xtraeme Exp $ */
2 1.1 xtraeme
3 1.1 xtraeme /*
4 1.19 xtraeme * Copyright (c) 2005-2007 Juan Romero Pardines
5 1.1 xtraeme * Copyright (c) 1998 Niklas Hallqvist, Tobias Weingartner
6 1.1 xtraeme * All rights reserved.
7 1.1 xtraeme *
8 1.1 xtraeme * Redistribution and use in source and binary forms, with or without
9 1.1 xtraeme * modification, are permitted provided that the following conditions
10 1.1 xtraeme * are met:
11 1.1 xtraeme * 1. Redistributions of source code must retain the above copyright
12 1.1 xtraeme * notice, this list of conditions and the following disclaimer.
13 1.1 xtraeme * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 xtraeme * notice, this list of conditions and the following disclaimer in the
15 1.1 xtraeme * documentation and/or other materials provided with the distribution.
16 1.1 xtraeme *
17 1.1 xtraeme * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 1.1 xtraeme * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 1.1 xtraeme * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 1.1 xtraeme * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 1.1 xtraeme * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 1.1 xtraeme * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 1.1 xtraeme * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 1.1 xtraeme * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 1.1 xtraeme * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 1.1 xtraeme * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 1.1 xtraeme */
28 1.1 xtraeme
29 1.1 xtraeme /*
30 1.14 xtraeme * Currently it can detect FFS and LFS partitions (version 1 or 2)
31 1.14 xtraeme * up to 8192/65536 fragsize/blocksize.
32 1.1 xtraeme */
33 1.1 xtraeme
34 1.1 xtraeme #include <sys/cdefs.h>
35 1.1 xtraeme #ifndef lint
36 1.19 xtraeme __RCSID("$NetBSD: scan_ffs.c,v 1.19 2007/10/06 07:21:02 xtraeme Exp $");
37 1.1 xtraeme #endif /* not lint */
38 1.1 xtraeme
39 1.1 xtraeme #include <sys/types.h>
40 1.1 xtraeme #include <sys/param.h>
41 1.1 xtraeme #include <sys/disklabel.h>
42 1.1 xtraeme #include <sys/dkio.h>
43 1.1 xtraeme #include <sys/ioctl.h>
44 1.1 xtraeme #include <sys/fcntl.h>
45 1.5 xtraeme #include <sys/mount.h>
46 1.5 xtraeme
47 1.5 xtraeme #include <ufs/ufs/dinode.h>
48 1.5 xtraeme #include <ufs/lfs/lfs.h>
49 1.17 perseant #include <ufs/lfs/lfs_extern.h>
50 1.8 he
51 1.8 he /* Undefine macros defined by both lfs/lfs.h and ffs/fs.h */
52 1.8 he #undef fsbtodb
53 1.8 he #undef dbtofsb
54 1.8 he #undef blkoff
55 1.8 he #undef fragoff
56 1.8 he #undef lblktosize
57 1.8 he #undef lblkno
58 1.8 he #undef numfrags
59 1.8 he #undef blkroundup
60 1.8 he #undef fragroundup
61 1.8 he #undef fragstoblks
62 1.8 he #undef blkstofrags
63 1.8 he #undef fragnum
64 1.8 he #undef blknum
65 1.8 he #undef blksize
66 1.8 he #undef INOPB
67 1.8 he #undef INOPF
68 1.8 he #undef NINDIR
69 1.8 he
70 1.1 xtraeme #include <ufs/ffs/fs.h>
71 1.5 xtraeme
72 1.8 he /* Undefine macros defined by both lfs/lfs.h and ffs/fs.h */
73 1.8 he /* ...to make sure we don't later depend on their (ambigious) definition */
74 1.8 he #undef fsbtodb
75 1.8 he #undef dbtofsb
76 1.8 he #undef blkoff
77 1.8 he #undef fragoff
78 1.8 he #undef lblktosize
79 1.8 he #undef lblkno
80 1.8 he #undef numfrags
81 1.8 he #undef blkroundup
82 1.8 he #undef fragroundup
83 1.8 he #undef fragstoblks
84 1.8 he #undef blkstofrags
85 1.8 he #undef fragnum
86 1.8 he #undef blknum
87 1.8 he #undef blksize
88 1.8 he #undef INOPB
89 1.8 he #undef INOPF
90 1.8 he #undef NINDIR
91 1.8 he
92 1.1 xtraeme #include <unistd.h>
93 1.1 xtraeme #include <stdlib.h>
94 1.1 xtraeme #include <stdio.h>
95 1.1 xtraeme #include <string.h>
96 1.1 xtraeme #include <err.h>
97 1.1 xtraeme #include <util.h>
98 1.1 xtraeme
99 1.14 xtraeme #define BLK_CNT (blk + (n / 512))
100 1.14 xtraeme
101 1.5 xtraeme /* common struct for FFS/LFS */
102 1.5 xtraeme struct sblockinfo {
103 1.5 xtraeme struct lfs *lfs;
104 1.5 xtraeme struct fs *ffs;
105 1.12 xtraeme uint64_t lfs_off;
106 1.12 xtraeme uint64_t ffs_off;
107 1.5 xtraeme char lfs_path[MAXMNTLEN];
108 1.5 xtraeme char ffs_path[MAXMNTLEN];
109 1.14 xtraeme };
110 1.1 xtraeme
111 1.5 xtraeme static daddr_t blk, lastblk;
112 1.1 xtraeme
113 1.5 xtraeme static int eflag = 0;
114 1.10 xtraeme static int fflag = 0;
115 1.5 xtraeme static int flags = 0;
116 1.14 xtraeme static int sbaddr = 0; /* counter for the LFS superblocks */
117 1.1 xtraeme
118 1.1 xtraeme static char device[MAXPATHLEN];
119 1.16 xtraeme static const char *fstypes[] = { "NONE", "FFSv1", "FFSv2" };
120 1.5 xtraeme
121 1.5 xtraeme #define FSTYPE_NONE 0
122 1.5 xtraeme #define FSTYPE_FFSV1 1
123 1.5 xtraeme #define FSTYPE_FFSV2 2
124 1.1 xtraeme
125 1.16 xtraeme #define SBCOUNT 128 /* may be changed */
126 1.5 xtraeme #define SBPASS (SBCOUNT * SBLOCKSIZE / 512)
127 1.1 xtraeme
128 1.5 xtraeme /* This is only useful for LFS */
129 1.1 xtraeme
130 1.5 xtraeme /* first sblock address contains the correct offset */
131 1.5 xtraeme #define FIRST_SBLOCK_ADDRESS 1
132 1.5 xtraeme /* second and third sblock address contain lfs_fsmnt[MAXMNTLEN] */
133 1.5 xtraeme #define SECOND_SBLOCK_ADDRESS 2
134 1.5 xtraeme /* last sblock address in a LFS partition */
135 1.5 xtraeme #define MAX_SBLOCK_ADDRESS 10
136 1.1 xtraeme
137 1.17 perseant enum { NADA=0, VERBOSE=1, LABELS=2, BLOCKS=4 };
138 1.3 christos
139 1.5 xtraeme /* FFS functions */
140 1.14 xtraeme static void ffs_printpart(struct sblockinfo *, int, size_t, int);
141 1.14 xtraeme static void ffs_scan(struct sblockinfo *, int);
142 1.14 xtraeme static int ffs_checkver(struct sblockinfo *);
143 1.5 xtraeme /* LFS functions */
144 1.14 xtraeme static void lfs_printpart(struct sblockinfo *, int, int);
145 1.14 xtraeme static void lfs_scan(struct sblockinfo *, int);
146 1.5 xtraeme /* common functions */
147 1.6 christos static void usage(void) __attribute__((__noreturn__));
148 1.5 xtraeme static int scan_disk(int, daddr_t, daddr_t, int);
149 1.3 christos
150 1.1 xtraeme static int
151 1.14 xtraeme ffs_checkver(struct sblockinfo *sbi)
152 1.1 xtraeme {
153 1.14 xtraeme switch (sbi->ffs->fs_magic) {
154 1.1 xtraeme case FS_UFS1_MAGIC:
155 1.1 xtraeme case FS_UFS1_MAGIC_SWAPPED:
156 1.14 xtraeme sbi->ffs->fs_size = sbi->ffs->fs_old_size;
157 1.3 christos return FSTYPE_FFSV1;
158 1.1 xtraeme case FS_UFS2_MAGIC:
159 1.1 xtraeme case FS_UFS2_MAGIC_SWAPPED:
160 1.3 christos return FSTYPE_FFSV2;
161 1.1 xtraeme default:
162 1.3 christos return FSTYPE_NONE;
163 1.1 xtraeme }
164 1.1 xtraeme }
165 1.1 xtraeme
166 1.1 xtraeme static void
167 1.14 xtraeme ffs_printpart(struct sblockinfo *sbi, int flag, size_t ffsize, int n)
168 1.1 xtraeme {
169 1.17 perseant int offset, ver;
170 1.1 xtraeme
171 1.3 christos switch (flag) {
172 1.3 christos case VERBOSE:
173 1.16 xtraeme switch (ffs_checkver(sbi)) {
174 1.14 xtraeme case FSTYPE_FFSV1:
175 1.14 xtraeme (void)printf("offset: %" PRIu64 " n: %d "
176 1.16 xtraeme "id: %x,%x size: %" PRIu64 "\n",
177 1.14 xtraeme BLK_CNT - (2 * SBLOCKSIZE / 512), n,
178 1.14 xtraeme sbi->ffs->fs_id[0], sbi->ffs->fs_id[1],
179 1.16 xtraeme (uint64_t)sbi->ffs->fs_size *
180 1.14 xtraeme sbi->ffs->fs_fsize / 512);
181 1.14 xtraeme break;
182 1.14 xtraeme case FSTYPE_FFSV2:
183 1.14 xtraeme (void)printf("offset: %" PRIu64 " n: %d "
184 1.16 xtraeme "id: %x,%x size: %" PRIu64 "\n",
185 1.14 xtraeme BLK_CNT - (ffsize * SBLOCKSIZE / 512+128),
186 1.14 xtraeme n, sbi->ffs->fs_id[0], sbi->ffs->fs_id[1],
187 1.16 xtraeme (uint64_t)sbi->ffs->fs_size *
188 1.14 xtraeme sbi->ffs->fs_fsize / 512);
189 1.14 xtraeme break;
190 1.14 xtraeme default:
191 1.14 xtraeme break;
192 1.14 xtraeme }
193 1.3 christos break;
194 1.3 christos case LABELS:
195 1.3 christos (void)printf("X: %9" PRIu64,
196 1.16 xtraeme (uint64_t)(sbi->ffs->fs_size *
197 1.14 xtraeme sbi->ffs->fs_fsize / 512));
198 1.16 xtraeme switch (ffs_checkver(sbi)) {
199 1.3 christos case FSTYPE_FFSV1:
200 1.3 christos (void)printf(" %9" PRIu64,
201 1.14 xtraeme BLK_CNT - (ffsize * SBLOCKSIZE / 512));
202 1.3 christos break;
203 1.3 christos case FSTYPE_FFSV2:
204 1.3 christos (void)printf(" %9" PRIu64,
205 1.14 xtraeme BLK_CNT - (ffsize * SBLOCKSIZE / 512 + 128));
206 1.3 christos break;
207 1.3 christos default:
208 1.3 christos break;
209 1.3 christos }
210 1.7 xtraeme (void)printf(" 4.2BSD %6d %5d %7d # %s [%s]\n",
211 1.14 xtraeme sbi->ffs->fs_fsize, sbi->ffs->fs_bsize,
212 1.14 xtraeme sbi->ffs->fs_old_cpg,
213 1.16 xtraeme sbi->ffs_path, fstypes[ffs_checkver(sbi)]);
214 1.3 christos break;
215 1.17 perseant case BLOCKS:
216 1.3 christos default:
217 1.16 xtraeme (void)printf("%s ", fstypes[ffs_checkver(sbi)]);
218 1.17 perseant ver = ffs_checkver(sbi);
219 1.17 perseant if (ver == FSTYPE_NONE)
220 1.3 christos break;
221 1.17 perseant
222 1.17 perseant offset = 0;
223 1.17 perseant if (flag == BLOCKS)
224 1.17 perseant (void)printf("sb ");
225 1.17 perseant else if (ver == FSTYPE_FFSV1)
226 1.17 perseant offset = (2 * SBLOCKSIZE / 512);
227 1.17 perseant else if (ver == FSTYPE_FFSV2)
228 1.17 perseant offset = (ffsize * SBLOCKSIZE / 512 + 128);
229 1.17 perseant
230 1.17 perseant (void)printf("at %" PRIu64, BLK_CNT - offset);
231 1.1 xtraeme (void)printf(" size %" PRIu64 ", last mounted on %s\n",
232 1.16 xtraeme (uint64_t)(sbi->ffs->fs_size *
233 1.14 xtraeme sbi->ffs->fs_fsize / 512), sbi->ffs_path);
234 1.3 christos break;
235 1.1 xtraeme }
236 1.1 xtraeme }
237 1.1 xtraeme
238 1.1 xtraeme static void
239 1.14 xtraeme ffs_scan(struct sblockinfo *sbi, int n)
240 1.1 xtraeme {
241 1.14 xtraeme size_t i = 0;
242 1.1 xtraeme
243 1.17 perseant if (flags & BLOCKS) {
244 1.17 perseant ffs_printpart(sbi, BLOCKS, 0, n);
245 1.17 perseant return;
246 1.17 perseant }
247 1.1 xtraeme if (flags & VERBOSE)
248 1.14 xtraeme ffs_printpart(sbi, VERBOSE, NADA, n);
249 1.16 xtraeme switch (ffs_checkver(sbi)) {
250 1.3 christos case FSTYPE_FFSV1:
251 1.14 xtraeme /* fsize/bsize > 512/4096 and < 4096/32768. */
252 1.14 xtraeme if ((BLK_CNT - lastblk) == (SBLOCKSIZE / 512)) {
253 1.14 xtraeme i = 2;
254 1.14 xtraeme /* fsize/bsize 4096/32768. */
255 1.14 xtraeme } else if ((BLK_CNT - lastblk) == (SBLOCKSIZE / 170)) {
256 1.14 xtraeme i = 4;
257 1.14 xtraeme /* fsize/bsize 8192/65536 */
258 1.14 xtraeme } else if ((BLK_CNT - lastblk) == (SBLOCKSIZE / 73)) {
259 1.14 xtraeme i = 8;
260 1.14 xtraeme } else
261 1.14 xtraeme break;
262 1.14 xtraeme
263 1.14 xtraeme if (flags & LABELS)
264 1.14 xtraeme ffs_printpart(sbi, LABELS, i, n);
265 1.14 xtraeme else
266 1.14 xtraeme ffs_printpart(sbi, NADA, i, n);
267 1.14 xtraeme
268 1.3 christos break;
269 1.3 christos case FSTYPE_FFSV2:
270 1.3 christos /*
271 1.3 christos * That checks for FFSv2 partitions with fragsize/blocksize:
272 1.3 christos * 512/4096, 1024/8192, 2048/16384, 4096/32768 and 8192/65536.
273 1.3 christos * Really enough for now.
274 1.3 christos */
275 1.3 christos for (i = 1; i < 16; i <<= 1)
276 1.14 xtraeme if ((BLK_CNT - lastblk) == (i * SBLOCKSIZE / 512)) {
277 1.3 christos if (flags & LABELS)
278 1.14 xtraeme ffs_printpart(sbi, LABELS, i, n);
279 1.3 christos else
280 1.14 xtraeme ffs_printpart(sbi, NADA, i, n);
281 1.3 christos }
282 1.5 xtraeme break;
283 1.5 xtraeme }
284 1.5 xtraeme }
285 1.5 xtraeme
286 1.5 xtraeme static void
287 1.14 xtraeme lfs_printpart(struct sblockinfo *sbi, int flag, int n)
288 1.5 xtraeme {
289 1.5 xtraeme if (flags & VERBOSE)
290 1.17 perseant (void)printf("offset: %" PRIu64 " size %" PRIu32
291 1.17 perseant " fsid %" PRIx32 "\n", sbi->lfs_off, sbi->lfs->lfs_size,
292 1.17 perseant sbi->lfs->lfs_ident);
293 1.5 xtraeme switch (flag) {
294 1.5 xtraeme case LABELS:
295 1.5 xtraeme (void)printf("X: %9" PRIu64,
296 1.16 xtraeme (uint64_t)(sbi->lfs->lfs_size *
297 1.5 xtraeme sbi->lfs->lfs_fsize / 512));
298 1.5 xtraeme (void)printf(" %9" PRIu64, sbi->lfs_off);
299 1.7 xtraeme (void)printf(" 4.4LFS %6d %5d %7d # %s [LFSv%d]\n",
300 1.5 xtraeme sbi->lfs->lfs_fsize, sbi->lfs->lfs_bsize,
301 1.5 xtraeme sbi->lfs->lfs_nseg, sbi->lfs_path,
302 1.5 xtraeme sbi->lfs->lfs_version);
303 1.5 xtraeme break;
304 1.17 perseant case BLOCKS:
305 1.17 perseant (void)printf("LFSv%d", sbi->lfs->lfs_version);
306 1.17 perseant (void)printf(" sb at %" PRIu64, sbi->lfs_off + btodb(LFS_LABELPAD));
307 1.17 perseant (void)printf(" fsid %" PRIx32, sbi->lfs->lfs_ident);
308 1.17 perseant (void)printf(" size %" PRIu64 ", last mounted on %s\n",
309 1.17 perseant (uint64_t)(sbi->lfs->lfs_size *
310 1.17 perseant sbi->lfs->lfs_fsize / 512), sbi->lfs_path);
311 1.17 perseant break;
312 1.5 xtraeme default:
313 1.14 xtraeme (void)printf("LFSv%d ", sbi->lfs->lfs_version);
314 1.14 xtraeme (void)printf("at %" PRIu64, sbi->lfs_off);
315 1.5 xtraeme (void)printf(" size %" PRIu64 ", last mounted on %s\n",
316 1.16 xtraeme (uint64_t)(sbi->lfs->lfs_size *
317 1.14 xtraeme sbi->lfs->lfs_fsize / 512), sbi->lfs_path);
318 1.5 xtraeme break;
319 1.5 xtraeme }
320 1.5 xtraeme }
321 1.5 xtraeme
322 1.5 xtraeme static void
323 1.14 xtraeme lfs_scan(struct sblockinfo *sbi, int n)
324 1.5 xtraeme {
325 1.17 perseant /* Check to see if the sb checksums correctly */
326 1.17 perseant if (lfs_sb_cksum(&(sbi->lfs->lfs_dlfs)) != sbi->lfs->lfs_cksum) {
327 1.17 perseant if (flags & VERBOSE)
328 1.17 perseant printf("LFS bad superblock at %" PRIu64 "\n",
329 1.17 perseant BLK_CNT);
330 1.17 perseant return;
331 1.17 perseant }
332 1.17 perseant
333 1.5 xtraeme /* backup offset */
334 1.14 xtraeme lastblk = BLK_CNT - (LFS_SBPAD / 512);
335 1.5 xtraeme /* increment counter */
336 1.5 xtraeme ++sbaddr;
337 1.5 xtraeme
338 1.17 perseant if (flags & BLOCKS) {
339 1.17 perseant sbi->lfs_off = BLK_CNT - btodb(LFS_LABELPAD);
340 1.17 perseant lfs_printpart(sbi, BLOCKS, n);
341 1.17 perseant return;
342 1.17 perseant }
343 1.17 perseant
344 1.5 xtraeme switch (sbaddr) {
345 1.5 xtraeme /*
346 1.5 xtraeme * first superblock contains the right offset, but lfs_fsmnt is
347 1.17 perseant * empty... fortunately the next superblock address has it.
348 1.5 xtraeme */
349 1.5 xtraeme case FIRST_SBLOCK_ADDRESS:
350 1.5 xtraeme /* copy partition offset */
351 1.14 xtraeme if (sbi->lfs_off != lastblk)
352 1.17 perseant sbi->lfs_off = BLK_CNT - (LFS_LABELPAD / 512);
353 1.5 xtraeme break;
354 1.5 xtraeme case SECOND_SBLOCK_ADDRESS:
355 1.5 xtraeme /* copy the path of last mount */
356 1.14 xtraeme (void)memcpy(sbi->lfs_path, sbi->lfs->lfs_fsmnt, MAXMNTLEN);
357 1.5 xtraeme /* print now that we have the info */
358 1.5 xtraeme if (flags & LABELS)
359 1.14 xtraeme lfs_printpart(sbi, LABELS, n);
360 1.5 xtraeme else
361 1.14 xtraeme lfs_printpart(sbi, NADA, n);
362 1.5 xtraeme /* clear our struct */
363 1.14 xtraeme (void)memset(sbi, 0, sizeof(*sbi));
364 1.5 xtraeme break;
365 1.5 xtraeme case MAX_SBLOCK_ADDRESS:
366 1.5 xtraeme /*
367 1.5 xtraeme * reset the counter, this is the last superblock address,
368 1.5 xtraeme * the next one will be another partition maybe.
369 1.5 xtraeme */
370 1.5 xtraeme sbaddr = 0;
371 1.5 xtraeme break;
372 1.5 xtraeme default:
373 1.5 xtraeme break;
374 1.1 xtraeme }
375 1.1 xtraeme }
376 1.1 xtraeme
377 1.1 xtraeme static int
378 1.5 xtraeme scan_disk(int fd, daddr_t beg, daddr_t end, int fflags)
379 1.1 xtraeme {
380 1.14 xtraeme struct sblockinfo sbinfo;
381 1.10 xtraeme uint8_t buf[SBLOCKSIZE * SBCOUNT];
382 1.16 xtraeme int n;
383 1.1 xtraeme
384 1.16 xtraeme n = 0;
385 1.1 xtraeme lastblk = -1;
386 1.5 xtraeme
387 1.5 xtraeme /* clear our struct before using it */
388 1.5 xtraeme (void)memset(&sbinfo, 0, sizeof(sbinfo));
389 1.1 xtraeme
390 1.1 xtraeme if (fflags & LABELS)
391 1.3 christos (void)printf(
392 1.5 xtraeme "# size offset fstype [fsize bsize cpg/sgs]\n");
393 1.1 xtraeme
394 1.16 xtraeme for (blk = beg; blk <= end; blk += SBPASS) {
395 1.16 xtraeme if (pread(fd, buf, sizeof(buf), blk * 512) == -1) {
396 1.16 xtraeme if (fflag && fd >= 0)
397 1.16 xtraeme (void)close(fd);
398 1.7 xtraeme err(1, "pread");
399 1.16 xtraeme }
400 1.1 xtraeme
401 1.1 xtraeme for (n = 0; n < (SBLOCKSIZE * SBCOUNT); n += 512) {
402 1.16 xtraeme sbinfo.ffs = (struct fs *)&buf[n];
403 1.16 xtraeme sbinfo.lfs = (struct lfs *)&buf[n];
404 1.16 xtraeme
405 1.16 xtraeme switch (ffs_checkver(&sbinfo)) {
406 1.5 xtraeme case FSTYPE_FFSV1:
407 1.5 xtraeme case FSTYPE_FFSV2:
408 1.14 xtraeme ffs_scan(&sbinfo, n);
409 1.14 xtraeme lastblk = BLK_CNT;
410 1.5 xtraeme (void)memcpy(sbinfo.ffs_path,
411 1.5 xtraeme sbinfo.ffs->fs_fsmnt, MAXMNTLEN);
412 1.5 xtraeme break;
413 1.5 xtraeme case FSTYPE_NONE:
414 1.5 xtraeme /* maybe LFS? */
415 1.5 xtraeme if (sbinfo.lfs->lfs_magic == LFS_MAGIC)
416 1.14 xtraeme lfs_scan(&sbinfo, n);
417 1.5 xtraeme break;
418 1.5 xtraeme default:
419 1.5 xtraeme break;
420 1.5 xtraeme }
421 1.1 xtraeme }
422 1.1 xtraeme }
423 1.16 xtraeme
424 1.16 xtraeme if (fflag && fd >= 0)
425 1.16 xtraeme (void)close(fd);
426 1.16 xtraeme
427 1.2 kleink return EXIT_SUCCESS;
428 1.1 xtraeme }
429 1.1 xtraeme
430 1.1 xtraeme
431 1.1 xtraeme static void
432 1.6 christos usage(void)
433 1.1 xtraeme {
434 1.1 xtraeme (void)fprintf(stderr,
435 1.18 xtraeme "Usage: %s [-blv] [-e end] [-F file] [-s start] "
436 1.10 xtraeme "device\n", getprogname());
437 1.2 kleink exit(EXIT_FAILURE);
438 1.1 xtraeme }
439 1.1 xtraeme
440 1.1 xtraeme
441 1.1 xtraeme int
442 1.1 xtraeme main(int argc, char **argv)
443 1.1 xtraeme {
444 1.1 xtraeme int ch, fd;
445 1.10 xtraeme const char *fpath;
446 1.1 xtraeme daddr_t end = -1, beg = 0;
447 1.1 xtraeme struct disklabel dl;
448 1.1 xtraeme
449 1.10 xtraeme fpath = NULL;
450 1.10 xtraeme
451 1.6 christos setprogname(*argv);
452 1.17 perseant while ((ch = getopt(argc, argv, "be:F:ls:v")) != -1)
453 1.1 xtraeme switch(ch) {
454 1.17 perseant case 'b':
455 1.17 perseant flags |= BLOCKS;
456 1.17 perseant flags &= ~LABELS;
457 1.17 perseant break;
458 1.1 xtraeme case 'e':
459 1.1 xtraeme eflag = 1;
460 1.1 xtraeme end = atoi(optarg);
461 1.1 xtraeme break;
462 1.11 xtraeme case 'F':
463 1.10 xtraeme fflag = 1;
464 1.10 xtraeme fpath = optarg;
465 1.10 xtraeme break;
466 1.1 xtraeme case 'l':
467 1.1 xtraeme flags |= LABELS;
468 1.17 perseant flags &= ~BLOCKS;
469 1.1 xtraeme break;
470 1.1 xtraeme case 's':
471 1.1 xtraeme beg = atoi(optarg);
472 1.1 xtraeme break;
473 1.1 xtraeme case 'v':
474 1.1 xtraeme flags |= VERBOSE;
475 1.1 xtraeme break;
476 1.1 xtraeme default:
477 1.6 christos usage();
478 1.1 xtraeme /* NOTREACHED */
479 1.3 christos }
480 1.3 christos
481 1.1 xtraeme argc -= optind;
482 1.1 xtraeme argv += optind;
483 1.1 xtraeme
484 1.10 xtraeme if (fflag) {
485 1.10 xtraeme struct stat stp;
486 1.1 xtraeme
487 1.10 xtraeme if (stat(fpath, &stp))
488 1.10 xtraeme err(1, "Cannot stat `%s'", fpath);
489 1.1 xtraeme
490 1.10 xtraeme if (!eflag)
491 1.12 xtraeme end = (uint64_t)stp.st_size;
492 1.1 xtraeme
493 1.16 xtraeme (void)printf("Total file size: %" PRIu64 "\n\n",
494 1.16 xtraeme (uint64_t)stp.st_size);
495 1.16 xtraeme
496 1.15 xtraeme fd = open(fpath, O_RDONLY | O_DIRECT);
497 1.3 christos } else {
498 1.10 xtraeme if (argc != 1)
499 1.10 xtraeme usage();
500 1.10 xtraeme
501 1.10 xtraeme fd = opendisk(argv[0], O_RDONLY, device, sizeof(device), 0);
502 1.10 xtraeme
503 1.10 xtraeme if (ioctl(fd, DIOCGDINFO, &dl) == -1) {
504 1.10 xtraeme warn("Couldn't retrieve disklabel");
505 1.10 xtraeme (void)memset(&dl, 0, sizeof(dl));
506 1.10 xtraeme dl.d_secperunit = 0x7fffffff;
507 1.10 xtraeme } else {
508 1.10 xtraeme (void)printf("Disk: %s\n", dl.d_typename);
509 1.10 xtraeme (void)printf("Total sectors on disk: %" PRIu32 "\n\n",
510 1.10 xtraeme dl.d_secperunit);
511 1.10 xtraeme }
512 1.1 xtraeme }
513 1.10 xtraeme
514 1.10 xtraeme if (!eflag && !fflag)
515 1.1 xtraeme end = dl.d_secperunit; /* default to max sectors */
516 1.1 xtraeme
517 1.10 xtraeme if (fd == -1)
518 1.10 xtraeme err(1, "Cannot open `%s'", device);
519 1.10 xtraeme /* NOTREACHED */
520 1.10 xtraeme
521 1.5 xtraeme return scan_disk(fd, beg, end, flags);
522 1.1 xtraeme }
523