failover, use first configured server with connectionok and lowest loss of status...
[radsecproxy.git] / radsecproxy.h
1 /*
2  * Copyright (C) 2006, 2007 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 #define CONF_STR 1
42 #define CONF_CBK 2
43 #define CONF_MSTR 3
44
45 struct options {
46     char *listenudp;
47     char *listentcp;
48     char *logdestination;
49     uint8_t loglevel;
50 };
51
52 /* requests that our client will send */
53 struct request {
54     unsigned char *buf;
55     uint8_t tries;
56     uint8_t received;
57     struct timeval expiry;
58     struct client *from;
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 *certuriregex;
83     uint8_t statusserver;
84     SSL_CTX *ssl_ctx;
85     struct addrinfo *addrinfo;
86     uint8_t prefixlen;
87     struct list *clients;
88     struct server *servers;
89 };
90
91 struct client {
92     struct clsrvconf *conf;
93     SSL *ssl;
94     struct replyq *replyq;
95     struct client *next;
96 };
97
98 struct server {
99     struct clsrvconf *conf;
100     int sock;
101     SSL *ssl;
102     pthread_mutex_t lock;
103     pthread_t clientth;
104     struct timeval lastconnecttry;
105     uint8_t connectionok;
106     uint8_t loststatsrv;
107     int nextid;
108     struct request *requests;
109     uint8_t newrq;
110     pthread_mutex_t newrq_mutex;
111     pthread_cond_t newrq_cond;
112 };
113
114 struct realm {
115     char *name;
116     char *message;
117     regex_t regex;
118     struct list *srvconfs;
119 };
120
121 struct tls {
122     char *name;
123     SSL_CTX *ctx;
124     int count;
125 };
126
127 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
128
129 #define ATTRTYPE(x) ((x)[0])
130 #define ATTRLEN(x) ((x)[1])
131 #define ATTRVAL(x) ((x) + 2)
132 #define ATTRVALLEN(x) ((x)[1] - 2)
133
134 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
135                             sizeof(struct sockaddr_in) : \
136                             sizeof(struct sockaddr_in6))
137
138 char *stringcopy(char *s, int len);
139 char *addr2string(struct sockaddr *addr, socklen_t len);
140 void printfchars(char *prefixfmt, char *prefix, char *charfmt, char *chars, int len);
141 int bindport(int type, char *port);
142 int connectport(int type, char *host, char *port);