finally basic dtls functionality in place
[libradsec.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 **listenaccudp;
50     char *sourceudp;
51     char *sourcetcp;
52     char *sourcetls;
53     char *logdestination;
54     uint8_t loglevel;
55     uint8_t loopprevention;
56 };
57
58 /* requests that our client will send */
59 struct request {
60     unsigned char *buf;
61     uint8_t tries;
62     uint8_t received;
63     struct timeval expiry;
64     struct client *from;
65     char *origusername;
66     uint8_t origid; /* used by servwr */
67     char origauth[16]; /* used by servwr */
68     struct sockaddr_storage fromsa; /* used by udpservwr */
69     int fromudpsock; /* used by udpservwr */
70 };
71
72 /* replies that a server will send */
73 struct reply {
74     unsigned char *buf;
75     struct sockaddr_storage tosa; /* used by udpservwr */
76     int toudpsock; /* used by udpservwr */
77 };
78
79 struct queue {
80     struct list *entries;
81     pthread_mutex_t mutex;
82     pthread_cond_t cond;
83 };
84
85 struct clsrvconf {
86     char *name;
87     uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
88     const struct protodefs *pdef;
89     char *host;
90     char *port;
91     char *secret;
92     char *tls;
93     char *matchcertattr;
94     regex_t *certcnregex;
95     regex_t *certuriregex;
96     char *confrewrite;
97     char *rewriteattr;
98     regex_t *rewriteattrregex;
99     char *rewriteattrreplacement;
100     char *dynamiclookupcommand;
101     uint8_t statusserver;
102     uint8_t retryinterval;
103     uint8_t retrycount;
104     uint8_t certnamecheck;
105     SSL_CTX *ssl_ctx;
106     struct rewrite *rewrite;
107     struct addrinfo *addrinfo;
108     uint8_t prefixlen;
109     struct list *clients;
110     struct server *servers;
111 };
112
113 struct client {
114     struct clsrvconf *conf;
115     int sock; /* for tcp/dtls */
116     SSL *ssl;
117     struct queue *replyq;
118     struct queue *rbios; /* for dtls */
119     struct sockaddr_storage addr; /* for dtls */
120 };
121
122 struct server {
123     struct clsrvconf *conf;
124     int sock;
125     SSL *ssl;
126     pthread_mutex_t lock;
127     pthread_t clientth;
128     uint8_t clientrdgone;
129     struct timeval lastconnecttry;
130     struct timeval lastreply;
131     uint8_t connectionok;
132     uint8_t lostrqs;
133     char *dynamiclookuparg;
134     int nextid;
135     struct timeval lastrcv;
136     struct request *requests;
137     uint8_t newrq;
138     pthread_mutex_t newrq_mutex;
139     pthread_cond_t newrq_cond;
140     struct queue *rbios; /* for dtls */
141 };
142
143 struct realm {
144     char *name;
145     char *message;
146     uint8_t accresp;
147     regex_t regex;
148     pthread_mutex_t subrealms_mutex;
149     struct list *subrealms;
150     struct list *srvconfs;
151     struct list *accsrvconfs;
152 };
153
154 struct tls {
155     char *name;
156     char *cacertfile;
157     char *cacertpath;
158     char *certfile;
159     char *certkeyfile;
160     char *certkeypwd;
161     uint8_t crlcheck;
162     SSL_CTX *tlsctx;
163     SSL_CTX *dtlsctx;
164 };
165
166 struct rewrite {
167     uint8_t *removeattrs;
168     uint32_t *removevendorattrs;
169 };
170
171 struct rewriteconf {
172     char *name;
173     struct rewrite *rewrite;
174 };
175
176 struct protodefs {
177     char *name;
178     char *secretdefault;
179     uint8_t socktype;
180     char *portdefault;
181     uint8_t retrycountdefault;
182     uint8_t retrycountmax;
183     uint8_t retryintervaldefault;
184     uint8_t retryintervalmax;
185     void *(*listener)(void*);
186     char **srcaddrport;
187     int (*connecter)(struct server *, struct timeval *, int, char *);
188     void *(*clientreader)(void*);
189     int (*clientradput)(struct server *, unsigned char *);
190 };
191
192 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
193
194 #define ATTRTYPE(x) ((x)[0])
195 #define ATTRLEN(x) ((x)[1])
196 #define ATTRVAL(x) ((x) + 2)
197 #define ATTRVALLEN(x) ((x)[1] - 2)
198
199 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
200                             sizeof(struct sockaddr_in) : \
201                             sizeof(struct sockaddr_in6))