added code for reading main config and restructured tls init code
[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 MAX_PEERS 256
16 /* MAX_REQUESTS is 256 due to Radius' 8 bit ID field */
17 #define MAX_REQUESTS 256
18 #define DEFAULT_TLS_SECRET "mysecret"
19 #define DEFAULT_UDP_PORT "1812"
20 #define DEFAULT_TLS_PORT "2083"
21 #define REQUEST_TIMEOUT 5
22
23 #define RAD_Access_Request 1
24 #define RAD_Access_Accept 2
25 #define RAD_Access_Reject 3
26 #define RAD_Accounting_Request 4
27 #define RAD_Accounting_Response 5
28 #define RAD_Access_Challenge 11
29 #define RAD_Status_Server 12
30 #define RAD_Status_Client 13
31
32 #define RAD_Attr_User_Name 1
33 #define RAD_Attr_User_Password 2
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 RAD_Attr_Type 0
42 #define RAD_Attr_Length 1
43 #define RAD_Attr_Value 2
44
45 struct options {
46     char *tlscertificatefile;
47     char *tlscertificatekeyfile;
48     char *udpserverport;
49 };
50     
51 /* requests that a 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     char *messageauthattrval;
59     uint8_t origid; /* used by servwr */
60     char origauth[16]; /* used by servwr */
61     struct sockaddr_storage fromsa; /* used by udpservwr */
62 };
63
64 /* replies that a server will send */
65 struct reply {
66     unsigned char *buf;
67     struct sockaddr_storage tosa; /* used by udpservwr */
68 };
69
70 struct replyq {
71     struct reply *replies;
72     int count;
73     int size;
74     pthread_mutex_t count_mutex;
75     pthread_cond_t count_cond;
76 };
77
78 struct peer {
79     char type; /* U for UDP, T for TLS */
80     char *host;
81     char *port;
82     char *secret;
83     SSL *ssl;
84     struct addrinfo *addrinfo;
85 };
86
87 struct client {
88     struct peer peer;
89     struct replyq *replyq;
90 };
91
92 struct server {
93     struct peer peer;
94     char *realmdata;
95     char **realms;
96     int sock;
97     pthread_mutex_t lock;
98     pthread_t clientth;
99     struct timeval lastconnecttry;
100     uint8_t connectionok;
101     int nextid;
102     struct request *requests;
103     uint8_t newrq;
104     pthread_mutex_t newrq_mutex;
105     pthread_cond_t newrq_cond;
106 };
107
108 void errx(char *format, ...);
109 void err(char *format, ...);
110 char *stringcopy(char *s, int len);
111 char *addr2string(struct sockaddr *addr, socklen_t len);
112 int bindport(int type, char *port);
113 int connectport(int type, char *host, char *port);