Checkpoint commit: refactoring the request code in TIDS for better reuse
[trust_router.git] / include / trp_ptable.h
1 /*
2  * Copyright (c) 2016, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #ifndef _TRP_PTABLE_H_
36 #define _TRP_PTABLE_H_
37
38 #include <time.h>
39 #include <talloc.h>
40
41 #include <tr_name_internal.h>
42 #include <tr_gss_names.h>
43 #include <trust_router/trp.h>
44 #include <tr_filter.h>
45
46 typedef enum trp_peer_conn_status {
47   PEER_DISCONNECTED=0,
48   PEER_CONNECTED
49 } TRP_PEER_CONN_STATUS;
50
51 typedef struct trp_peer TRP_PEER;
52 struct trp_peer {
53   TRP_PEER *next; /* for making a linked list */
54   TR_NAME *label; /* often null, set on first call to trp_peer_get_label or dup_label */
55   char *server;
56   TR_GSS_NAMES *gss_names;
57   TR_NAME *servicename;
58   unsigned int port;
59   unsigned int linkcost;
60   struct timespec last_conn_attempt;
61   TRP_PEER_CONN_STATUS outgoing_status;
62   TRP_PEER_CONN_STATUS incoming_status;
63   void (*conn_status_cb)(TRP_PEER *, void *); /* callback for connected status change */
64   void *conn_status_cookie;
65   TR_FILTER_SET *filters;
66 };
67
68 typedef struct trp_ptable {
69   TRP_PEER *head; /* head of a peer table list */
70 } TRP_PTABLE;
71
72 /* iterator for the peer table */
73 typedef TRP_PEER *TRP_PTABLE_ITER;
74
75 TRP_PTABLE *trp_ptable_new(TALLOC_CTX *memctx);
76 void trp_ptable_free(TRP_PTABLE *ptbl);
77 TRP_RC trp_ptable_add(TRP_PTABLE *ptbl, TRP_PEER *newpeer);
78 TRP_RC trp_ptable_remove(TRP_PTABLE *ptbl, TRP_PEER *peer);
79 TRP_PEER *trp_ptable_find_gss_name(TRP_PTABLE *ptbl, TR_NAME *gssname);
80 TRP_PEER *trp_ptable_find_servicename(TRP_PTABLE *ptbl, TR_NAME *servicename);
81 char *trp_ptable_to_str(TALLOC_CTX *memctx, TRP_PTABLE *ptbl, const char *sep, const char *lineterm);
82
83 TRP_PTABLE_ITER *trp_ptable_iter_new(TALLOC_CTX *mem_ctx);
84 TRP_PEER *trp_ptable_iter_first(TRP_PTABLE_ITER *iter, TRP_PTABLE *ptbl);
85 TRP_PEER *trp_ptable_iter_next(TRP_PTABLE_ITER *iter);
86 void trp_ptable_iter_free(TRP_PTABLE_ITER *iter);
87
88 TRP_PEER *trp_peer_new(TALLOC_CTX *memctx);
89 void trp_peer_free(TRP_PEER *peer);
90 TR_NAME *trp_peer_get_label(TRP_PEER *peer);
91 TR_NAME *trp_peer_dup_label(TRP_PEER *peer);
92 char *trp_peer_get_server(TRP_PEER *peer);
93 void trp_peer_set_server(TRP_PEER *peer, const char *server);
94 void trp_peer_add_gss_name(TRP_PEER *peer, TR_NAME *gssname);
95 void trp_peer_set_gss_names(TRP_PEER *peer, TR_GSS_NAMES *gss_names);
96 TR_GSS_NAMES *trp_peer_get_gss_names(TRP_PEER *peer);
97 TR_NAME *trp_peer_get_servicename(TRP_PEER *peer);
98 TR_NAME *trp_peer_dup_servicename(TRP_PEER *peer);
99 unsigned int trp_peer_get_port(TRP_PEER *peer);
100 void trp_peer_set_port(TRP_PEER *peer, unsigned int port);
101 unsigned int trp_peer_get_linkcost(TRP_PEER *peer);
102 struct timespec *trp_peer_get_last_conn_attempt(TRP_PEER *peer);
103 void trp_peer_set_last_conn_attempt(TRP_PEER *peer, struct timespec *time);
104 TRP_PEER_CONN_STATUS trp_peer_get_outgoing_status(TRP_PEER *peer);
105 void trp_peer_set_outgoing_status(TRP_PEER *peer, TRP_PEER_CONN_STATUS status);
106 TRP_PEER_CONN_STATUS trp_peer_get_incoming_status(TRP_PEER *peer);
107 void trp_peer_set_incoming_status(TRP_PEER *peer, TRP_PEER_CONN_STATUS status);
108 int trp_peer_is_connected(TRP_PEER *peer);
109 void trp_peer_set_linkcost(TRP_PEER *peer, unsigned int linkcost);
110 void trp_peer_set_conn_status_cb(TRP_PEER *peer, void (*cb)(TRP_PEER *, void *), void *cookie);
111 void trp_peer_set_filters(TRP_PEER *peer, TR_FILTER_SET *filts);
112 TR_FILTER *trp_peer_get_filter(TRP_PEER *peer, TR_FILTER_TYPE ftype);
113 char *trp_peer_to_str(TALLOC_CTX *memctx, TRP_PEER *peer, const char *sep);
114
115 #endif /* _TRP_PTABLE_H_ */