refactoring how we handle peer addresses in peerinfo/ats/transport/hello subsystems...
[oweals/gnunet.git] / src / include / gnunet_hello_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 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 include/gnunet_hello_lib.h
23  * @brief helper library for handling HELLOs
24  * @author Christian Grothoff
25  */
26
27 #ifndef GNUNET_HELLO_LIB_H
28 #define GNUNET_HELLO_LIB_H
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 #include "gnunet_common.h"
39 #include "gnunet_crypto_lib.h"
40
41
42 /**
43  * An address for communicating with a peer.  We frequently
44  * need this tuple and the components cannot really be
45  * separated.  This is NOT the format that would be used
46  * on the wire.
47  */
48 struct GNUNET_HELLO_Address
49 {
50
51   /**
52    * For which peer is this an address?
53    */ 
54   struct GNUNET_PeerIdentity peer;
55
56   /**
57    * Name of the transport plugin enabling the communication using
58    * this address.
59    */
60   const char *transport_name;
61
62   /**
63    * Binary representation of the address (plugin-specific).
64    */
65   const void *address;
66
67   /**
68    * Number of bytes in 'address'.
69    */
70   size_t address_length;
71
72 };
73
74
75 /**
76  * Allocate an address struct.
77  *
78  * @param peer the peer
79  * @param transport_name plugin name
80  * @param address binary address
81  * @param address_length number of bytes in 'address'
82  * @return the address struct
83  */
84 struct GNUNET_HELLO_Address *
85 GNUNET_HELLO_address_allocate (const struct GNUNET_PeerIdentity *peer,
86                                const char *transport_name,
87                                const void *address,
88                                size_t address_length);
89
90
91 /**
92  * Copy an address struct.
93  *
94  * @param address address to copy
95  * @return a copy of the address struct
96  */
97 struct GNUNET_HELLO_Address *
98 GNUNET_HELLO_address_copy (const struct GNUNET_HELLO_Address *address);
99
100
101 /**
102  * Compare two addresses.  Does NOT compare the peer identity,
103  * that is assumed already to match!
104  *
105  * @param a1 first address
106  * @param a2 second address
107  * @return 0 if the addresses are equal, -1 if a1<a2, 1 if a1>a2.
108  */
109 int
110 GNUNET_HELLO_address_cmp (const struct GNUNET_HELLO_Address *a1,
111                           const struct GNUNET_HELLO_Address *a2);
112
113
114
115 /**
116  * Free an address.
117  * 
118  * @param addr address to free
119  */
120 #define GNUNET_HELLO_address_free(addr) GNUNET_free(addr)
121
122
123 /**
124  * A HELLO message is used to exchange information about
125  * transports with other peers.  This struct is guaranteed
126  * to start with a "GNUNET_MessageHeader", everything else
127  * should be internal to the HELLO library.
128  */
129 struct GNUNET_HELLO_Message;
130
131
132 /**
133  * Copy the given address information into
134  * the given buffer using the format of HELLOs.
135  *
136  * @param address address to add
137  * @param expiration expiration for the address
138  * @param target where to copy the address
139  * @param max maximum number of bytes to copy to target
140  * @return number of bytes copied, 0 if
141  *         the target buffer was not big enough.
142  */
143 size_t
144 GNUNET_HELLO_add_address (const struct GNUNET_HELLO_Address *address,
145                           struct GNUNET_TIME_Absolute expiration,
146                           char *target,
147                           size_t max);
148
149
150 /**
151  * Callback function used to fill a buffer of max bytes with a list of
152  * addresses in the format used by HELLOs.  Should use
153  * "GNUNET_HELLO_add_address" as a helper function.
154  *
155  * @param cls closure
156  * @param max maximum number of bytes that can be written to buf
157  * @param buf where to write the address information
158  * @return number of bytes written, 0 to signal the
159  *         end of the iteration.
160  */
161 typedef size_t (*GNUNET_HELLO_GenerateAddressListCallback) (void *cls,
162                                                             size_t max,
163                                                             void *buf);
164
165
166 /**
167  * Construct a HELLO message given the public key,
168  * expiration time and an iterator that spews the
169  * transport addresses.
170  *
171  * @return the hello message
172  */
173 struct GNUNET_HELLO_Message *
174 GNUNET_HELLO_create (const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
175                      *publicKey,
176                      GNUNET_HELLO_GenerateAddressListCallback addrgen,
177                      void *addrgen_cls);
178
179
180 /**
181  * Return the size of the given HELLO message.
182  * @param hello to inspect
183  * @return the size, 0 if HELLO is invalid
184  */
185 uint16_t
186 GNUNET_HELLO_size (const struct GNUNET_HELLO_Message *hello);
187
188
189 /**
190  * Construct a HELLO message by merging the
191  * addresses in two existing HELLOs (which
192  * must be for the same peer).
193  *
194  * @param h1 first HELLO message
195  * @param h2 the second HELLO message
196  * @return the combined hello message
197  */
198 struct GNUNET_HELLO_Message *
199 GNUNET_HELLO_merge (const struct GNUNET_HELLO_Message *h1,
200                     const struct GNUNET_HELLO_Message *h2);
201
202
203 /**
204  * Test if two HELLO messages contain the same addresses.
205  * If they only differ in expiration time, the lowest
206  * expiration time larger than 'now' where they differ
207  * is returned.
208  *
209  * @param h1 first HELLO message
210  * @param h2 the second HELLO message
211  * @param now time to use for deciding which addresses have
212  *            expired and should not be considered at all
213  * @return absolute time forever if the two HELLOs are
214  *         totally identical; smallest timestamp >= now if
215  *         they only differ in timestamps;
216  *         zero if the some addresses with expirations >= now
217  *         do not match at all
218  */
219 struct GNUNET_TIME_Absolute
220 GNUNET_HELLO_equals (const struct GNUNET_HELLO_Message *h1,
221                      const struct GNUNET_HELLO_Message *h2,
222                      struct GNUNET_TIME_Absolute now);
223
224
225 /**
226  * Iterator callback to go over all addresses.
227  *
228  * @param cls closure
229  * @param address the address
230  * @param expiration expiration time
231  * @return GNUNET_OK to keep the address,
232  *         GNUNET_NO to delete it from the HELLO
233  *         GNUNET_SYSERR to stop iterating (but keep current address)
234  */
235 typedef int (*GNUNET_HELLO_AddressIterator) (void *cls, 
236                                              const struct GNUNET_HELLO_Address *address,
237                                              struct GNUNET_TIME_Absolute expiration);
238
239
240 /**
241  * When does the last address in the given HELLO expire?
242  *
243  * @param msg HELLO to inspect
244  * @return time the last address expires, 0 if there are no addresses in the HELLO
245  */
246 struct GNUNET_TIME_Absolute
247 GNUNET_HELLO_get_last_expiration (const struct GNUNET_HELLO_Message *msg);
248
249
250 /**
251  * Iterate over all of the addresses in the HELLO.
252  *
253  * @param msg HELLO to iterate over; client does not need to
254  *        have verified that msg is well-formed (beyond starting
255  *        with a GNUNET_MessageHeader of the right type).
256  * @param return_modified if a modified copy should be returned,
257  *         otherwise NULL will be returned
258  * @param it iterator to call on each address
259  * @param it_cls closure for it
260  * @return the modified HELLO or NULL
261  */
262 struct GNUNET_HELLO_Message *
263 GNUNET_HELLO_iterate_addresses (const struct GNUNET_HELLO_Message *msg,
264                                 int return_modified,
265                                 GNUNET_HELLO_AddressIterator it, void *it_cls);
266
267
268 /**
269  * Iterate over addresses in "new_hello" that
270  * are NOT already present in "old_hello".
271  *
272  * @param new_hello a HELLO message
273  * @param old_hello a HELLO message
274  * @param expiration_limit ignore addresses in old_hello
275  *        that expired before the given time stamp
276  * @param it iterator to call on each address
277  * @param it_cls closure for it
278  */
279 void
280 GNUNET_HELLO_iterate_new_addresses (const struct GNUNET_HELLO_Message
281                                     *new_hello,
282                                     const struct GNUNET_HELLO_Message
283                                     *old_hello,
284                                     struct GNUNET_TIME_Absolute
285                                     expiration_limit,
286                                     GNUNET_HELLO_AddressIterator it,
287                                     void *it_cls);
288
289
290 /**
291  * Get the public key from a HELLO message.
292  *
293  * @param hello the hello message
294  * @param publicKey where to copy the public key information, can be NULL
295  * @return GNUNET_SYSERR if the HELLO was malformed
296  */
297 int
298 GNUNET_HELLO_get_key (const struct GNUNET_HELLO_Message *hello,
299                       struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded
300                       *publicKey);
301
302
303 /**
304  * Get the peer identity from a HELLO message.
305  *
306  * @param hello the hello message
307  * @param peer where to store the peer's identity
308  * @return GNUNET_SYSERR if the HELLO was malformed
309  */
310 int
311 GNUNET_HELLO_get_id (const struct GNUNET_HELLO_Message *hello,
312                      struct GNUNET_PeerIdentity *peer);
313
314
315 /**
316  * Get the header from a HELLO message, used so other code
317  * can correctly send HELLO messages.
318  *
319  * @param hello the hello message
320  *
321  * @return header or NULL if the HELLO was malformed
322  */
323 struct GNUNET_MessageHeader *
324 GNUNET_HELLO_get_header (struct GNUNET_HELLO_Message *hello);
325
326 /* ifndef GNUNET_HELLO_LIB_H */
327 #endif
328 /* end of gnunet_hello_lib.h */