-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdamper.h
111 lines (87 loc) · 2.84 KB
/
damper.h
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
#ifndef damper_h_included
#define damper_h_included
#include <stdint.h>
#include <pthread.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <float.h>
#include <errno.h>
#include <unistd.h>
#include <math.h>
/* IP header */
struct damper_ip_header
{
uint8_t ip_vhl; /* version << 4 | header length >> 2 */
uint8_t ip_tos; /* type of service */
uint16_t ip_len; /* total length */
uint16_t ip_id; /* identification */
uint16_t ip_off; /* fragment offset field */
#define IP_RF 0x8000 /* reserved fragment flag */
#define IP_DF 0x4000 /* dont fragment flag */
#define IP_MF 0x2000 /* more fragments flag */
#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
uint8_t ip_ttl; /* time to live */
uint8_t ip_p; /* protocol */
uint16_t ip_sum; /* checksum */
struct in_addr ip_src,ip_dst; /* source and dest address */
} __attribute__((packed));
#define DAMPER_MAX_PACKET_SIZE 0xffff
struct mpacket
{
int id; /* ID assigned to packet by netfilter */
int size;
unsigned char packet[DAMPER_MAX_PACKET_SIZE];
};
struct stat_info
{
uint32_t packets_pass, octets_pass;
uint32_t packets_drop, octets_drop;
} __attribute__((packed));
struct userdata
{
int queue; /* nfqueue queue id */
struct nfq_q_handle *qh; /* queue handle */
int nfqlen; /* internal queue length */
struct mpacket *packets;
double *prioarray;
size_t qlen;
uint64_t limit;
pthread_t sender_tid, stat_tid;
pthread_mutex_t lock;
int stat; /* enable statistics */
int keep_stat; /* how many days keep statistics */
char statdir[PATH_MAX];
struct stat_info stat_info;
time_t curr_timestamp, old_timestamp;
FILE *statf; /* stats file */
int cday; /* current day for stats */
time_t daystart; /* second when current day was started */
int wchart; /* enable weights chart */
};
/* modules */
typedef void * (*module_init_func) (struct userdata *, size_t n);
typedef void (*module_conf_func) (void *, char *param1, char *param2);
typedef int (*module_postconf_func)(void *);
typedef double (*module_weight_func) (void *, char *packet, int packetlen, int mark);
typedef void (*module_done_func) (void *);
struct module_info
{
char *name;
module_init_func init;
module_conf_func conf;
module_postconf_func postconf;
module_weight_func weight;
module_done_func done;
double k; /* multiplicator */
void *mptr;
int enabled;
FILE *statf;
double stw; /* sum of weights per second */
double nw; /* number of weight samples per second */
};
extern struct module_info modules[];
#endif