1 /* list.c: vinum interface program, list routines
4 * Copyright (c) 1997, 1998
5 * Nan Yang Computer Services Limited. All rights reserved.
7 * Parts copyright (c) 1997, 1998 Cybernet Corporation, NetMAX project.
9 * Written by Greg Lehey
11 * This software is distributed under the so-called ``Berkeley
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. Neither the name of the Company nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * This software is provided ``as is'', and any express or implied
27 * warranties, including, but not limited to, the implied warranties of
28 * merchantability and fitness for a particular purpose are disclaimed.
29 * In no event shall the company or contributors be liable for any
30 * direct, indirect, incidental, special, exemplary, or consequential
31 * damages (including, but not limited to, procurement of substitute
32 * goods or services; loss of use, data, or profits; or business
33 * interruption) however caused and on any theory of liability, whether
34 * in contract, strict liability, or tort (including negligence or
35 * otherwise) arising in any way out of the use of this software, even if
36 * advised of the possibility of such damage.
38 * $Id: list.c,v 1.25 2000/12/20 03:38:43 grog Exp grog $
39 * $FreeBSD: src/sbin/vinum/list.c,v 1.25.2.4 2001/05/28 05:58:04 grog Exp $
40 * $DragonFly: src/sbin/vinum/list.c,v 1.10 2007/06/18 05:13:41 dillon Exp $
43 #define _KERNEL_STRUCTURES
56 #include <sys/ioctl.h>
57 #include <sys/utsname.h>
58 #include <sys/disklabel32.h>
59 #include <dev/raid/vinum/vinumhdr.h>
61 #include <dev/raid/vinum/request.h>
65 * When a subdisk is reviving or initializing, we
66 * check to see whether it is still progressing
67 * and print a warning if not. We check every 50
68 * ms, up to a maximum of 5 seconds. This is the
71 #define STALLCOUNT 100
74 * Take a size in sectors and return a pointer to
75 * a string which represents the size best. If lj
76 * is != 0, return left justified, otherwise in a
77 * fixed 10 character field suitable for columnar
80 * Note this uses a static string: it's only
81 * intended to be used immediately for printing.
84 roughlength(int64_t bytes
, int lj
)
86 static char description
[16];
88 if (bytes
> (int64_t) MEGABYTE
* 10000) /* gigabytes */
89 sprintf(description
, lj
? "%lld GB" : "%10lld GB",
90 (long long)bytes
/ GIGABYTE
);
91 else if (bytes
> KILOBYTE
* 10000) /* megabytes */
92 sprintf(description
, lj
? "%lld MB" : "%10lld MB",
93 (long long)bytes
/ MEGABYTE
);
94 else if (bytes
> 10000) /* kilobytes */
95 sprintf(description
, lj
? "%lld kB" : "%10lld kB",
96 (long long)bytes
/ KILOBYTE
);
98 sprintf(description
, lj
? "%lld B" : "%10lld B",
104 vinum_list(int argc
, char *argv
[], char *argv0
[])
108 enum objecttype type
;
110 if (sflag
& (!vflag
)) /* just summary stats, */
111 printf("Object\t\t Reads\t\tBytes\tAverage\tRecover\t Writes"
112 "\t\tBytes\tAverage\t Mblock Mstripe\n\n");
114 listconfig(); /* list everything */
116 for (i
= 0; i
< argc
; i
++) {
117 object
= find_object(argv
[i
], &type
); /* look for it */
118 if (vinum_li(object
, type
))
119 fprintf(stderr
, "Can't find object: %s\n", argv
[i
]);
126 vinum_li(int object
, enum objecttype type
)
130 vinum_ldi(object
, recurse
);
134 vinum_lsi(object
, recurse
);
138 vinum_lpi(object
, recurse
);
142 vinum_lvi(object
, recurse
);
152 vinum_ldi(int driveno
, int recurse
)
154 time_t t
; /* because Bruce says so */
155 int sdno
; /* for recursion */
157 get_drive_info(&drive
, driveno
);
158 if (drive
.state
!= drive_unallocated
) {
160 printf("Drive %s:\tDevice %s\n",
163 t
= drive
.label
.date_of_birth
.tv_sec
;
164 printf("\t\tCreated on %s at %s",
167 t
= drive
.label
.last_update
.tv_sec
;
168 printf("\t\tConfig last updated %s", /* care: \n at end */
170 printf("\t\tSize: %16lld bytes (%lld MB)\n\t\tUsed: %16lld bytes (%lld MB)\n"
171 "\t\tAvailable: %11qd bytes (%d MB)\n",
172 (long long) drive
.label
.drive_size
, /* bytes used */
173 (long long) (drive
.label
.drive_size
/ MEGABYTE
),
174 (long long) (drive
.label
.drive_size
- drive
.sectors_available
176 (long long) (drive
.label
.drive_size
- drive
.sectors_available
177 * DEV_BSIZE
) / MEGABYTE
,
178 (long long) drive
.sectors_available
* DEV_BSIZE
,
179 (int) (drive
.sectors_available
* DEV_BSIZE
/ MEGABYTE
));
180 printf("\t\tState: %s\n", drive_state(drive
.state
));
181 if (drive
.lasterror
!= 0)
182 printf("\t\tLast error: %s\n", strerror(drive
.lasterror
));
184 printf("\t\tLast error: none\n");
185 printf("\t\tActive requests:\t%d\n\t\tMaximum active:\t\t%d\n",
188 if (Verbose
) { /* print the free list */
189 int fe
; /* freelist entry */
191 struct drive_freelist freelist
;
192 struct ferq
{ /* request to pass to ioctl */
198 printf("\t\tFree list contains %d entries:\n\t\t Offset\t Size\n",
199 drive
.freelist_entries
);
200 for (fe
= 0; fe
< drive
.freelist_entries
; fe
++) {
201 freeunion
.ferq
.driveno
= drive
.driveno
;
202 freeunion
.ferq
.fe
= fe
;
203 if (ioctl(superdev
, VINUM_GETFREELIST
, &freeunion
.freelist
) < 0) {
205 "Can't get free list element %d: %s\n",
208 longjmp(command_fail
, -1);
210 printf("\t\t%9lld\t%9lld\n",
211 (long long) freeunion
.freelist
.offset
,
212 (long long) freeunion
.freelist
.sectors
);
216 printf("D %-21s State: %s\tDevice %s\tAvail: %lld/%lld MB",
218 drive_state(drive
.state
),
220 (long long) drive
.sectors_available
* DEV_BSIZE
/ MEGABYTE
,
221 (long long) (drive
.label
.drive_size
/ MEGABYTE
));
222 if (drive
.label
.drive_size
!= 0)
224 (int) ((drive
.sectors_available
* 100 * DEV_BSIZE
)
225 / (drive
.label
.drive_size
- (DATASTART
* DEV_BSIZE
))));
228 if (vflag
|| Verbose
) {
229 printf("\t\tReads: \t%16lld\n\t\tBytes read:\t%16lld (%s)\n",
230 (long long) drive
.reads
,
231 (long long) drive
.bytes_read
,
232 roughlength(drive
.bytes_read
, 1));
233 if (drive
.reads
!= 0)
234 printf("\t\tAverage read:\t%16lld bytes\n",
235 (long long) drive
.bytes_read
/ drive
.reads
);
236 printf("\t\tWrites: \t%16lld\n\t\tBytes written:\t%16lld (%s)\n",
237 (long long) drive
.writes
,
238 (long long) drive
.bytes_written
,
239 roughlength(drive
.bytes_written
, 1));
240 if (drive
.writes
!= 0)
241 printf("\t\tAverage write:\t%16lld bytes\n",
242 (long long) (drive
.bytes_written
/ drive
.writes
));
243 } else { /* non-verbose stats */
244 printf("%-15s\t%7lld\t%15lld\t",
246 (long long) drive
.reads
,
247 (long long) drive
.bytes_read
);
248 if (drive
.reads
!= 0)
250 (long long) (drive
.bytes_read
/ drive
.reads
));
253 printf("%7lld\t%15lld\t",
254 (long long) drive
.writes
,
255 (long long) drive
.bytes_written
);
256 if (drive
.writes
!= 0)
258 (long long) (drive
.bytes_written
/ drive
.writes
));
263 for (sdno
= 0; sdno
< vinum_conf
.subdisks_allocated
; sdno
++) {
264 get_sd_info(&sd
, sdno
);
265 if ((sd
.state
!= sd_unallocated
)
266 && (sd
.driveno
== drive
.driveno
))
267 vinum_lsi(sd
.sdno
, 0);
275 vinum_ld(int argc
, char *argv
[], char *argv0
[])
279 enum objecttype type
;
281 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
282 perror("Can't get vinum config");
286 for (driveno
= 0; driveno
< vinum_conf
.drives_allocated
; driveno
++)
287 vinum_ldi(driveno
, recurse
);
289 for (i
= 0; i
< argc
; i
++) {
290 driveno
= find_object(argv
[i
], &type
);
291 if (type
== drive_object
)
292 vinum_ldi(driveno
, recurse
);
294 fprintf(stderr
, "%s is not a drive\n", argv
[i
]);
300 vinum_lvi(int volno
, int recurse
)
302 get_volume_info(&vol
, volno
);
303 if (vol
.state
!= volume_unallocated
) {
305 printf("Volume %s:\tSize: %lld bytes (%lld MB)\n"
306 "\t\tState: %s\n\t\tFlags: %s%s%s\n",
308 ((long long) vol
.size
) * DEV_BSIZE
,
309 ((long long) vol
.size
) * DEV_BSIZE
/ MEGABYTE
,
310 volume_state(vol
.state
),
311 vol
.flags
& VF_OPEN
? "open " : "",
312 (vol
.flags
& VF_WRITETHROUGH
? "writethrough " : ""),
313 (vol
.flags
& VF_RAW
? "raw" : ""));
314 printf("\t\t%d plexes\n\t\tRead policy: ", vol
.plexes
);
315 if (vol
.preferred_plex
< 0) /* round robin */
316 printf("round robin\n");
318 get_plex_info(&plex
, vol
.plex
[vol
.preferred_plex
]);
319 printf("plex %d (%s)\n", vol
.preferred_plex
, plex
.name
);
321 } else if (!sflag
) /* brief */
322 printf("V %-21s State: %s\tPlexes: %7d\tSize: %s\n",
324 volume_state(vol
.state
),
326 roughlength(vol
.size
<< DEV_BSHIFT
, 0));
328 if (vflag
|| Verbose
) {
329 printf("\t\tReads: \t%16lld\n\t\tRecovered:\t%16lld\n\t\tBytes read:\t%16lld (%s)\n",
330 (long long) vol
.reads
,
331 (long long) vol
.recovered_reads
,
332 (long long) vol
.bytes_read
,
333 roughlength(vol
.bytes_read
, 1));
335 printf("\t\tAverage read:\t%16lld bytes\n",
336 (long long) (vol
.bytes_read
/ vol
.reads
));
337 printf("\t\tWrites: \t%16lld\n\t\tBytes written:\t%16lld (%s)\n",
338 (long long) vol
.writes
,
339 (long long) vol
.bytes_written
,
340 roughlength(vol
.bytes_written
, 1));
342 printf("\t\tAverage write:\t%16lld bytes\n",
343 (long long) (vol
.bytes_written
/ vol
.writes
));
344 printf("\t\tActive requests:\t%8d\n", vol
.active
);
345 } else { /* brief stats listing */
346 printf("%-15s\t%7lld\t%15lld\t",
348 (long long) vol
.reads
,
349 (long long) vol
.bytes_read
);
352 (long long) (vol
.bytes_read
/ vol
.reads
));
355 printf("%7lld\t", (long long) vol
.recovered_reads
);
356 printf("%7lld\t%15lld\t",
357 (long long)vol
.writes
,
358 (long long)vol
.bytes_written
);
361 (long long) (vol
.bytes_written
/ vol
.writes
));
366 if (vol
.plexes
> 0) {
368 if (Verbose
) { /* brief list */
369 for (plexno
= 0; plexno
< vol
.plexes
; plexno
++) {
370 get_plex_info(&plex
, vol
.plex
[plexno
]);
371 /* Just a brief summary here */
372 printf("\t\tPlex %2d:\t%s\t(%s), %s\n",
375 plex_org(plex
.organization
),
376 roughlength(plex
.length
<< DEV_BSHIFT
, 0));
380 for (plexno
= 0; plexno
< vol
.plexes
; plexno
++)
381 vinum_lpi(vol
.plex
[plexno
], 0); /* first show the plexes */
382 for (plexno
= 0; plexno
< vol
.plexes
; plexno
++) { /* then the subdisks */
383 get_plex_info(&plex
, vol
.plex
[plexno
]);
384 if (plex
.subdisks
> 0) {
387 for (sdno
= 0; sdno
< plex
.subdisks
; sdno
++) {
388 get_plex_sd_info(&sd
, vol
.plex
[plexno
], sdno
);
389 vinum_lsi(sd
.sdno
, 0);
400 vinum_lv(int argc
, char *argv
[], char *argv0
[])
404 enum objecttype type
;
406 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
407 perror("Can't get vinum config");
411 for (volno
= 0; volno
< vinum_conf
.volumes_allocated
; volno
++)
412 vinum_lvi(volno
, recurse
);
414 for (i
= 0; i
< argc
; i
++) {
415 volno
= find_object(argv
[i
], &type
);
416 if (type
== volume_object
)
417 vinum_lvi(volno
, recurse
);
419 fprintf(stderr
, "%s is not a volume\n", argv
[i
]);
425 vinum_lpi(int plexno
, int recurse
)
427 get_plex_info(&plex
, plexno
);
428 if (plex
.state
!= plex_unallocated
) {
430 printf("Plex %s:\tSize:\t%9lld bytes (%lld MB)\n\t\tSubdisks: %8d\n",
432 (long long) plex
.length
* DEV_BSIZE
,
433 (long long) plex
.length
* DEV_BSIZE
/ MEGABYTE
,
435 printf("\t\tState: %s\n\t\tOrganization: %s",
436 plex_state(plex
.state
),
437 plex_org(plex
.organization
));
438 if (isstriped((&plex
)))
439 printf("\tStripe size: %s\n", roughlength(plex
.stripesize
* DEV_BSIZE
, 1));
442 if ((isparity((&plex
)))
443 && (plex
.checkblock
!= 0))
444 printf("\t\tCheck block pointer:\t\t%s (%d%%)\n",
445 roughlength((plex
.checkblock
<< DEV_BSHIFT
) * (plex
.subdisks
- 1), 0),
446 (int) (((u_int64_t
) (plex
.checkblock
* 100)) * (plex
.subdisks
- 1) / plex
.length
));
447 if (plex
.volno
>= 0) {
448 get_volume_info(&vol
, plex
.volno
);
449 printf("\t\tPart of volume %s\n", vol
.name
);
451 } else if (!sflag
) { /* non-verbose list */
452 char *org
= ""; /* organization */
454 switch (plex
.organization
) {
455 case plex_disorg
: /* disorganized */
458 case plex_concat
: /* concatenated plex */
461 case plex_striped
: /* striped plex */
464 case plex_raid4
: /* RAID4 plex */
467 case plex_raid5
: /* RAID5 plex */
471 printf("P %-18s %2s State: %s\tSubdisks: %5d\tSize: %s",
474 plex_state(plex
.state
),
476 roughlength(plex
.length
<< DEV_BSHIFT
, 0));
479 if (vflag
|| Verbose
) {
480 printf("\t\tReads: \t%16lld\n\t\tBytes read:\t%16lld (%s)\n",
481 (long long) plex
.reads
,
482 (long long) plex
.bytes_read
,
483 roughlength(plex
.bytes_read
, 1));
485 printf("\t\tAverage read:\t%16lld bytes\n",
486 (long long) (plex
.bytes_read
/ plex
.reads
));
487 printf("\t\tWrites: \t%16lld\n\t\tBytes written:\t%16lld (%s)\n",
488 (long long) plex
.writes
,
489 (long long) plex
.bytes_written
,
490 roughlength(plex
.bytes_written
, 1));
491 if (plex
.writes
!= 0)
492 printf("\t\tAverage write:\t%16lld bytes\n",
493 (long long) (plex
.bytes_written
/ plex
.writes
));
494 if (((plex
.reads
+ plex
.writes
) > 0)
495 && isstriped((&plex
)))
496 printf("\t\tMultiblock:\t%16lld (%d%%)\n"
497 "\t\tMultistripe:\t%16lld (%d%%)\n",
498 (long long) plex
.multiblock
,
499 (int) (plex
.multiblock
* 100 / (plex
.reads
+ plex
.writes
)),
500 (long long) plex
.multistripe
,
501 (int) (plex
.multistripe
* 100 / (plex
.reads
+ plex
.writes
)));
502 if (plex
.recovered_reads
)
503 printf("\t\tRecovered reads:%16lld\n",
504 (long long) plex
.recovered_reads
);
505 if (plex
.degraded_writes
)
506 printf("\t\tDegraded writes:%16lld\n",
507 (long long) plex
.degraded_writes
);
508 if (plex
.parityless_writes
)
509 printf("\t\tParityless writes:%14lld\n",
510 (long long) plex
.parityless_writes
);
512 printf("%-15s\t%7lld\t%15lld\t",
514 (long long) plex
.reads
,
515 (long long) plex
.bytes_read
);
518 (long long) (plex
.bytes_read
/ plex
.reads
));
521 printf("%7lld\t", (long long) plex
.recovered_reads
);
522 printf("%7lld\t%15lld\t",
523 (long long) plex
.writes
,
524 (long long) plex
.bytes_written
);
525 if (plex
.writes
!= 0)
527 (long long) (plex
.bytes_written
/ plex
.writes
));
530 printf("%7lld\t%7lld\n",
531 (long long) plex
.multiblock
,
532 (long long) plex
.multistripe
);
535 if (plex
.subdisks
> 0) {
540 for (sdno
= 0; sdno
< plex
.subdisks
; sdno
++) {
541 get_plex_sd_info(&sd
, plexno
, sdno
);
542 printf("\t\tSubdisk %d:\t%s\n\t\t state: %s\tsize %11lld (%lld MB)\n",
546 (long long) sd
.sectors
* DEV_BSIZE
,
547 (long long) sd
.sectors
* DEV_BSIZE
/ MEGABYTE
);
548 if (plex
.organization
== plex_concat
)
549 printf("\t\t\toffset %9ld (0x%lx)\n",
550 (long) sd
.plexoffset
,
551 (long) sd
.plexoffset
);
556 for (sdno
= 0; sdno
< plex
.subdisks
; sdno
++) {
557 get_plex_sd_info(&sd
, plexno
, sdno
);
558 vinum_lsi(sd
.sdno
, 0);
567 vinum_lp(int argc
, char *argv
[], char *argv0
[])
571 enum objecttype type
;
573 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
574 perror("Can't get vinum config");
578 for (plexno
= 0; plexno
< vinum_conf
.plexes_allocated
; plexno
++)
579 vinum_lpi(plexno
, recurse
);
581 for (i
= 0; i
< argc
; i
++) {
582 plexno
= find_object(argv
[i
], &type
);
583 if (type
== plex_object
)
584 vinum_lpi(plexno
, recurse
);
586 fprintf(stderr
, "%s is not a plex\n", argv
[i
]);
592 vinum_lsi(int sdno
, int recurse
)
594 long long revived
; /* keep an eye on revive progress */
597 get_sd_info(&sd
, sdno
);
598 if (sd
.state
!= sd_unallocated
) {
600 printf("Subdisk %s:\n\t\tSize: %16lld bytes (%lld MB)\n\t\tState: %s\n",
602 (long long) sd
.sectors
* DEV_BSIZE
,
603 (long long) sd
.sectors
/ (MEGABYTE
/ DEV_BSIZE
),
605 if (sd
.flags
& VF_RETRYERRORS
)
606 printf("\t\tretryerrors\n");
607 if (sd
.plexno
>= 0) {
608 get_plex_info(&plex
, sd
.plexno
);
609 printf("\t\tPlex %s", plex
.name
);
610 printf(" at offset %lld (%s)\n",
611 (long long) sd
.plexoffset
* DEV_BSIZE
,
612 roughlength((long long) sd
.plexoffset
* DEV_BSIZE
, 1));
614 if (sd
.state
== sd_reviving
) {
616 printf("\t\t*** Start subdisk with 'start' command ***\n");
618 printf("\t\tReviver PID:\t%d\n", sd
.reviver
);
619 if (kill(sd
.reviver
, 0) == -1) {
620 if (errno
== ESRCH
) /* no process */
621 printf("\t\t*** Revive process has died ***\n");
622 /* Don't report a problem that "can't happen" */
624 revived
= sd
.revived
; /* note how far we were */
627 * Wait for up to a second until we
628 * see some progress with the revive.
629 * Do it like this so we don't have
630 * annoying delays in the listing.
632 for (times
= 0; times
< STALLCOUNT
; times
++) {
633 get_sd_info(&sd
, sdno
);
634 if (sd
.revived
!= revived
) /* progress? */
638 if (times
== STALLCOUNT
)
639 printf("\t\t*** Revive has stalled ***\n");
642 printf("\t\tRevive pointer:\t\t%s (%d%%)\n",
643 roughlength(sd
.revived
<< DEV_BSHIFT
, 0),
644 (int) (((u_int64_t
) (sd
.revived
* 100)) / sd
.sectors
));
645 printf("\t\tRevive blocksize:\t%s\n"
646 "\t\tRevive interval:\t%10d seconds\n",
647 roughlength(sd
.revive_blocksize
, 0),
650 if (sd
.state
== sd_initializing
) {
651 printf("\t\tInitialize pointer:\t%s (%d%%)\n",
652 roughlength(sd
.initialized
<< DEV_BSHIFT
, 0),
653 (int) (((u_int64_t
) (sd
.initialized
* 100)) / sd
.sectors
));
654 printf("\t\tInitialize blocksize:\t%s\n"
655 "\t\tInitialize interval:\t%10d seconds\n",
656 roughlength(sd
.init_blocksize
, 0),
659 get_drive_info(&drive
, sd
.driveno
);
660 if (sd
.driveoffset
< 0)
661 printf("\t\tDrive %s (%s), no offset\n",
664 else if (drive
.devicename
[0] != '\0') /* has a name */
665 printf("\t\tDrive %s (%s) at offset %lld (%s)\n",
668 (long long) (sd
.driveoffset
* DEV_BSIZE
),
669 roughlength(sd
.driveoffset
* DEV_BSIZE
, 1));
671 printf("\t\tDrive %s (*missing*) at offset %lld (%s)\n",
673 (long long) (sd
.driveoffset
* DEV_BSIZE
),
674 roughlength(sd
.driveoffset
* DEV_BSIZE
, 1));
675 } else if (!sflag
) { /* brief listing, no stats */
676 if (sd
.state
== sd_reviving
)
677 printf("S %-21s State: R %d%%\t",
679 (int) (((u_int64_t
) (sd
.revived
* 100)) / sd
.sectors
));
680 else if (sd
.state
== sd_initializing
)
681 printf("S %-21s State: I %d%%\t",
683 (int) (((u_int64_t
) (sd
.initialized
* 100)) / sd
.sectors
));
685 printf("S %-21s State: %s\t",
689 printf("(detached)\t");
692 &(roughlength(sd
.plexoffset
<< DEV_BSHIFT
, 0))[2]); /* what a kludge! */
694 roughlength(sd
.sectors
<< DEV_BSHIFT
, 0));
695 if (sd
.state
== sd_reviving
) {
697 printf("\t\t\t*** Start %s with 'start' command ***\n",
699 else if (kill(sd
.reviver
, 0) == -1) {
700 if (errno
== ESRCH
) /* no process */
701 printf("\t\t\t*** Revive process for %s has died ***\n",
703 /* Don't report a problem that "can't happen" */
705 revived
= sd
.revived
; /* note how far we were */
708 * Wait for up to a second until we
709 * see some progress with the revive.
710 * Do it like this so we don't have
711 * annoying delays in the listing.
713 for (times
= 0; times
< STALLCOUNT
; times
++) {
714 get_sd_info(&sd
, sdno
);
715 if (sd
.revived
!= revived
) /* progress? */
719 if (times
== STALLCOUNT
)
720 printf("\t\t\t*** Revive of %s has stalled ***\n",
726 if (vflag
|| Verbose
) {
727 printf("\t\tReads: \t%16lld\n\t\tBytes read:\t%16lld (%s)\n",
728 (long long) sd
.reads
,
729 (long long) sd
.bytes_read
,
730 roughlength(sd
.bytes_read
, 1));
732 printf("\t\tAverage read:\t%16lld bytes\n",
733 (long long) (sd
.bytes_read
/ sd
.reads
));
734 printf("\t\tWrites: \t%16lld\n\t\tBytes written:\t%16lld (%s)\n",
735 (long long) sd
.writes
,
736 (long long) sd
.bytes_written
,
737 roughlength(sd
.bytes_written
, 1));
739 printf("\t\tAverage write:\t%16lld bytes\n",
740 (long long) (sd
.bytes_written
/ sd
.writes
));
742 printf("%-15s\t%7lld\t%15lld\t",
744 (long long) sd
.reads
,
745 (long long) sd
.bytes_read
);
748 (long long) (sd
.bytes_read
/ sd
.reads
));
751 printf("%7lld\t%15lld\t",
752 (long long) sd
.writes
,
753 (long long) sd
.bytes_written
);
756 (long long) (sd
.bytes_written
/ sd
.writes
));
762 vinum_ldi(sd
.driveno
, 0);
764 printf("\n"); /* make it more readable */
769 vinum_ls(int argc
, char *argv
[], char *argv0
[])
774 /* Structures to read kernel data into */
775 struct _vinum_conf vinum_conf
;
776 enum objecttype type
;
778 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
779 perror("Can't get vinum config");
783 for (sdno
= 0; sdno
< vinum_conf
.subdisks_allocated
; sdno
++)
784 vinum_lsi(sdno
, recurse
);
785 } else { /* specific subdisks */
786 for (i
= 0; i
< argc
; i
++) {
787 sdno
= find_object(argv
[i
], &type
);
788 if (type
== sd_object
)
789 vinum_lsi(sdno
, recurse
);
791 fprintf(stderr
, "%s is not a subdisk\n", argv
[i
]);
797 /* List the complete configuration.
799 * XXX Change this to specific lists */
803 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
804 perror("Can't get vinum config");
807 printf("%d drives:\n", vinum_conf
.drives_used
);
808 if (vinum_conf
.drives_used
> 0) {
809 vinum_ld(0, NULL
, NULL
);
812 printf("%d volumes:\n", vinum_conf
.volumes_used
);
813 if (vinum_conf
.volumes_used
> 0) {
814 vinum_lv(0, NULL
, NULL
);
817 printf("%d plexes:\n", vinum_conf
.plexes_used
);
818 if (vinum_conf
.plexes_used
> 0) {
819 vinum_lp(0, NULL
, NULL
);
822 printf("%d subdisks:\n", vinum_conf
.subdisks_used
);
823 if (vinum_conf
.subdisks_used
> 0)
824 vinum_ls(0, NULL
, NULL
);
827 /* Convert a timeval to Tue Oct 13 13:54:14.0434324
828 * Return pointer to text */
830 timetext(struct timeval
*time
)
832 static char text
[30];
833 time_t t
; /* to keep Bruce happy */
836 strcpy(text
, ctime(&t
)); /* to the second */
837 sprintf(&text
[19], ".%06ld", time
->tv_usec
); /* and the microseconds */
842 vinum_info(int argc
, char *argv
[], char *argv0
[])
844 struct meminfo meminfo
;
851 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
852 perror("Can't get vinum config");
855 printf("Flags: 0x%x\n", vinum_conf
.flags
);
856 if (ioctl(superdev
, VINUM_MEMINFO
, &meminfo
) < 0) {
857 perror("Can't get information");
860 printf("Total of %d blocks malloced, total memory: %d\nMaximum allocs: %8d, malloc table at %p\n",
862 meminfo
.total_malloced
,
866 printf("%d requests active, maximum %d active\n",
868 vinum_conf
.maxactive
);
869 if (vflag
&& (!Verbose
))
870 for (i
= 0; i
< meminfo
.mallocs
; i
++) {
872 if (ioctl(superdev
, VINUM_MALLOCINFO
, &malloced
) < 0) {
873 perror("Can't get information");
877 printf("Block\tSequence\t size\t address\t line\t\tfile\n\n");
878 printf("%6d\t%6d\t\t%6d\t%p\t%6d\t\t%s\n",
884 (char *) &malloced
.file
);
888 printf("\nTime\t\t Event\t Buf\tDev\t Offset\tBytes\tSD\tSDoff\tDoffset\tGoffset\n\n");
889 for (i
= RQINFO_SIZE
- 1; i
>= 0; i
--) { /* go through the request list in order */
891 if (ioctl(superdev
, VINUM_RQINFO
, &rq
) < 0) {
892 perror("Can't get information");
895 /* Compress devminor into something printable. */
896 rq
.devminor
= (rq
.devminor
& 0xff)
897 | ((rq
.devminor
& 0xfff0000) >> 8);
899 case loginfo_unused
: /* never been used */
902 case loginfo_user_bp
: /* this is the bp when strategy is called */
903 printf("%s %dVS %s %p\t%d.%-6d 0x%-9llx\t%d\n",
904 timetext(&rq
.timestamp
),
906 rq
.info
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
910 rq
.info
.bio
.bio_offset
,
914 case loginfo_sdiol
: /* subdisk I/O launch */
915 case loginfo_user_bpl
: /* and this is the bp at launch time */
916 printf("%s %dLR %s %p\t%d.%-6d 0x%-9llx\t%d\n",
917 timetext(&rq
.timestamp
),
919 rq
.info
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
923 rq
.info
.bio
.bio_offset
,
927 case loginfo_rqe
: /* user RQE */
928 printf("%s 3RQ %s %p\t%d.%-6d 0x%-9llx\t%d\t%d\t%llx\t%x\t%x\n",
929 timetext(&rq
.timestamp
),
930 rq
.info
.rqe
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
934 rq
.info
.rqe
.b
.b_bio1
.bio_offset
,
935 rq
.info
.rqe
.b
.b_bcount
,
937 rq
.info
.rqe
.sdoffset
,
938 rq
.info
.rqe
.dataoffset
,
939 rq
.info
.rqe
.groupoffset
);
942 case loginfo_iodone
: /* iodone called */
943 printf("%s 4DN %s %p\t%d.%-6d 0x%-9llx\t%d\t%d\t%llx\t%x\t%x\n",
944 timetext(&rq
.timestamp
),
945 rq
.info
.rqe
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
949 rq
.info
.rqe
.b
.b_bio1
.bio_offset
,
950 rq
.info
.rqe
.b
.b_bcount
,
952 rq
.info
.rqe
.sdoffset
,
953 rq
.info
.rqe
.dataoffset
,
954 rq
.info
.rqe
.groupoffset
);
957 case loginfo_raid5_data
: /* RAID-5 write data block */
958 printf("%s 5RD %s %p\t%d.%-6d 0x%-9llx\t%d\t%d\t%llx\t%x\t%x\n",
959 timetext(&rq
.timestamp
),
960 rq
.info
.rqe
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
964 rq
.info
.rqe
.b
.b_bio1
.bio_offset
,
965 rq
.info
.rqe
.b
.b_bcount
,
967 rq
.info
.rqe
.sdoffset
,
968 rq
.info
.rqe
.dataoffset
,
969 rq
.info
.rqe
.groupoffset
);
972 case loginfo_raid5_parity
: /* RAID-5 write parity block */
973 printf("%s 6RP %s %p\t%d.%-6d 0x%-9llx\t%d\t%d\t%llx\t%x\t%x\n",
974 timetext(&rq
.timestamp
),
975 rq
.info
.rqe
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
979 rq
.info
.rqe
.b
.b_bio1
.bio_offset
,
980 rq
.info
.rqe
.b
.b_bcount
,
982 rq
.info
.rqe
.sdoffset
,
983 rq
.info
.rqe
.dataoffset
,
984 rq
.info
.rqe
.groupoffset
);
987 case loginfo_sdio
: /* subdisk I/O */
988 printf("%s %dVS %s %p\t\t 0x%-9llx\t%d\t%d\n",
989 timetext(&rq
.timestamp
),
991 rq
.info
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
993 rq
.info
.bio
.bio_offset
,
998 case loginfo_sdiodone
: /* subdisk I/O done */
999 printf("%s %dSD %s %p\t\t 0x%-9llx\t%d\t%d\n",
1000 timetext(&rq
.timestamp
),
1002 rq
.info
.b
.b_flags
& BUF_CMD_READ
? "Read " : "Write",
1004 rq
.info
.bio
.bio_offset
,
1009 case loginfo_lockwait
:
1010 printf("%s Lockwait %p\t 0x%llx\n",
1011 timetext(&rq
.timestamp
),
1013 rq
.info
.lockinfo
.stripe
);
1017 printf("%s Lock %p\t 0x%llx\n",
1018 timetext(&rq
.timestamp
),
1020 rq
.info
.lockinfo
.stripe
);
1023 case loginfo_unlock
:
1024 printf("%s Unlock\t %p\t 0x%llx\n",
1025 timetext(&rq
.timestamp
),
1027 rq
.info
.lockinfo
.stripe
);
1036 * Print config file to a file. This is a userland version
1037 * of kernel format_config
1040 vinum_printconfig(int argc
, char *argv
[], char *argv0
[])
1045 fprintf(stderr
, "Usage: \tprintconfig [<outfile>]\n");
1047 } else if (argc
== 1)
1048 of
= fopen(argv
[0], "w");
1052 fprintf(stderr
, "Can't open %s: %s\n", argv
[0], strerror(errno
));
1055 printconfig(of
, "");
1061 * The guts of printconfig. This is called from
1062 * vinum_printconfig and from vinum_create when
1063 * called without an argument, in order to give
1064 * the user something to edit.
1067 printconfig(FILE * of
, char *comment
)
1069 struct utsname uname_s
;
1077 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
1078 perror("Can't get vinum config");
1081 uname(&uname_s
); /* get our system name */
1082 time(&now
); /* and the current time */
1084 "# Vinum configuration of %s, saved at %s",
1086 ctime(&now
)); /* say who did it */
1088 if (comment
[0] != 0) /* abuse this for commented version */
1089 fprintf(of
, "# Current configuration:\n");
1090 for (i
= 0; i
< vinum_conf
.drives_allocated
; i
++) {
1091 get_drive_info(&drive
, i
);
1092 if (drive
.state
!= drive_unallocated
) {
1094 "%sdrive %s device %s\n",
1101 for (i
= 0; i
< vinum_conf
.volumes_allocated
; i
++) {
1102 get_volume_info(&vol
, i
);
1103 if (vol
.state
!= volume_unallocated
) {
1104 if (vol
.preferred_plex
>= 0) /* preferences, */
1106 "%svolume %s readpol prefer %s\n",
1109 vinum_conf
.plex
[vol
.preferred_plex
].name
);
1110 else /* default round-robin */
1111 fprintf(of
, "%svolume %s\n", comment
, vol
.name
);
1115 /* Then the plex configuration */
1116 for (i
= 0; i
< vinum_conf
.plexes_allocated
; i
++) {
1117 get_plex_info(&plex
, i
);
1118 if (plex
.state
!= plex_unallocated
) {
1119 fprintf(of
, "%splex name %s org %s ",
1122 plex_org(plex
.organization
));
1123 if (isstriped((&plex
)))
1124 fprintf(of
, "%ds ", (int) plex
.stripesize
);
1125 if (plex
.volno
>= 0) { /* we have a volume */
1126 get_volume_info(&vol
, plex
.volno
);
1127 fprintf(of
, "vol %s ", vol
.name
);
1129 fprintf(of
, "detached ");
1134 /* And finally the subdisk configuration */
1135 for (i
= 0; i
< vinum_conf
.subdisks_allocated
; i
++) {
1136 get_sd_info(&sd
, i
);
1137 if (sd
.state
!= sd_unallocated
) {
1138 get_drive_info(&drive
, sd
.driveno
);
1139 if (sd
.plexno
>= 0) {
1140 get_plex_info(&plex
, sd
.plexno
);
1142 "%ssd name %s drive %s plex %s len %llds driveoffset %llds plexoffset %llds\n",
1147 (long long) sd
.sectors
,
1148 (long long) sd
.driveoffset
,
1149 (long long) sd
.plexoffset
);
1152 "%ssd name %s drive %s detached len %llds driveoffset %llds\n",
1156 (long long) sd
.sectors
,
1157 (long long) sd
.driveoffset
);
1163 list_defective_objects(void)
1166 int heading_needed
= 1;
1168 if (ioctl(superdev
, VINUM_GETCONFIG
, &vinum_conf
) < 0) {
1169 perror("Can't get vinum config");
1172 for (o
= 0; o
< vinum_conf
.drives_allocated
; o
++) {
1173 get_drive_info(&drive
, o
);
1174 if ((drive
.state
!= drive_unallocated
) /* drive exists */
1175 &&(drive
.state
!= drive_up
)) { /* but it's not up */
1176 if (heading_needed
) {
1177 printf("Warning: defective objects\n\n");
1180 vinum_ldi(o
, 0); /* print info */
1184 for (o
= 0; o
< vinum_conf
.volumes_allocated
; o
++) {
1185 get_volume_info(&vol
, o
);
1186 if ((vol
.state
!= volume_unallocated
) /* volume exists */
1187 &&(vol
.state
!= volume_up
)) { /* but it's not up */
1188 if (heading_needed
) {
1189 printf("Warning: defective objects\n\n");
1192 vinum_lvi(o
, 0); /* print info */
1196 for (o
= 0; o
< vinum_conf
.plexes_allocated
; o
++) {
1197 get_plex_info(&plex
, o
);
1198 if ((plex
.state
!= plex_unallocated
) /* plex exists */
1199 &&(plex
.state
!= plex_up
)) { /* but it's not up */
1200 if (heading_needed
) {
1201 printf("Warning: defective objects\n\n");
1204 vinum_lpi(o
, 0); /* print info */
1208 for (o
= 0; o
< vinum_conf
.subdisks_allocated
; o
++) {
1209 get_sd_info(&sd
, o
);
1210 if ((sd
.state
!= sd_unallocated
) /* sd exists */
1211 &&(sd
.state
!= sd_up
)) { /* but it's not up */
1212 if (heading_needed
) {
1213 printf("Warning: defective objects\n\n");
1216 vinum_lsi(o
, 0); /* print info */
1221 /* Dump config from specified disk drives */
1223 vinum_dumpconfig(int argc
, char *argv
[], char *argv0
[])
1227 if (argc
== 0) { /* start everything */
1228 int devs
= getnumdevs();
1229 struct statinfo statinfo
;
1231 char *enamelist
; /* end of name list */
1233 char **token
; /* list of tokens */
1234 int tokens
; /* and their number */
1236 bzero(&statinfo
, sizeof(struct statinfo
));
1237 statinfo
.dinfo
= malloc(devs
* sizeof(struct statinfo
));
1238 namelist
= malloc(devs
* (DEVSTAT_NAME_LEN
+ 8));
1239 token
= malloc((devs
+ 1) * sizeof(char *));
1240 if ((statinfo
.dinfo
== NULL
) || (namelist
== NULL
) || (token
== NULL
)) {
1241 fprintf(stderr
, "Can't allocate memory for drive list\n");
1244 bzero(statinfo
.dinfo
, sizeof(struct devinfo
));
1246 tokens
= 0; /* no tokens yet */
1247 if (getdevs(&statinfo
) < 0) { /* find out what devices we have */
1248 perror("Can't get device list");
1251 namelist
[0] = '\0'; /* start with empty namelist */
1252 enamelist
= namelist
; /* point to the end of the list */
1254 for (i
= 0; i
< devs
; i
++) {
1255 struct devstat
*stat
= &statinfo
.dinfo
->devices
[i
];
1257 if (((stat
->device_type
& DEVSTAT_TYPE_MASK
) == DEVSTAT_TYPE_DIRECT
) /* disk device */
1258 &&((stat
->device_type
& DEVSTAT_TYPE_PASS
) == 0) /* and not passthrough */
1259 &&((stat
->device_name
[0] != '\0'))) { /* and it has a name */
1260 sprintf(enamelist
, "/dev/%s%d", stat
->device_name
, stat
->unit_number
);
1261 token
[tokens
] = enamelist
; /* point to it */
1262 tokens
++; /* one more token */
1263 enamelist
= &enamelist
[strlen(enamelist
) + 1]; /* and start beyond the end */
1266 free(statinfo
.dinfo
); /* don't need the list any more */
1267 for (i
= 0; i
< tokens
; i
++)
1268 dumpconfig(token
[i
]);
1271 } else { /* list specified drives */
1272 for (i
= 0; i
< argc
; i
++)
1273 dumpconfig(argv
[i
]);
1279 dumpconfig(char *part
)
1281 char partname
[MAXPATHLEN
];
1283 int partition
; /* UNIX partition */
1285 int founddrive
; /* flag when we find a vinum drive */
1286 struct disklabel32 label
; /* label of this drive */
1287 int driveno
; /* fd of drive */
1289 u_int64_t drivelength
;
1291 if (memcmp(part
, "/dev/", DEVLEN
) == 0) /* starts with /dev */
1292 memcpy(partname
, part
, MAXPATHLEN
);
1293 else { /* prepend */
1294 strcpy(partname
, "/dev/");
1295 strncat(&partname
[DEVLEN
], part
, MAXPATHLEN
- DEVLEN
);
1297 partid
= &partname
[strlen(partname
)];
1298 founddrive
= 0; /* no vinum drive found yet on this spindle */
1299 /* first try the partition table */
1300 for (slice
= 1; slice
< 5; slice
++) {
1301 sprintf(partid
, "s%dc", slice
); /* c partition */
1302 driveno
= open(partname
, O_RDONLY
);
1304 if (errno
!= ENOENT
)
1305 fprintf(stderr
, "Can't open %s: %s (%d)\n", partname
, strerror(errno
), errno
);
1308 if (ioctl(driveno
, DIOCGDINFO32
, &label
) < 0) {
1309 fprintf(stderr
, "Can't get label from %s: %s (%d)\n", partname
, strerror(errno
), errno
);
1312 for (partition
= 0; partition
< MAXPARTITIONS
; partition
++) {
1313 if ((partition
!= 2) /* it's not the c partition */
1314 &&((label
.d_partitions
[partition
].p_fstype
== FS_VINUM
) /* and it's a Vinum partition */
1315 ||Verbose
)) { /* or we're just plain curious */
1316 sprintf(partid
, "s%d%c", slice
, partition
+ 'a');
1317 found
= check_drive(partname
); /* try to open it */
1318 founddrive
|= found
; /* and note if we were successful at all */
1319 if (label
.d_partitions
[partition
].p_fstype
== FS_VINUM
) { /* it's a Vinum partition */
1320 drivelength
= ((u_int64_t
) label
.d_partitions
[partition
].p_size
) * DEV_BSIZE
;
1321 printf("Drive %s: %s (%lld bytes)\n",
1323 roughlength(drivelength
, 1),
1324 (long long)drivelength
);
1325 if ((!found
) && vflag
) /* we're talkative */
1326 printf("*** no configuration found ***\n");
1331 if (founddrive
== 0) { /* didn't find anything, */
1332 sprintf(partid
, "c"); /* c partition */
1333 driveno
= open(partname
, O_RDONLY
);
1335 if (errno
!= ENOENT
)
1336 fprintf(stderr
, "Can't open %s: %s (%d)\n", partname
, strerror(errno
), errno
);
1339 if (ioctl(driveno
, DIOCGDINFO32
, &label
) < 0) {
1340 fprintf(stderr
, "Can't get label from %s: %s (%d)\n", partname
, strerror(errno
), errno
);
1343 for (partition
= 0; partition
< MAXPARTITIONS
; partition
++) { /* try the compatibility partition */
1344 if ((partition
!= 2) /* it's not the c partition */
1345 &&((label
.d_partitions
[partition
].p_fstype
== FS_VINUM
) /* and it's a Vinum partition */
1346 ||Verbose
)) { /* or we're just plain curious */
1347 sprintf(partid
, "%c", partition
+ 'a');
1348 found
= check_drive(partname
); /* try to open it */
1349 founddrive
|= found
; /* and note if we were successful at all */
1350 if (label
.d_partitions
[partition
].p_fstype
== FS_VINUM
) { /* it's a Vinum partition */
1351 drivelength
= ((u_int64_t
) label
.d_partitions
[partition
].p_size
) * DEV_BSIZE
;
1352 printf("Drive %s: %s (%lld bytes)\n",
1354 roughlength(drivelength
, 1),
1355 (long long)drivelength
);
1356 if ((!found
) && vflag
) /* we're talkative */
1357 printf("*** no configuration found ***\n");
1365 * Check a drive for a Vinum header. If found,
1366 * print configuration information from the drive.
1368 * Return 1 if Vinum config found.
1371 check_drive(char *devicename
)
1374 char vinumlabel
[DEV_BSIZE
]; /* one sector for label */
1375 struct vinum_hdr
*hdr
= (struct vinum_hdr
*) vinumlabel
; /* with this structure */
1376 char *config_text
; /* read the config info from disk into here */
1379 fd
= open(devicename
, O_RDONLY
);
1381 if (lseek(fd
, VINUM_LABEL_OFFSET
, SEEK_SET
) < 0) {
1383 "Can't seek label for %s: %s (%d)\n",
1390 if (read(fd
, vinumlabel
, DEV_BSIZE
) != DEV_BSIZE
) {
1391 if (errno
!= EINVAL
)
1393 "Can't read label from %s: %s (%d)\n",
1400 if ((hdr
->magic
== VINUM_MAGIC
)
1401 || (vflag
&& (hdr
->magic
== VINUM_NOMAGIC
))) {
1402 printf("Drive %s:\tDevice %s\n",
1405 if (hdr
->magic
== VINUM_NOMAGIC
)
1406 printf("*** Drive has been obliterated ***\n");
1407 t
= hdr
->label
.date_of_birth
.tv_sec
;
1408 printf("\t\tCreated on %s at %s",
1411 t
= hdr
->label
.last_update
.tv_sec
;
1412 printf("\t\tConfig last updated %s", /* care: \n at end */
1414 printf("\t\tSize: %16lld bytes (%lld MB)\n",
1415 (long long) hdr
->label
.drive_size
, /* bytes used */
1416 (long long) (hdr
->label
.drive_size
/ MEGABYTE
));
1417 config_text
= (char *) malloc(MAXCONFIG
);
1418 if (config_text
== NULL
)
1419 fprintf(stderr
, "Can't allocate memory\n");
1421 if (read(fd
, config_text
, MAXCONFIG
) != MAXCONFIG
)
1423 "Can't read config from %s: %s (%d)\n",
1438 /* Local Variables: */
1439 /* fill-column: 50 */