[PATCH 5/7] tests: check decoding of NFNL_SUBSYS_CTHELPER netlink message flags
JingPiao Chen
chenjingpiao at gmail.com
Tue Oct 31 13:22:22 UTC 2017
* tests/nfnetlink_cthelper.c (test_nlmsg_flags): New function.
(main): Use it.
---
tests/nfnetlink_cthelper.c | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/tests/nfnetlink_cthelper.c b/tests/nfnetlink_cthelper.c
index 7347e10..47fab76 100644
--- a/tests/nfnetlink_cthelper.c
+++ b/tests/nfnetlink_cthelper.c
@@ -62,6 +62,42 @@ 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_CTHELPER << 8 | NFNL_MSG_CTHELPER_NEW;
+ nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_REPLACE;
+ rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
+ printf("sendto(%d, {len=%u"
+ ", type=NFNL_SUBSYS_CTHELPER<<8|NFNL_MSG_CTHELPER_NEW"
+ ", flags=NLM_F_REQUEST|NLM_F_REPLACE, 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_CTHELPER << 8 | NFNL_MSG_CTHELPER_GET;
+ nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
+ rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
+ printf("sendto(%d, {len=%u"
+ ", type=NFNL_SUBSYS_CTHELPER<<8|NFNL_MSG_CTHELPER_GET"
+ ", flags=NLM_F_REQUEST|NLM_F_DUMP, 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_CTHELPER << 8 | NFNL_MSG_CTHELPER_DEL;
+ 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_CTHELPER<<8|NFNL_MSG_CTHELPER_DEL"
+ ", 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)
{
@@ -70,6 +106,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