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