libmnl  1.0.4
nft-event.c
1 /* This example is placed in the public domain. */
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <unistd.h>
5 #include <arpa/inet.h>
6 
7 #include <libmnl/libmnl.h>
8 #include <linux/netfilter/nfnetlink.h>
9 #include <linux/netfilter/nfnetlink_conntrack.h>
10 
11 static int data_cb(const struct nlmsghdr *nlh, void *data)
12 {
13  printf("nft event\n");
14 }
15 
16 int main(void)
17 {
18  struct mnl_socket *nl;
19  char buf[MNL_SOCKET_BUFFER_SIZE];
20  int ret;
21 
22  nl = mnl_socket_open(NETLINK_NETFILTER);
23  if (nl == NULL) {
24  perror("mnl_socket_open");
25  exit(EXIT_FAILURE);
26  }
27 
28  if (mnl_socket_bind(nl, (1 << NFNLGRP_NFTABLES-1),
29  MNL_SOCKET_AUTOPID) < 0) {
30  perror("mnl_socket_bind");
31  exit(EXIT_FAILURE);
32  }
33 
34  while (1) {
35  ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
36  if (ret == -1) {
37  perror("mnl_socket_recvfrom");
38  exit(EXIT_FAILURE);
39  }
40 
41  ret = mnl_cb_run(buf, ret, 0, 0, data_cb, NULL);
42  if (ret == -1) {
43  perror("mnl_cb_run");
44  exit(EXIT_FAILURE);
45  }
46  }
47 
48  mnl_socket_close(nl);
49 
50  return 0;
51 }