WIP
[radsecproxy.git] / lib / include / radsec / radsec-impl.h
1 /** @file libradsec-impl.h
2     @brief Libraray internal header file for libradsec.  */
3
4 /* See the file COPYING for licensing information.  */
5
6 #include <freeradius/libradius.h>
7 #include <event2/util.h>
8
9 /* Constants.  */
10 #define RS_HEADER_LEN 4
11
12 /* Data types.  */
13 enum rs_cred_type {
14     RS_CRED_NONE = 0,
15     RS_CRED_TLS_PSK_RSA,        /* RFC 4279.  */
16 };
17 typedef unsigned int rs_cred_type_t;
18
19 struct rs_packet;
20
21 struct rs_credentials {
22     enum rs_cred_type type;
23     char *identity;
24     char *secret;
25 };
26
27 struct rs_error {
28     int code;
29     char *msg;
30     char buf[1024];
31 };
32
33 struct rs_peer {
34     struct rs_connection *conn;
35     struct evutil_addrinfo *addr;
36     int fd;             /* Socket.  */
37     char is_connecting; /* FIXME: replace with a single state member */
38     char is_connected;  /* FIXME: replace with a single state member */
39     char *secret;
40     int timeout;                /* client only */
41     int tries;                  /* client only */
42     struct rs_peer *next;
43 };
44
45 struct rs_realm {
46     char *name;
47     enum rs_conn_type type;
48     struct rs_peer *peers;
49 };
50
51 struct rs_handle {
52     struct rs_realm *realms;
53     struct rs_alloc_scheme alloc_scheme;
54     struct rs_error *err;
55     fr_randctx fr_randctx;
56 };
57
58 struct rs_connection {
59     struct rs_handle *ctx;
60     struct event_base *evb;
61     struct bufferevent *bev;
62     enum rs_conn_type type;
63     struct rs_credentials transport_credentials;
64     struct rs_conn_callbacks callbacks;
65     struct rs_peer *peers;
66     struct rs_peer *active_peer;
67     struct rs_error *err;
68 };
69
70 struct rs_packet {
71     struct rs_connection *conn;
72     char hdr_read_flag;
73     uint8_t hdr[4];
74     RADIUS_PACKET *rpkt;
75 };
76
77 struct rs_attr {
78     struct rs_packet *pkt;
79     VALUE_PAIR *vp;
80 };
81
82 /* Convenience macros.  */
83 #define rs_calloc(h, nmemb, size) \
84     (h->alloc_scheme.calloc ? h->alloc_scheme.calloc : calloc)(nmemb, size)
85 #define rs_malloc(h, size) \
86     (h->alloc_scheme.malloc ? h->alloc_scheme.malloc : malloc)(size)
87 #define rs_free(h, ptr) \
88     (h->alloc_scheme.free ? h->alloc_scheme.free : free)(ptr)
89 #define rs_realloc(h, realloc, ptr, size) \
90     (h->alloc_scheme.realloc ? h->alloc_scheme.realloc : realloc)(ptr, size)
91
92 /* Local Variables: */
93 /* c-file-style: "stroustrup" */
94 /* End: */