]> granicus.if.org Git - strace/commitdiff
tests: check decoding of NFNL_SUBSYS_CTNETLINK_TIMEOUT netlink message flags
authorJingPiao Chen <chenjingpiao@gmail.com>
Sat, 28 Oct 2017 00:55:44 +0000 (08:55 +0800)
committerJingPiao Chen <chenjingpiao@gmail.com>
Tue, 31 Oct 2017 03:59:55 +0000 (11:59 +0800)
* tests/nfnetlink_cttimeout.c (test_nlmsg_flags): New function.
(main): Use it.

tests/nfnetlink_cttimeout.c

index 404d5907ee604a6a54680c190da554e2bea295ac..e66dc24c41a82a04ae2ebe4054493bd8b17e1aa8 100644 (file)
@@ -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 +++");