some documentation
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.h
1 /*
2      This file is part of GNUnet.
3      (C) 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 ats/gnunet-service-ats_addresses.h
23  * @brief ats service address management
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #ifndef GNUNET_SERVICE_ATS_ADDRESSES_H
28 #define GNUNET_SERVICE_ATS_ADDRESSES_H
29
30 #include "gnunet_util_lib.h"
31 #include "gnunet_ats_service.h"
32 #include "gnunet_statistics_service.h"
33 #include "ats.h"
34
35 /**
36  * NOTE: Do not change this documentation. This documentation is based on
37  * gnunet.org:/vcs/fsnsg/ats-paper.git/tech-doku/ats-tech-guide.tex
38  * use build_txt.sh to generate plaintext output
39  *
40  *   1 ATS addresses : ATS address management
41  *
42  *    This ATS addresses ("addresses") component manages the addresses known to
43  *    ATS service and suggests addresses to transport service when it is
44  *    interested in address suggestion for a peer. ATS addresses also
45  *    instantiates the bandwidth assignment mechanism (solver), notifies it
46  *    about changes to addresses and forwards changes to bandwidth assignments
47  *    to transport, depending if transport is interested in this change.
48  *
49  *     1.1 Input data
50  *
51  *       1.1.1 Addresses
52  *
53  *    Addresses are added by specifying peer ID, plugin, address, address length
54  *    and session, if available. ATS information can be specified if available.
55  *
56  *       1.1.2 Networks
57  *
58  *    ATS specifies a fix set of networks an address can belong to. For each
59  *    network an inbound and outbound quota will be specified. The available
60  *    networks and addtional helper varaibles are defined in
61  *    gnunet_ats_service.h. At the moment 5 networks are defined:
62  *      * GNUNET_ATS_NET_UNSPECIFIED
63  *      * GNUNET_ATS_NET_LOOPBACK
64  *      * GNUNET_ATS_NET_LAN
65  *      * GNUNET_ATS_NET_WAN
66  *      * GNUNET_ATS_NET_WLAN
67  *
68  *    The total number of networks defined is stored in
69  *    GNUNET_ATS_NetworkTypeCount GNUNET_ATS_NetworkType can be used array
70  *    initializer for an int array, while GNUNET_ATS_NetworkType is an
71  *    initializer for a char array containing a string description of all
72  *    networks
73  *
74  *       1.1.3 Quotas
75  *
76  *    An inbound and outbound quota for each of the networks mentioned in 1.1.2
77  *    is loaded from ats configuration during initialization. This quota defines
78  *    to total amount of inbound and outbound traffic allowed for a specific
79  *    network. The configuration values used are in section ats:
80  *      * "NETWORK"_QUOTA_IN = <value>
81  *      * "NETWORK"_QUOTA_IN = <value>
82  *
83  *    You can specify quotas by setting the <value> to a:
84  *      * unrestricted: unlimited
85  *      * number of bytes: e.g. 10240
86  *      * fancy value: e.g. 64 Kib
87  *
88  *    unlimited is defined as GNUNET_ATS_MaxBandwidthString and equivalent to
89  *    the value GNUNET_ATS_MaxBandwidth Important predefined values for quotas
90  *    are:
91  *      * GNUNET_ATS_DefaultBandwidth: 65536
92  *      * GNUNET_ATS_MaxBandwidth: UINT32_MAX
93  *      * GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT: 1024
94  *
95  *    Details of loading quotas and default values will be described on
96  *
97  *       1.1.4 Preference values
98  *
99  *     1.2 Data structures used
100  *
101  *    Addresse uses struct ATS_Address for each address. The structs are stored
102  *    in a linked list and provides a pointer void *solver_information for the
103  *    solver to store address specific information. It provides the int values
104  *    active which is set to GNUNET_YES if the address is select for transport
105  *    use and used, representing that transport service is actively using this
106  *    address. Address information are stored in peer, addr, addr_len, plugin.
107  *
108  *     1.3 Initialization
109  *
110  *    During initialization a hashmap to store addresses is created. The quotas
111  *    for all networks defined for ATS are loaded from configuration. For each
112  *    network first the logic will check if the string
113  *    GNUNET_ATS_MaxBandwidthString is configured, if not it will try to convert
114  *    the configured value as a fancy size and if this fails it will try to use
115  *    it as a value_number. If no configuration value is found it will assign
116  *    GNUNET_ATS_DefaultBandwidth. The most important step is to load the
117  *    configured solver using configuration "[ats]:MODE". Current solvers are
118  *    MODE_SIMPLISTIC, MODE_MLP. Interaction is done using a solver API
119  *
120  *     1.4 Solver API
121  *
122  *    Solver functions:
123  *      * s_init: init the solver with required information
124  *      * s_add: add a new address
125  *      * s_update: update ATS values or session for an address
126  *      * s_get: get prefered address for a peer
127  *      * s_del: delete an address
128  *      * s_pref: change preference value for a peer
129  *      * s_done: shutdown solver
130  *
131  *    Callbacks: addresses provides a bandwidth_changed_cb callback to the
132  *    solver which is called when bandwidth assigned to peer has changed
133  *
134  *     1.5 Shutdown
135  *
136  *    During shutdown all addresses are freed and the solver told to shutdown
137  *
138  *     1.6 Addresses and sessions
139  *
140  *    Addresses consist of the address itself and a numerical session. When a
141  *    new address without a session is added it has no session, so it gets
142  *    session 0 assigned. When an address with a session is added and an address
143  *    object with session 0 is found, this object is updated with the session
144  *    otherwise a new address object with this session assigned is created.
145  *
146  *       1.6.1 Terminology
147  *
148  *    Addresses a1,a2 with session s1, s2 are "exact" if:
149  *    (a1 == a2)&&(s1 == s2)
150  *    Addresses a1,a2 with session s1, s2 are "equivalent" if:
151  *    (a1 == a2)&&((s1 == s2)||(s1 == 0)||(s2 == 0)
152  *
153  *     1.7 Address management
154  *
155  *    Transport service notifies ATS about changes to the addresses known to
156  *    him.
157  *
158  *       1.7.1 Adding an address
159  *
160  *    When transport learns a new address it tells ATS and ATS is telling
161  *    addresses about it using GAS_address_add. If not known to addresses it
162  *    creates a new address object and calls solver's s_add. ATS information are
163  *    deserialized and solver is notified about the session and ATS information
164  *    using s_update.
165  *
166  *       1.7.2 Updating an address
167  *
168  *    Addresses does an lookup up for the existing address with the given
169  *    session. If disassembles included ATS information and notifies the solver
170  *    using s_update about the update.
171  *
172  *       1.7.3 Deleting an address
173  *
174  *    Addresses does an lookup for the exact address and session and if removes
175  *    this address. If session != 0 the session is set to 0 and the address is
176  *    kept. If session == 0, the addresses is removed.
177  *
178  *       1.7.4 Requesting an address suggestion
179  *
180  *    The address client issues a request address message to be notified about
181  *    address suggestions for a specific peer. Addresses asks the solver with
182  *    s_get. If no address is available, it will not send a response, otherwise
183  *    it will respond with the choosen address.
184  *
185  *       1.7.5 Address suggestions
186  *
187  *    Addresses will notify the client automatically on any bandwidth_changed_cb
188  *    by the solver if a address suggestion request is pending. If no address is
189  *    available it will not respond at all If the client is not interested
190  *    anymore, it has to cancel the address suggestion request.
191  *
192  *       1.7.6 Suggestions blocks and reset
193  *
194  *    After suggesting an address it is blocked for ATS_BLOCKING_DELTA sec. to
195  *    prevent the client from being thrashed. If the client requires immediately
196  *    it can reset this block using GAS_addresses_handle_backoff_reset.
197  *
198  *       1.7.7 Marking address in use
199  *
200  *    The client can notify addresses that it successfully uses an address and
201  *    wants this address to be kept by calling GSA_address_in_use. Adresses will
202  *    mark the address as used an notify the solver about the use.
203  *
204  *       1.7.8 Address lifecycle
205  *
206  *      * (add address)
207  *      * (updated address) || (address in use)
208  *      * (delete address)
209  *
210  *     1.8 Bandwidth assignment
211  *
212  *    The addresses are used to perform resource allocation operations. ATS
213  *    addresses takes care of instantiating the solver configured and notifies
214  *    the respective solver about address changes and receives changes to the
215  *    bandwidth assignment from the solver. The current bandwidth assignment is
216  *    sent to transport. The specific solvers will be described in the specific
217  *    section.
218  *
219  *     1.9 Changing peer preferences
220  *
221  *    The bandwidth assigned to a peer can be influenced by setting a preference
222  *    for a peer. The prefernce will be given to to the solver with s_pref which
223  *    has to take care of the preference value
224
225  */
226
227 #define ATS_BLOCKING_DELTA GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 100)
228
229 struct GAS_Addresses_Handle;
230
231 /**
232  * Address with additional information
233  */
234 struct ATS_Address
235 {
236   /**
237    * Next element in DLL
238    */
239   struct ATS_Address *next;
240
241   /**
242    * Previous element in DLL
243    */
244   struct ATS_Address *prev;
245
246   /**
247    * Peer ID
248    */
249   struct GNUNET_PeerIdentity peer;
250
251   /**
252    * Session ID, 0 if no session is given
253    */
254   uint32_t session_id;
255
256   /**
257    * Address
258    */
259   const void *addr;
260
261   /**
262    * Address length
263    */
264   size_t addr_len;
265
266   /**
267    * Plugin name
268    */
269   char *plugin;
270
271   /**
272    * Solver specific information for this address
273    */
274   void *solver_information;
275
276   /* CHECK USAGE */
277   struct GNUNET_TIME_Relative atsp_latency;
278
279   /* CHECK USAGE */
280   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_in;
281
282   /* CHECK USAGE */
283   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_out;
284
285
286   /* CHECK USAGE */
287   uint32_t atsp_distance;
288
289   /* CHECK USAGE */
290   uint32_t atsp_cost_wan;
291
292   /* CHECK USAGE */
293   uint32_t atsp_cost_lan;
294
295   /* CHECK USAGE */
296   uint32_t atsp_cost_wlan;
297
298   /* CHECK USAGE */
299   uint32_t atsp_network_type;
300
301   /**
302    * Inbound bandwidth assigned by solver in NBO
303    */
304   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_in;
305
306   /**
307    * Outbound bandwidth assigned by solver in NBO
308    */
309   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_out;
310
311   /**
312    * Blocking interval
313    */
314   struct GNUNET_TIME_Relative block_interval;
315
316   /**
317    * Time when address can be suggested again
318    */
319   struct GNUNET_TIME_Absolute blocked_until;
320
321   /**
322    * Is this the active address for this peer?
323    */
324   int active;
325
326   /**
327    * Is this the address for this peer in use?
328    */
329   int used;
330 };
331
332
333 /**
334  * Callback to call from solver when bandwidth for address has changed
335  *
336  * @param address the with changed bandwidth assigned
337  */
338
339 typedef void
340  (*GAS_bandwidth_changed_cb) (void *cls, struct ATS_Address *address);
341
342 /**
343  * Init the simplistic problem solving component
344  *
345  * Quotas:
346  * network[i] contains the network type as type GNUNET_ATS_NetworkType[i]
347  * out_quota[i] contains outbound quota for network type i
348  * in_quota[i] contains inbound quota for network type i
349  *
350  * Example
351  * network = {GNUNET_ATS_NET_UNSPECIFIED, GNUNET_ATS_NET_LOOPBACK, GNUNET_ATS_NET_LAN, GNUNET_ATS_NET_WAN, GNUNET_ATS_NET_WLAN}
352  * network[2]   == GNUNET_ATS_NET_LAN
353  * out_quota[2] == 65353
354  * in_quota[2]  == 65353
355  *
356  * @param cfg configuration handle
357  * @param stats the GNUNET_STATISTICS handle
358  * @param network array of GNUNET_ATS_NetworkType with length dest_length
359  * @param out_quota array of outbound quotas
360  * @param in_quota array of outbound quota
361  * @param bw_changed_cb callback to call when assigned changes
362  * @return handle for the solver on success, NULL on fail
363  */
364 typedef void *
365  (*GAS_solver_init) (const struct GNUNET_CONFIGURATION_Handle *cfg,
366                      const struct GNUNET_STATISTICS_Handle *stats,
367                      int *network,
368                      unsigned long long *out_quota,
369                      unsigned long long *in_quota,
370                      int dest_length,
371                      GAS_bandwidth_changed_cb bw_changed_cb,
372                      void *bw_changed_cb_cls);
373
374
375 typedef void
376 (*GAS_solver_address_change_preference) (void *solver,
377                                          void *client,
378                                          const struct GNUNET_PeerIdentity *peer,
379                                          enum GNUNET_ATS_PreferenceKind kind,
380                                          float score);
381
382 /**
383  * Add a single address to the solver
384  *
385  * @param solver the solver Handle
386  * @param addresses the address hashmap containing all addresses
387  * @param address the address to add
388  */
389 typedef void
390 (*GAS_solver_address_add) (void *solver,
391                            struct GNUNET_CONTAINER_MultiHashMap * addresses,
392                            struct ATS_Address *address);
393
394
395
396 typedef void
397  (*GAS_solver_address_delete) (void *solver,
398                                struct GNUNET_CONTAINER_MultiHashMap *addresses,
399                                struct ATS_Address *address,
400                                int session_only);
401
402 typedef void
403 (*GAS_solver_address_update) (void *solver,
404                               struct GNUNET_CONTAINER_MultiHashMap *addresses,
405                               struct ATS_Address *address,
406                               uint32_t session,
407                               int in_use,
408                               const struct GNUNET_ATS_Information *atsi,
409                               uint32_t atsi_count);
410
411
412 typedef const struct ATS_Address *
413 (*GAS_solver_get_preferred_address) (void *solver,
414                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
415                                      const struct GNUNET_PeerIdentity *peer);
416
417 typedef void
418 (*GAS_solver_stop_get_preferred_address) (void *solver,
419                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
420                                      const struct GNUNET_PeerIdentity *peer);
421
422
423 typedef void
424  (*GAS_solver_done) (void *solver);
425
426
427 /**
428  * Initialize address subsystem. The addresses subsystem manages the addresses
429  * known and current performance information. It has a solver component
430  * responsible for the resource allocation. It tells the solver about changes
431  * and receives updates when the solver changes the ressource allocation.
432  *
433  * @param cfg configuration to use
434  * @param stats the statistics handle to use
435  * @return an address handle
436  */
437 struct GAS_Addresses_Handle *
438 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
439                     const struct GNUNET_STATISTICS_Handle *stats);
440
441 /**
442  * Shutdown address subsystem.
443  *
444  * @param the address handle to shutdown
445  */
446 void
447 GAS_addresses_done (struct GAS_Addresses_Handle *handle);
448
449
450 /**
451  * Add a new address for a peer.
452  *
453  * @param handle the address handle to use
454  * @param peer peer
455  * @param plugin_name transport plugin name
456  * @param plugin_addr plugin address
457  * @param plugin_addr_len length of the plugin address
458  * @param session_id session id, can be 0
459  * @param atsi performance information for this address
460  * @param atsi_count number of performance information contained
461  */
462 void
463 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
464                    const struct GNUNET_PeerIdentity *peer,
465                    const char *plugin_name,
466                    const void *plugin_addr,
467                    size_t plugin_addr_len,
468                    uint32_t session_id,
469                    const struct GNUNET_ATS_Information *atsi,
470                    uint32_t atsi_count);
471
472
473 /**
474  * Notification about active use of an address.
475  * in_use == GNUNET_YES:
476  *      This address is used to maintain an active connection with a peer.
477  * in_use == GNUNET_NO:
478  *      This address is no longer used to maintain an active connection with a peer.
479  *
480  * Note: can only be called with in_use == GNUNET_NO if called with GNUNET_YES
481  * before
482  *
483  * @param handle the address handle to use
484  * @param peer peer
485  * @param plugin_name transport plugin name
486  * @param plugin_addr plugin address
487  * @param plugin_addr_len length of the plugin address
488  * @param session_id session id, can be 0
489  * @param in_use GNUNET_YES if GNUNET_NO
490  * @return GNUNET_SYSERR on failure (address unknown ...)
491  */
492 int
493 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
494                       const struct GNUNET_PeerIdentity *peer,
495                       const char *plugin_name,
496                       const void *plugin_addr,
497                       size_t plugin_addr_len,
498                       uint32_t session_id,
499                       int in_use);
500
501 void
502 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
503                       const struct GNUNET_PeerIdentity *peer,
504                       const char *plugin_name, const void *plugin_addr,
505                       size_t plugin_addr_len, uint32_t session_id,
506                       const struct GNUNET_ATS_Information *atsi,
507                       uint32_t atsi_count);
508
509
510 void
511 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
512                        const struct GNUNET_PeerIdentity *peer,
513                        const char *plugin_name, const void *plugin_addr,
514                        size_t plugin_addr_len, uint32_t session_id);
515
516
517 void
518 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle);
519
520
521 void
522 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
523                                const struct GNUNET_PeerIdentity *peer);
524
525 /**
526  * Cancel address suggestions for a peer
527  *
528  * @param peer the respective peer
529  */
530 void
531 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
532                                       const struct GNUNET_PeerIdentity *peer);
533
534
535
536
537 /**
538  *
539  */
540 void
541 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
542                                     const struct GNUNET_PeerIdentity *peer);
543
544
545 void
546 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
547                                  void *client,
548                                  const struct GNUNET_PeerIdentity *peer,
549                                  enum GNUNET_ATS_PreferenceKind kind,
550                                  float score);
551
552
553
554 typedef void (*GNUNET_ATS_Peer_Iterator) (void *p_it_cls,
555                                           const struct GNUNET_PeerIdentity *id);
556
557 /**
558  * Return all peers currently known to ATS
559  *
560  * @param p_it the iterator to call for every peer
561  * @param p_it_cls the closure for the iterator
562  */
563 void
564 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle,
565                              GNUNET_ATS_Peer_Iterator p_it,
566                              void *p_it_cls);
567
568 typedef void (*GNUNET_ATS_PeerInfo_Iterator) (void *p_it_cls,
569     const struct GNUNET_PeerIdentity *id,
570     const char *plugin_name,
571     const void *plugin_addr, size_t plugin_addr_len,
572     const int address_active,
573     const struct GNUNET_ATS_Information *atsi,
574     uint32_t atsi_count,
575     struct GNUNET_BANDWIDTH_Value32NBO
576     bandwidth_out,
577     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
578
579 /**
580  * Return information all peers currently known to ATS
581  *
582  * @param peer the respective peer
583  * @param pi_it the iterator to call for every peer
584  * @param pi_it_cls the closure for the iterator
585  */
586 void
587 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
588                              const struct GNUNET_PeerIdentity *peer,
589                              GNUNET_ATS_PeerInfo_Iterator pi_it,
590                              void *pi_it_cls);
591
592 #endif
593
594 /* end of gnunet-service-ats_addresses.h */