提交 8bfa79fc 编写于 作者: T Tejun Heo 提交者: Jeff Garzik

libata: use ata_id_c_string()

There were several places where ATA ID strings are manually terminated
and in some places possibly unterminated strings were passed to string
functions which don't limit length like strstr().  This patch converts
all of them over to ata_id_c_string().
Signed-off-by: NTejun Heo <htejun@gmail.com>
Signed-off-by: NJeff Garzik <jeff@garzik.org>
上级 a0cf733b
...@@ -3325,35 +3325,20 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = { ...@@ -3325,35 +3325,20 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = {
{ } { }
}; };
static int ata_strim(char *s, size_t len)
{
len = strnlen(s, len);
/* ATAPI specifies that empty space is blank-filled; remove blanks */
while ((len > 0) && (s[len - 1] == ' ')) {
len--;
s[len] = 0;
}
return len;
}
unsigned long ata_device_blacklisted(const struct ata_device *dev) unsigned long ata_device_blacklisted(const struct ata_device *dev)
{ {
unsigned char model_num[ATA_ID_PROD_LEN]; unsigned char model_num[ATA_ID_PROD_LEN + 1];
unsigned char model_rev[ATA_ID_FW_REV_LEN]; unsigned char model_rev[ATA_ID_FW_REV_LEN + 1];
unsigned int nlen, rlen;
const struct ata_blacklist_entry *ad = ata_device_blacklist; const struct ata_blacklist_entry *ad = ata_device_blacklist;
ata_id_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
ata_id_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev)); ata_id_c_string(dev->id, model_rev, ATA_ID_FW_REV, sizeof(model_rev));
nlen = ata_strim(model_num, sizeof(model_num));
rlen = ata_strim(model_rev, sizeof(model_rev));
while (ad->model_num) { while (ad->model_num) {
if (!strncmp(ad->model_num, model_num, nlen)) { if (!strcmp(ad->model_num, model_num)) {
if (ad->model_rev == NULL) if (ad->model_rev == NULL)
return ad->horkage; return ad->horkage;
if (!strncmp(ad->model_rev, model_rev, rlen)) if (!strcmp(ad->model_rev, model_rev))
return ad->horkage; return ad->horkage;
} }
ad++; ad++;
......
...@@ -153,11 +153,11 @@ static void ali_early_error_handler(struct ata_port *ap) ...@@ -153,11 +153,11 @@ static void ali_early_error_handler(struct ata_port *ap)
static unsigned long ali_20_filter(const struct ata_port *ap, struct ata_device *adev, unsigned long mask) static unsigned long ali_20_filter(const struct ata_port *ap, struct ata_device *adev, unsigned long mask)
{ {
char model_num[ATA_ID_PROD_LEN]; char model_num[ATA_ID_PROD_LEN + 1];
/* No DMA on anything but a disk for now */ /* No DMA on anything but a disk for now */
if (adev->class != ATA_DEV_ATA) if (adev->class != ATA_DEV_ATA)
mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA); mask &= ~(ATA_MASK_MWDMA | ATA_MASK_UDMA);
ata_id_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num)); ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
if (strstr(model_num, "WDC")) if (strstr(model_num, "WDC"))
return mask &= ~ATA_MASK_UDMA; return mask &= ~ATA_MASK_UDMA;
return ata_pci_default_filter(ap, adev, mask); return ata_pci_default_filter(ap, adev, mask);
......
...@@ -151,23 +151,13 @@ static const char *bad_ata66_3[] = { ...@@ -151,23 +151,13 @@ static const char *bad_ata66_3[] = {
static int hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, const char *list[]) static int hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, const char *list[])
{ {
unsigned char model_num[ATA_ID_PROD_LEN]; unsigned char model_num[ATA_ID_PROD_LEN + 1];
char *s;
unsigned int len;
int i = 0; int i = 0;
ata_id_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
s = &model_num[0];
len = strnlen(s, sizeof(model_num));
/* ATAPI specifies that empty space is blank-filled; remove blanks */ while (list[i] != NULL) {
while ((len > 0) && (s[len - 1] == ' ')) { if (!strcmp(list[i], model_num)) {
len--;
s[len] = 0;
}
while(list[i] != NULL) {
if (!strncmp(list[i], s, len)) {
printk(KERN_WARNING DRV_NAME ": %s is not supported for %s.\n", printk(KERN_WARNING DRV_NAME ": %s is not supported for %s.\n",
modestr, list[i]); modestr, list[i]);
return 1; return 1;
......
...@@ -349,23 +349,13 @@ static u32 hpt37x_find_mode(struct ata_port *ap, int speed) ...@@ -349,23 +349,13 @@ static u32 hpt37x_find_mode(struct ata_port *ap, int speed)
static int hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, const char *list[]) static int hpt_dma_blacklisted(const struct ata_device *dev, char *modestr, const char *list[])
{ {
unsigned char model_num[ATA_ID_PROD_LEN]; unsigned char model_num[ATA_ID_PROD_LEN + 1];
char *s;
unsigned int len;
int i = 0; int i = 0;
ata_id_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num)); ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
s = &model_num[0];
len = strnlen(s, sizeof(model_num));
/* ATAPI specifies that empty space is blank-filled; remove blanks */ while (list[i] != NULL) {
while ((len > 0) && (s[len - 1] == ' ')) { if (!strcmp(list[i], model_num)) {
len--;
s[len] = 0;
}
while(list[i] != NULL) {
if (!strncmp(list[i], s, len)) {
printk(KERN_WARNING DRV_NAME ": %s is not supported for %s.\n", printk(KERN_WARNING DRV_NAME ": %s is not supported for %s.\n",
modestr, list[i]); modestr, list[i]);
return 1; return 1;
......
...@@ -531,22 +531,9 @@ static int it821x_smart_set_mode(struct ata_port *ap, struct ata_device **unused ...@@ -531,22 +531,9 @@ static int it821x_smart_set_mode(struct ata_port *ap, struct ata_device **unused
static void it821x_dev_config(struct ata_port *ap, struct ata_device *adev) static void it821x_dev_config(struct ata_port *ap, struct ata_device *adev)
{ {
unsigned char model_num[ATA_ID_PROD_LEN]; unsigned char model_num[ATA_ID_PROD_LEN + 1];
char *s;
unsigned int len;
/* This block ought to be a library routine as it is in several ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
drivers now */
ata_id_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
s = &model_num[0];
len = strnlen(s, sizeof(model_num));
/* ATAPI specifies that empty space is blank-filled; remove blanks */
while ((len > 0) && (s[len - 1] == ' ')) {
len--;
s[len] = 0;
}
if (adev->max_sectors > 255) if (adev->max_sectors > 255)
adev->max_sectors = 255; adev->max_sectors = 255;
......
...@@ -218,25 +218,18 @@ static unsigned long serverworks_osb4_filter(const struct ata_port *ap, struct a ...@@ -218,25 +218,18 @@ static unsigned long serverworks_osb4_filter(const struct ata_port *ap, struct a
static unsigned long serverworks_csb_filter(const struct ata_port *ap, struct ata_device *adev, unsigned long mask) static unsigned long serverworks_csb_filter(const struct ata_port *ap, struct ata_device *adev, unsigned long mask)
{ {
const char *p; const char *p;
char model_num[ATA_ID_PROD_LEN]; char model_num[ATA_ID_PROD_LEN + 1];
int len, i; int i;
/* Disk, UDMA */ /* Disk, UDMA */
if (adev->class != ATA_DEV_ATA) if (adev->class != ATA_DEV_ATA)
return ata_pci_default_filter(ap, adev, mask); return ata_pci_default_filter(ap, adev, mask);
/* Actually do need to check */ /* Actually do need to check */
ata_id_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num)); ata_id_c_string(adev->id, model_num, ATA_ID_PROD, sizeof(model_num));
/* Precuationary - why not do this in the libata core ?? */
len = strlen(model_num); for (i = 0; (p = csb_bad_ata100[i]) != NULL; i++) {
while ((len > 0) && (model_num[len - 1] == ' ')) { if (!strcmp(p, model_num))
len--;
model_num[len] = 0;
}
for(i = 0; (p = csb_bad_ata100[i]) != NULL; i++) {
if (!strncmp(p, model_num, len))
mask &= ~(0x1F << ATA_SHIFT_UDMA); mask &= ~(0x1F << ATA_SHIFT_UDMA);
} }
return ata_pci_default_filter(ap, adev, mask); return ata_pci_default_filter(ap, adev, mask);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册