diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2018-05-01 18:13:22 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2018-05-01 18:13:22 +0000 |
commit | 2da696dc3825c12d53ca24f846465395bcc68311 (patch) | |
tree | 1fc2ecc81f3ad2ef23f64baa479787c44babdd76 /sbin | |
parent | 3691db678ab03bcb639827cbc5b810109d7e90e3 (diff) |
Sync p_rttables() to netstat(1) version. Pointed out by claudio and
mpi.
Remaining differences are pledge and priority handling which only
route(8) has.
While here switch flushroutes to get_sysctl() function.
OK benno
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/route/route.c | 23 | ||||
-rw-r--r-- | sbin/route/show.c | 48 | ||||
-rw-r--r-- | sbin/route/show.h | 3 |
3 files changed, 37 insertions, 37 deletions
diff --git a/sbin/route/route.c b/sbin/route/route.c index d93374578c5..60dfd19931c 100644 --- a/sbin/route/route.c +++ b/sbin/route/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.212 2018/04/30 15:06:18 schwarze Exp $ */ +/* $OpenBSD: route.c,v 1.213 2018/05/01 18:13:21 florian Exp $ */ /* $NetBSD: route.c,v 1.16 1996/04/15 18:27:05 cgd Exp $ */ /* @@ -281,7 +281,7 @@ int flushroutes(int argc, char **argv) { size_t needed; - int mib[7], rlen, seqno, af = AF_UNSPEC; + int mib[7], mcnt, rlen, seqno, af = AF_UNSPEC; char *buf = NULL, *next, *lim = NULL; struct rt_msghdr *rtm; struct sockaddr *sa; @@ -333,21 +333,10 @@ flushroutes(int argc, char **argv) mib[4] = NET_RT_DUMP; mib[5] = prio; mib[6] = tableid; - while (1) { - if (sysctl(mib, 7, NULL, &needed, NULL, 0) == -1) - err(1, "route-sysctl-estimate"); - if (needed == 0) - break; - if ((buf = realloc(buf, needed)) == NULL) - err(1, "realloc"); - if (sysctl(mib, 7, buf, &needed, NULL, 0) == -1) { - if (errno == ENOMEM) - continue; - err(1, "actual retrieval of routing table"); - } - lim = buf + needed; - break; - } + mcnt = 7; + + needed = get_sysctl(mib, mcnt, &buf); + lim = buf + needed; if (pledge("stdio dns", NULL) == -1) err(1, "pledge"); diff --git a/sbin/route/show.c b/sbin/route/show.c index 5898a19cd45..a8b937beaf1 100644 --- a/sbin/route/show.c +++ b/sbin/route/show.c @@ -1,4 +1,4 @@ -/* $OpenBSD: show.c,v 1.111 2018/04/30 15:06:18 schwarze Exp $ */ +/* $OpenBSD: show.c,v 1.112 2018/05/01 18:13:21 florian Exp $ */ /* $NetBSD: show.c,v 1.1 1996/11/15 18:01:41 gwr Exp $ */ /* @@ -107,6 +107,29 @@ char *routename6(struct sockaddr_in6 *); char *netname4(in_addr_t, struct sockaddr_in *); char *netname6(struct sockaddr_in6 *, struct sockaddr_in6 *); +size_t +get_sysctl(const int *mib, u_int mcnt, char **buf) +{ + size_t needed; + + while (1) { + if (sysctl(mib, mcnt, NULL, &needed, NULL, 0) == -1) + err(1, "sysctl-estimate"); + if (needed == 0) + break; + if ((*buf = realloc(*buf, needed)) == NULL) + err(1, NULL); + if (sysctl(mib, mcnt, *buf, &needed, NULL, 0) == -1) { + if (errno == ENOMEM) + continue; + err(1, "sysctl"); + } + break; + } + + return needed; +} + /* * Print routing tables. */ @@ -116,7 +139,7 @@ p_rttables(int af, u_int tableid, char prio) struct rt_msghdr *rtm; char *buf = NULL, *next, *lim = NULL; size_t needed; - int mib[7]; + int mib[7], mcnt; struct sockaddr *sa; mib[0] = CTL_NET; @@ -126,22 +149,10 @@ p_rttables(int af, u_int tableid, char prio) mib[4] = NET_RT_DUMP; mib[5] = prio; mib[6] = tableid; + mcnt = 7; - while (1) { - if (sysctl(mib, 7, NULL, &needed, NULL, 0) == -1) - err(1, "route-sysctl-estimate"); - if (needed == 0) - break; - if ((buf = realloc(buf, needed)) == NULL) - err(1, NULL); - if (sysctl(mib, 7, buf, &needed, NULL, 0) == -1) { - if (errno == ENOMEM) - continue; - err(1, "sysctl of routing table"); - } - lim = buf + needed; - break; - } + needed = get_sysctl(mib, mcnt, &buf); + lim = buf + needed; if (pledge("stdio dns", NULL) == -1) err(1, "pledge"); @@ -156,9 +167,8 @@ p_rttables(int af, u_int tableid, char prio) sa = (struct sockaddr *)(next + rtm->rtm_hdrlen); p_rtentry(rtm); } - free(buf); - buf = NULL; } + free(buf); } /* diff --git a/sbin/route/show.h b/sbin/route/show.h index 03999b7fdd7..f0ef7531da7 100644 --- a/sbin/route/show.h +++ b/sbin/route/show.h @@ -1,4 +1,4 @@ -/* $OpenBSD: show.h,v 1.13 2018/04/30 10:32:02 florian Exp $ */ +/* $OpenBSD: show.h,v 1.14 2018/05/01 18:13:21 florian Exp $ */ /* * Copyright (c) 2004 Claudio Jeker <claudio@openbsd.org> @@ -34,6 +34,7 @@ void p_sockaddr(struct sockaddr *, struct sockaddr *, int, int); char *routename(struct sockaddr *); char *netname(struct sockaddr *, struct sockaddr *); char *mpls_op(u_int32_t); +size_t get_sysctl(const int *, u_int, char **); extern int nflag; extern int Fflag; |