rpf feature added
[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_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 struct options {
42     char *listenudp;
43     char *listentcp;
44     char *listenaccudp;
45     char *sourceudp;
46     char *sourcetcp;
47     char *logdestination;
48     uint8_t loglevel;
49     uint8_t rpf;
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     char *origusername;
60     uint8_t origid; /* used by servwr */
61     char origauth[16]; /* used by servwr */
62     struct sockaddr_storage fromsa; /* used by udpservwr */
63 };
64
65 /* replies that a server will send */
66 struct reply {
67     unsigned char *buf;
68     struct sockaddr_storage tosa; /* used by udpservwr */
69 };
70
71 struct replyq {
72     struct list *replies;
73     pthread_mutex_t mutex;
74     pthread_cond_t cond;
75 };
76
77 struct clsrvconf {
78     char *name;
79     char *conftype;
80     char type; /* U for UDP, T for TLS */
81     char *host;
82     char *port;
83     char *secret;
84     char *tls;
85     char *matchcertattr;
86     regex_t *certcnregex;
87     regex_t *certuriregex;
88     char *confrewrite;
89     char *rewriteattr;
90     regex_t *rewriteattrregex;
91     char *rewriteattrreplacement;
92     char *dynamiclookupcommand;
93     uint8_t statusserver;
94     uint8_t certnamecheck;
95     SSL_CTX *ssl_ctx;
96     struct rewrite *rewrite;
97     struct addrinfo *addrinfo;
98     uint8_t prefixlen;
99     struct list *clients;
100     struct server *servers;
101 };
102
103 struct client {
104     struct clsrvconf *conf;
105     SSL *ssl;
106     struct replyq *replyq;
107 };
108
109 struct server {
110     struct clsrvconf *conf;
111     int sock;
112     SSL *ssl;
113     pthread_mutex_t lock;
114     pthread_t clientth;
115     struct timeval lastconnecttry;
116     uint8_t connectionok;
117     uint8_t loststatsrv;
118     char *dynamiclookuparg;
119     int nextid;
120     struct request *requests;
121     uint8_t newrq;
122     pthread_mutex_t newrq_mutex;
123     pthread_cond_t newrq_cond;
124 };
125
126 struct realm {
127     char *name;
128     char *message;
129     regex_t regex;
130     pthread_mutex_t subrealms_mutex;
131     struct list *subrealms;
132     struct list *srvconfs;
133     struct list *accsrvconfs;
134 };
135
136 struct tls {
137     char *name;
138     SSL_CTX *ctx;
139 };
140
141 struct rewrite {
142     uint8_t *removeattrs;
143     uint32_t *removevendorattrs;
144 };
145
146 struct rewriteconf {
147     char *name;
148     struct rewrite *rewrite;
149 };
150
151 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
152
153 #define ATTRTYPE(x) ((x)[0])
154 #define ATTRLEN(x) ((x)[1])
155 #define ATTRVAL(x) ((x) + 2)
156 #define ATTRVALLEN(x) ((x)[1] - 2)
157
158 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
159                             sizeof(struct sockaddr_in) : \
160                             sizeof(struct sockaddr_in6))