e6de5e91868aea833ad5fa208f92d689a618070a
[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 };
38
39 /* The comm library also has definitions for comfabrics. This prevents us
40  * from defining them twice. */
41 #define COMM_DEFS
42
43 /* global constants */
44 #define IDENT_CLEAN_INTERVAL 5 /* in seconds */
45 #define LIMITER_LISTEN_PORT 9001
46
47 /**
48  * The weight percentage increase that must occur before FPS does increase
49  * dampening.
50  */
51 #define LARGE_INCREASE_PERCENTAGE (0.05)
52
53 /**
54  * Below this rate, a limiter is basically treated as idle, and its limit is
55  * raised to allow for increases should the limiter suddenly become active.
56  *
57  * This is used for FPS only.  See estimate.c
58  */
59 #define FLOW_START_THRESHOLD (6000)
60
61 #define CLOSE_ENOUGH (0.99)
62
63 /**
64  * All fields come from the ip protocol header.
65  *
66  * 1 byte for the protocol.
67  * 4 bytes for the source ip.
68  * 4 bytes for the destination ip.
69  * 2 bytes for the source port.
70  * 2 bytes for the destination port.
71  *
72  * 4+4+2+2+1 = 13.
73  */
74 #define FLOWKEYSIZE (13)
75
76 /* forward declare some structs */
77 struct limiter;
78 struct identity;
79
80 /* prototypes for threaded processing DRL model */
81 void handle_estimation(void *arg);
82
83 #endif