changed from struct peer to struct server and struct client
[libradsec.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
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
34 #define RAD_Attr_Type 0
35 #define RAD_Attr_Length 1
36 #define RAD_Attr_Value 2
37
38 /* requests that a client will send */
39 struct request {
40     unsigned char *buf;
41     uint8_t tries;
42     uint8_t received;
43     struct timeval timeout;
44     struct client *from;
45     uint8_t origid; /* used by servwr */
46     char origauth[16]; /* used by servwr */
47     struct sockaddr_storage fromsa; /* used by udpservwr */
48 };
49
50 /* replies that a server will send */
51 struct reply {
52     unsigned char *buf;
53     struct sockaddr_storage tosa; /* used by udpservwr */
54 };
55
56 struct replyq {
57     struct reply *replies;
58     int count;
59     int size;
60     pthread_mutex_t count_mutex;
61     pthread_cond_t count_cond;
62 };
63
64 struct client {
65     char type; /* U for UDP, T for TLS */
66     char *host;
67     char *port;
68     char *secret;
69     SSL *ssl;
70     struct addrinfo *addrinfo;
71     struct replyq *replyq;
72     int replycount;
73     pthread_mutex_t replycount_mutex;
74     pthread_cond_t replycount_cond;
75 };
76
77 struct server {
78     char type; /* U for UDP, T for TLS */
79     char *host;
80     char *port;
81     char *secret;
82     SSL *ssl;
83     struct addrinfo *addrinfo;
84     char *realmdata;
85     char **realms;
86     int sock;
87     pthread_mutex_t lock;
88     pthread_t clientth;
89     struct timeval lastconnecttry;
90     uint8_t connectionok;
91     struct request *requests;
92     uint8_t newrq;
93     pthread_mutex_t newrq_mutex;
94     pthread_cond_t newrq_cond;
95 };
96
97 void errx(char *format, ...);
98 void err(char *format, ...);
99 char *addr2string(struct sockaddr *addr, socklen_t len);
100 int bindport(int type, char *port);
101 int connectport(int type, char *host, char *port);