mbox series

[v2,0/2] net: tap: check file descriptor can be used

Message ID 20200630145737.232095-1-lvivier@redhat.com
Headers show
Series net: tap: check file descriptor can be used | expand

Message

Laurent Vivier June 30, 2020, 2:57 p.m. UTC
v2: Add patch from Daniel to check the fd can be used

    I have updated Daniel's patch not to check for EINVAL on TUNGETIFF
    as I think we can avoid this special case because TUNGETIFF
    is available since kernel v2.6.27 (October 2008)
    Moreover I think the code was wrong as it was checking with -EINVAL and
    not EINVAL.

Daniel P. Berrang�� (1):
  net: detect errors from probing vnet hdr flag for TAP devices

Laurent Vivier (1):
  net: tap: check if the file descriptor is valid before using it

 include/qemu/sockets.h |  1 +
 net/tap-bsd.c          |  2 +-
 net/tap-linux.c        |  8 +++++---
 net/tap-solaris.c      |  2 +-
 net/tap-stub.c         |  2 +-
 net/tap.c              | 38 +++++++++++++++++++++++++++++++++-----
 net/tap_int.h          |  2 +-
 util/oslib-posix.c     |  5 +++++
 util/oslib-win32.c     |  6 ++++++
 9 files changed, 54 insertions(+), 12 deletions(-)

Comments

Daniel P. Berrangé June 30, 2020, 3:12 p.m. UTC | #1
On Tue, Jun 30, 2020 at 04:57:35PM +0200, Laurent Vivier wrote:
> v2: Add patch from Daniel to check the fd can be used
> 
>     I have updated Daniel's patch not to check for EINVAL on TUNGETIFF
>     as I think we can avoid this special case because TUNGETIFF
>     is available since kernel v2.6.27 (October 2008)
>     Moreover I think the code was wrong as it was checking with -EINVAL and
>     not EINVAL.

Agreed, given our documented OS platform targets, we don't need to
care about such old kernels.


Regards,
Daniel