summaryrefslogtreecommitdiffstats
path: root/Examine.c
blob: 4ed4f6b75c7041bd549913f8b02a42696644a5fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 * mdctl - manage Linux "md" devices aka RAID arrays.
 *
 * Copyright (C) 2001 Neil Brown <neilb@cse.unsw.edu.au>
 *
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *    Author: Neil Brown
 *    Email: <neilb@cse.unsw.edu.au>
 *    Paper: Neil Brown
 *           School of Computer Science and Engineering
 *           The University of New South Wales
 *           Sydney, 2052
 *           Australia
 */

#include	"mdctl.h"

#if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
#error no endian defined
#endif
#include	"md_u.h"
#include	"md_p.h"
int Examine(char *dev)
{

	/* Read the raid superblock from a device and
	 * display important content.
	 *
	 * If cannot be found, print reason: too small, bad magic
	 *
	 * Print:
	 *   version, ctime, level, size, raid+spare+
	 *   prefered minor
	 *   uuid
	 *
	 *   utime, state etc
	 *
	 */
	int fd = open(dev, O_RDONLY);
	time_t atime;
	mdp_super_t super;
	int d;
	char *c;
	int rv;

	if (fd < 0) {
		fprintf(stderr,Name ": cannot open %s: %s\n",
			dev, strerror(errno));
		return 1;
	}

	rv = load_super(fd, &super);
	close(fd);
	switch(rv) {
	case 1:
		fprintf(stderr, Name ": cannot find device size for %s: %s\n",
			dev, strerror(errno));
		return 1;
	case 2:
/*		fprintf(stderr, Name ": %s is too small for md: size is %ld sectors\n",
			dev, size);
*/
		fprintf(stderr, Name ": %s is too small for md\n",
			dev);
		return 1;
	case 3:
		fprintf(stderr, Name ": Cannot seek to superblock on %s: %s\n",
			dev, strerror(errno));
		return 1;
	case 4:
		fprintf(stderr, Name ": Cannot read superblock on %s\n",
			dev);
		return 1;
	case 5:
		fprintf(stderr, Name ": No super block found on %s (Expected magic %08x, got %08x)\n",
			dev, MD_SB_MAGIC, super.md_magic);
		return 1;
	case 6:
		fprintf(stderr, Name ": Cannot interpret superblock on %s - version is %d\n",
			dev, super.major_version);
		return 1;
	}
    
	/* Ok, its good enough to try, though the checksum could be wrong */
	printf("%s:\n",dev);
	printf("          Magic : %08x\n", super.md_magic);
	printf("        Version : %02d.%02d.%02d\n", super.major_version, super.minor_version,
	       super.patch_version);
	if (super.minor_version >= 90)
		printf("           UUID : %08x:%08x:%08x:%08x\n", super.set_uuid0, super.set_uuid1,
		       super.set_uuid2, super.set_uuid3);
	else
		printf("           UUID : %08x\n", super.set_uuid0);

	atime = super.ctime;
	printf("  Creation Time : %.24s\n", ctime(&atime));
	c=map_num(pers, super.level);
	printf("     Raid Level : %s\n", c?c:"-unknown-");
	printf("           Size : %d\n", super.size);
	printf("     Raid Disks : %d\n", super.raid_disks);
	printf("    Total Disks : %d\n", super.nr_disks);
	printf("Preferred Minor : %d\n", super.md_minor);
	printf("\n");
	atime = super.utime;
	printf("    Update Time : %.24s\n", ctime(&atime));
	printf("          State : %s, %serrors\n",
	       (super.state&(1<<MD_SB_CLEAN))?"clean":"dirty",
	       (super.state&(1<<MD_SB_ERRORS))?"":"no-");
	printf("  Active Drives : %d\n", super.active_disks);
	printf(" Working Drives : %d\n", super.working_disks);
	printf("  Failed Drives : %d\n", super.failed_disks);
	printf("   Spare Drives : %d\n", super.spare_disks);
	if (calc_sb_csum(&super) == super.sb_csum)
	    printf("       Checksum : %x - correct\n", super.sb_csum);
	else
	    printf("       Checksum : %x - expected %x\n", super.sb_csum, calc_sb_csum(&super));
	printf("         Events : %d.%d\n", super.events_hi, super.events_lo);
	printf("\n");
	if (super.level == 5) {
		c = map_num(r5layout, super.layout);
		printf("         Layout : %s\n", c?c:"-unknown-");
	}
	switch(super.level) {
	case 0:
	case 4:
	case 5:
		printf("     Chunk Size : %dK\n", super.chunk_size/1024);
		break;
	case -1:
		printf("       Rounding : %dK\n", super.chunk_size/1024);
		break;
	default: break;		
	}
	printf("\n");
	printf("      Number   Major   Minor   RaidDisk   State\n");
	for (d= -1; d<(signed int)super.nr_disks; d++) {
		mdp_disk_t *dp;
		char *dv;
		char nb[5];
		if (d>=0) dp = &super.disks[d];
		else dp = &super.this_disk;
		sprintf(nb, "%4d", d);
		printf("%4s %5d   %5d    %5d    %5d     ", d < 0 ? "this" :  nb,
		       dp->number, dp->major, dp->minor, dp->raid_disk);
		if (dp->state & (1<<MD_DISK_FAULTY)) printf(" faulty");
		if (dp->state & (1<<MD_DISK_ACTIVE)) printf(" active");
		if (dp->state & (1<<MD_DISK_SYNC)) printf(" sync");
		if (dp->state & (1<<MD_DISK_REMOVED)) printf(" removed");
		if ((dv=map_dev(dp->major, dp->minor)))
		    printf("   %s", dv);
		printf("\n");
	}
	return 0;
}