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