added subjectaltname cert checks, incl regexp uri
[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
44 struct options {
45     char *listenudp;
46     char *listentcp;
47     char *logdestination;
48     uint8_t loglevel;
49 };
50
51 /* requests that our client will send */
52 struct request {
53     unsigned char *buf;
54     uint8_t tries;
55     uint8_t received;
56     struct timeval expiry;
57     struct client *from;
58     uint8_t origid; /* used by servwr */
59     char origauth[16]; /* used by servwr */
60     struct sockaddr_storage fromsa; /* used by udpservwr */
61 };
62
63 /* replies that a server will send */
64 struct reply {
65     unsigned char *buf;
66     struct sockaddr_storage tosa; /* used by udpservwr */
67 };
68
69 struct replyq {
70     struct list *replies;
71     pthread_mutex_t mutex;
72     pthread_cond_t cond;
73 };
74
75 struct clsrvconf {
76     char *name;
77     char type; /* U for UDP, T for TLS */
78     char *host;
79     char *port;
80     char *secret;
81     regex_t *certuriregex;
82     uint8_t statusserver;
83     SSL_CTX *ssl_ctx;
84     struct addrinfo *addrinfo;
85     struct client *clients;
86     struct server *servers;
87 };
88
89 struct client {
90     struct clsrvconf *conf;
91     SSL *ssl;
92     struct replyq *replyq;
93 };
94
95 struct server {
96     struct clsrvconf *conf;
97     int sock;
98     SSL *ssl;
99     pthread_mutex_t lock;
100     pthread_t clientth;
101     struct timeval lastconnecttry;
102     uint8_t connectionok;
103     int nextid;
104     struct request *requests;
105     uint8_t newrq;
106     pthread_mutex_t newrq_mutex;
107     pthread_cond_t newrq_cond;
108 };
109
110 struct realm {
111     char *name;
112     char *message;
113     regex_t regex;
114     struct clsrvconf *srvconf;
115 };
116
117 struct tls {
118     char *name;
119     SSL_CTX *ctx;
120     int count;
121 };
122
123 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
124
125 #define ATTRTYPE(x) ((x)[0])
126 #define ATTRLEN(x) ((x)[1])
127 #define ATTRVAL(x) ((x) + 2)
128 #define ATTRVALLEN(x) ((x)[1] - 2)
129
130 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
131                             sizeof(struct sockaddr_in) : \
132                             sizeof(struct sockaddr_in6))
133
134 char *stringcopy(char *s, int len);
135 char *addr2string(struct sockaddr *addr, socklen_t len);
136 void printfchars(char *prefixfmt, char *prefix, char *charfmt, char *chars, int len);
137 int bindport(int type, char *port);
138 int connectport(int type, char *host, char *port);