]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Examine.c
Add 'quite' option and tidy up some tests.
[thirdparty/mdadm.git] / Examine.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2002 Neil Brown <neilb@cse.unsw.edu.au>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29
30 #include "mdadm.h"
31 #include "dlink.h"
32
33 #if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
34 #error no endian defined
35 #endif
36 #include "md_u.h"
37 #include "md_p.h"
38 int Examine(mddev_dev_t devlist, int brief, int scan, int SparcAdjust, struct supertype *forcest)
39 {
40
41 /* Read the raid superblock from a device and
42 * display important content.
43 *
44 * If cannot be found, print reason: too small, bad magic
45 *
46 * Print:
47 * version, ctime, level, size, raid+spare+
48 * prefered minor
49 * uuid
50 *
51 * utime, state etc
52 *
53 * If (brief) gather devices for same array and just print a mdadm.conf line including devices=
54 * if devlist==NULL, use conf_get_devs(
55 */
56 int fd;
57 void *super = NULL;
58 int rv = 0;
59 int err;
60
61 struct array {
62 void *super;
63 struct supertype *st;
64 struct mdinfo info;
65 struct mddev_ident_s ident;
66 void *devs;
67 struct array *next;
68 int spares;
69 } *arrays = NULL;
70
71 for (; devlist ; devlist=devlist->next) {
72 struct supertype *st = forcest;
73
74 fd = open(devlist->devname, O_RDONLY);
75 if (fd < 0) {
76 if (!scan)
77 fprintf(stderr,Name ": cannot open %s: %s\n",
78 devlist->devname, strerror(errno));
79 err = 1;
80 }
81 else {
82 if (!st)
83 st = guess_super(fd);
84 if (st)
85 err = st->ss->load_super(st, fd, &super, (brief||scan)?NULL:devlist->devname);
86 else
87 err = 1;
88 close(fd);
89 }
90 if (err)
91 continue;
92 if (err) rv =1;
93
94 if (SparcAdjust)
95 st->ss->update_super(NULL, super, "sparc2.2", devlist->devname, 0);
96 /* Ok, its good enough to try, though the checksum could be wrong */
97 if (brief) {
98 struct array *ap;
99 char *d;
100 for (ap=arrays; ap; ap=ap->next) {
101 if (st->ss == ap->st->ss && st->ss->compare_super(&ap->super, super)==0)
102 break;
103 }
104 if (!ap) {
105 ap = malloc(sizeof(*ap));
106 ap->super = super;
107 ap->devs = dl_head();
108 ap->next = arrays;
109 ap->spares = 0;
110 ap->st = st;
111 arrays = ap;
112 st->ss->getinfo_super(&ap->info, &ap->ident, super);
113 } else {
114 st->ss->getinfo_super(&ap->info, &ap->ident, super);
115 free(super);
116 }
117 if (!(ap->info.disk.state & MD_DISK_SYNC))
118 ap->spares++;
119 d = dl_strdup(devlist->devname);
120 dl_add(ap->devs, d);
121 } else {
122 printf("%s:\n",devlist->devname);
123 st->ss->examine_super(super);
124 free(super);
125 }
126 }
127 if (brief) {
128 struct array *ap;
129 for (ap=arrays; ap; ap=ap->next) {
130 char sep='=';
131 char *d;
132 ap->st->ss->brief_examine_super(ap->super);
133 if (ap->spares) printf(" spares=%d", ap->spares);
134 if (brief > 1) {
135 printf(" devices");
136 for (d=dl_next(ap->devs); d!= ap->devs; d=dl_next(d)) {
137 printf("%c%s", sep, d);
138 sep=',';
139 }
140 }
141 free(ap->super);
142 /* FIXME free ap */
143 printf("\n");
144 }
145 }
146 return rv;
147 }