The new implementation of pci_read_vpd() silently fails to perform a VPD read and allows the caller to use random stack garbage in the read buffer without knowing that it's not really VPD contents. If any portion of the VPD read isn't going to be performed, we should signal that back to the caller. We could either return an error or we could return the number of bytes actually read. The problem with the latter is that it would require changing every single caller to check for Requested Read Length == Actual Read Length. Returning an error is the more conservative fix and allows for rapid diagnosis of problems. Signed-off-by: Casey Leedom <leedom@xxxxxxxxxxx> Signed-off-by: Hariprasad Shenai <hariprasad@xxxxxxxxxxx> --- drivers/pci/access.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/drivers/pci/access.c b/drivers/pci/access.c index d11cdbb8fba3..113637de79bf 100644 --- a/drivers/pci/access.c +++ b/drivers/pci/access.c @@ -405,13 +405,8 @@ static ssize_t pci_vpd_read(struct pci_dev *dev, loff_t pos, size_t count, if (vpd->len == 0) return -EIO; - if (pos > vpd->len) - return 0; - - if (end > vpd->len) { - end = vpd->len; - count = end - pos; - } + if (end > vpd->len) + return -EINVAL; if (mutex_lock_killable(&vpd->lock)) return -EINTR; -- 2.3.4 -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html