-
Notifications
You must be signed in to change notification settings - Fork 11
/
nfq_common.c
211 lines (176 loc) · 4.98 KB
/
nfq_common.c
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#include <arpa/inet.h>
#include <linux/netfilter.h>
#include <linux/ip.h>
#include <linux/socket.h>
#include <stdio.h>
#include <stdlib.h>
#include "exception.h"
#include "nfq.h"
#include "nfq_common.h"
#include "nfq_version.h"
const char * nfq_bindings_version(void)
{
return NFQ_BINDINGS_VERSION;
}
int queue_open(struct queue *self)
{
self->_h = nfq_open();
self->_qh = NULL;
return (self->_h != NULL);
}
void queue_close(struct queue *self)
{
nfq_close(self->_h);
self->_qh = NULL;
self->_h = NULL;
self->_cb = NULL;
}
int queue_bind(struct queue *self, int af_family)
{
/* Errors in nfq_bind_pf are non-fatal ...
* This function just tells the kernel that nfnetlink_queue is
* the chosen module to queue packets to userspace.
*/
nfq_bind_pf(self->_h, af_family);
return 0;
}
int queue_unbind(struct queue *self, int af_family)
{
if (nfq_unbind_pf(self->_h, af_family)) {
throw_exception("error during nfq_unbind_pf()");
return -1;
}
return 0;
}
int queue_create_queue(struct queue *self, int queue_num)
{
if (self->_cb == NULL) {
throw_exception("Error: no callback set");
return -1;
}
self->_qh = nfq_create_queue(self->_h, queue_num, &swig_nfq_callback, (void*)self->_cb);
/*printf("callback argument: %p\n",(void*)self->_cb);*/
if (self->_qh == NULL) {
throw_exception("error during nfq_create_queue()");
return -1;
}
self->_mode_set = 0;
return 0;
}
int queue_fast_open(struct queue *self, int queue_num, int af_family)
{
int ret;
if (self->_cb == NULL) {
throw_exception("Error: no callback set");
return -1;
}
ret = queue_open(self);
if (!ret)
return -1;
queue_unbind(self, af_family);
ret = queue_bind(self, af_family);
if (ret < 0) {
queue_close(self);
return -1;
}
ret = queue_create_queue(self,queue_num);
if (ret < 0) {
queue_unbind(self, af_family);
queue_close(self);
return -1;
}
return 0;
}
int queue_set_queue_maxlen(struct queue *self, int maxlen)
{
int ret;
ret = nfq_set_queue_maxlen(self->_qh, maxlen);
if (ret < 0) {
throw_exception("error during nfq_set_queue_maxlen()\n");
}
return ret;
}
int queue_get_fd(struct queue *self)
{
if (self->_h == NULL) {
throw_exception("queue is not open");
return -1;
}
return nfq_fd(self->_h);
}
int queue_set_mode(struct queue *self, int mode)
{
if (self->_qh == NULL) {
throw_exception("queue is not created");
return -1;
}
if (nfq_set_mode(self->_qh, mode, 0xffff) < 0) {
throw_exception("can't set queue mode");
return -1;
}
self->_mode_set = 1;
return 0;
}
int _process_loop(struct queue *self, int fd, int flags, int max_count)
{
int rv;
char buf[65535];
int count;
count = 0;
while ((rv = recv(fd, buf, sizeof(buf), flags)) >= 0) {
nfq_handle_packet(self->_h, buf, rv);
count++;
if (max_count > 0 && count >= max_count) {
break;
}
}
return count;
}
int queue_process_pending(struct queue *self, int max_count)
{
int fd;
if ((fd = queue_get_fd(self)) < 0) {
/* exception has been thrown by queue_get_fd */
return -1;
} else if ((!self->_mode_set)) {
if (queue_set_mode(self, NFQNL_COPY_PACKET) < 0) {
/* exception has been thrown by queue_set_mode */
return -1;
}
}
return _process_loop(self, fd, MSG_DONTWAIT, max_count);
}
int queue_try_run(struct queue *self)
{
int fd;
if ((fd = queue_get_fd(self)) < 0) {
/* exception has been thrown by queue_get_fd */
return -1;
} else if ((!self->_mode_set)) {
if (queue_set_mode(self, NFQNL_COPY_PACKET) < 0) {
/* exception has been thrown by queue_set_mode */
return -1;
}
}
return _process_loop(self, fd, 0, -1);
}
int payload_get_nfmark(struct payload *self)
{
return nfq_get_nfmark(self->nfad);
}
int payload_get_indev(struct payload *self)
{
return nfq_get_indev(self->nfad);
}
int payload_get_outdev(struct payload *self)
{
return nfq_get_outdev(self->nfad);
}
int payload_get_physindev(struct payload *self)
{
return nfq_get_physindev(self->nfad);
}
int payload_get_physoutdev(struct payload *self)
{
return nfq_get_physoutdev(self->nfad);
}