tests: check decoding of NFNL_SUBSYS_NFTABLES netlink message flags

* tests/nfnetlink_nftables.c (test_nlmsg_flags): New function.
(main): Use it.
This commit is contained in:
JingPiao Chen 2017-10-28 09:01:27 +08:00
parent 3617415443
commit 76e1dbb539

View File

@ -62,6 +62,42 @@ test_nlmsg_type(const int fd)
fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc)); 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_NFTABLES << 8 | NFT_MSG_NEWTABLE;
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_NFTABLES<<8|NFT_MSG_NEWTABLE"
", 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_NFTABLES << 8 | NFT_MSG_GETTABLE;
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_NFTABLES<<8|NFT_MSG_GETTABLE"
", 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_NFTABLES << 8 | NFT_MSG_DELTABLE;
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_NFTABLES<<8|NFT_MSG_DELTABLE"
", 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 int
main(void) main(void)
{ {
@ -70,6 +106,7 @@ main(void)
int fd = create_nl_socket(NETLINK_NETFILTER); int fd = create_nl_socket(NETLINK_NETFILTER);
test_nlmsg_type(fd); test_nlmsg_type(fd);
test_nlmsg_flags(fd);
puts("+++ exited with 0 +++"); puts("+++ exited with 0 +++");