summaryrefslogtreecommitdiff
path: root/src/rtnl_netconf.c
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2021-02-03 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2021-02-03 08:00:00 +0000
commitecb3ed78107c851f71696df6730a15afff91ed3d (patch)
tree0b3d2b083040fc9b08d129f80d027ff41b995059 /src/rtnl_netconf.c
parentc47943de06204a269e16f732e7c9c71d4284b23f (diff)
downloadstrace-ecb3ed78107c851f71696df6730a15afff91ed3d.tar.gz
Move source files into src subdirectory
* src/Makefile.am: New file. * src/.gitignore: Likewise. * scno.am: Move into src subdirectory. * scno.head: Likewise. * strace-graph: Likewise. * strace-log-merge: Likewise. * linux/: Likewise. * types/: Likewise. * xlat/: Likewise. * *.awk: Likewise. * *.c: Likewise. * *.h: Likewise. * *.sh: Likewise. * .gitignore: Update. * Makefile.am: Update. * bootstrap: Update. * configure.ac: Update. * debian/rules: Update. * debian/strace-udeb.install: Update. * debian/strace.examples: Update. * debian/strace.install: Update. * debian/strace64.install: Update. * m4/gen_bpf_attr_m4.sh: Update. * m4/mpers.m4: Update. * tests/Makefile.am: Update. * tests/init.sh: Update. * tests/legacy_syscall_info.test: Update. * tests/strace-log-merge-error.test: Update. * tests/strace-log-merge-suffix.test: Update.
Diffstat (limited to 'src/rtnl_netconf.c')
-rw-r--r--src/rtnl_netconf.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/rtnl_netconf.c b/src/rtnl_netconf.c
new file mode 100644
index 000000000..c567e2005
--- /dev/null
+++ b/src/rtnl_netconf.c
@@ -0,0 +1,51 @@
+/*
+ * Copyright (c) 2016 Fabien Siron <fabien.siron@epita.fr>
+ * Copyright (c) 2017 JingPiao Chen <chenjingpiao@gmail.com>
+ * Copyright (c) 2016-2018 The strace developers.
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: LGPL-2.1-or-later
+ */
+
+#include "defs.h"
+
+#ifdef HAVE_STRUCT_NETCONFMSG
+
+# include "netlink_route.h"
+# include "nlattr.h"
+
+# include <linux/netconf.h>
+# include "netlink.h"
+
+# include "xlat/rtnl_netconf_attrs.h"
+
+static const nla_decoder_t netconfmsg_nla_decoders[] = {
+ [NETCONFA_IFINDEX] = decode_nla_ifindex,
+ [NETCONFA_FORWARDING] = decode_nla_s32,
+ [NETCONFA_RP_FILTER] = decode_nla_s32,
+ [NETCONFA_MC_FORWARDING] = decode_nla_s32,
+ [NETCONFA_PROXY_NEIGH] = decode_nla_s32,
+ [NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN] = decode_nla_s32,
+ [NETCONFA_INPUT] = decode_nla_s32,
+ [NETCONFA_BC_FORWARDING] = decode_nla_s32,
+};
+
+DECL_NETLINK_ROUTE_DECODER(decode_netconfmsg)
+{
+ struct netconfmsg ncm = { .ncm_family = family };
+
+ tprint_struct_begin();
+ PRINT_FIELD_XVAL(ncm, ncm_family, addrfams, "AF_???");
+ tprint_struct_end();
+
+ const size_t offset = NLMSG_ALIGN(sizeof(ncm));
+ if (len > offset) {
+ tprints(", ");
+ decode_nlattr(tcp, addr + offset, len - offset,
+ rtnl_netconf_attrs, "NETCONFA_???",
+ netconfmsg_nla_decoders,
+ ARRAY_SIZE(netconfmsg_nla_decoders), NULL);
+ }
+}
+
+#endif