started on dtls support
[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 replyq {
80     struct list *replies;
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 s; /* for tcp */
116     SSL *ssl;
117     struct replyq *replyq;
118 };
119
120 struct server {
121     struct clsrvconf *conf;
122     int sock;
123     SSL *ssl;
124     pthread_mutex_t lock;
125     pthread_t clientth;
126     uint8_t clientrdgone;
127     struct timeval lastconnecttry;
128     struct timeval lastreply;
129     uint8_t connectionok;
130     uint8_t lostrqs;
131     char *dynamiclookuparg;
132     int nextid;
133     struct timeval lastrcv;
134     struct request *requests;
135     uint8_t newrq;
136     pthread_mutex_t newrq_mutex;
137     pthread_cond_t newrq_cond;
138 };
139
140 struct realm {
141     char *name;
142     char *message;
143     uint8_t accresp;
144     regex_t regex;
145     pthread_mutex_t subrealms_mutex;
146     struct list *subrealms;
147     struct list *srvconfs;
148     struct list *accsrvconfs;
149 };
150
151 struct tls {
152     char *name;
153     SSL_CTX *ctx;
154 };
155
156 struct rewrite {
157     uint8_t *removeattrs;
158     uint32_t *removevendorattrs;
159 };
160
161 struct rewriteconf {
162     char *name;
163     struct rewrite *rewrite;
164 };
165
166 struct protodefs {
167     char *name;
168     char *secretdefault;
169     uint8_t socktype;
170     char *portdefault;
171     uint8_t retrycountdefault;
172     uint8_t retrycountmax;
173     uint8_t retryintervaldefault;
174     uint8_t retryintervalmax;
175     void *(*listener)(void*);
176     char **srcaddrport;
177     int (*connecter)(struct server *, struct timeval *, int, char *);
178     void *(*clientreader)(void*);
179     int (*clientradput)(struct server *, unsigned char *);
180 };
181
182 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
183
184 #define ATTRTYPE(x) ((x)[0])
185 #define ATTRLEN(x) ((x)[1])
186 #define ATTRVAL(x) ((x) + 2)
187 #define ATTRVALLEN(x) ((x)[1] - 2)
188
189 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
190                             sizeof(struct sockaddr_in) : \
191                             sizeof(struct sockaddr_in6))