-fix time assertion introduce in last patch
[oweals/gnunet.git] / src / transport / gnunet-service-transport_validation.h
1 /*
2      This file is part of GNUnet.
3      (C) 2010,2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/gnunet-service-transport_validation.h
23  * @brief address validation API
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_SERVICE_TRANSPORT_VALIDATION_H
27 #define GNUNET_SERVICE_TRANSPORT_VALIDATION_H
28
29 #include "gnunet_statistics_service.h"
30 #include "gnunet_transport_plugin.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_hello_lib.h"
33
34 /**
35  * Start the validation subsystem.
36  *
37  * @param max_fds maximum number of fds to use
38  */
39 void
40 GST_validation_start (unsigned int max_fds);
41
42
43 /**
44  * Stop the validation subsystem.
45  */
46 void
47 GST_validation_stop (void);
48
49
50 /**
51  * Update if we are using an address for a connection actively right now.
52  * Based on this, the validation module will measure latency for the
53  * address more or less often.
54  *
55  * @param address the address
56  * @param session the session
57  * @param in_use #GNUNET_YES if we are now using the address for a connection,
58  *               #GNUNET_NO if we are no longer using the address for a connection
59  */
60 void
61 GST_validation_set_address_use (const struct GNUNET_HELLO_Address *address,
62                                 struct Session *session,
63                                 int in_use);
64
65
66 /**
67  * Query validation about the latest observed latency on a given
68  * address.
69  *
70  * @param sender peer
71  * @param address the address
72  * @param session session
73  * @return observed latency of the address, FOREVER if the address was
74  *         never successfully validated
75  */
76 struct GNUNET_TIME_Relative
77 GST_validation_get_address_latency (const struct GNUNET_PeerIdentity *sender,
78                                     const struct GNUNET_HELLO_Address *address,
79                                     struct Session *session);
80
81
82 /**
83  * Function called to notify transport users that a neighbour peer changed its
84  * active address.
85  *
86  * @param cls closure
87  * @param peer peer this update is about (never NULL)
88  * @param address address (never NULL)
89  * @param last_validation point in time when last validation was performed
90  * @param valid_until point in time how long address is valid
91  * @param next_validation point in time when next validation will be performed
92  * @param state state of validation notification
93  */
94 typedef void
95 (*GST_ValidationChangedCallback) (void *cls,
96                                   const struct GNUNET_PeerIdentity *peer,
97                                   const struct GNUNET_HELLO_Address *address,
98                                   struct GNUNET_TIME_Absolute last_validation,
99                                   struct GNUNET_TIME_Absolute valid_until,
100                                   struct GNUNET_TIME_Absolute next_validation,
101                                   enum GNUNET_TRANSPORT_ValidationState state);
102
103
104 /**
105  * Iterate over all iteration entries
106  *
107  * @param cb function to call
108  * @param cb_cls closure for @a cb
109  */
110 void
111 GST_validation_iterate (GST_ValidationChangedCallback cb, void *cb_cls);
112
113
114 /**
115  * We've received a PING.  If appropriate, generate a PONG.
116  *
117  * @param sender peer sending the PING
118  * @param hdr the PING
119  * @param sender_address address of the sender, NULL if we did not initiate
120  * @param session session we got the PING from
121  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
122  */
123 int
124 GST_validation_handle_ping (const struct GNUNET_PeerIdentity *sender,
125                             const struct GNUNET_MessageHeader *hdr,
126                             const struct GNUNET_HELLO_Address *sender_address,
127                             struct Session *session);
128
129
130 /**
131  * We've received a PONG.  Check if it matches a pending PING and
132  * mark the respective address as confirmed.
133  *
134  * @param sender peer sending the PONG
135  * @param hdr the PONG
136  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
137  */
138 int
139 GST_validation_handle_pong (const struct GNUNET_PeerIdentity *sender,
140                             const struct GNUNET_MessageHeader *hdr);
141
142
143 /**
144  * We've received a HELLO, check which addresses are new and trigger
145  * validation.
146  *
147  * @param hello the HELLO we received
148  * @return #GNUNET_OK if the message was fine, #GNUNET_SYSERR on serious error
149  */
150 int
151 GST_validation_handle_hello (const struct GNUNET_MessageHeader *hello);
152
153
154 /**
155  * Function called for each address (or address status change) that
156  * the validation module is aware of (for the given target).
157  *
158  * @param cls closure
159  * @param public_key public key for the peer, never NULL
160  * @param valid_until is ZERO if we never validated the address,
161  *                    otherwise a time up to when we consider it (or was) valid
162  * @param validation_block  is FOREVER if the address is for an unsupported plugin (from PEERINFO)
163  *                          is ZERO if the address is considered valid (no validation needed)
164  *                          otherwise a time in the future if we're currently denying re-validation
165  * @param address the address
166  */
167 typedef void
168 (*GST_ValidationAddressCallback) (void *cls,
169                                   const struct GNUNET_CRYPTO_EddsaPublicKey *public_key,
170                                   struct GNUNET_TIME_Absolute valid_until,
171                                   struct GNUNET_TIME_Absolute validation_block,
172                                   const struct GNUNET_HELLO_Address *address);
173
174
175 /**
176  * Call the given function for each address for the given target.
177  *
178  * @param target peer information is requested for
179  * @param cb function to call; will not be called after this function returns
180  * @param cb_cls closure for @a cb
181  */
182 void
183 GST_validation_get_addresses (const struct GNUNET_PeerIdentity *target,
184                               GST_ValidationAddressCallback cb, void *cb_cls);
185
186
187 #endif
188 /* end of file gnunet-service-transport_validation.h */