]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Examine.c
Add a 'super-switch' so that different format superblocks can be used.
[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)
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 superswitch *ss;
64 struct mdinfo info;
65 void *devs;
66 struct array *next;
67 int spares;
68 } *arrays = NULL;
69
70 for (; devlist ; devlist=devlist->next) {
71 struct superswitch *ss;
72
73 fd = open(devlist->devname, O_RDONLY);
74 if (fd < 0) {
75 if (!scan)
76 fprintf(stderr,Name ": cannot open %s: %s\n",
77 devlist->devname, strerror(errno));
78 err = 1;
79 }
80 else {
81 ss = guess_super(fd, devlist->devname);
82 if (ss)
83 err = ss->load_super(fd, &super, (brief||scan)?NULL:devlist->devname);
84 else
85 err = 1;
86 close(fd);
87 }
88 if (err)
89 continue;
90 if (err) rv =1;
91
92 if (SparcAdjust)
93 ss->update_super(NULL, super, "sparc2.2", devlist->devname, 0);
94 /* Ok, its good enough to try, though the checksum could be wrong */
95 if (brief) {
96 struct array *ap;
97 char *d;
98 for (ap=arrays; ap; ap=ap->next) {
99 if (ss == ap->ss && ss->compare_super(&ap->super, super)==0)
100 break;
101 }
102 if (!ap) {
103 ap = malloc(sizeof(*ap));
104 ap->super = super;
105 ap->devs = dl_head();
106 ap->next = arrays;
107 ap->spares = 0;
108 ap->ss = ss;
109 arrays = ap;
110 ss->getinfo_super(&ap->info, super);
111 } else {
112 ss->getinfo_super(&ap->info, super);
113 free(super);
114 }
115 if (!(ap->info.disk.state & MD_DISK_SYNC))
116 ap->spares++;
117 d = dl_strdup(devlist->devname);
118 dl_add(ap->devs, d);
119 } else {
120 printf("%s:\n",devlist->devname);
121 ss->examine_super(super);
122 free(super);
123 }
124 }
125 if (brief) {
126 struct array *ap;
127 for (ap=arrays; ap; ap=ap->next) {
128 char sep='=';
129 char *d;
130 ap->ss->brief_examine_super(ap->super);
131 if (ap->spares) printf(" spares=%d", ap->spares);
132 printf(" devices");
133 for (d=dl_next(ap->devs); d!= ap->devs; d=dl_next(d)) {
134 printf("%c%s", sep, d);
135 sep=',';
136 }
137 free(ap->super);
138 /* FIXME free ap */
139 printf("\n");
140 }
141 }
142 return rv;
143 }