Commit 5a605a9f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

- Fix handling of POLLHUP and POLLNVAL events

- Minor optimization for POLLHUP case
parent 5d33b792
...@@ -282,22 +282,17 @@ void net_Close (int fd) ...@@ -282,22 +282,17 @@ void net_Close (int fd)
} }
static ssize_t net_ReadInner( vlc_object_t *restrict p_this, static ssize_t
unsigned i_fdc, const int *p_fdv, net_ReadInner (vlc_object_t *restrict p_this, unsigned fdc, const int *fdv,
const v_socket_t *const *restrict pp_vsv, const v_socket_t *const *restrict vsv,
uint8_t *restrict p_buf, size_t i_buflen, uint8_t *restrict p_buf, size_t i_buflen,
vlc_bool_t dontwait, vlc_bool_t waitall ) vlc_bool_t dontwait, vlc_bool_t waitall)
{ {
size_t i_total = 0; size_t i_total = 0;
while( i_buflen > 0 ) while (i_buflen > 0)
{ {
unsigned int i; if (p_this->b_die)
ssize_t n;
struct pollfd ufd[i_fdc];
int delay_ms = dontwait ? 0 : 500;
if( p_this->b_die )
{ {
#if defined(WIN32) || defined(UNDER_CE) #if defined(WIN32) || defined(UNDER_CE)
WSASetLastError(WSAEINTR); WSASetLastError(WSAEINTR);
...@@ -307,57 +302,67 @@ static ssize_t net_ReadInner( vlc_object_t *restrict p_this, ...@@ -307,57 +302,67 @@ static ssize_t net_ReadInner( vlc_object_t *restrict p_this,
goto error; goto error;
} }
memset (ufd, 0, sizeof (ufd)); struct pollfd ufd[fdc];
for( i = 0; i < i_fdc; i++ ) for (unsigned i = 0; i < fdc; i++)
{ {
ufd[i].fd = p_fdv[i]; ufd[i].fd = fdv[i];
ufd[i].events = POLLIN; ufd[i].events = POLLIN;
ufd[i].revents = 0;
} }
n = poll( ufd, i_fdc, delay_ms ); switch (poll (ufd, fdc, dontwait ? 0 : 500))
if( n == -1 ) {
case -1:
goto error; goto error;
assert ((unsigned)n <= i_fdc); case 0: // timeout
if( n == 0 ) // timeout
continue; continue;
}
for( i = 0; i < i_fdc; i++ ) for (unsigned i = 0;; i++)
{ {
if( i_total > 0 && (ufd[i].revents & POLLERR) ) assert (i < fdc); /* no events found = bug ! */
return i_total; // error will be dequeued on next run
if( (ufd[i].revents & POLLIN) == 0 ) if (ufd[i].revents == 0)
continue; continue;
/* */ if (i_total > 0)
i_fdc = 1; {
p_fdv = &p_fdv[i]; // Errors (-1) and EOF (0) will be returned on next run
pp_vsv = &pp_vsv[i]; if (ufd[i].revents & (POLLERR|POLLNVAL|POLLHUP))
return i_total;
}
else
{
if (ufd[i].revents & POLLHUP)
return 0; // EOF, read() would yield 0
}
fdc = 1;
fdv += i;
vsv += i;
break; break;
} }
if( i >= i_fdc )
continue;
if( (*pp_vsv) != NULL ) ssize_t n;
if (*vsv != NULL)
{ {
n = (*pp_vsv)->pf_recv( (*pp_vsv)->p_sys, p_buf, i_buflen ); n = (*vsv)->pf_recv ((*vsv)->p_sys, p_buf, i_buflen);
} }
else else
{ {
#if defined(WIN32) || defined(UNDER_CE) #if defined(WIN32) || defined(UNDER_CE)
n = recv( *p_fdv, p_buf, i_buflen, 0 ); n = recv (*fdv, p_buf, i_buflen, 0);
#else #else
n = read( *p_fdv, p_buf, i_buflen ); n = read (*fdv, p_buf, i_buflen);
#endif #endif
} }
if( n == -1 ) if (n == -1)
{ {
#if defined(WIN32) || defined(UNDER_CE) #if defined(WIN32) || defined(UNDER_CE)
switch( WSAGetLastError() ) switch (WSAGetLastError())
{ {
case WSAEWOULDBLOCK: case WSAEWOULDBLOCK:
/* only happens with vs != NULL (SSL) - not really an error */ /* only happens with vs != NULL (SSL) - not really an error */
...@@ -368,8 +373,8 @@ static ssize_t net_ReadInner( vlc_object_t *restrict p_this, ...@@ -368,8 +373,8 @@ static ssize_t net_ReadInner( vlc_object_t *restrict p_this,
/* On Win32, recv() fails if the datagram doesn't fit inside /* On Win32, recv() fails if the datagram doesn't fit inside
* the passed buffer, even though the buffer will be filled * the passed buffer, even though the buffer will be filled
* with the first part of the datagram. */ * with the first part of the datagram. */
msg_Err( p_this, "Receive error: " msg_Err (p_this, "Receive error: "
"Increase the mtu size (--mtu option)" ); "Increase the mtu size (--mtu option)");
n = i_buflen; n = i_buflen;
break; break;
...@@ -377,26 +382,23 @@ static ssize_t net_ReadInner( vlc_object_t *restrict p_this, ...@@ -377,26 +382,23 @@ static ssize_t net_ReadInner( vlc_object_t *restrict p_this,
goto error; goto error;
} }
#else #else
if( errno == EAGAIN ) /* spurious wake-up (sucks if i_fdc > 1) */ if (errno == EAGAIN) /* spurious wake-up (sucks if fdc > 1) */
continue; continue;
goto error; goto error;
#endif #endif
} }
if( n == 0 ) // EOF
break;
i_total += n; i_total += n;
p_buf += n; p_buf += n;
i_buflen -= n; i_buflen -= n;
if( dontwait || !waitall ) if ((n == 0) || dontwait || !waitall)
break; break;
} }
return i_total; return i_total;
error: error:
msg_Err( p_this, "Read error: %s", net_strerror( net_errno ) ); msg_Err (p_this, "Read error: %s", net_strerror (net_errno));
return i_total ? (ssize_t)i_total : -1; return i_total ? (ssize_t)i_total : -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment