mdadm/Query.c

127 lines
3.4 KiB
C
Raw Normal View History

2002-04-04 03:58:32 +02:00
/*
* mdadm - manage Linux "md" devices aka RAID arrays.
*
* Copyright (C) 2002-2009 Neil Brown <neilb@suse.de>
2002-04-04 03:58:32 +02:00
*
*
* 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@suse.de>
2002-04-04 03:58:32 +02:00
*/
#include "mdadm.h"
#include "md_p.h"
#include "md_u.h"
int Query(char *dev)
{
/* Give a brief description of the device,
2007-12-14 10:13:43 +01:00
* whether it is an md device and whether it has
2002-04-04 03:58:32 +02:00
* a superblock
*/
int fd = open(dev, O_RDONLY);
2002-04-04 03:58:32 +02:00
int vers;
int ioctlerr;
int superror;
struct mdinfo info;
2002-04-04 03:58:32 +02:00
mdu_array_info_t array;
struct supertype *st = NULL;
2002-04-04 03:58:32 +02:00
unsigned long long larray_size;
struct stat stb;
char *mddev;
mdu_disk_info_t disc;
char *activity;
if (fd < 0){
pr_err("cannot open %s: %s\n",
2002-04-04 03:58:32 +02:00
dev, strerror(errno));
return 1;
}
vers = md_get_version(fd);
if (ioctl(fd, GET_ARRAY_INFO, &array)<0)
ioctlerr = errno;
else ioctlerr = 0;
2007-12-14 10:13:43 +01:00
2002-04-04 03:58:32 +02:00
fstat(fd, &stb);
if (vers>=9000 && !ioctlerr) {
if (!get_dev_size(fd, NULL, &larray_size))
larray_size = 0;
2002-04-04 03:58:32 +02:00
}
2007-12-14 10:13:43 +01:00
if (vers < 0)
2002-04-04 03:58:32 +02:00
printf("%s: is not an md array\n", dev);
else if (vers < 9000)
printf("%s: is an md device, but kernel cannot provide details\n", dev);
else if (ioctlerr == ENODEV)
printf("%s: is an md device which is not active\n", dev);
else if (ioctlerr)
printf("%s: is an md device, but gives \"%s\" when queried\n",
dev, strerror(ioctlerr));
else {
printf("%s: %s %s %d devices, %d spare%s. Use mdadm --detail for more detail.\n",
dev,
human_size_brief(larray_size,IEC),
2002-04-04 03:58:32 +02:00
map_num(pers, array.level),
array.raid_disks,
array.spare_disks, array.spare_disks==1?"":"s");
}
st = guess_super(fd);
if (st && st->ss->compare_super != NULL)
superror = st->ss->load_super(st, fd, dev);
else
superror = -1;
close(fd);
if (superror == 0) {
2002-04-04 03:58:32 +02:00
/* array might be active... */
int uuid[4];
struct map_ent *me, *map = NULL;
st->ss->getinfo_super(st, &info, NULL);
st->ss->uuid_from_super(st, uuid);
me = map_by_uuid(&map, uuid);
if (me) {
mddev = me->path;
disc.number = info.disk.number;
activity = "undetected";
if (mddev && (fd = open(mddev, O_RDONLY))>=0) {
2007-12-14 10:13:43 +01:00
if (md_get_version(fd) >= 9000 &&
ioctl(fd, GET_ARRAY_INFO, &array)>= 0) {
if (ioctl(fd, GET_DISK_INFO, &disc) >= 0 &&
makedev((unsigned)disc.major,(unsigned)disc.minor) == stb.st_rdev)
activity = "active";
else
activity = "mismatch";
}
close(fd);
2002-04-04 03:58:32 +02:00
}
} else {
activity = "inactive";
mddev = "array";
2002-04-04 03:58:32 +02:00
}
printf("%s: device %d in %d device %s %s %s. Use mdadm --examine for more detail.\n",
2007-12-14 10:13:43 +01:00
dev,
info.disk.number, info.array.raid_disks,
2002-04-04 03:58:32 +02:00
activity,
map_num(pers, info.array.level),
mddev);
if (st->ss == &super0)
put_md_name(mddev);
2002-04-04 03:58:32 +02:00
}
return 0;
}