added tcp client support
[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 REQUEST_RETRY_INTERVAL 5
16 #define REQUEST_RETRY_COUNT 2
17 #define MAX_CERT_DEPTH 5
18 #define STATUS_SERVER_PERIOD 25
19 #define IDLE_TIMEOUT 300
20 #define RAD_Access_Request 1
21 #define RAD_Access_Accept 2
22 #define RAD_Access_Reject 3
23 #define RAD_Accounting_Request 4
24 #define RAD_Accounting_Response 5
25 #define RAD_Access_Challenge 11
26 #define RAD_Status_Server 12
27 #define RAD_Status_Client 13
28
29 #define RAD_UDP 0
30 #define RAD_TLS 1
31 #define RAD_TCP 2
32
33 #define RAD_Attr_User_Name 1
34 #define RAD_Attr_User_Password 2
35 #define RAD_Attr_Reply_Message 18
36 #define RAD_Attr_Vendor_Specific 26
37 #define RAD_Attr_Calling_Station_Id 31
38 #define RAD_Attr_Tunnel_Password 69
39 #define RAD_Attr_Message_Authenticator 80
40
41 #define RAD_VS_ATTR_MS_MPPE_Send_Key 16
42 #define RAD_VS_ATTR_MS_MPPE_Recv_Key 17
43
44 struct options {
45     char **listenudp;
46     char **listentcp;
47     char **listentls;
48     char **listenaccudp;
49     char *sourceudp;
50     char *sourcetcp;
51     char *sourcetls;
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     uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
92     const struct protodefs *pdef;
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 retryinterval;
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     int s; /* for tcp */
120     SSL *ssl;
121     struct replyq *replyq;
122 };
123
124 struct server {
125     struct clsrvconf *conf;
126     int sock;
127     SSL *ssl;
128     pthread_mutex_t lock;
129     pthread_t clientth;
130     uint8_t clientrdgone;
131     struct timeval lastconnecttry;
132     struct timeval lastreply;
133     uint8_t connectionok;
134     uint8_t lostrqs;
135     char *dynamiclookuparg;
136     int nextid;
137     struct request *requests;
138     uint8_t newrq;
139     pthread_mutex_t newrq_mutex;
140     pthread_cond_t newrq_cond;
141 };
142
143 struct realm {
144     char *name;
145     char *message;
146     uint8_t accresp;
147     regex_t regex;
148     pthread_mutex_t subrealms_mutex;
149     struct list *subrealms;
150     struct list *srvconfs;
151     struct list *accsrvconfs;
152 };
153
154 struct tls {
155     char *name;
156     SSL_CTX *ctx;
157 };
158
159 struct rewrite {
160     uint8_t *removeattrs;
161     uint32_t *removevendorattrs;
162 };
163
164 struct rewriteconf {
165     char *name;
166     struct rewrite *rewrite;
167 };
168
169 struct protodefs {
170     char *name;
171     char *secretdefault;
172     uint8_t socktype;
173     char *portdefault;
174     uint8_t retrycountdefault;
175     uint8_t retrycountmax;
176     uint8_t retryintervaldefault;
177     uint8_t retryintervalmax;
178     void *(*listener)(void*);
179     char **srcaddrport;
180     int (*connecter)(struct server *, struct timeval *, int, char *);
181     void *(*clientreader)(void*);
182     int (*clientradput)(struct server *, unsigned char *);
183 };
184
185 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
186
187 #define ATTRTYPE(x) ((x)[0])
188 #define ATTRLEN(x) ((x)[1])
189 #define ATTRVAL(x) ((x) + 2)
190 #define ATTRVALLEN(x) ((x)[1] - 2)
191
192 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
193                             sizeof(struct sockaddr_in) : \
194                             sizeof(struct sockaddr_in6))