2594f12c7763f151580cf598b82f5fad2d9ea728
[distributedratelimiting.git] / drl / raterouter.h
1 /* See the DRL-LICENSE file for this file's software license. */
2
3 #ifndef _RATEROUTER_H_
4 #define _RATEROUTER_H_
5
6 #define _XOPEN_SOURCE 600 /* for pthread_rwlock_t */
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <netinet/in_systm.h>
11 #include <netinet/in.h>
12 #include <netinet/ip.h>
13 #include <netinet/tcp.h>
14 #include <netinet/udp.h>
15
16 #include <sys/types.h>
17 #include <sys/socket.h>
18 #include <sys/time.h>
19 #include <sys/un.h>
20 #include <sys/poll.h>
21
22 #include <arpa/inet.h>
23 #include <time.h>
24 #include <signal.h>
25 #include <math.h>
26 #include <limits.h>
27
28 #include <pthread.h>
29 #include <unistd.h>
30
31 #include <netdb.h>
32 #include <ifaddrs.h>  /* defines getifaddrs */
33 #include <string.h>
34
35 enum policies { POLICY_GRD = 1, POLICY_FPS = 2 };
36 enum commfabrics { COMM_MESH = 1, COMM_GOSSIP = 2 };
37 enum accountings { ACT_STANDARD = 1, ACT_SAMPLEHOLD = 2, ACT_SIMPLE = 3, ACT_MULTIPLE = 4};
38 enum dampenings { DAMPEN_NONE = 0, DAMPEN_TEST = 1, DAMPEN_FAILED = 2, DAMPEN_PASSED = 3, DAMPEN_SKIP = 4};
39
40 /* The comm library also has definitions for comfabrics. This prevents us
41  * from defining them twice. */
42 #define COMM_DEFS
43
44 /* global constants */
45 #define IDENT_CLEAN_INTERVAL 5 /* in seconds */
46
47 #define LIMITER_LISTEN_PORT 9001
48
49 /**
50  * The weight percentage increase that must occur before FPS does increase
51  * dampening.
52  */
53 #define LARGE_INCREASE_PERCENTAGE (0.05)
54
55 /**
56  * Below this rate, a limiter is basically treated as idle, and its limit is
57  * raised to allow for increases should the limiter suddenly become active.
58  *
59  * This is used for FPS only.  See estimate.c
60  */
61 #define FLOW_START_THRESHOLD (6000)
62
63 #define CLOSE_ENOUGH (0.99)
64
65 /**
66  * All fields come from the ip protocol header.
67  *
68  * 1 byte for the protocol.
69  * 4 bytes for the source ip.
70  * 4 bytes for the destination ip.
71  * 2 bytes for the source port.
72  * 2 bytes for the destination port.
73  *
74  * 4+4+2+2+1 = 13.
75  */
76 #define FLOWKEYSIZE (13)
77
78 /* Causes each identity to track every flow in two tables.  One table is as
79  * specified in the config file.  The second is a standard table with
80  * "perfect" accounting so that we can compare the two.  Turn this off for 
81  * any type of production setting. */
82 #define SHADOW_ACCTING
83
84 /* forward declare some structs */
85 struct limiter;
86 struct identity;
87
88 /* prototypes for threaded processing DRL model */
89 void handle_estimation(void *arg);
90
91 #endif