Skip to content

Commit

Permalink
vhost: fix deadlock when message handling failed
Browse files Browse the repository at this point in the history
In vhost_user_msg_handler(), if vhost message handling
failed, we should check whether the queue is locked and
release the lock before returning. Or, it will cause a
deadlock later.

Fixes: 7f31d4e ("vhost: fix lock on device readiness notification")
Cc: stable@dpdk.org

Signed-off-by: Wenwu Ma <wenwux.ma@intel.com>
Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
Tested-by: Wei Ling <weix.ling@intel.com>
Acked-by: David Marchand <david.marchand@redhat.com>
  • Loading branch information
wenwumax authored and mcoquelin committed Jun 1, 2022
1 parent a543dcb commit 9e89b06
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/vhost/vhost_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -2887,7 +2887,6 @@ vhost_user_msg_handler(int vid, int fd)
return -1;
}

ret = 0;
request = ctx.msg.request.master;
if (request > VHOST_USER_NONE && request < RTE_DIM(vhost_message_handlers))
msg_handler = &vhost_message_handlers[request];
Expand Down Expand Up @@ -3031,9 +3030,11 @@ vhost_user_msg_handler(int vid, int fd)
send_vhost_reply(dev, fd, &ctx);
} else if (ret == RTE_VHOST_MSG_RESULT_ERR) {
VHOST_LOG_CONFIG(ERR, "(%s) vhost message handling failed.\n", dev->ifname);
return -1;
ret = -1;
goto unlock;
}

ret = 0;
for (i = 0; i < dev->nr_vring; i++) {
struct vhost_virtqueue *vq = dev->virtqueue[i];
bool cur_ready = vq_is_ready(dev, vq);
Expand All @@ -3044,10 +3045,11 @@ vhost_user_msg_handler(int vid, int fd)
}
}

unlock:
if (unlock_required)
vhost_user_unlock_all_queue_pairs(dev);

if (!virtio_is_ready(dev))
if (ret != 0 || !virtio_is_ready(dev))
goto out;

/*
Expand All @@ -3074,7 +3076,7 @@ vhost_user_msg_handler(int vid, int fd)
}

out:
return 0;
return ret;
}

static int process_slave_message_reply(struct virtio_net *dev,
Expand Down

0 comments on commit 9e89b06

Please sign in to comment.