From: David Ahern Date: Sat, 29 Sep 2018 16:29:29 +0000 (-0700) Subject: libnetlink: Convert GETNETCONF dumps to use rtnl_netconfdump_req X-Git-Tag: v4.20.0~101^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddee16bc966c2e021e2584bf3102e003a9ad093b;p=thirdparty%2Fiproute2.git libnetlink: Convert GETNETCONF dumps to use rtnl_netconfdump_req Add rtnl_netconfdump_req for netconf dumps using the proper netconfmsg as the header. Convert existing RTM_GETNETCONF dumps to use it. Signed-off-by: David Ahern --- diff --git a/include/libnetlink.h b/include/libnetlink.h index 8f2b29350..7e9ef640c 100644 --- a/include/libnetlink.h +++ b/include/libnetlink.h @@ -55,6 +55,8 @@ int rtnl_routedump_req(struct rtnl_handle *rth, int family) __attribute__((warn_unused_result)); int rtnl_mdbdump_req(struct rtnl_handle *rth, int family) __attribute__((warn_unused_result)); +int rtnl_netconfdump_req(struct rtnl_handle *rth, int family) + __attribute__((warn_unused_result)); int rtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type) __attribute__((warn_unused_result)); diff --git a/ip/ipnetconf.c b/ip/ipnetconf.c index 04c4d6080..21822e367 100644 --- a/ip/ipnetconf.c +++ b/ip/ipnetconf.c @@ -210,8 +210,7 @@ static int do_show(int argc, char **argv) } else { rth.flags = RTNL_HANDLE_F_SUPPRESS_NLERR; dump: - if (rtnl_wilddump_request(&rth, filter.family, - RTM_GETNETCONF) < 0) { + if (rtnl_netconfdump_req(&rth, filter.family) < 0) { perror("Cannot send dump request"); exit(1); } diff --git a/lib/libnetlink.c b/lib/libnetlink.c index 51ea457cd..e5cb275fa 100644 --- a/lib/libnetlink.c +++ b/lib/libnetlink.c @@ -265,6 +265,22 @@ int rtnl_mdbdump_req(struct rtnl_handle *rth, int family) return send(rth->fd, &req, sizeof(req), 0); } +int rtnl_netconfdump_req(struct rtnl_handle *rth, int family) +{ + struct { + struct nlmsghdr nlh; + struct netconfmsg ncm; + } req = { + .nlh.nlmsg_len = sizeof(req), + .nlh.nlmsg_type = RTM_GETNETCONF, + .nlh.nlmsg_flags = NLM_F_DUMP | NLM_F_REQUEST, + .nlh.nlmsg_seq = rth->dump = ++rth->seq, + .ncm.ncm_family = family, + }; + + return send(rth->fd, &req, sizeof(req), 0); +} + int rtnl_wilddump_request(struct rtnl_handle *rth, int family, int type) { return rtnl_wilddump_req_filter(rth, family, type, RTEXT_FILTER_VF);