diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-08-07 12:23:57 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-08-07 12:23:57 -0600 |
commit | 752ead44491e8c91e14d7079625c5916b30921c5 (patch) | |
tree | 35e8ce8c5b731a922a53b6d45cc48804f0e5af11 /drivers/ata | |
parent | 2d7271501720038381d45fb3dcbe4831228fc8cc (diff) | |
download | linux-stable-752ead44491e8c91e14d7079625c5916b30921c5.tar.gz linux-stable-752ead44491e8c91e14d7079625c5916b30921c5.tar.bz2 linux-stable-752ead44491e8c91e14d7079625c5916b30921c5.zip |
libata: add SG safety checks in SFF pio transfers
Abort processing of a command if we run out of mapped data in the
SG list. This should never happen, but a previous bug caused it to
be possible. Play it safe and attempt to abort nicely if we don't
have more SG segments left.
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/libata-sff.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 10aa27882142..4f115adb4ee8 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c @@ -658,6 +658,10 @@ static void ata_pio_sector(struct ata_queued_cmd *qc) unsigned int offset; unsigned char *buf; + if (!qc->cursg) { + qc->curbytes = qc->nbytes; + return; + } if (qc->curbytes == qc->nbytes - qc->sect_size) ap->hsm_task_state = HSM_ST_LAST; @@ -683,6 +687,8 @@ static void ata_pio_sector(struct ata_queued_cmd *qc) if (qc->cursg_ofs == qc->cursg->length) { qc->cursg = sg_next(qc->cursg); + if (!qc->cursg) + ap->hsm_task_state = HSM_ST_LAST; qc->cursg_ofs = 0; } } |