On Thu, Nov 17, 2022 at 04:49:31PM +0100, Stefano Brivio wrote:
On Thu, 17 Nov 2022 15:33:06 +0000 "Richard W.M. Jones"
wrote: On Thu, Nov 17, 2022 at 04:26:40PM +0100, Stefano Brivio wrote:
From: "Richard W.M. Jones"
This passes a fully connected stream socket to passt.
Signed-off-by: Richard W.M. Jones
[sbrivio: reuse fd_tap instead of adding a new descriptor, imply --one-off on --fd, add to optstring and usage()] Signed-off-by: Stefano Brivio --- v2: - reuse fd_tap, we don't need a separate file descriptor - add F to optstring and usage(), for both passt and pasta - imply --one-off, we can't do much once the socket is closed With this, the trick from 5/5 goes a bit further: passt reads from the file descriptor passed by the wrapper.
Thanks for the v2 .. I'll add it to my series and play with it.
However, we get EPOLLRDHUP right away, from the close() on one end of the socket pair I guess. Should we just ignore all EPOLLRDHUP events, just the first one...?
Does it see the event out-of-band or does it get an in-band read(2) == 0 after finishing reading the data?
Out-of-band, so to speak: we won't even recv() if we get EPOLLRDHUP (that's handled in tap_handler()). If I do this on top of this patch:
--- a/tap.c +++ b/tap.c @@ -1073,7 +1073,7 @@ void tap_sock_init(struct ctx *c) struct epoll_event ev = { 0 };
ev.data.fd = c->fd_tap; - ev.events = EPOLLIN | EPOLLET | EPOLLRDHUP; + ev.events = EPOLLIN | EPOLLET;
Then it gets those four bytes:
[pid 2538704] epoll_wait(5, 0x7ffedc4a6320, 8, 1000) = 1 [pid 2538704] recvfrom(4, 0x560797677000, 8323069, MSG_DONTWAIT, NULL, NULL) = 4 [pid 2538704] epoll_wait(5, [], 8, 1000) = 0 [pid 2538704] epoll_wait(5, 0x7ffedc4a6320, 8, 1000) = -1 EINTR (Interrupted system call)
and does nothing with them, as expected. Two epoll_wait() calls later, the syscall is interrupted, I'm not sure why and how we should react (in main(), passt.c) in that case.
With EPOLLRDHUP removed it's a bit deadlock-y. One case I commonly
see is:
child (qemu):
1295637 write(5, "\0\0\0\0", 4