summaryrefslogtreecommitdiffstats
path: root/qa/ct_events_reliable.c
blob: 1c8e194f51c71ebc5a2502de3165c83e5f92dad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <errno.h>

#include <libnetfilter_conntrack/libnetfilter_conntrack.h>

static int events = 0;
static int new, update, destroy;

static int event_cb(enum nf_conntrack_msg_type type,
		    struct nf_conntrack *ct,
		    void *data)
{
	if (type == NFCT_T_NEW)
		new++;
	if (type == NFCT_T_UPDATE)
		update++;
	else if (type == NFCT_T_DESTROY)
		destroy++;

	if ((++events % 10000) == 0)
		printf("%d events received (%d new, %d update, %d destroy)\n",
			events, new, update, destroy);

	return NFCT_CB_CONTINUE;
}

static void sighandler(int foo)
{
	printf("%d events received (%d new, %d update, %d destroy)\n",
		events, new, update, destroy);
	exit(EXIT_SUCCESS);
}

int main(void)
{
	int ret;
	struct nfct_handle *h;
	int on = 1;

	signal(SIGINT, sighandler);

	h = nfct_open(CONNTRACK, NFCT_ALL_CT_GROUPS);
	if (!h) {
		perror("nfct_open");
		return 0;
	}

	setsockopt(nfct_fd(h), SOL_NETLINK,
			NETLINK_BROADCAST_SEND_ERROR, &on, sizeof(int));
	setsockopt(nfct_fd(h), SOL_NETLINK,
			NETLINK_NO_ENOBUFS, &on, sizeof(int));

	nfct_callback_register(h, NFCT_T_ALL, event_cb, NULL);

	printf("TEST: waiting for events...\n");

	ret = nfct_catch(h);

	printf("TEST: conntrack events ");
	if (ret == -1)
		printf("(%d)(%s)\n", ret, strerror(errno));
	else
		printf("(OK)\n");

	nfct_close(h);

	ret == -1 ? exit(EXIT_FAILURE) : exit(EXIT_SUCCESS);
}