added reject support
[radsecproxy.git] / radsecproxy.h
1 /*
2  * Copyright (C) 2006 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/radsecproxy.conf"
12 #define CONFIG_SERVERS "/etc/radsecproxy/servers.conf"
13 #define CONFIG_CLIENTS "/etc/radsecproxy/clients.conf"
14
15 /* MAX_REQUESTS must be 256 due to Radius' 8 bit ID field */
16 #define MAX_REQUESTS 256
17 #define DEFAULT_TLS_SECRET "mysecret"
18 #define DEFAULT_UDP_PORT "1812"
19 #define DEFAULT_TLS_PORT "2083"
20 #define REQUEST_EXPIRY 20
21 #define REQUEST_RETRIES 3
22 #define MAX_CERT_DEPTH 5
23 #define STATUS_SERVER_PERIOD 25
24 #define RAD_Access_Request 1
25 #define RAD_Access_Accept 2
26 #define RAD_Access_Reject 3
27 #define RAD_Accounting_Request 4
28 #define RAD_Accounting_Response 5
29 #define RAD_Access_Challenge 11
30 #define RAD_Status_Server 12
31 #define RAD_Status_Client 13
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_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 #define CONF_STR 1
44 #define CONF_CBK 2
45
46 struct options {
47     char *tlscacertificatefile;
48     char *tlscacertificatepath;
49     char *tlscertificatefile;
50     char *tlscertificatekeyfile;
51     char *tlscertificatekeypassword;
52     char *listenudp;
53     char *listentcp;
54     char *logdestination;
55     uint8_t loglevel;
56 };
57
58 /* requests that our client will send */
59 struct request {
60     unsigned char *buf;
61     uint8_t tries;
62     uint8_t received;
63     struct timeval expiry;
64     struct client *from;
65     uint8_t origid; /* used by servwr */
66     char origauth[16]; /* used by servwr */
67     struct sockaddr_storage fromsa; /* used by udpservwr */
68 };
69
70 /* replies that a server will send */
71 struct reply {
72     unsigned char *buf;
73     struct sockaddr_storage tosa; /* used by udpservwr */
74 };
75
76 struct replyq {
77     struct reply *replies;
78     int count;
79     int size;
80     pthread_mutex_t count_mutex;
81     pthread_cond_t count_cond;
82 };
83
84 struct peer {
85     char type; /* U for UDP, T for TLS */
86     char *host;
87     char *port;
88     char *secret;
89     SSL *ssl;
90     struct addrinfo *addrinfo;
91 };
92
93 struct client {
94     struct peer peer;
95     struct replyq *replyq;
96 };
97
98 struct server {
99     struct peer peer;
100     int sock;
101     pthread_mutex_t lock;
102     pthread_t clientth;
103     struct timeval lastconnecttry;
104     uint8_t connectionok;
105     int nextid;
106     uint8_t statusserver;
107     struct request *requests;
108     uint8_t newrq;
109     pthread_mutex_t newrq_mutex;
110     pthread_cond_t newrq_cond;
111 };
112
113 struct realm {
114     char *name;
115     char *message;
116     regex_t regex;
117     struct server *server;
118 };
119
120 #define RADLEN(x) ntohs(((uint16_t *)(x))[1])
121
122 #define ATTRTYPE(x) ((x)[0])
123 #define ATTRLEN(x) ((x)[1])
124 #define ATTRVAL(x) ((x) + 2)
125 #define ATTRVALLEN(x) ((x)[1] - 2)
126
127 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
128                             sizeof(struct sockaddr_in) : \
129                             sizeof(struct sockaddr_in6))
130
131 void errx(char *format, ...);
132 void err(char *format, ...);
133 char *stringcopy(char *s, int len);
134 char *addr2string(struct sockaddr *addr, socklen_t len);
135 int bindport(int type, char *port);
136 int connectport(int type, char *host, char *port);