[Openvpn-devel,v2] log file descriptor in more socket related error messages
Commit Message
This add the fd to the epoll event error message and the x_check_status
message. This helps debugging when thing go wrong with event handling.
Also add logging when ep_del fails to remove a socket from the structure.
In constract to ep_ctl that has this as a FATAL message (M_ERR), we only
log here since the code has been ignoring the status forever there might
be corner cases where a FATAL message could trigger an unintened regression.
PATCH v2: Fix wrong order of fd,code in printed message.
Signed-off-by: Arne Schwabe <arne@rfc2549.org>
---
src/openvpn/error.c | 8 ++++----
src/openvpn/event.c | 8 ++++++--
2 files changed, 10 insertions(+), 6 deletions(-)
Comments
Acked-by: Gert Doering <gert@greenie.muc.de>
Changes make sense now :-) - only compile tested, I have no way to trigger
these error messages in regular use.
Your patch has been applied to the master branch.
commit 8ccce69dc1b7ffdb533939cf5e5d054c64e23617
Author: Arne Schwabe
Date: Sat Apr 3 14:30:00 2021 +0200
log file descriptor in more socket related error messages
Signed-off-by: Arne Schwabe <arne@rfc2549.org>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20210403123000.17688-1-arne@rfc2549.org>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg22008.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
@@ -690,15 +690,15 @@ x_check_status(int status,
{
if (extended_msg)
{
- msg(x_cs_info_level, "%s %s [%s]: %s (code=%d)", description,
+ msg(x_cs_info_level, "%s %s [%s]: %s (fd=%d,code=%d)", description,
sock ? proto2ascii(sock->info.proto, sock->info.af, true) : "",
- extended_msg, strerror(my_errno), my_errno);
+ extended_msg, strerror(my_errno), sock ? sock->sd : -1, my_errno);
}
else
{
- msg(x_cs_info_level, "%s %s: %s (code=%d)", description,
+ msg(x_cs_info_level, "%s %s: %s (fd=%d,code=%d)", description,
sock ? proto2ascii(sock->info.proto, sock->info.af, true) : "",
- strerror(my_errno), my_errno);
+ strerror(my_errno), sock ? sock->sd : -1, my_errno);
}
if (x_cs_err_delay_ms)
@@ -555,7 +555,10 @@ ep_del(struct event_set *es, event_t event)
ASSERT(!eps->fast);
CLEAR(ev);
- epoll_ctl(eps->epfd, EPOLL_CTL_DEL, event, &ev);
+ if (epoll_ctl(eps->epfd, EPOLL_CTL_DEL, event, &ev) < 0)
+ {
+ msg(M_WARN|M_ERRNO, "EVENT: epoll_ctl EPOLL_CTL_DEL failed, sd=%d", (int)event);
+ }
}
static void
@@ -844,7 +847,8 @@ po_wait(struct event_set *es, const struct timeval *tv, struct event_set_return
}
else if (pfdp->revents)
{
- msg(D_EVENT_ERRORS, "Error: poll: unknown revents=0x%04x", (unsigned int)pfdp->revents);
+ msg(D_EVENT_ERRORS, "Error: poll: unknown revents=0x%04x for fd=%d",
+ (unsigned int)pfdp->revents, pfdp->fd);
}
++pfdp;
}