cleaning up code
[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 #include "tlv11.h"
10 #include "radmsg.h"
11
12 #define DEBUG_LEVEL 3
13
14 #define CONFIG_MAIN "/etc/radsecproxy.conf"
15
16 /* MAX_REQUESTS must be 256 due to Radius' 8 bit ID field */
17 #define MAX_REQUESTS 256
18 #define REQUEST_RETRY_INTERVAL 5
19 #define REQUEST_RETRY_COUNT 2
20 #define DUPLICATE_INTERVAL REQUEST_RETRY_INTERVAL * REQUEST_RETRY_COUNT
21 #define MAX_CERT_DEPTH 5
22 #define STATUS_SERVER_PERIOD 25
23 #define IDLE_TIMEOUT 300
24
25 /* 27262 is vendor DANTE Ltd. */
26 #define DEFAULT_TTL_ATTR "27262:1"
27
28 #define RAD_UDP 0
29 #define RAD_TLS 1
30 #define RAD_TCP 2
31 #define RAD_DTLS 3
32 #define RAD_PROTOCOUNT 4
33
34 struct options {
35     char **listenargs[RAD_PROTOCOUNT];
36     char *sourcearg[RAD_PROTOCOUNT];
37     char *logdestination;
38     char *ttlattr;
39     uint32_t ttlattrtype[2];
40     uint8_t addttl;
41     uint8_t loglevel;
42     uint8_t loopprevention;
43 };
44
45 struct request {
46     struct timeval created;
47     uint32_t refcount;
48     uint8_t *buf, *replybuf;
49     struct radmsg *msg;
50     struct client *from;
51     struct server *to;
52     char *origusername;
53     uint8_t rqid;
54     uint8_t rqauth[16];
55     uint8_t newid;
56     int udpsock; /* only for UDP */
57     uint16_t udpport; /* only for UDP */
58 };
59
60 /* requests that our client will send */
61 struct rqout {
62     pthread_mutex_t *lock;
63     struct request *rq;
64     uint8_t tries;
65     struct timeval expiry;
66 };
67
68 struct queue {
69     struct list *entries;
70     pthread_mutex_t mutex;
71     pthread_cond_t cond;
72 };
73
74 struct clsrvconf {
75     char *name;
76     uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
77     const struct protodefs *pdef;
78     char *host;
79     char *port;
80     char *secret;
81     char *tls;
82     char *matchcertattr;
83     regex_t *certcnregex;
84     regex_t *certuriregex;
85     char *confrewritein;
86     char *confrewriteout;
87     char *confrewriteusername;
88     struct modattr *rewriteusername;
89     char *dynamiclookupcommand;
90     uint8_t statusserver;
91     uint8_t retryinterval;
92     uint8_t retrycount;
93     uint8_t dupinterval;
94     uint8_t certnamecheck;
95     uint8_t addttl;
96     struct rewrite *rewritein;
97     struct rewrite *rewriteout;
98     struct addrinfo *addrinfo;
99     uint8_t prefixlen;
100     pthread_mutex_t *lock; /* only used for updating clients so far */
101     struct tls *tlsconf;
102     struct list *clients;
103     struct server *servers;
104 };
105
106 struct client {
107     struct clsrvconf *conf;
108     int sock;
109     SSL *ssl;
110     struct request *rqs[MAX_REQUESTS];
111     struct queue *replyq;
112     struct queue *rbios; /* for dtls */
113     struct sockaddr *addr;
114     time_t expiry; /* for udp */
115 };
116
117 struct server {
118     struct clsrvconf *conf;
119     int sock;
120     SSL *ssl;
121     pthread_mutex_t lock;
122     pthread_t clientth;
123     uint8_t clientrdgone;
124     struct timeval lastconnecttry;
125     struct timeval lastreply;
126     uint8_t connectionok;
127     uint8_t lostrqs;
128     char *dynamiclookuparg;
129     int nextid;
130     struct timeval lastrcv;
131     struct rqout *requests;
132     uint8_t newrq;
133     pthread_mutex_t newrq_mutex;
134     pthread_cond_t newrq_cond;
135     struct queue *rbios; /* for dtls */
136 };
137
138 struct realm {
139     char *name;
140     char *message;
141     uint8_t accresp;
142     regex_t regex;
143     uint32_t refcount;
144     pthread_mutex_t mutex;
145     struct realm *parent;
146     struct list *subrealms;
147     struct list *srvconfs;
148     struct list *accsrvconfs;
149 };
150
151 struct tls {
152     char *name;
153     char *cacertfile;
154     char *cacertpath;
155     char *certfile;
156     char *certkeyfile;
157     char *certkeypwd;
158     uint8_t crlcheck;
159     char **policyoids;
160     uint32_t cacheexpiry;
161     uint32_t tlsexpiry;
162     uint32_t dtlsexpiry;
163     X509_VERIFY_PARAM *vpm;
164     SSL_CTX *tlsctx;
165     SSL_CTX *dtlsctx;
166 };
167
168 struct modattr {
169     uint8_t t;
170     char *replacement;
171     regex_t *regex;
172 };
173
174 struct rewrite {
175     uint8_t *removeattrs;
176     uint32_t *removevendorattrs;
177     struct list *addattrs;
178     struct list *modattrs;
179 };
180
181 struct protodefs {
182     char *name;
183     char *secretdefault;
184     int socktype;
185     char *portdefault;
186     uint8_t retrycountdefault;
187     uint8_t retrycountmax;
188     uint8_t retryintervaldefault;
189     uint8_t retryintervalmax;
190     uint8_t duplicateintervaldefault;
191     void *(*listener)(void*);
192     int (*connecter)(struct server *, struct timeval *, int, char *);
193     void *(*clientconnreader)(void*);
194     int (*clientradput)(struct server *, unsigned char *);
195     void (*addclient)(struct client *);
196     void (*addserverextra)(struct clsrvconf *);
197     void (*setsrcres)(char *source);
198     void (*initextra)();
199 };
200
201 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
202
203 #define ATTRTYPE(x) ((x)[0])
204 #define ATTRLEN(x) ((x)[1])
205 #define ATTRVAL(x) ((x) + 2)
206 #define ATTRVALLEN(x) ((x)[1] - 2)
207
208 struct clsrvconf *find_clconf(uint8_t type, struct sockaddr *addr, struct list_node **cur);
209 struct clsrvconf *find_srvconf(uint8_t type, struct sockaddr *addr, struct list_node **cur);
210 struct clsrvconf *find_clconf_type(uint8_t type, struct list_node **cur);
211 struct client *addclient(struct clsrvconf *conf, uint8_t lock);
212 void removelockedclient(struct client *client);
213 void removeclient(struct client *client);
214 struct queue *newqueue();
215 void freebios(struct queue *q);
216 struct request *newrequest();
217 void freerq(struct request *rq);
218 int radsrv(struct request *rq);
219 X509 *verifytlscert(SSL *ssl);
220 int verifyconfcert(X509 *cert, struct clsrvconf *conf);
221 void replyh(struct server *server, unsigned char *buf);
222 SSL_CTX *tlsgetctx(uint8_t type, struct tls *t);
223 struct addrinfo *resolve_hostport_addrinfo(uint8_t type, char *hostport);