added tcp and udp listen directives
[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 RADLEN(x) ntohs(((uint16_t *)(x))[1])
10
11 #define SOCKADDR_SIZE(addr) ((addr).ss_family == AF_INET ? \
12                             sizeof(struct sockaddr_in) : \
13                             sizeof(struct sockaddr_in6))
14
15 #define CONFIG_MAIN "/etc/radsecproxy/radsecproxy.conf"
16 #define CONFIG_SERVERS "/etc/radsecproxy/servers.conf"
17 #define CONFIG_CLIENTS "/etc/radsecproxy/clients.conf"
18
19 /* MAX_REQUESTS must be 256 due to Radius' 8 bit ID field */
20 #define MAX_REQUESTS 256
21 #define DEFAULT_TLS_SECRET "mysecret"
22 #define DEFAULT_UDP_PORT "1812"
23 #define DEFAULT_TLS_PORT "2083"
24 #define REQUEST_EXPIRY 20
25 #define REQUEST_RETRIES 3
26 #define MAX_CERT_DEPTH 5
27
28 #define RAD_Access_Request 1
29 #define RAD_Access_Accept 2
30 #define RAD_Access_Reject 3
31 #define RAD_Accounting_Request 4
32 #define RAD_Accounting_Response 5
33 #define RAD_Access_Challenge 11
34 #define RAD_Status_Server 12
35 #define RAD_Status_Client 13
36
37 #define RAD_Attr_User_Name 1
38 #define RAD_Attr_User_Password 2
39 #define RAD_Attr_Vendor_Specific 26
40 #define RAD_Attr_Tunnel_Password 69
41 #define RAD_Attr_Message_Authenticator 80
42
43 #define RAD_VS_ATTR_MS_MPPE_Send_Key 16
44 #define RAD_VS_ATTR_MS_MPPE_Recv_Key 17
45
46 #define RAD_Attr_Type 0
47 #define RAD_Attr_Length 1
48 #define RAD_Attr_Value 2
49
50 struct options {
51     char *tlscacertificatefile;
52     char *tlscacertificatepath;
53     char *tlscertificatefile;
54     char *tlscertificatekeyfile;
55     char *tlscertificatekeypassword;
56     char *udpserverport;
57     char *listenudp;
58     char *listentcp;
59 };
60
61 /* requests that our client will send */
62 struct request {
63     unsigned char *buf;
64     uint8_t tries;
65     uint8_t received;
66     struct timeval expiry;
67     struct client *from;
68     unsigned char *messageauthattrval;
69     uint8_t origid; /* used by servwr */
70     char origauth[16]; /* used by servwr */
71     struct sockaddr_storage fromsa; /* used by udpservwr */
72 };
73
74 /* replies that a server will send */
75 struct reply {
76     unsigned char *buf;
77     struct sockaddr_storage tosa; /* used by udpservwr */
78 };
79
80 struct replyq {
81     struct reply *replies;
82     int count;
83     int size;
84     pthread_mutex_t count_mutex;
85     pthread_cond_t count_cond;
86 };
87
88 struct peer {
89     char type; /* U for UDP, T for TLS */
90     char *host;
91     char *port;
92     char *secret;
93     SSL *ssl;
94     struct addrinfo *addrinfo;
95 };
96
97 struct client {
98     struct peer peer;
99     struct replyq *replyq;
100 };
101
102 struct server {
103     struct peer peer;
104     char *realmdata;
105     char **realms;
106     int sock;
107     pthread_mutex_t lock;
108     pthread_t clientth;
109     struct timeval lastconnecttry;
110     uint8_t connectionok;
111     int nextid;
112     struct request *requests;
113     uint8_t newrq;
114     pthread_mutex_t newrq_mutex;
115     pthread_cond_t newrq_cond;
116 };
117
118 void errx(char *format, ...);
119 void err(char *format, ...);
120 char *stringcopy(char *s, int len);
121 char *addr2string(struct sockaddr *addr, socklen_t len);
122 int bindport(int type, char *port);
123 int connectport(int type, char *host, char *port);