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