separated dtls code from udp, using same port as radsec
[radsecproxy.git] / radsecproxy.h
1 /*
2  * Copyright (C) 2006-2008 Stig Venaas <venaas@uninett.no>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  */
8
9 #define DEBUG_LEVEL 3
10
11 #define CONFIG_MAIN "/etc/radsecproxy.conf"
12
13 /* MAX_REQUESTS must be 256 due to Radius' 8 bit ID field */
14 #define MAX_REQUESTS 256
15 #define REQUEST_RETRY_INTERVAL 5
16 #define REQUEST_RETRY_COUNT 2
17 #define MAX_CERT_DEPTH 5
18 #define STATUS_SERVER_PERIOD 25
19 #define IDLE_TIMEOUT 300
20 #define RAD_Access_Request 1
21 #define RAD_Access_Accept 2
22 #define RAD_Access_Reject 3
23 #define RAD_Accounting_Request 4
24 #define RAD_Accounting_Response 5
25 #define RAD_Access_Challenge 11
26 #define RAD_Status_Server 12
27 #define RAD_Status_Client 13
28
29 #define RAD_UDP 0
30 #define RAD_TLS 1
31 #define RAD_TCP 2
32 #define RAD_DTLS 3
33
34 #define RAD_Attr_User_Name 1
35 #define RAD_Attr_User_Password 2
36 #define RAD_Attr_Reply_Message 18
37 #define RAD_Attr_Vendor_Specific 26
38 #define RAD_Attr_Calling_Station_Id 31
39 #define RAD_Attr_Tunnel_Password 69
40 #define RAD_Attr_Message_Authenticator 80
41
42 #define RAD_VS_ATTR_MS_MPPE_Send_Key 16
43 #define RAD_VS_ATTR_MS_MPPE_Recv_Key 17
44
45 struct options {
46     char **listenudp;
47     char **listentcp;
48     char **listentls;
49     char **listendtls;
50     char **listenaccudp;
51     char *sourceudp;
52     char *sourcetcp;
53     char *sourcetls;
54     char *sourcedtls;
55     char *logdestination;
56     uint8_t loglevel;
57     uint8_t loopprevention;
58 };
59
60 /* requests that our client will send */
61 struct request {
62     unsigned char *buf;
63     uint8_t tries;
64     uint8_t received;
65     struct timeval expiry;
66     struct client *from;
67     char *origusername;
68     uint8_t origid; /* used by servwr */
69     char origauth[16]; /* used by servwr */
70     struct sockaddr_storage fromsa; /* used by udpservwr */
71     int fromudpsock; /* used by udpservwr */
72 };
73
74 /* replies that a server will send */
75 struct reply {
76     unsigned char *buf;
77     struct sockaddr_storage tosa; /* used by udpservwr */
78     int toudpsock; /* used by udpservwr */
79 };
80
81 struct queue {
82     struct list *entries;
83     pthread_mutex_t mutex;
84     pthread_cond_t cond;
85 };
86
87 struct clsrvconf {
88     char *name;
89     uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
90     const struct protodefs *pdef;
91     char *host;
92     char *port;
93     char *secret;
94     char *tls;
95     char *matchcertattr;
96     regex_t *certcnregex;
97     regex_t *certuriregex;
98     char *confrewrite;
99     char *rewriteattr;
100     regex_t *rewriteattrregex;
101     char *rewriteattrreplacement;
102     char *dynamiclookupcommand;
103     uint8_t statusserver;
104     uint8_t retryinterval;
105     uint8_t retrycount;
106     uint8_t certnamecheck;
107     SSL_CTX *ssl_ctx;
108     struct rewrite *rewrite;
109     struct addrinfo *addrinfo;
110     uint8_t prefixlen;
111     struct list *clients;
112     struct server *servers;
113 };
114
115 struct client {
116     struct clsrvconf *conf;
117     int sock; /* for tcp/dtls */
118     SSL *ssl;
119     struct queue *replyq;
120     struct queue *rbios; /* for dtls */
121     struct sockaddr_storage addr; /* for dtls */
122 };
123
124 struct server {
125     struct clsrvconf *conf;
126     int sock;
127     SSL *ssl;
128     pthread_mutex_t lock;
129     pthread_t clientth;
130     uint8_t clientrdgone;
131     struct timeval lastconnecttry;
132     struct timeval lastreply;
133     uint8_t connectionok;
134     uint8_t lostrqs;
135     char *dynamiclookuparg;
136     int nextid;
137     struct timeval lastrcv;
138     struct request *requests;
139     uint8_t newrq;
140     pthread_mutex_t newrq_mutex;
141     pthread_cond_t newrq_cond;
142     struct queue *rbios; /* for dtls */
143 };
144
145 struct realm {
146     char *name;
147     char *message;
148     uint8_t accresp;
149     regex_t regex;
150     pthread_mutex_t subrealms_mutex;
151     struct list *subrealms;
152     struct list *srvconfs;
153     struct list *accsrvconfs;
154 };
155
156 struct tls {
157     char *name;
158     char *cacertfile;
159     char *cacertpath;
160     char *certfile;
161     char *certkeyfile;
162     char *certkeypwd;
163     uint8_t crlcheck;
164     SSL_CTX *tlsctx;
165     SSL_CTX *dtlsctx;
166 };
167
168 struct rewrite {
169     uint8_t *removeattrs;
170     uint32_t *removevendorattrs;
171 };
172
173 struct rewriteconf {
174     char *name;
175     struct rewrite *rewrite;
176 };
177
178 struct protodefs {
179     char *name;
180     char *secretdefault;
181     uint8_t socktype;
182     char *portdefault;
183     uint8_t retrycountdefault;
184     uint8_t retrycountmax;
185     uint8_t retryintervaldefault;
186     uint8_t retryintervalmax;
187     void *(*listener)(void*);
188     char **srcaddrport;
189     int (*connecter)(struct server *, struct timeval *, int, char *);
190     void *(*clientreader)(void*);
191     int (*clientradput)(struct server *, unsigned char *);
192 };
193
194 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
195
196 #define ATTRTYPE(x) ((x)[0])
197 #define ATTRLEN(x) ((x)[1])
198 #define ATTRVAL(x) ((x) + 2)
199 #define ATTRVALLEN(x) ((x)[1] - 2)
200
201 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
202                             sizeof(struct sockaddr_in) : \
203                             sizeof(struct sockaddr_in6))