diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2024-08-20 11:59:40 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2024-08-20 11:59:40 +0000 |
commit | 61fbc609c384ee73168e65f5afb6f8148c583432 (patch) | |
tree | 6929ef75ce5a42a236c517800a693c35c1a564c5 | |
parent | 7f11f484cd38a7f6f7af94f14da66642ce0072a1 (diff) |
Use msgbuf_queuelen() instead of accessing wbuf.queue for msgbuf structs.
Also export the msgbuf queue len as a stats member so bgpctl does not need
to dig into the msgbuf structure inside struct peer.
This skips imsg related msgbuf since that will be handled by a imsgbuf
specific function.
OK tb@
-rw-r--r-- | usr.sbin/bgpd/control.c | 3 | ||||
-rw-r--r-- | usr.sbin/bgpd/rde.c | 6 | ||||
-rw-r--r-- | usr.sbin/bgpd/rtr_proto.c | 9 | ||||
-rw-r--r-- | usr.sbin/bgpd/session.c | 19 | ||||
-rw-r--r-- | usr.sbin/bgpd/session.h | 3 |
5 files changed, 23 insertions, 17 deletions
diff --git a/usr.sbin/bgpd/control.c b/usr.sbin/bgpd/control.c index 49fd55ad110..2ef1221e456 100644 --- a/usr.sbin/bgpd/control.c +++ b/usr.sbin/bgpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.117 2024/04/22 09:36:04 claudio Exp $ */ +/* $OpenBSD: control.c,v 1.118 2024/08/20 11:59:39 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -564,6 +564,7 @@ control_imsg_relay(struct imsg *imsg, struct peer *p) p->stats.prefix_sent_eor = stats.prefix_sent_eor; p->stats.pending_update = stats.pending_update; p->stats.pending_withdraw = stats.pending_withdraw; + p->stats.msg_queue_len = msgbuf_queuelen(&p->wbuf); return imsg_compose(&c->imsgbuf, type, 0, pid, -1, p, sizeof(*p)); diff --git a/usr.sbin/bgpd/rde.c b/usr.sbin/bgpd/rde.c index c4c286e4f29..81c1084dfb6 100644 --- a/usr.sbin/bgpd/rde.c +++ b/usr.sbin/bgpd/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.626 2024/08/14 19:09:51 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.627 2024/08/20 11:59:39 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -245,7 +245,7 @@ rde_main(int debug, int verbose) if (i >= pfd_elms) fatalx("poll pfd too small"); - if (mctx->mrt.wbuf.queued) { + if (msgbuf_queuelen(&mctx->mrt.wbuf) > 0) { pfd[i].fd = mctx->mrt.wbuf.fd; pfd[i].events = POLLOUT; i++; @@ -3175,7 +3175,7 @@ rde_mrt_throttled(void *arg) { struct mrt *mrt = arg; - return (mrt->wbuf.queued > SESS_MSG_LOW_MARK); + return (msgbuf_queuelen(&mrt->wbuf) > SESS_MSG_LOW_MARK); } static void diff --git a/usr.sbin/bgpd/rtr_proto.c b/usr.sbin/bgpd/rtr_proto.c index 3b09fa36cf8..b9903351503 100644 --- a/usr.sbin/bgpd/rtr_proto.c +++ b/usr.sbin/bgpd/rtr_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtr_proto.c,v 1.38 2024/08/12 09:04:23 claudio Exp $ */ +/* $OpenBSD: rtr_proto.c,v 1.39 2024/08/20 11:59:39 claudio Exp $ */ /* * Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org> @@ -1263,7 +1263,7 @@ rtr_dispatch_msg(struct pollfd *pfd, struct rtr_session *rs) rtr_fsm(rs, RTR_EVNT_CON_CLOSE); return; } - if (pfd->revents & POLLOUT && rs->w.queued) { + if (pfd->revents & POLLOUT && msgbuf_queuelen(&rs->w) > 0) { if ((error = ibuf_write(&rs->w)) == -1) { if (errno != EAGAIN) { log_warn("rtr %s: write error", log_rtr(rs)); @@ -1272,7 +1272,8 @@ rtr_dispatch_msg(struct pollfd *pfd, struct rtr_session *rs) } if (error == 0) rtr_fsm(rs, RTR_EVNT_CON_CLOSE); - if (rs->w.queued == 0 && rs->state == RTR_STATE_ERROR) + if (rs->state == RTR_STATE_ERROR && + msgbuf_queuelen(&rs->w) == 0) rtr_fsm(rs, RTR_EVNT_CON_CLOSE); } if (pfd->revents & POLLIN) { @@ -1378,7 +1379,7 @@ rtr_poll_events(struct pollfd *pfds, size_t npfds, time_t *timeout) pfd->fd = rs->fd; pfd->events = 0; - if (rs->w.queued) + if (msgbuf_queuelen(&rs->w) > 0) pfd->events |= POLLOUT; if (rs->state >= RTR_STATE_ESTABLISHED) pfd->events |= POLLIN; diff --git a/usr.sbin/bgpd/session.c b/usr.sbin/bgpd/session.c index dd24eb29a3e..9548fe191e5 100644 --- a/usr.sbin/bgpd/session.c +++ b/usr.sbin/bgpd/session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: session.c,v 1.480 2024/06/10 12:51:25 claudio Exp $ */ +/* $OpenBSD: session.c,v 1.481 2024/08/20 11:59:39 claudio Exp $ */ /* * Copyright (c) 2003, 2004, 2005 Henning Brauer <henning@openbsd.org> @@ -305,7 +305,7 @@ session_main(int debug, int verbose) free(m); continue; } - if (m->wbuf.queued) + if (msgbuf_queuelen(&m->wbuf) > 0) mrt_cnt++; } @@ -415,7 +415,8 @@ session_main(int debug, int verbose) /* are we waiting for a write? */ events = POLLIN; - if (p->wbuf.queued > 0 || p->state == STATE_CONNECT) + if (msgbuf_queuelen(&p->wbuf) > 0 || + p->state == STATE_CONNECT) events |= POLLOUT; /* is there still work to do? */ if (p->rpending && p->rbuf && p->rbuf->wpos) @@ -433,7 +434,7 @@ session_main(int debug, int verbose) idx_peers = i; LIST_FOREACH(m, &mrthead, entry) - if (m->wbuf.queued) { + if (msgbuf_queuelen(&m->wbuf) > 0) { pfd[i].fd = m->wbuf.fd; pfd[i].events = POLLOUT; mrt_l[i - idx_peers] = m; @@ -884,7 +885,8 @@ change_state(struct peer *peer, enum session_state state, * try to write out what's buffered (maybe a notification), * don't bother if it fails */ - if (peer->state >= STATE_OPENSENT && peer->wbuf.queued) + if (peer->state >= STATE_OPENSENT && + msgbuf_queuelen(&peer->wbuf) > 0) msgbuf_write(&peer->wbuf); /* @@ -1429,7 +1431,7 @@ session_sendmsg(struct bgp_msg *msg, struct peer *p) } ibuf_close(&p->wbuf, msg->buf); - if (!p->throttled && p->wbuf.queued > SESS_MSG_HIGH_MARK) { + if (!p->throttled && msgbuf_queuelen(&p->wbuf) > SESS_MSG_HIGH_MARK) { if (imsg_rde(IMSG_XOFF, p->conf.id, NULL, 0) == -1) log_peer_warn(&p->conf, "imsg_compose XOFF"); else @@ -1936,7 +1938,7 @@ session_dispatch_msg(struct pollfd *pfd, struct peer *p) return (1); } - if (pfd->revents & POLLOUT && p->wbuf.queued) { + if (pfd->revents & POLLOUT && msgbuf_queuelen(&p->wbuf) > 0) { if ((error = msgbuf_write(&p->wbuf)) <= 0 && errno != EAGAIN) { if (error == 0) log_peer_warnx(&p->conf, "Connection closed"); @@ -1947,7 +1949,8 @@ session_dispatch_msg(struct pollfd *pfd, struct peer *p) } p->stats.last_write = getmonotime(); start_timer_sendholdtime(p); - if (p->throttled && p->wbuf.queued < SESS_MSG_LOW_MARK) { + if (p->throttled && + msgbuf_queuelen(&p->wbuf) < SESS_MSG_LOW_MARK) { if (imsg_rde(IMSG_XON, p->conf.id, NULL, 0) == -1) log_peer_warn(&p->conf, "imsg_compose XON"); else diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h index a6f4a53faec..cd008c0ae77 100644 --- a/usr.sbin/bgpd/session.h +++ b/usr.sbin/bgpd/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.171 2024/08/12 09:04:23 claudio Exp $ */ +/* $OpenBSD: session.h,v 1.172 2024/08/20 11:59:39 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -151,6 +151,7 @@ struct peer_stats { time_t last_updown; time_t last_read; time_t last_write; + uint32_t msg_queue_len; uint32_t prefix_cnt; uint32_t prefix_out_cnt; uint32_t pending_update; |