making accounting listener like normal, less code
[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 clsrvconf {
85     char *name;
86     uint8_t type; /* RAD_UDP/RAD_TLS/RAD_TCP */
87     const struct protodefs *pdef;
88     char *host;
89     char *port;
90     char *secret;
91     char *tls;
92     char *matchcertattr;
93     regex_t *certcnregex;
94     regex_t *certuriregex;
95     char *confrewrite;
96     char *rewriteattr;
97     regex_t *rewriteattrregex;
98     char *rewriteattrreplacement;
99     char *dynamiclookupcommand;
100     uint8_t statusserver;
101     uint8_t retryinterval;
102     uint8_t retrycount;
103     uint8_t certnamecheck;
104     SSL_CTX *ssl_ctx;
105     struct rewrite *rewrite;
106     struct addrinfo *addrinfo;
107     uint8_t prefixlen;
108     struct list *clients;
109     struct server *servers;
110 };
111
112 struct client {
113     struct clsrvconf *conf;
114     int s; /* for tcp */
115     SSL *ssl;
116     struct replyq *replyq;
117 };
118
119 struct server {
120     struct clsrvconf *conf;
121     int sock;
122     SSL *ssl;
123     pthread_mutex_t lock;
124     pthread_t clientth;
125     uint8_t clientrdgone;
126     struct timeval lastconnecttry;
127     struct timeval lastreply;
128     uint8_t connectionok;
129     uint8_t lostrqs;
130     char *dynamiclookuparg;
131     int nextid;
132     struct request *requests;
133     uint8_t newrq;
134     pthread_mutex_t newrq_mutex;
135     pthread_cond_t newrq_cond;
136 };
137
138 struct realm {
139     char *name;
140     char *message;
141     uint8_t accresp;
142     regex_t regex;
143     pthread_mutex_t subrealms_mutex;
144     struct list *subrealms;
145     struct list *srvconfs;
146     struct list *accsrvconfs;
147 };
148
149 struct tls {
150     char *name;
151     SSL_CTX *ctx;
152 };
153
154 struct rewrite {
155     uint8_t *removeattrs;
156     uint32_t *removevendorattrs;
157 };
158
159 struct rewriteconf {
160     char *name;
161     struct rewrite *rewrite;
162 };
163
164 struct protodefs {
165     char *name;
166     char *secretdefault;
167     uint8_t socktype;
168     char *portdefault;
169     uint8_t retrycountdefault;
170     uint8_t retrycountmax;
171     uint8_t retryintervaldefault;
172     uint8_t retryintervalmax;
173     void *(*listener)(void*);
174     char **srcaddrport;
175     int (*connecter)(struct server *, struct timeval *, int, char *);
176     void *(*clientreader)(void*);
177     int (*clientradput)(struct server *, unsigned char *);
178 };
179
180 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
181
182 #define ATTRTYPE(x) ((x)[0])
183 #define ATTRLEN(x) ((x)[1])
184 #define ATTRVAL(x) ((x) + 2)
185 #define ATTRVALLEN(x) ((x)[1] - 2)
186
187 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
188                             sizeof(struct sockaddr_in) : \
189                             sizeof(struct sockaddr_in6))