Add client and server config options IPv4Only and IPv6Only.
[radsecproxy.git] / radsecproxy.h
1 /*
2  * Copyright (C) 2006-2009 Stig Venaas <venaas@uninett.no>
3  * Copyright (C) 2010,2011,2012 NORDUnet A/S
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  */
9
10 #include <sys/time.h>
11 #include <stdint.h>
12 #include <pthread.h>
13 #include <regex.h>
14 #include "list.h"
15 #include "tlv11.h"
16 #include "radmsg.h"
17 #include "gconfig.h"
18
19 #define DEBUG_LEVEL 2
20
21 #define CONFIG_MAIN SYSCONFDIR"/radsecproxy.conf"
22
23 /* MAX_REQUESTS must be 256 due to Radius' 8 bit ID field */
24 #define MAX_REQUESTS 256
25 #define REQUEST_RETRY_INTERVAL 5
26 #define REQUEST_RETRY_COUNT 2
27 #define DUPLICATE_INTERVAL REQUEST_RETRY_INTERVAL * REQUEST_RETRY_COUNT
28 #define MAX_CERT_DEPTH 5
29 #define STATUS_SERVER_PERIOD 25
30 #define IDLE_TIMEOUT 300
31
32 /* 27262 is vendor DANTE Ltd. */
33 #define DEFAULT_TTL_ATTR "27262:1"
34
35 #define RAD_UDP 0
36 #define RAD_TLS 1
37 #define RAD_TCP 2
38 #define RAD_DTLS 3
39 #define RAD_PROTOCOUNT 4
40
41 enum rsp_fticks_reporting_type {
42     RSP_FTICKS_REPORTING_NONE = 0, /* Default.  */
43     RSP_FTICKS_REPORTING_BASIC,
44     RSP_FTICKS_REPORTING_FULL
45 };
46
47 enum rsp_fticks_mac_type {
48     RSP_FTICKS_MAC_STATIC = 0,
49     RSP_FTICKS_MAC_ORIGINAL,
50     RSP_FTICKS_MAC_VENDOR_HASHED,
51     RSP_FTICKS_MAC_VENDOR_KEY_HASHED, /* Default.  */
52     RSP_FTICKS_MAC_FULLY_HASHED,
53     RSP_FTICKS_MAC_FULLY_KEY_HASHED
54 };
55
56 struct options {
57     char *pidfile;
58     char *logdestination;
59     char *ftickssyslogfacility;
60     char *ttlattr;
61     uint32_t ttlattrtype[2];
62     uint8_t addttl;
63     uint8_t loglevel;
64     uint8_t loopprevention;
65     enum rsp_fticks_reporting_type fticks_reporting;
66     enum rsp_fticks_mac_type fticks_mac;
67     uint8_t *fticks_key;
68 };
69
70 struct commonprotoopts {
71     char **listenargs;
72     char *sourcearg;
73 };
74
75 struct request {
76     struct timeval created;
77     uint32_t refcount;
78     uint8_t *buf, *replybuf;
79     struct radmsg *msg;
80     struct client *from;
81     struct server *to;
82     char *origusername;
83     uint8_t rqid;
84     uint8_t rqauth[16];
85     uint8_t newid;
86     int udpsock; /* only for UDP */
87     uint16_t udpport; /* only for UDP */
88 };
89
90 /* requests that our client will send */
91 struct rqout {
92     pthread_mutex_t *lock;
93     struct request *rq;
94     uint8_t tries;
95     struct timeval expiry;
96 };
97
98 struct gqueue {
99     struct list *entries;
100     pthread_mutex_t mutex;
101     pthread_cond_t cond;
102 };
103
104 struct clsrvconf {
105     char *name;
106     uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
107     const struct protodefs *pdef;
108     char **hostsrc;
109     int hostaf;
110     char *portsrc;
111     struct list *hostports;
112     char *secret;
113     char *tls;
114     char *matchcertattr;
115     regex_t *certcnregex;
116     regex_t *certuriregex;
117     char *confrewritein;
118     char *confrewriteout;
119     char *confrewriteusername;
120     struct modattr *rewriteusername;
121     char *dynamiclookupcommand;
122     uint8_t statusserver;
123     uint8_t retryinterval;
124     uint8_t retrycount;
125     uint8_t dupinterval;
126     uint8_t certnamecheck;
127     uint8_t addttl;
128     uint8_t loopprevention;
129     struct rewrite *rewritein;
130     struct rewrite *rewriteout;
131     pthread_mutex_t *lock; /* only used for updating clients so far */
132     struct tls *tlsconf;
133     struct list *clients;
134     struct server *servers;
135     char *fticks_viscountry;
136     char *fticks_visinst;
137 };
138
139 #include "tlscommon.h"
140
141 struct client {
142     struct clsrvconf *conf;
143     int sock;
144     SSL *ssl;
145     struct request *rqs[MAX_REQUESTS];
146     struct gqueue *replyq;
147     struct gqueue *rbios; /* for dtls */
148     struct sockaddr *addr;
149     time_t expiry; /* for udp */
150 };
151
152 struct server {
153     struct clsrvconf *conf;
154     int sock;
155     SSL *ssl;
156     pthread_mutex_t lock;
157     pthread_t clientth;
158     uint8_t clientrdgone;
159     struct timeval lastconnecttry;
160     struct timeval lastreply;
161     uint8_t connectionok;
162     uint8_t lostrqs;
163     uint8_t dynstartup;
164     uint8_t dynfailing;
165     char *dynamiclookuparg;
166     int nextid;
167     struct timeval lastrcv;
168     struct rqout *requests;
169     uint8_t newrq;
170     pthread_mutex_t newrq_mutex;
171     pthread_cond_t newrq_cond;
172     struct gqueue *rbios; /* for dtls */
173 };
174
175 struct realm {
176     char *name;
177     char *message;
178     uint8_t accresp;
179     regex_t regex;
180     uint32_t refcount;
181     pthread_mutex_t mutex;
182     struct realm *parent;
183     struct list *subrealms;
184     struct list *srvconfs;
185     struct list *accsrvconfs;
186 };
187
188 struct modattr {
189     uint8_t t;
190     char *replacement;
191     regex_t *regex;
192 };
193
194 struct rewrite {
195     uint8_t *removeattrs;
196     uint32_t *removevendorattrs;
197     struct list *addattrs;
198     struct list *modattrs;
199 };
200
201 struct protodefs {
202     char *name;
203     char *secretdefault;
204     int socktype;
205     char *portdefault;
206     uint8_t retrycountdefault;
207     uint8_t retrycountmax;
208     uint8_t retryintervaldefault;
209     uint8_t retryintervalmax;
210     uint8_t duplicateintervaldefault;
211     void (*setprotoopts)(struct commonprotoopts *);
212     char **(*getlistenerargs)();
213     void *(*listener)(void*);
214     int (*connecter)(struct server *, struct timeval *, int, char *);
215     void *(*clientconnreader)(void*);
216     int (*clientradput)(struct server *, unsigned char *);
217     void (*addclient)(struct client *);
218     void (*addserverextra)(struct clsrvconf *);
219     void (*setsrcres)();
220     void (*initextra)();
221 };
222
223 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
224
225 #define ATTRTYPE(x) ((x)[0])
226 #define ATTRLEN(x) ((x)[1])
227 #define ATTRVAL(x) ((x) + 2)
228 #define ATTRVALLEN(x) ((x)[1] - 2)
229
230 struct clsrvconf *find_clconf(uint8_t type, struct sockaddr *addr, struct list_node **cur);
231 struct clsrvconf *find_srvconf(uint8_t type, struct sockaddr *addr, struct list_node **cur);
232 struct clsrvconf *find_clconf_type(uint8_t type, struct list_node **cur);
233 struct client *addclient(struct clsrvconf *conf, uint8_t lock);
234 void removelockedclient(struct client *client);
235 void removeclient(struct client *client);
236 struct gqueue *newqueue();
237 void freebios(struct gqueue *q);
238 struct request *newrequest();
239 void freerq(struct request *rq);
240 int radsrv(struct request *rq);
241 void replyh(struct server *server, unsigned char *buf);
242 struct addrinfo *resolve_hostport_addrinfo(uint8_t type, char *hostport);
243 uint8_t *radattr2ascii(struct tlv *attr);
244
245 /* Local Variables: */
246 /* c-file-style: "stroustrup" */
247 /* End: */