From: Mark Lord <kernel@teksavvy.com>
To: IDE/ATA development list <linux-ide@vger.kernel.org>,
Jeff Garzik <jgarzik@pobox.com>, Tejun Heo <htejun@gmail.com>,
Alan Cox <alan@lxorguk.ukuu.org.uk>,
Ric Wheeler <rwheeler@redhat.com>
Subject: Re: [PATCH] Fix accesses at LBA28 boundary (old bug, but nasty)
Date: Tue, 06 Apr 2010 18:47:22 -0400 [thread overview]
Message-ID: <4BBBB9FA.3060803@teksavvy.com> (raw)
In-Reply-To: <4BBBB975.7000203@teksavvy.com>
Here is a test program, to see if a drive
On 06/04/10 06:45 PM, Mark Lord wrote:
> Most drives from Seagate, Hitachi, and possibly other brands,
> do not allow LBA28 access to sector number 0x0fffffff (2^28 - 1).
> So instead use LBA48 for such accesses.
...
Here is a test program, to see if a particular drive has this problem or not.
It works only on drives larger than 128GB.
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <linux/fs.h>
#include <linux/hdreg.h>
#include <scsi/scsi.h>
#include <scsi/sg.h>
typedef unsigned long long u64;
enum {
ATA_CMD_DMA_READ = 0xc8,
ATA_CMD_DMA_READ_EXT = 0x25,
ATA_SECT_SIZE = 512,
ATA_16 = 0x85,
ATA_16_LEN = 16,
ATA_DEV_REG_LBA = (1 << 6),
ATA_LBA48 = 1,
ATA_PROTO_DMA = ( 6 << 1),
};
static int sg_read (int fd, u64 lba, unsigned int nsects, void *buf, int force_lba28)
{
unsigned char cdb[ATA_16_LEN] = { ATA_16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
struct sg_io_hdr hdr;
unsigned char sense[32];
cdb[ 1] = ATA_PROTO_DMA;
cdb[ 6] = nsects;
cdb[ 8] = lba;
cdb[10] = lba >> 8;
cdb[12] = lba >> 16;
cdb[13] = ATA_DEV_REG_LBA;
if (force_lba28 || (nsects <= 256 && (lba + nsects) < (1ULL << 28))) {
cdb[13] |= (lba >> 24) & 0x0f;
cdb[14] = ATA_CMD_DMA_READ;
} else {
cdb[ 1] |= ATA_LBA48;
cdb[ 5] = nsects >> 8;
cdb[ 7] = lba >> 24;
cdb[ 9] = lba >> 32;
cdb[11] = lba >> 40;
cdb[14] = ATA_CMD_DMA_READ_EXT;
}
memset(&hdr, 0, sizeof(struct sg_io_hdr));
hdr.interface_id = 'S';
hdr.cmd_len = ATA_16_LEN;
hdr.mx_sb_len = sizeof(sense);
hdr.dxfer_direction = SG_DXFER_FROM_DEV;
hdr.dxfer_len = nsects * ATA_SECT_SIZE;
hdr.dxferp = buf;
hdr.cmdp = cdb;
hdr.sbp = sense;
hdr.pack_id = lba;
hdr.timeout = 5000; /* milliseconds */
memset(sense, 0, sizeof(sense));
if (ioctl(fd, SG_IO, &hdr) < 0) {
perror("ioctl(SG_IO)");
return (-1);
}
if (hdr.status == 0 && hdr.host_status == 0 && hdr.driver_status == 0)
return 0; /* success */
if (hdr.status > 0) {
unsigned char *s = sense + 8;
/* SCSI status is non-zero, let's go for the error LBA */
lba = ((u64)s[10] << 40) | ((u64)s[8] << 32) | (s[6] << 24) |
(s[11] << 16) | (s[9] << 8) | s[7];
if (0) fprintf(stderr, "SG_IO error: SCSI sense=0x%x/%02x/%02x, ATA=0x%02x/%02x, LBA=%llu (0x%llx)\n",
sense[1] & 0xf, sense[2], sense[3], s[13], s[3], lba, lba);
return -1;
}
/* some other error we don't know about yet */
fprintf(stderr, "SG_IO returned: SCSI status=0x%x, host_status=0x%x, driver_status=0x%x",
hdr.status, hdr.host_status, hdr.driver_status);
return -1;
}
static void print_drive_model (const char *devpath)
{
char cmd[256];
snprintf(cmd, sizeof(cmd), "hdparm -I %s | grep 'Model Number' | sed '-es/^[ ]*//'", devpath);
system(cmd);
snprintf(cmd, sizeof(cmd), "hdparm -I %s | grep 'Firmware Revision' | sed '-es/^[ ]*//'", devpath);
system(cmd);
}
int main (int argc, char *argv[])
{
unsigned char buf[8 * ATA_SECT_SIZE];
const char *devpath;
int rc, fd, nsects;
u64 lba;
if (argc != 2) {
fprintf(stderr, "%s: bad/missing parms: expected <devpath>\n", argv[0]);
exit(1);
}
devpath = argv[1];
fd = open(devpath, O_RDONLY);
if (fd == -1) {
perror(devpath);
exit(1);
}
print_drive_model(devpath);
nsects = 8;
lba = 0x0ffffff8;
printf("Reading %u sectors starting at LBA=%llu (0x%llx): ", nsects, lba, lba);
fflush(stdout);
rc = sg_read(fd, lba, nsects, buf, 1);
printf("%s\n", rc ? "FAILED" : "succeeded");
nsects = 1;
lba = 0x0fffffff;
printf("Reading %u sectors starting at LBA=%llu (0x%llx): ", nsects, lba, lba);
fflush(stdout);
rc = sg_read(fd, lba, nsects, buf, 1);
printf("%s\n", rc ? "FAILED" : "succeeded");
exit(0);
}
next prev parent reply other threads:[~2010-04-06 22:47 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-06 22:45 [PATCH] Fix accesses at LBA28 boundary (old bug, but nasty) Mark Lord
2010-04-06 22:47 ` Mark Lord [this message]
2010-04-07 1:29 ` Tejun Heo
2010-04-07 3:30 ` Mark Lord
2010-04-07 5:11 ` Tejun Heo
2010-04-07 17:52 ` Mark Lord
2010-04-07 17:52 ` [PATCH] Fix accesses at LBA28 boundary (old bug, but nasty) (v2) Mark Lord
2010-04-07 19:18 ` Alan Cox
2010-04-07 21:01 ` Tejun Heo
2010-04-08 17:00 ` Jeff Garzik
2010-04-15 13:46 ` Mark Lord
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4BBBB9FA.3060803@teksavvy.com \
--to=kernel@teksavvy.com \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=htejun@gmail.com \
--cc=jgarzik@pobox.com \
--cc=linux-ide@vger.kernel.org \
--cc=rwheeler@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.