2001-03-15 15:40:53 +00:00
|
|
|
/*-
|
2011-05-22 14:03:30 +00:00
|
|
|
* Copyright (c) 2000 - 2006 Søren Schmidt <sos@FreeBSD.org>
|
2001-03-15 15:40:53 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* without modification, immediately at the beginning of the file.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2001-03-16 08:07:00 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
2001-03-15 15:40:53 +00:00
|
|
|
*/
|
|
|
|
|
2002-09-16 08:34:08 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ata.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2003-04-22 19:57:46 +00:00
|
|
|
#include <stdint.h>
|
2001-03-15 19:28:58 +00:00
|
|
|
#include <stdio.h>
|
2001-03-19 07:58:47 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2003-05-04 09:51:06 +00:00
|
|
|
#include <sysexits.h>
|
2008-08-06 18:08:02 +00:00
|
|
|
#include <unistd.h>
|
2001-03-15 19:28:58 +00:00
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static const char *
|
2001-03-15 15:40:53 +00:00
|
|
|
mode2str(int mode)
|
|
|
|
{
|
2009-12-06 00:10:13 +00:00
|
|
|
switch (mode & 0xff) {
|
2001-03-19 07:58:47 +00:00
|
|
|
case ATA_PIO: return "BIOSPIO";
|
|
|
|
case ATA_PIO0: return "PIO0";
|
|
|
|
case ATA_PIO1: return "PIO1";
|
|
|
|
case ATA_PIO2: return "PIO2";
|
|
|
|
case ATA_PIO3: return "PIO3";
|
|
|
|
case ATA_PIO4: return "PIO4";
|
2009-11-22 10:53:26 +00:00
|
|
|
case ATA_WDMA0: return "WDMA0";
|
|
|
|
case ATA_WDMA1: return "WDMA1";
|
2001-03-19 07:58:47 +00:00
|
|
|
case ATA_WDMA2: return "WDMA2";
|
2009-11-22 10:53:26 +00:00
|
|
|
case ATA_UDMA0: return "UDMA0";
|
|
|
|
case ATA_UDMA1: return "UDMA1";
|
2001-03-19 07:58:47 +00:00
|
|
|
case ATA_UDMA2: return "UDMA33";
|
2009-11-22 10:53:26 +00:00
|
|
|
case ATA_UDMA3: return "UDMA44";
|
2004-05-20 15:01:26 +00:00
|
|
|
case ATA_UDMA4: return "UDMA66";
|
2001-03-19 07:58:47 +00:00
|
|
|
case ATA_UDMA5: return "UDMA100";
|
2002-04-05 11:49:24 +00:00
|
|
|
case ATA_UDMA6: return "UDMA133";
|
2001-03-19 07:58:47 +00:00
|
|
|
case ATA_DMA: return "BIOSDMA";
|
|
|
|
default: return "???";
|
|
|
|
}
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
|
2009-12-06 00:10:13 +00:00
|
|
|
static const char *
|
|
|
|
satarev2str(int mode)
|
|
|
|
{
|
|
|
|
switch ((mode & 0xff00) >> 8) {
|
|
|
|
case 0: return "";
|
|
|
|
case 1: return "SATA 1.5Gb/s";
|
|
|
|
case 2: return "SATA 3Gb/s";
|
|
|
|
case 3: return "SATA 6Gb/s";
|
2010-02-22 10:45:40 +00:00
|
|
|
case 0xff: return "SATA";
|
2009-12-06 00:10:13 +00:00
|
|
|
default: return "???";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static int
|
2001-03-15 15:40:53 +00:00
|
|
|
str2mode(char *str)
|
|
|
|
{
|
2001-03-19 07:58:47 +00:00
|
|
|
if (!strcasecmp(str, "BIOSPIO")) return ATA_PIO;
|
|
|
|
if (!strcasecmp(str, "PIO0")) return ATA_PIO0;
|
|
|
|
if (!strcasecmp(str, "PIO1")) return ATA_PIO1;
|
|
|
|
if (!strcasecmp(str, "PIO2")) return ATA_PIO2;
|
|
|
|
if (!strcasecmp(str, "PIO3")) return ATA_PIO3;
|
|
|
|
if (!strcasecmp(str, "PIO4")) return ATA_PIO4;
|
2009-11-22 10:53:26 +00:00
|
|
|
if (!strcasecmp(str, "WDMA0")) return ATA_WDMA0;
|
|
|
|
if (!strcasecmp(str, "WDMA1")) return ATA_WDMA1;
|
2001-03-19 07:58:47 +00:00
|
|
|
if (!strcasecmp(str, "WDMA2")) return ATA_WDMA2;
|
2009-11-22 10:53:26 +00:00
|
|
|
if (!strcasecmp(str, "UDMA0")) return ATA_UDMA0;
|
2009-12-06 00:10:13 +00:00
|
|
|
if (!strcasecmp(str, "UDMA16")) return ATA_UDMA0;
|
2009-11-22 10:53:26 +00:00
|
|
|
if (!strcasecmp(str, "UDMA1")) return ATA_UDMA1;
|
2009-12-06 00:10:13 +00:00
|
|
|
if (!strcasecmp(str, "UDMA25")) return ATA_UDMA1;
|
2001-03-19 07:58:47 +00:00
|
|
|
if (!strcasecmp(str, "UDMA2")) return ATA_UDMA2;
|
|
|
|
if (!strcasecmp(str, "UDMA33")) return ATA_UDMA2;
|
2009-11-22 10:53:26 +00:00
|
|
|
if (!strcasecmp(str, "UDMA3")) return ATA_UDMA3;
|
|
|
|
if (!strcasecmp(str, "UDMA44")) return ATA_UDMA3;
|
2001-03-19 07:58:47 +00:00
|
|
|
if (!strcasecmp(str, "UDMA4")) return ATA_UDMA4;
|
|
|
|
if (!strcasecmp(str, "UDMA66")) return ATA_UDMA4;
|
|
|
|
if (!strcasecmp(str, "UDMA5")) return ATA_UDMA5;
|
|
|
|
if (!strcasecmp(str, "UDMA100")) return ATA_UDMA5;
|
2002-03-03 15:41:57 +00:00
|
|
|
if (!strcasecmp(str, "UDMA6")) return ATA_UDMA6;
|
|
|
|
if (!strcasecmp(str, "UDMA133")) return ATA_UDMA6;
|
2001-03-19 07:58:47 +00:00
|
|
|
if (!strcasecmp(str, "BIOSDMA")) return ATA_DMA;
|
|
|
|
return -1;
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static void
|
|
|
|
usage(void)
|
2001-03-15 15:40:53 +00:00
|
|
|
{
|
2005-05-16 13:07:27 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"usage: atacontrol <command> args:\n"
|
|
|
|
" atacontrol list\n"
|
|
|
|
" atacontrol info channel\n"
|
|
|
|
" atacontrol attach channel\n"
|
|
|
|
" atacontrol detach channel\n"
|
|
|
|
" atacontrol reinit channel\n"
|
|
|
|
" atacontrol create type [interleave] disk0 ... diskN\n"
|
2005-12-14 06:33:18 +00:00
|
|
|
" atacontrol delete array\n"
|
2005-05-16 13:07:27 +00:00
|
|
|
" atacontrol addspare array disk\n"
|
|
|
|
" atacontrol rebuild array\n"
|
|
|
|
" atacontrol status array\n"
|
|
|
|
" atacontrol mode device [mode]\n"
|
|
|
|
" atacontrol cap device\n"
|
2008-03-17 10:33:23 +00:00
|
|
|
" atacontrol spindown device [seconds]\n"
|
2005-05-16 13:07:27 +00:00
|
|
|
);
|
2003-05-04 09:51:06 +00:00
|
|
|
exit(EX_USAGE);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static int
|
2003-11-05 19:20:41 +00:00
|
|
|
version(int ver)
|
2001-03-15 15:40:53 +00:00
|
|
|
{
|
2001-03-19 07:58:47 +00:00
|
|
|
int bit;
|
2004-05-20 15:01:26 +00:00
|
|
|
|
2003-11-05 19:20:41 +00:00
|
|
|
if (ver == 0xffff)
|
2001-05-17 10:30:07 +00:00
|
|
|
return 0;
|
2001-03-19 07:58:47 +00:00
|
|
|
for (bit = 15; bit >= 0; bit--)
|
2003-11-05 19:20:41 +00:00
|
|
|
if (ver & (1<<bit))
|
2001-05-17 10:30:07 +00:00
|
|
|
return bit;
|
2004-05-20 15:01:26 +00:00
|
|
|
return 0;
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static void
|
2001-03-15 15:40:53 +00:00
|
|
|
param_print(struct ata_params *parm)
|
|
|
|
{
|
2004-05-20 15:01:26 +00:00
|
|
|
printf("<%.40s/%.8s> ", parm->model, parm->revision);
|
2004-03-15 13:21:41 +00:00
|
|
|
if (parm->satacapabilities && parm->satacapabilities != 0xffff) {
|
|
|
|
if (parm->satacapabilities & ATA_SATA_GEN2)
|
2009-02-23 22:29:38 +00:00
|
|
|
printf("SATA revision 2.x\n");
|
2006-01-18 10:01:43 +00:00
|
|
|
else if (parm->satacapabilities & ATA_SATA_GEN1)
|
2009-02-23 22:29:38 +00:00
|
|
|
printf("SATA revision 1.x\n");
|
2006-01-18 10:01:43 +00:00
|
|
|
else
|
2009-02-23 22:29:38 +00:00
|
|
|
printf("Unknown SATA revision\n");
|
2004-03-15 13:21:41 +00:00
|
|
|
}
|
2004-05-20 15:01:26 +00:00
|
|
|
else
|
2004-03-15 13:21:41 +00:00
|
|
|
printf("ATA/ATAPI revision %d\n", version(parm->version_major));
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static void
|
2002-03-27 10:59:53 +00:00
|
|
|
cap_print(struct ata_params *parm)
|
2002-02-04 19:24:43 +00:00
|
|
|
{
|
2002-04-05 21:51:03 +00:00
|
|
|
u_int32_t lbasize = (u_int32_t)parm->lba_size_1 |
|
|
|
|
((u_int32_t)parm->lba_size_2 << 16);
|
|
|
|
|
|
|
|
u_int64_t lbasize48 = ((u_int64_t)parm->lba_size48_1) |
|
|
|
|
((u_int64_t)parm->lba_size48_2 << 16) |
|
|
|
|
((u_int64_t)parm->lba_size48_3 << 32) |
|
|
|
|
((u_int64_t)parm->lba_size48_4 << 48);
|
2004-05-20 15:01:26 +00:00
|
|
|
|
2002-03-27 10:59:53 +00:00
|
|
|
printf("\n");
|
2004-03-15 13:21:41 +00:00
|
|
|
printf("Protocol ");
|
|
|
|
if (parm->satacapabilities && parm->satacapabilities != 0xffff) {
|
|
|
|
if (parm->satacapabilities & ATA_SATA_GEN2)
|
2009-02-23 22:29:38 +00:00
|
|
|
printf("SATA revision 2.x\n");
|
2006-01-18 10:01:43 +00:00
|
|
|
else if (parm->satacapabilities & ATA_SATA_GEN1)
|
2009-02-23 22:29:38 +00:00
|
|
|
printf("SATA revision 1.x\n");
|
2006-01-18 10:01:43 +00:00
|
|
|
else
|
2009-02-23 22:29:38 +00:00
|
|
|
printf("Unknown SATA revision\n");
|
2004-03-15 13:21:41 +00:00
|
|
|
}
|
2004-05-20 15:01:26 +00:00
|
|
|
else
|
2004-03-15 13:21:41 +00:00
|
|
|
printf("ATA/ATAPI revision %d\n", version(parm->version_major));
|
2002-03-27 10:59:53 +00:00
|
|
|
printf("device model %.40s\n", parm->model);
|
2002-07-31 18:30:38 +00:00
|
|
|
printf("serial number %.20s\n", parm->serial);
|
2002-03-27 10:59:53 +00:00
|
|
|
printf("firmware revision %.8s\n", parm->revision);
|
|
|
|
|
|
|
|
printf("cylinders %d\n", parm->cylinders);
|
|
|
|
printf("heads %d\n", parm->heads);
|
2004-05-20 15:01:26 +00:00
|
|
|
printf("sectors/track %d\n", parm->sectors);
|
|
|
|
|
2007-12-16 21:19:07 +00:00
|
|
|
if (parm->config == ATA_PROTO_CFA ||
|
|
|
|
(parm->support.command2 & ATA_SUPPORT_CFA))
|
|
|
|
printf("CFA supported\n");
|
|
|
|
|
2003-08-24 09:23:54 +00:00
|
|
|
printf("lba%ssupported ",
|
|
|
|
parm->capabilities1 & ATA_SUPPORT_LBA ? " " : " not ");
|
2002-04-05 21:51:03 +00:00
|
|
|
if (lbasize)
|
|
|
|
printf("%d sectors\n", lbasize);
|
2002-03-27 10:59:53 +00:00
|
|
|
else
|
|
|
|
printf("\n");
|
|
|
|
|
2004-03-15 13:21:41 +00:00
|
|
|
printf("lba48%ssupported ",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command2 & ATA_SUPPORT_ADDRESS48 ? " " : " not ");
|
2002-04-05 21:51:03 +00:00
|
|
|
if (lbasize48)
|
2004-05-20 15:01:26 +00:00
|
|
|
printf("%ju sectors\n", (uintmax_t)lbasize48);
|
2002-03-27 10:59:53 +00:00
|
|
|
else
|
|
|
|
printf("\n");
|
2002-04-05 21:51:03 +00:00
|
|
|
|
2003-08-24 09:23:54 +00:00
|
|
|
printf("dma%ssupported\n",
|
2004-01-21 21:31:19 +00:00
|
|
|
parm->capabilities1 & ATA_SUPPORT_DMA ? " " : " not ");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
2003-08-24 09:23:54 +00:00
|
|
|
printf("overlap%ssupported\n",
|
|
|
|
parm->capabilities1 & ATA_SUPPORT_OVERLAP ? " " : " not ");
|
2004-05-20 15:01:26 +00:00
|
|
|
|
2002-04-05 21:51:03 +00:00
|
|
|
printf("\nFeature "
|
2005-05-16 13:07:27 +00:00
|
|
|
"Support Enable Value Vendor\n");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
|
|
|
printf("write cache %s %s\n",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command1 & ATA_SUPPORT_WRITECACHE ? "yes" : "no",
|
|
|
|
parm->enabled.command1 & ATA_SUPPORT_WRITECACHE ? "yes" : "no");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
|
|
|
printf("read ahead %s %s\n",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command1 & ATA_SUPPORT_LOOKAHEAD ? "yes" : "no",
|
2004-05-20 15:01:26 +00:00
|
|
|
parm->enabled.command1 & ATA_SUPPORT_LOOKAHEAD ? "yes" : "no");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
2004-03-15 13:21:41 +00:00
|
|
|
if (parm->satacapabilities && parm->satacapabilities != 0xffff) {
|
2005-05-16 13:07:27 +00:00
|
|
|
printf("Native Command Queuing (NCQ) %s %s"
|
|
|
|
" %d/0x%02X\n",
|
2004-09-15 11:22:05 +00:00
|
|
|
parm->satacapabilities & ATA_SUPPORT_NCQ ?
|
|
|
|
"yes" : "no", " -",
|
|
|
|
(parm->satacapabilities & ATA_SUPPORT_NCQ) ?
|
|
|
|
ATA_QUEUE_LEN(parm->queue) : 0,
|
|
|
|
(parm->satacapabilities & ATA_SUPPORT_NCQ) ?
|
|
|
|
ATA_QUEUE_LEN(parm->queue) : 0);
|
2004-03-15 13:21:41 +00:00
|
|
|
}
|
2004-09-15 11:22:05 +00:00
|
|
|
printf("Tagged Command Queuing (TCQ) %s %s %d/0x%02X\n",
|
|
|
|
parm->support.command2 & ATA_SUPPORT_QUEUED ? "yes" : "no",
|
|
|
|
parm->enabled.command2 & ATA_SUPPORT_QUEUED ? "yes" : "no",
|
|
|
|
ATA_QUEUE_LEN(parm->queue), ATA_QUEUE_LEN(parm->queue));
|
2002-03-27 10:59:53 +00:00
|
|
|
|
|
|
|
printf("SMART %s %s\n",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command1 & ATA_SUPPORT_SMART ? "yes" : "no",
|
|
|
|
parm->enabled.command1 & ATA_SUPPORT_SMART ? "yes" : "no");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
|
|
|
printf("microcode download %s %s\n",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command2 & ATA_SUPPORT_MICROCODE ? "yes" : "no",
|
2004-05-20 15:01:26 +00:00
|
|
|
parm->enabled.command2 & ATA_SUPPORT_MICROCODE ? "yes" : "no");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
|
|
|
printf("security %s %s\n",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command1 & ATA_SUPPORT_SECURITY ? "yes" : "no",
|
2004-05-20 15:01:26 +00:00
|
|
|
parm->enabled.command1 & ATA_SUPPORT_SECURITY ? "yes" : "no");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
|
|
|
printf("power management %s %s\n",
|
2003-08-24 09:23:54 +00:00
|
|
|
parm->support.command1 & ATA_SUPPORT_POWERMGT ? "yes" : "no",
|
2004-05-20 15:01:26 +00:00
|
|
|
parm->enabled.command1 & ATA_SUPPORT_POWERMGT ? "yes" : "no");
|
2002-03-27 10:59:53 +00:00
|
|
|
|
2003-08-24 09:23:54 +00:00
|
|
|
printf("advanced power management %s %s %d/0x%02X\n",
|
|
|
|
parm->support.command2 & ATA_SUPPORT_APM ? "yes" : "no",
|
|
|
|
parm->enabled.command2 & ATA_SUPPORT_APM ? "yes" : "no",
|
2002-03-27 10:59:53 +00:00
|
|
|
parm->apm_value, parm->apm_value);
|
|
|
|
|
2002-04-05 21:51:03 +00:00
|
|
|
printf("automatic acoustic management %s %s "
|
2003-08-24 09:23:54 +00:00
|
|
|
"%d/0x%02X %d/0x%02X\n",
|
|
|
|
parm->support.command2 & ATA_SUPPORT_AUTOACOUSTIC ? "yes" :"no",
|
|
|
|
parm->enabled.command2 & ATA_SUPPORT_AUTOACOUSTIC ? "yes" :"no",
|
|
|
|
ATA_ACOUSTIC_CURRENT(parm->acoustic),
|
|
|
|
ATA_ACOUSTIC_CURRENT(parm->acoustic),
|
|
|
|
ATA_ACOUSTIC_VENDOR(parm->acoustic),
|
|
|
|
ATA_ACOUSTIC_VENDOR(parm->acoustic));
|
2002-02-04 19:24:43 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static void
|
2005-05-16 13:07:27 +00:00
|
|
|
ata_cap_print(int fd)
|
2002-02-04 19:24:43 +00:00
|
|
|
{
|
2005-05-16 13:07:27 +00:00
|
|
|
struct ata_params params;
|
2002-02-04 19:24:43 +00:00
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATAGPARM, ¶ms) < 0)
|
2008-03-16 17:54:55 +00:00
|
|
|
err(1, "ioctl(IOCATAGPARM)");
|
2005-05-16 13:07:27 +00:00
|
|
|
cap_print(¶ms);
|
2002-02-04 19:24:43 +00:00
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static void
|
2001-05-17 10:30:07 +00:00
|
|
|
info_print(int fd, int channel, int prchan)
|
2001-03-15 15:40:53 +00:00
|
|
|
{
|
2005-05-16 13:07:27 +00:00
|
|
|
struct ata_ioc_devices devices;
|
|
|
|
|
|
|
|
devices.channel = channel;
|
2001-03-15 15:40:53 +00:00
|
|
|
|
2008-05-15 01:25:29 +00:00
|
|
|
if (ioctl(fd, IOCATADEVICES, &devices) < 0) {
|
|
|
|
if (!prchan)
|
|
|
|
err(1, "ioctl(IOCATADEVICES)");
|
|
|
|
return;
|
|
|
|
}
|
2001-05-17 10:30:07 +00:00
|
|
|
if (prchan)
|
|
|
|
printf("ATA channel %d:\n", channel);
|
|
|
|
printf("%sMaster: ", prchan ? " " : "");
|
2005-05-16 13:07:27 +00:00
|
|
|
if (*devices.name[0]) {
|
|
|
|
printf("%4.4s ", devices.name[0]);
|
|
|
|
param_print(&devices.params[0]);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
else
|
2001-05-17 10:30:07 +00:00
|
|
|
printf(" no device present\n");
|
|
|
|
printf("%sSlave: ", prchan ? " " : "");
|
2005-05-16 13:07:27 +00:00
|
|
|
if (*devices.name[1]) {
|
|
|
|
printf("%4.4s ", devices.name[1]);
|
|
|
|
param_print(&devices.params[1]);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
else
|
2001-05-17 10:30:07 +00:00
|
|
|
printf(" no device present\n");
|
2008-03-16 17:54:55 +00:00
|
|
|
}
|
|
|
|
|
2008-03-17 10:33:23 +00:00
|
|
|
static void
|
|
|
|
ata_spindown(int fd, const char *dev, const char *arg)
|
|
|
|
{
|
|
|
|
int tmo;
|
|
|
|
|
|
|
|
if (arg != NULL) {
|
|
|
|
tmo = strtoul(arg, NULL, 0);
|
|
|
|
if (ioctl(fd, IOCATASSPINDOWN, &tmo) < 0)
|
|
|
|
err(1, "ioctl(IOCATASSPINDOWN)");
|
|
|
|
} else {
|
|
|
|
if (ioctl(fd, IOCATAGSPINDOWN, &tmo) < 0)
|
|
|
|
err(1, "ioctl(IOCATAGSPINDOWN)");
|
|
|
|
if (tmo == 0)
|
|
|
|
printf("%s: idle spin down disabled\n", dev);
|
|
|
|
else
|
|
|
|
printf("%s: spin down after %d seconds idle\n",
|
|
|
|
dev, tmo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
static int
|
|
|
|
open_dev(const char *arg, int mode)
|
|
|
|
{
|
|
|
|
int disk, fd;
|
|
|
|
char device[64];
|
|
|
|
|
|
|
|
if (!(sscanf(arg, "ad%d", &disk) == 1 ||
|
|
|
|
sscanf(arg, "acd%d", &disk) == 1 ||
|
|
|
|
sscanf(arg, "afd%d", &disk) == 1 ||
|
|
|
|
sscanf(arg, "ast%d", &disk) == 1)) {
|
|
|
|
fprintf(stderr, "atacontrol: Invalid device %s\n", arg);
|
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
|
|
|
sprintf(device, "/dev/%s", arg);
|
|
|
|
if ((fd = open(device, mode)) < 0)
|
|
|
|
err(1, "device not found");
|
|
|
|
return (fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ar_arg(const char *arg)
|
|
|
|
{
|
|
|
|
int array;
|
|
|
|
|
|
|
|
if (!(sscanf(arg, "ar%d", &array) == 1)) {
|
|
|
|
fprintf(stderr, "atacontrol: Invalid array %s\n", arg);
|
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
|
|
|
return (array);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ata_arg(const char *arg)
|
|
|
|
{
|
|
|
|
int channel;
|
|
|
|
|
|
|
|
if (!(sscanf(arg, "ata%d", &channel) == 1)) {
|
|
|
|
fprintf(stderr, "atacontrol: Invalid channel %s\n", arg);
|
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
|
|
|
return (channel);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2008-03-16 17:54:55 +00:00
|
|
|
int fd, mode, channel, array;
|
2001-03-19 07:58:47 +00:00
|
|
|
|
Add a "kern.features.ata_cam" sysctl in the kernel when the ATA_CAM kernel
option is defined. This sysctl can be queried by feature_present(3).
Query for this feature in /sbin/atacontrol and /usr/sbin/burncd.
If these utilities detect that ATA_CAM is enabled, then these utilities
will error out. These utilities are compatible with the old ATA
driver, but are incomptible with the new ATA_CAM driver. By erroring out,
we give end-users an idea as to what remedies to use, and reduce the need for them
to file PR's. For atacontrol, camcontrol must be used instead,
and for burncd, alternative utilties from the ports collection must be used
such as sysutils/cdrtools.
In future, maybe someone can re-write burncd to work with ATA_CAM,
but at least for now, we give a somewhat useful error message to end users.
PR: 160979
Reviewed by: jh, Arnaud Lacombe <lacombar at gmail dot com>
Reported by: Joe Barbish <fbsd8 at a1poweruser dot com>
MFC after: 3 days
2011-10-09 21:42:02 +00:00
|
|
|
if (feature_present("ata_cam")) {
|
|
|
|
errx(1, "\nATA_CAM option is enabled in kernel.\n"
|
|
|
|
"Please use camcontrol instead.");
|
|
|
|
}
|
|
|
|
|
2001-05-17 10:30:07 +00:00
|
|
|
if (argc < 2)
|
2001-03-19 07:58:47 +00:00
|
|
|
usage();
|
2001-03-15 15:40:53 +00:00
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "mode") && (argc == 3 || argc == 4)) {
|
2008-03-16 17:54:55 +00:00
|
|
|
fd = open_dev(argv[2], O_RDONLY);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (argc == 4) {
|
|
|
|
mode = str2mode(argv[3]);
|
2009-02-19 20:45:37 +00:00
|
|
|
if (mode == -1)
|
|
|
|
errx(1, "unknown mode");
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATASMODE, &mode) < 0)
|
|
|
|
warn("ioctl(IOCATASMODE)");
|
|
|
|
}
|
|
|
|
if (argc == 3 || argc == 4) {
|
|
|
|
if (ioctl(fd, IOCATAGMODE, &mode) < 0)
|
|
|
|
err(1, "ioctl(IOCATAGMODE)");
|
2009-12-06 00:10:13 +00:00
|
|
|
printf("current mode = %s %s\n",
|
|
|
|
mode2str(mode), satarev2str(mode));
|
2005-05-16 13:07:27 +00:00
|
|
|
}
|
|
|
|
exit(EX_OK);
|
|
|
|
}
|
|
|
|
if (!strcmp(argv[1], "cap") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
fd = open_dev(argv[2], O_RDONLY);
|
2005-05-16 13:07:27 +00:00
|
|
|
ata_cap_print(fd);
|
|
|
|
exit(EX_OK);
|
2002-03-10 13:59:00 +00:00
|
|
|
}
|
2001-05-17 10:30:07 +00:00
|
|
|
|
2008-03-17 10:33:23 +00:00
|
|
|
if (!strcmp(argv[1], "spindown") && (argc == 3 || argc == 4)) {
|
|
|
|
fd = open_dev(argv[2], O_RDONLY);
|
|
|
|
ata_spindown(fd, argv[2], argv[3]);
|
|
|
|
exit(EX_OK);
|
|
|
|
}
|
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
if ((fd = open("/dev/ata", O_RDWR)) < 0)
|
|
|
|
err(1, "control device not found");
|
|
|
|
|
2001-05-17 10:30:07 +00:00
|
|
|
if (!strcmp(argv[1], "list") && argc == 2) {
|
2008-03-16 17:54:55 +00:00
|
|
|
int maxchannel;
|
2005-05-16 13:07:27 +00:00
|
|
|
|
|
|
|
if (ioctl(fd, IOCATAGMAXCHANNEL, &maxchannel) < 0)
|
|
|
|
err(1, "ioctl(IOCATAGMAXCHANNEL)");
|
|
|
|
for (channel = 0; channel < maxchannel; channel++)
|
|
|
|
info_print(fd, channel, 1);
|
|
|
|
exit(EX_OK);
|
2002-02-04 19:24:43 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "info") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
channel = ata_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
info_print(fd, channel, 0);
|
|
|
|
exit(EX_OK);
|
2002-03-30 16:36:41 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "detach") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
channel = ata_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATADETACH, &channel) < 0)
|
|
|
|
err(1, "ioctl(IOCATADETACH)");
|
|
|
|
exit(EX_OK);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "attach") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
channel = ata_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATAATTACH, &channel) < 0)
|
|
|
|
err(1, "ioctl(IOCATAATTACH)");
|
|
|
|
info_print(fd, channel, 0);
|
|
|
|
exit(EX_OK);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "reinit") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
channel = ata_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATAREINIT, &channel) < 0)
|
|
|
|
warn("ioctl(IOCATAREINIT)");
|
|
|
|
info_print(fd, channel, 0);
|
|
|
|
exit(EX_OK);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "create")) {
|
2002-03-27 10:59:53 +00:00
|
|
|
int disk, dev, offset;
|
2005-05-16 13:07:27 +00:00
|
|
|
struct ata_ioc_raid_config config;
|
2002-03-27 10:59:53 +00:00
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
bzero(&config, sizeof(config));
|
2003-11-05 21:56:21 +00:00
|
|
|
if (argc > 2) {
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
if (!strcasecmp(argv[2], "RAID0") ||
|
|
|
|
!strcasecmp(argv[2], "stripe"))
|
2005-05-16 13:07:27 +00:00
|
|
|
config.type = AR_RAID0;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
if (!strcasecmp(argv[2], "RAID1") ||
|
|
|
|
!strcasecmp(argv[2],"mirror"))
|
2005-05-16 13:07:27 +00:00
|
|
|
config.type = AR_RAID1;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
if (!strcasecmp(argv[2], "RAID0+1") ||
|
|
|
|
!strcasecmp(argv[2],"RAID10"))
|
2005-05-16 13:07:27 +00:00
|
|
|
config.type = AR_RAID01;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
if (!strcasecmp(argv[2], "RAID5"))
|
2005-05-16 13:07:27 +00:00
|
|
|
config.type = AR_RAID5;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
if (!strcasecmp(argv[2], "SPAN"))
|
2005-05-16 13:07:27 +00:00
|
|
|
config.type = AR_SPAN;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
if (!strcasecmp(argv[2], "JBOD"))
|
2005-05-16 13:07:27 +00:00
|
|
|
config.type = AR_JBOD;
|
2003-11-05 21:56:21 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!config.type) {
|
|
|
|
fprintf(stderr, "atacontrol: Invalid RAID type %s\n",
|
|
|
|
argv[2]);
|
|
|
|
fprintf(stderr, "atacontrol: Valid RAID types: \n");
|
|
|
|
fprintf(stderr, " stripe | mirror | "
|
|
|
|
"RAID0 | RAID1 | RAID0+1 | RAID5 | "
|
|
|
|
"SPAN | JBOD\n");
|
2003-05-04 09:51:06 +00:00
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
2004-05-20 15:01:26 +00:00
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
if (config.type == AR_RAID0 ||
|
|
|
|
config.type == AR_RAID01 ||
|
|
|
|
config.type == AR_RAID5) {
|
2004-05-20 15:01:26 +00:00
|
|
|
if (argc < 4 ||
|
2005-05-16 13:07:27 +00:00
|
|
|
!sscanf(argv[3], "%d", &config.interleave) == 1) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"atacontrol: Invalid interleave %s\n",
|
|
|
|
argv[3]);
|
2003-05-04 09:51:06 +00:00
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
2002-03-27 10:59:53 +00:00
|
|
|
offset = 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
offset = 3;
|
2004-05-20 15:01:26 +00:00
|
|
|
|
2002-03-27 10:59:53 +00:00
|
|
|
for (disk = 0; disk < 16 && (offset + disk) < argc; disk++) {
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!(sscanf(argv[offset + disk], "ad%d", &dev) == 1)) {
|
2003-05-04 09:51:06 +00:00
|
|
|
fprintf(stderr,
|
2005-05-16 13:07:27 +00:00
|
|
|
"atacontrol: Invalid disk %s\n",
|
2003-05-04 09:51:06 +00:00
|
|
|
argv[offset + disk]);
|
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
config.disks[disk] = dev;
|
2002-03-27 10:59:53 +00:00
|
|
|
}
|
2003-05-04 09:51:06 +00:00
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
if ((config.type == AR_RAID1 || config.type == AR_RAID01) &&
|
|
|
|
disk < 2) {
|
2003-05-04 09:51:06 +00:00
|
|
|
fprintf(stderr, "atacontrol: At least 2 disks must be "
|
2005-05-16 13:07:27 +00:00
|
|
|
"specified\n");
|
2003-05-04 09:51:06 +00:00
|
|
|
exit(EX_USAGE);
|
|
|
|
}
|
|
|
|
|
2005-05-16 13:07:27 +00:00
|
|
|
config.total_disks = disk;
|
|
|
|
if (ioctl(fd, IOCATARAIDCREATE, &config) < 0)
|
|
|
|
err(1, "ioctl(IOCATARAIDCREATE)");
|
2002-03-27 10:59:53 +00:00
|
|
|
else
|
2005-05-16 13:07:27 +00:00
|
|
|
printf("ar%d created\n", config.lun);
|
|
|
|
exit(EX_OK);
|
2002-03-03 15:41:57 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "delete") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
array = ar_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATARAIDDELETE, &array) < 0)
|
|
|
|
warn("ioctl(IOCATARAIDDELETE)");
|
|
|
|
exit(EX_OK);
|
2002-04-02 13:48:17 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "addspare") && argc == 4) {
|
|
|
|
struct ata_ioc_raid_config config;
|
2003-05-02 12:42:31 +00:00
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
config.lun = ar_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!(sscanf(argv[3], "ad%d", &config.disks[0]) == 1)) {
|
2003-05-04 09:51:06 +00:00
|
|
|
fprintf(stderr,
|
2005-05-16 13:07:27 +00:00
|
|
|
"atacontrol: Invalid disk %s\n", argv[3]);
|
2003-05-02 12:42:31 +00:00
|
|
|
usage();
|
2003-05-04 09:51:06 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATARAIDADDSPARE, &config) < 0)
|
|
|
|
warn("ioctl(IOCATARAIDADDSPARE)");
|
|
|
|
exit(EX_OK);
|
2003-05-02 12:42:31 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "rebuild") && argc == 3) {
|
2008-03-16 17:54:55 +00:00
|
|
|
array = ar_arg(argv[2]);
|
2005-05-16 13:07:27 +00:00
|
|
|
if (ioctl(fd, IOCATARAIDREBUILD, &array) < 0)
|
|
|
|
warn("ioctl(IOCATARAIDREBUILD)");
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
else {
|
2008-08-06 18:08:02 +00:00
|
|
|
char device[64];
|
|
|
|
char *buffer;
|
|
|
|
ssize_t len;
|
|
|
|
int arfd;
|
|
|
|
|
|
|
|
if (daemon(0, 1) == -1)
|
|
|
|
err(1, "daemon");
|
|
|
|
nice(20);
|
|
|
|
snprintf(device, sizeof(device), "/dev/ar%d",
|
|
|
|
array);
|
|
|
|
if ((arfd = open(device, O_RDONLY)) == -1)
|
|
|
|
err(1, "open %s", device);
|
|
|
|
if ((buffer = malloc(1024 * 1024)) == NULL)
|
|
|
|
err(1, "malloc");
|
|
|
|
while ((len = read(arfd, buffer, 1024 * 1024)) > 0)
|
|
|
|
;
|
|
|
|
if (len == -1)
|
|
|
|
err(1, "read");
|
|
|
|
else
|
|
|
|
fprintf(stderr,
|
|
|
|
"atacontrol: ar%d rebuild completed\n",
|
|
|
|
array);
|
|
|
|
free(buffer);
|
|
|
|
close(arfd);
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
exit(EX_OK);
|
2002-04-02 13:48:17 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
if (!strcmp(argv[1], "status") && argc == 3) {
|
2007-08-13 18:46:31 +00:00
|
|
|
struct ata_ioc_raid_status status;
|
|
|
|
int i, lun, state;
|
2002-04-02 13:48:17 +00:00
|
|
|
|
2008-03-16 17:54:55 +00:00
|
|
|
status.lun = ar_arg(argv[2]);
|
2007-08-13 18:46:31 +00:00
|
|
|
if (ioctl(fd, IOCATARAIDSTATUS, &status) < 0)
|
2005-05-16 13:07:27 +00:00
|
|
|
err(1, "ioctl(IOCATARAIDSTATUS)");
|
|
|
|
|
2007-08-13 18:46:31 +00:00
|
|
|
printf("ar%d: ATA ", status.lun);
|
|
|
|
switch (status.type) {
|
2002-04-02 13:48:17 +00:00
|
|
|
case AR_RAID0:
|
2007-08-13 18:46:31 +00:00
|
|
|
printf("RAID0 stripesize=%d", status.interleave);
|
2002-04-02 13:48:17 +00:00
|
|
|
break;
|
|
|
|
case AR_RAID1:
|
|
|
|
printf("RAID1");
|
|
|
|
break;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
case AR_RAID01:
|
2007-08-13 18:46:31 +00:00
|
|
|
printf("RAID0+1 stripesize=%d", status.interleave);
|
2002-04-02 13:48:17 +00:00
|
|
|
break;
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
case AR_RAID5:
|
2007-08-13 18:46:31 +00:00
|
|
|
printf("RAID5 stripesize=%d", status.interleave);
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
break;
|
|
|
|
case AR_JBOD:
|
|
|
|
printf("JBOD");
|
2008-03-16 17:54:55 +00:00
|
|
|
break;
|
2002-04-02 13:48:17 +00:00
|
|
|
case AR_SPAN:
|
|
|
|
printf("SPAN");
|
|
|
|
break;
|
|
|
|
}
|
2007-08-13 18:46:31 +00:00
|
|
|
printf(" status: ");
|
|
|
|
switch (status.status) {
|
2002-04-02 13:48:17 +00:00
|
|
|
case AR_READY:
|
|
|
|
printf("READY\n");
|
|
|
|
break;
|
|
|
|
case AR_READY | AR_DEGRADED:
|
|
|
|
printf("DEGRADED\n");
|
|
|
|
break;
|
|
|
|
case AR_READY | AR_DEGRADED | AR_REBUILDING:
|
|
|
|
printf("REBUILDING %d%% completed\n",
|
2007-08-13 18:46:31 +00:00
|
|
|
status.progress);
|
2002-04-02 13:48:17 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("BROKEN\n");
|
|
|
|
}
|
2007-08-13 18:46:31 +00:00
|
|
|
printf(" subdisks:\n");
|
|
|
|
for (i = 0; i < status.total_disks; i++) {
|
|
|
|
printf(" %2d ", i);
|
|
|
|
lun = status.disks[i].lun;
|
|
|
|
state = status.disks[i].state;
|
|
|
|
if (lun < 0)
|
|
|
|
printf("---- ");
|
|
|
|
else
|
|
|
|
printf("ad%-2d ", lun);
|
|
|
|
if (state & AR_DISK_ONLINE)
|
|
|
|
printf("ONLINE");
|
|
|
|
else if (state & AR_DISK_SPARE)
|
|
|
|
printf("SPARE");
|
|
|
|
else if (state & AR_DISK_PRESENT)
|
|
|
|
printf("OFFLINE");
|
|
|
|
else
|
|
|
|
printf("MISSING");
|
|
|
|
printf("\n");
|
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
exit(EX_OK);
|
2002-04-02 13:48:17 +00:00
|
|
|
}
|
2005-05-16 13:07:27 +00:00
|
|
|
usage();
|
2003-05-04 09:51:06 +00:00
|
|
|
exit(EX_OK);
|
2001-03-15 15:40:53 +00:00
|
|
|
}
|