libnetfilter_conntrack  1.0.6
nfct-mnl-stats-cpu.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 #include <time.h>
5 #include <arpa/inet.h>
6 
7 #include <linux/netfilter/nfnetlink_conntrack.h>
8 #include <libmnl/libmnl.h>
9 
10 static int data_attr_cb(const struct nlattr *attr, void *data)
11 {
12  const struct nlattr **tb = data;
13  int type = mnl_attr_get_type(attr);
14 
15  if (mnl_attr_type_valid(attr, CTA_STATS_MAX) < 0)
16  return MNL_CB_OK;
17 
18  if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0) {
19  perror("mnl_attr_validate");
20  return MNL_CB_ERROR;
21  }
22 
23  tb[type] = attr;
24  return MNL_CB_OK;
25 }
26 
27 static int data_cb(const struct nlmsghdr *nlh, void *data)
28 {
29  struct nlattr *tb[CTA_STATS_MAX+1] = {};
30  struct nfgenmsg *nfg = mnl_nlmsg_get_payload(nlh);
31  int i;
32 
33  mnl_attr_parse(nlh, sizeof(*nfg), data_attr_cb, tb);
34 
35  for (i=0; i<CTA_STATS_MAX; i++) {
36  if (tb[i])
37  printf("%08x ", ntohl(mnl_attr_get_u32(tb[i])));
38  }
39 
40  printf("\n");
41  return MNL_CB_OK;
42 }
43 
44 int main(void)
45 {
46  struct mnl_socket *nl;
47  struct nlmsghdr *nlh;
48  struct nfgenmsg *nfh;
49  char buf[MNL_SOCKET_BUFFER_SIZE];
50  unsigned int seq, portid;
51  int ret;
52 
53  nl = mnl_socket_open(NETLINK_NETFILTER);
54  if (nl == NULL) {
55  perror("mnl_socket_open");
56  exit(EXIT_FAILURE);
57  }
58 
59  if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) {
60  perror("mnl_socket_bind");
61  exit(EXIT_FAILURE);
62  }
63  portid = mnl_socket_get_portid(nl);
64 
65  nlh = mnl_nlmsg_put_header(buf);
66  nlh->nlmsg_type = (NFNL_SUBSYS_CTNETLINK << 8) |
67  IPCTNL_MSG_CT_GET_STATS_CPU;
68  nlh->nlmsg_flags = NLM_F_REQUEST|NLM_F_DUMP;
69  nlh->nlmsg_seq = seq = time(NULL);
70 
71  nfh = mnl_nlmsg_put_extra_header(nlh, sizeof(struct nfgenmsg));
72  nfh->nfgen_family = AF_INET;
73  nfh->version = NFNETLINK_V0;
74  nfh->res_id = 0;
75 
76  ret = mnl_socket_sendto(nl, nlh, nlh->nlmsg_len);
77  if (ret == -1) {
78  perror("mnl_socket_recvfrom");
79  exit(EXIT_FAILURE);
80  }
81 
82  ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
83  while (ret > 0) {
84  ret = mnl_cb_run(buf, ret, seq, portid, data_cb, NULL);
85  if (ret <= MNL_CB_STOP)
86  break;
87  ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
88  }
89  if (ret == -1) {
90  perror("mnl_socket_recvfrom");
91  exit(EXIT_FAILURE);
92  }
93 
94  mnl_socket_close(nl);
95 
96  return 0;
97 }