-
Notifications
You must be signed in to change notification settings - Fork 1
/
ratelimiting_user.c
373 lines (332 loc) · 9.85 KB
/
ratelimiting_user.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
// Copyright Contributors to the L3AF Project.
// SPDX-License-Identifier: GPL-2.0
/* Ratelimit incoming TCP connections with sliding window approach */
#include <stdio.h>
#include <linux/bpf.h>
#include <signal.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/resource.h>
#include <sys/time.h>
#include <getopt.h>
#include <net/if.h>
#include <time.h>
#include <string.h>
#include <limits.h>
#include <stdlib.h>
#include "bpf_load.h"
#include "bpf_util.h"
#include "bpf/libbpf.h"
#include "constants.h"
#include "log.h"
static const char *__doc__ =
"Ratelimit incoming TCP connections using XDP";
static int ifindex;
FILE *info;
static char prev_prog_map[1024];
static const struct option long_options[] = {
{"help", no_argument, NULL, 'h' },
{"iface", required_argument, NULL, 'i' },
{"rate", required_argument, NULL, 'r' },
{"ports", optional_argument, NULL, 'p' },
{"verbose", optional_argument, NULL, 'v' },
{"direction", optional_argument, NULL, 'd'},
{"map-name", optional_argument, NULL, 'm' },
{0, 0, NULL, 0 }
};
static void usage(char *argv[])
{
int i;
printf("\nDOCUMENTATION:\n%s\n", __doc__);
printf("\n");
printf(" Usage: %s (options-see-below)\n", argv[0]);
printf(" Listing options:\n");
for (i = 0; long_options[i].name != 0; i++)
{
printf(" --%-12s", long_options[i].name);
if (long_options[i].flag != NULL)
printf(" flag (internal value:%d)",
*long_options[i].flag);
else
printf(" short-option: -%c",
long_options[i].val);
printf("\n");
}
printf("\n");
}
/* Set log timestamps */
void log_timestamp(char *log_ts) {
struct timeval tv;
time_t nowtime;
struct tm *nowtm;
char tmbuf[TIMESTAMP_LEN];
gettimeofday(&tv, NULL);
nowtime = tv.tv_sec;
nowtm = localtime(&nowtime);
strftime(tmbuf, TIMESTAMP_LEN, "%Y-%m-%d %H:%M:%S", nowtm);
#ifdef DARWIN
snprintf(log_ts, TIMESTAMP_LEN, "%s.%06d", tmbuf, tv.tv_usec);
#else
snprintf(log_ts, TIMESTAMP_LEN, "%s.%06ld", tmbuf, tv.tv_usec);
#endif
}
static int get_length(const char *str)
{
int len = 0;
if (*str == '\0')
return 0;
while (str[len] != '\0')
len++;
return len;
}
/* Set the logging output to the default log file configured */
static FILE* set_logfile(void)
{
if (info != NULL){
return info;
}
info = fopen(DEFAULT_LOGFILE, "a");
if (info == NULL) {
fprintf(stderr, "could not open log file ");
return NULL;
}
fprintf(stderr, "writing errors/warnings/info/debug output to %s \n",
DEFAULT_LOGFILE);
return info;
}
// This method to unlink the program
static int xdp_unlink_bpf_chain(const char *map_filename) {
int ret = 0;
int key = 0;
int map_fd = bpf_obj_get(map_filename);
if (map_fd > 0) {
ret = bpf_map_delete_elem(map_fd, &key);
if (ret != 0) {
log_err("Failed to remove XDP program from the chain");
}
}
else {
log_err("Failed to fetch previous XDP program in the chain");
}
if (remove(xdp_rl_ingress_next_prog) < 0) {
log_warn("Failed to remove link to next XDP program in the chain");
}
return ret;
}
/* Unlink xdp kernel program on receiving KILL/INT signals */
static void signal_handler(int signal)
{
log_info("Received signal %d", signal);
int i = 0;
xdp_unlink_bpf_chain(prev_prog_map);
for(i=0; i<MAP_COUNT;i++) {
close(map_fd[i]);
}
if (info != NULL)
fclose(info);
exit(EXIT_SUCCESS);
}
/* Get monotonic clock time in ns */
static __u64 time_get_ns(void)
{
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
return ts.tv_sec * 1000000000ull + ts.tv_nsec;
}
/* Delete stale map entries(LRU) based on the timestamp at which
* a map element is created. */
static void delete_stale_entries(void)
{
log_debug("Deleting stale map entries periodically");
if (map_fd[1] < 0) {
log_info("Window map fd not found");
exit(EXIT_FAILURE);
}
__u64 first_key = 0, next_key = 0;
__u64 curr_time = time_get_ns();
log_debug("Current time is %llu", curr_time);
while (!bpf_map_get_next_key(map_fd[1], &first_key, &next_key))
{
if (next_key < (curr_time - buffer_time)) {
log_debug("Deleting stale map entry %llu", next_key);
if (bpf_map_delete_elem(map_fd[1], &next_key) != 0) {
log_info("Map element not found");
}
}
first_key = next_key;
}
}
static char* trim_space(char *str) {
char *end;
/* skip leading whitespace */
while (isspace(*str)) {
str = str + 1;
}
/* remove trailing whitespace */
end = str + get_length(str) - 1;
while (end > str && isspace(*end)) {
end = end - 1;
}
/* write null character */
*(end+1) = '\0';
return str;
}
static int strtoi(const char *str) {
char *endptr;
errno = 0;
long long_var = strtol(str, &endptr, 10);
//out of range, extra chars at end
if (errno == ERANGE || *endptr != '\0' || str == endptr) {
fprintf(stderr, "out of range");
}
return (int) long_var;
}
static void update_ports(char *ports)
{
char *ptr,*tmp ;
uint16_t port = 0;
uint8_t pval = 1;
tmp = strdup(ports);
while((ptr = strsep(&tmp, delim)) != NULL)
{
ptr = trim_space(ptr);
port = (uint16_t)(strtoi(ptr));
bpf_map_update_elem(map_fd[4], &port, &pval, 0);
}
free(tmp);
}
int main(int argc, char **argv)
{
int longindex = 0, rate = 0, opt;
int ret = EXIT_SUCCESS;
char bpf_obj_file[256];
char ports[2048];
verbosity = LOG_INFO;
struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
int len = 0;
snprintf(bpf_obj_file, sizeof(bpf_obj_file), "%s_kern.o", argv[0]);
memset(&ports, 0, 2048);
/* Parse commands line args */
while ((opt = getopt_long(argc, argv, "h", long_options, &longindex)) != -1)
{
switch (opt) {
case 'r':
rate = strtoi(optarg);
break;
case 'i':
ifindex = if_nametoindex(optarg);
break;
case 'v':
if(optarg) {
verbosity = strtoi(optarg);
}
break;
case 'm':
if(optarg) {
len = get_length(optarg);
strncpy(prev_prog_map, optarg, len);
prev_prog_map[len] = '\0';
}
break;
case 'p':
if(optarg) {
len = get_length(optarg);
strncpy(ports, optarg, len);
ports[len] = '\0';
}
break;
case 'd':
/* Not honoured as of now */
break;
case 'h':
default:
usage(argv);
return EXIT_FAILURE;
}
}
if (setrlimit(RLIMIT_MEMLOCK, &r)) {
perror("setrlimit(RLIMIT_MEMLOCK)");
exit(EXIT_FAILURE);
}
set_logfile();
__u64 ckey = 0, rkey = 0, dkey = 0, pkey = 0;
__u64 recv_count = 0, drop_count = 0;
if (load_bpf_file(bpf_obj_file)) {
log_err("Failed to load bpf program");
return 1;
}
if (!prog_fd[0]) {
log_err("Failed to get bpf program fd")
return 1;
}
/* Get the previous program's map fd in the chain */
int prev_prog_map_fd = bpf_obj_get(prev_prog_map);
if (prev_prog_map_fd < 0) {
log_err("Failed to fetch previous xdp function in the chain");
exit(EXIT_FAILURE);
}
/* Update current prog fd in the last prog map fd,
* so it can chain the current one */
if(bpf_map_update_elem(prev_prog_map_fd, &pkey, &(prog_fd[0]), 0)) {
log_err("Failed to update prog fd in the chain");
exit(EXIT_FAILURE);
}
/* closing map fd to avoid stale map */
close(prev_prog_map_fd);
int next_prog_map_fd = bpf_obj_get(xdp_rl_ingress_next_prog);
if (next_prog_map_fd < 0) {
log_info("Failed to fetch next prog map fd, creating one");
if (bpf_obj_pin(map_fd[5], xdp_rl_ingress_next_prog)) {
log_info("Failed to pin next prog fd map");
exit(EXIT_FAILURE);
}
}
/* Map FDs are sequenced same as they are defined in the bpf program ie.,
* map_fd[0] = rl_config_map, map_fd[1] = rl_window_map
* map_fd[2] = rl_recv_count_map, map_fd[3] = rl_drop_count_map
* map_fd[4] = rl_ports_map
* map_fd[5] = xdp_rl_ingress_next_prog*/
if (!map_fd[0]){
log_err("Failed to fetch config map");
return -1;
}
ret = bpf_map_update_elem(map_fd[0], &ckey, &rate, 0);
if (ret) {
perror("Failed to update config map");
return 1;
}
if (!map_fd[2]) {
log_err("Failed to fetch receive count map");
return -1;
}
ret = bpf_map_update_elem(map_fd[2], &rkey, &recv_count, 0);
if (ret) {
perror("Failed to update receive count map");
return 1;
}
if (!map_fd[3]) {
log_err("Failed to fetch drop count map");
return -1;
}
ret = bpf_map_update_elem(map_fd[3], &dkey, &drop_count, 0);
if (ret) {
perror("Failed to update drop count map");
return 1;
}
if (get_length(ports)) {
log_info("Configured port list is %s\n", ports);
update_ports(ports);
}
/* Handle signals and exit clean */
signal(SIGINT, signal_handler);
signal(SIGTERM, signal_handler);
signal(SIGHUP, signal_handler);
while(1)
{
sleep(60);
/* Keep deleting the stale map entries periodically *
* TODO Check if LRU maps can be used. */
delete_stale_entries();
fflush(info);
}
}