added idle timeout for dynamic servers and rewrote radtlsget. testing needed
[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 DEFAULT_TLS_SECRET "mysecret"
16 #define DEFAULT_UDP_PORT "1812"
17 #define DEFAULT_TLS_PORT "2083"
18 #define REQUEST_EXPIRY 20
19 #define REQUEST_RETRIES 3
20 #define MAX_CERT_DEPTH 5
21 #define STATUS_SERVER_PERIOD 25
22 #define IDLE_TIMEOUT 300
23 #define RAD_Access_Request 1
24 #define RAD_Access_Accept 2
25 #define RAD_Access_Reject 3
26 #define RAD_Accounting_Request 4
27 #define RAD_Accounting_Response 5
28 #define RAD_Access_Challenge 11
29 #define RAD_Status_Server 12
30 #define RAD_Status_Client 13
31
32 #define RAD_Attr_User_Name 1
33 #define RAD_Attr_User_Password 2
34 #define RAD_Attr_Reply_Message 18
35 #define RAD_Attr_Vendor_Specific 26
36 #define RAD_Attr_Calling_Station_Id 31
37 #define RAD_Attr_Tunnel_Password 69
38 #define RAD_Attr_Message_Authenticator 80
39
40 #define RAD_VS_ATTR_MS_MPPE_Send_Key 16
41 #define RAD_VS_ATTR_MS_MPPE_Recv_Key 17
42
43 struct options {
44     char *listenudp;
45     char *listentcp;
46     char *listenaccudp;
47     char *sourceudp;
48     char *sourcetcp;
49     char *logdestination;
50     uint8_t loglevel;
51     uint8_t loopprevention;
52 };
53
54 /* requests that our client will send */
55 struct request {
56     unsigned char *buf;
57     uint8_t tries;
58     uint8_t received;
59     struct timeval expiry;
60     struct client *from;
61     char *origusername;
62     uint8_t origid; /* used by servwr */
63     char origauth[16]; /* used by servwr */
64     struct sockaddr_storage fromsa; /* used by udpservwr */
65 };
66
67 /* replies that a server will send */
68 struct reply {
69     unsigned char *buf;
70     struct sockaddr_storage tosa; /* used by udpservwr */
71 };
72
73 struct replyq {
74     struct list *replies;
75     pthread_mutex_t mutex;
76     pthread_cond_t cond;
77 };
78
79 struct clsrvconf {
80     char *name;
81     char *conftype;
82     char type; /* U for UDP, T for TLS */
83     char *host;
84     char *port;
85     char *secret;
86     char *tls;
87     char *matchcertattr;
88     regex_t *certcnregex;
89     regex_t *certuriregex;
90     char *confrewrite;
91     char *rewriteattr;
92     regex_t *rewriteattrregex;
93     char *rewriteattrreplacement;
94     char *dynamiclookupcommand;
95     uint8_t statusserver;
96     uint8_t certnamecheck;
97     SSL_CTX *ssl_ctx;
98     struct rewrite *rewrite;
99     struct addrinfo *addrinfo;
100     uint8_t prefixlen;
101     struct list *clients;
102     struct server *servers;
103 };
104
105 struct client {
106     struct clsrvconf *conf;
107     SSL *ssl;
108     struct replyq *replyq;
109 };
110
111 struct server {
112     struct clsrvconf *conf;
113     int sock;
114     SSL *ssl;
115     pthread_mutex_t lock;
116     pthread_t clientth;
117     uint8_t clientrdgone;
118     struct timeval lastconnecttry;
119     struct timeval lastreply;
120     uint8_t connectionok;
121     uint8_t lostrqs;
122     char *dynamiclookuparg;
123     int nextid;
124     struct request *requests;
125     uint8_t newrq;
126     pthread_mutex_t newrq_mutex;
127     pthread_cond_t newrq_cond;
128 };
129
130 struct realm {
131     char *name;
132     char *message;
133     regex_t regex;
134     pthread_mutex_t subrealms_mutex;
135     struct list *subrealms;
136     struct list *srvconfs;
137     struct list *accsrvconfs;
138 };
139
140 struct tls {
141     char *name;
142     SSL_CTX *ctx;
143 };
144
145 struct rewrite {
146     uint8_t *removeattrs;
147     uint32_t *removevendorattrs;
148 };
149
150 struct rewriteconf {
151     char *name;
152     struct rewrite *rewrite;
153 };
154
155 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
156
157 #define ATTRTYPE(x) ((x)[0])
158 #define ATTRLEN(x) ((x)[1])
159 #define ATTRVAL(x) ((x) + 2)
160 #define ATTRVALLEN(x) ((x)[1] - 2)
161
162 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
163                             sizeof(struct sockaddr_in) : \
164                             sizeof(struct sockaddr_in6))