[PATCH 4/7] tests: check decoding of NFNL_SUBSYS_CTNETLINK_TIMEOUT netlink message flags
JingPiao Chen
chenjingpiao at gmail.com
Tue Oct 31 13:22:21 UTC 2017
* tests/nfnetlink_cttimeout.c (test_nlmsg_flags): New function.
(main): Use it.
---
tests/nfnetlink_cttimeout.c | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/tests/nfnetlink_cttimeout.c b/tests/nfnetlink_cttimeout.c
index 404d590..e66dc24 100644
--- a/tests/nfnetlink_cttimeout.c
+++ b/tests/nfnetlink_cttimeout.c
@@ -63,6 +63,45 @@ test_nlmsg_type(const int fd)
fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));
}
+static void
+test_nlmsg_flags(const int fd)
+{
+ long rc;
+ struct nlmsghdr nlh = {
+ .nlmsg_len = sizeof(nlh),
+ };
+
+ nlh.nlmsg_type =
+ NFNL_SUBSYS_CTNETLINK_TIMEOUT << 8 | IPCTNL_MSG_TIMEOUT_NEW;
+ nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_APPEND;
+ rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
+ printf("sendto(%d, {len=%u"
+ ", type=NFNL_SUBSYS_CTNETLINK_TIMEOUT<<8|IPCTNL_MSG_TIMEOUT_NEW"
+ ", flags=NLM_F_REQUEST|NLM_F_APPEND, seq=0, pid=0}"
+ ", %u, MSG_DONTWAIT, NULL, 0) = %s\n",
+ fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));
+
+ nlh.nlmsg_type =
+ NFNL_SUBSYS_CTNETLINK_TIMEOUT << 8 | IPCTNL_MSG_TIMEOUT_GET;
+ nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ATOMIC;
+ rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
+ printf("sendto(%d, {len=%u"
+ ", type=NFNL_SUBSYS_CTNETLINK_TIMEOUT<<8|IPCTNL_MSG_TIMEOUT_GET"
+ ", flags=NLM_F_REQUEST|NLM_F_ATOMIC, seq=0, pid=0}"
+ ", %u, MSG_DONTWAIT, NULL, 0) = %s\n",
+ fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));
+
+ nlh.nlmsg_type =
+ NFNL_SUBSYS_CTNETLINK_TIMEOUT << 8 | IPCTNL_MSG_TIMEOUT_DELETE;
+ nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_NONREC;
+ rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
+ printf("sendto(%d, {len=%u"
+ ", type=NFNL_SUBSYS_CTNETLINK_TIMEOUT<<8|IPCTNL_MSG_TIMEOUT_DELETE"
+ ", flags=NLM_F_REQUEST|NLM_F_NONREC, seq=0, pid=0}"
+ ", %u, MSG_DONTWAIT, NULL, 0) = %s\n",
+ fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));
+}
+
int
main(void)
{
@@ -71,6 +110,7 @@ main(void)
int fd = create_nl_socket(NETLINK_NETFILTER);
test_nlmsg_type(fd);
+ test_nlmsg_flags(fd);
puts("+++ exited with 0 +++");
--
2.7.4
More information about the Strace-devel
mailing list