From 158392c6c719f156b96f5871d922f6f272012726 Mon Sep 17 00:00:00 2001 From: Arturo Borrero Gonzalez Date: Mon, 11 Feb 2013 12:56:38 +0000 Subject: examples: add XML output for table/chain/rule To show an instance of this patch: (shell)$ ./nft-table-get xml
Signed-off-by: Arturo Borrero Gonzalez --- examples/nft-chain-get.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'examples/nft-chain-get.c') diff --git a/examples/nft-chain-get.c b/examples/nft-chain-get.c index 2756c90..b32fc0c 100644 --- a/examples/nft-chain-get.c +++ b/examples/nft-chain-get.c @@ -23,6 +23,7 @@ static int table_cb(const struct nlmsghdr *nlh, void *data) { struct nft_chain *t; char buf[4096]; + uint32_t *type = data; t = nft_chain_alloc(); if (t == NULL) { @@ -35,7 +36,7 @@ static int table_cb(const struct nlmsghdr *nlh, void *data) goto err_free; } - nft_chain_snprintf(buf, sizeof(buf), t, NFT_CHAIN_O_DEFAULT, 0); + nft_chain_snprintf(buf, sizeof(buf), t, *type, 0); printf("%s", buf); err_free: @@ -49,16 +50,16 @@ int main(int argc, char *argv[]) struct mnl_socket *nl; char buf[MNL_SOCKET_BUFFER_SIZE]; struct nlmsghdr *nlh; - uint32_t portid, seq; + uint32_t portid, seq, type = NFT_CHAIN_O_DEFAULT; struct nft_chain *t = NULL; int ret; seq = time(NULL); - if (argc == 1) { + if (argc >= 1 && argc <= 2) { nlh = nft_chain_nlmsg_build_hdr(buf, NFT_MSG_GETCHAIN, AF_INET, NLM_F_DUMP, seq); - } else if (argc == 4) { + } else if (argc >= 4 && argc <= 5) { int family; if (strcmp(argv[1], "ip") == 0) @@ -84,11 +85,14 @@ int main(int argc, char *argv[]) nft_chain_nlmsg_build_payload(nlh, t); nft_chain_free(t); } else { - fprintf(stderr, "Usage: %s [ ]\n", + fprintf(stderr, "Usage: %s [
] [xml]\n", argv[0]); exit(EXIT_FAILURE); } + if (strcmp(argv[argc-1], "xml") == 0) + type = NFT_CHAIN_O_XML; + nl = mnl_socket_open(NETLINK_NETFILTER); if (nl == NULL) { perror("mnl_socket_open"); @@ -108,7 +112,7 @@ int main(int argc, char *argv[]) ret = mnl_socket_recvfrom(nl, buf, sizeof(buf)); while (ret > 0) { - ret = mnl_cb_run(buf, ret, seq, portid, table_cb, NULL); + ret = mnl_cb_run(buf, ret, seq, portid, table_cb, &type); if (ret <= 0) break; ret = mnl_socket_recvfrom(nl, buf, sizeof(buf)); -- cgit v1.2.3