Re: [dpdk-dev] [PATCH v2] vhost: check vhost message header size read

2020-02-13 Thread Maxime Coquelin
On 2/5/20 4:05 PM, Maxime Coquelin wrote: > This patch adds a check to ensure the read size of > the Vhost-user message header is not smaller than > the expected size. > > In case of unexpected read size, report an error > and close file descriptors passed with the message, > if any. > > Fixes

Re: [dpdk-dev] [PATCH v2] vhost: check vhost message header size read

2020-02-05 Thread Tiwei Bie
On Wed, Feb 05, 2020 at 04:05:29PM +0100, Maxime Coquelin wrote: > This patch adds a check to ensure the read size of > the Vhost-user message header is not smaller than > the expected size. > > In case of unexpected read size, report an error > and close file descriptors passed with the message,

[dpdk-dev] [PATCH v2] vhost: check vhost message header size read

2020-02-05 Thread Maxime Coquelin
This patch adds a check to ensure the read size of the Vhost-user message header is not smaller than the expected size. In case of unexpected read size, report an error and close file descriptors passed with the message, if any. Fixes: 8f972312b8f4 ("vhost: support vhost-user") Cc: sta...@dpdk.or