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