summaryrefslogtreecommitdiffstats
path: root/examples/nfct-mnl-set-label.c
blob: c52b267108a6d2f42f9d646abd5ac7a4cc053202 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#include <libmnl/libmnl.h>
#include <libnetfilter_conntrack/libnetfilter_conntrack.h>

struct callback_args {
	struct mnl_socket *nl;
	unsigned int seq;
	int bit;
};

static void set_label(struct nf_conntrack *ct, struct callback_args *cbargs)
{
	struct nfct_bitmask *b = (void *) nfct_get_attr(ct, ATTR_CONNLABELS);
	int bit = cbargs->bit;
	char buf[MNL_SOCKET_BUFFER_SIZE];
	struct nlmsghdr *nlh;
	struct nfgenmsg *nfh;

	if (b) {
		if (bit < 0)
			b = nfct_bitmask_new(0);
		else if (nfct_bitmask_test_bit(b, bit))
			return;
	} else {
		b = nfct_bitmask_new(0);
	}

	if (!b)
		return;
	if (bit >= 0)
		nfct_bitmask_set_bit(b, bit);
	nfct_set_attr(ct, ATTR_CONNLABELS, b);

	if (bit >= 0) {
		b = nfct_bitmask_new(bit);
		if (b) {
			nfct_bitmask_set_bit(b, bit);
			nfct_set_attr(ct, ATTR_CONNLABELS_MASK, b);
		}
	}

	cbargs->seq++;

	nlh = mnl_nlmsg_put_header(buf);
	nlh->nlmsg_type = (NFNL_SUBSYS_CTNETLINK << 8) | IPCTNL_MSG_CT_NEW;
	nlh->nlmsg_flags = NLM_F_REQUEST|NLM_F_CREATE;
	nlh->nlmsg_seq = cbargs->seq;

	nfh = mnl_nlmsg_put_extra_header(nlh, sizeof(struct nfgenmsg));
	nfh->nfgen_family = nfct_get_attr_u8(ct, ATTR_L3PROTO);
	nfh->version = NFNETLINK_V0;
	nfh->res_id = 0;

	nfct_nlmsg_build(nlh, ct);

	if (mnl_socket_sendto(cbargs->nl, nlh, nlh->nlmsg_len) < 0)
		perror("mnl_socket_sendto");
}

static int data_cb(const struct nlmsghdr *nlh, void *data)
{
	struct nf_conntrack *ct;
	char buf[4096];

	ct = nfct_new();
	if (ct == NULL)
		return MNL_CB_OK;

	nfct_nlmsg_parse(nlh, ct);

	nfct_snprintf(buf, sizeof(buf), ct, NFCT_T_UNKNOWN, NFCT_O_DEFAULT, 0);
	printf("%s\n", buf);

	set_label(ct, data);

	nfct_destroy(ct);

	return MNL_CB_OK;
}

static void show_labels(struct nfct_labelmap *l)
{
	unsigned int i = 0;
	const char *name;

	if (l) {
		fputs("usage: program label, configured labels are:\n", stderr);
		while ((name = nfct_labelmap_get_name(l, i))) {
			if (*name)
				fprintf(stderr, "%s -> bit %d\n", name, i);
			i++;
		}
	} else {
		fputs("no labels configured, usage: program bit\n", stderr);
	}
	exit(1);
}

static struct mnl_socket *sock_nl_create(void)
{
	struct mnl_socket *nl;

	nl = mnl_socket_open(NETLINK_NETFILTER);
	if (nl == NULL) {
		perror("mnl_socket_open");
		exit(EXIT_FAILURE);
	}

	if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) {
		perror("mnl_socket_bind");
		exit(EXIT_FAILURE);
	}

	return nl;
}

int main(int argc, char *argv[])
{
	struct mnl_socket *nl;
	struct nlmsghdr *nlh;
	struct nfgenmsg *nfh;
	char buf[MNL_SOCKET_BUFFER_SIZE];
	unsigned int seq, portid;
	struct callback_args cbargs;
	int ret;
	struct nfct_labelmap *l = nfct_labelmap_new(NULL);

	if (argc < 2)
		show_labels(l);

	cbargs.bit = l ? nfct_labelmap_get_bit(l, argv[1]) : -1;

	if (cbargs.bit < 0) {
		cbargs.bit = atoi(argv[1]);
		if (cbargs.bit == 0 && argv[1][0] != '0')
			show_labels(l);
	}

	if (cbargs.bit < 0)
		puts("will clear all labels");
	else
		printf("will set label bit %d\n", cbargs.bit);

	nl = sock_nl_create();
	portid = mnl_socket_get_portid(nl);

	nlh = mnl_nlmsg_put_header(buf);
	nlh->nlmsg_type = (NFNL_SUBSYS_CTNETLINK << 8) | IPCTNL_MSG_CT_GET;
	nlh->nlmsg_flags = NLM_F_REQUEST|NLM_F_DUMP;
	nlh->nlmsg_seq = seq = time(NULL);

	nfh = mnl_nlmsg_put_extra_header(nlh, sizeof(struct nfgenmsg));
	nfh->nfgen_family = AF_UNSPEC;
	nfh->version = NFNETLINK_V0;
	nfh->res_id = 0;


	ret = mnl_socket_sendto(nl, nlh, nlh->nlmsg_len);
	if (ret == -1) {
		perror("mnl_socket_sendto");
		exit(EXIT_FAILURE);
	}

	ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));


	cbargs.nl = sock_nl_create();
	cbargs.seq = seq;

	while (ret > 0) {
		ret = mnl_cb_run(buf, ret, seq, portid, data_cb, &cbargs);
		if (ret <= MNL_CB_STOP)
			break;
		ret = mnl_socket_recvfrom(nl, buf, sizeof(buf));
	}
	if (ret == -1) {
		perror("mnl_socket_recvfrom");
		exit(EXIT_FAILURE);
	}

	if (l)
		nfct_labelmap_destroy(l);
	mnl_socket_close(nl);

	return 0;
}