diff options
author | Jason Wang <jasowang@redhat.com> | 2018-03-29 04:00:04 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-29 16:22:47 -0400 |
commit | d65026c6c62e7d9616c8ceb5a53b68bcdc050525 (patch) | |
tree | dccd59dd04aef986186afb3bb4ff279bebe245b7 /drivers/vhost/vhost.c | |
parent | 58f101bf87e32753342a6924772c6ebb0fbde24a (diff) |
vhost: validate log when IOTLB is enabled
Vq log_base is the userspace address of bitmap which has nothing to do
with IOTLB. So it needs to be validated unconditionally otherwise we
may try use 0 as log_base which may lead to pin pages that will lead
unexpected result (e.g trigger BUG_ON() in set_bit_to_user()).
Fixes: 6b1e6cc7855b0 ("vhost: new device IOTLB API")
Reported-by: syzbot+6304bf97ef436580fede@syzkaller.appspotmail.com
Signed-off-by: Jason Wang <jasowang@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/vhost/vhost.c')
-rw-r--r-- | drivers/vhost/vhost.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c index 5d5a9d9e66d3..5320039671b7 100644 --- a/drivers/vhost/vhost.c +++ b/drivers/vhost/vhost.c | |||
@@ -1244,14 +1244,12 @@ static int vq_log_access_ok(struct vhost_virtqueue *vq, | |||
1244 | /* Caller should have vq mutex and device mutex */ | 1244 | /* Caller should have vq mutex and device mutex */ |
1245 | int vhost_vq_access_ok(struct vhost_virtqueue *vq) | 1245 | int vhost_vq_access_ok(struct vhost_virtqueue *vq) |
1246 | { | 1246 | { |
1247 | if (vq->iotlb) { | 1247 | int ret = vq_log_access_ok(vq, vq->log_base); |
1248 | /* When device IOTLB was used, the access validation | 1248 | |
1249 | * will be validated during prefetching. | 1249 | if (ret || vq->iotlb) |
1250 | */ | 1250 | return ret; |
1251 | return 1; | 1251 | |
1252 | } | 1252 | return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used); |
1253 | return vq_access_ok(vq, vq->num, vq->desc, vq->avail, vq->used) && | ||
1254 | vq_log_access_ok(vq, vq->log_base); | ||
1255 | } | 1253 | } |
1256 | EXPORT_SYMBOL_GPL(vhost_vq_access_ok); | 1254 | EXPORT_SYMBOL_GPL(vhost_vq_access_ok); |
1257 | 1255 | ||