fixed adding addresses with updated networks
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.c
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.c
23  * @brief ats service address management
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_ats_service.h"
29 #include "gnunet-service-ats.h"
30 #include "gnunet-service-ats_addresses.h"
31 #include "gnunet-service-ats_normalization.h"
32 #include "gnunet-service-ats_performance.h"
33 #include "gnunet-service-ats_scheduling.h"
34 #include "gnunet-service-ats_reservations.h"
35 #if HAVE_LIBGLPK
36 #include "gnunet-service-ats-solver_mlp.h"
37 #endif
38 #include "gnunet-service-ats-solver_proportional.h"
39
40 /**
41  * NOTE: Do not change this documentation. This documentation is based on
42  * gnunet.org:/vcs/fsnsg/ats-paper.git/tech-doku/ats-tech-guide.tex
43  * use build_txt.sh to generate plaintext output
44  *
45  *   1 ATS addresses : ATS address management
46  *
47  *    This ATS addresses ("addresses") component manages the addresses known to
48  *    ATS service and suggests addresses to transport service when it is
49  *    interested in address suggestion for a peer. ATS addresses also
50  *    instantiates the bandwidth assignment mechanism (solver), notifies it
51  *    about changes to addresses and forwards changes to bandwidth assignments
52  *    to transport, depending if transport is interested in this change.
53  *
54  *     1.1 Input data
55  *
56  *       1.1.1 Addresses
57  *
58  *    Addresses are added by specifying peer ID, plugin, address, address length
59  *    and session, if available. ATS information can be specified if available.
60  *
61  *       1.1.2 Networks
62  *
63  *    ATS specifies a fix set of networks an address can belong to. For each
64  *    network an inbound and outbound quota will be specified. The available
65  *    networks and addtional helper varaibles are defined in
66  *    gnunet_ats_service.h. At the moment 5 networks are defined:
67  *      * GNUNET_ATS_NET_UNSPECIFIED
68  *      * GNUNET_ATS_NET_LOOPBACK
69  *      * GNUNET_ATS_NET_LAN
70  *      * GNUNET_ATS_NET_WAN
71  *      * GNUNET_ATS_NET_WLAN
72  *
73  *    The total number of networks defined is stored in
74  *    GNUNET_ATS_NetworkTypeCount GNUNET_ATS_NetworkType can be used array
75  *    initializer for an int array, while GNUNET_ATS_NetworkType is an
76  *    initializer for a char array containing a string description of all
77  *    networks
78  *
79  *       1.1.3 Quotas
80  *
81  *    An inbound and outbound quota for each of the networks mentioned in 1.1.2
82  *    is loaded from ats configuration during initialization. This quota defines
83  *    to total amount of inbound and outbound traffic allowed for a specific
84  *    network. The configuration values used are in section ats:
85  *      * "NETWORK"_QUOTA_IN = <value>
86  *      * "NETWORK"_QUOTA_IN = <value>
87  *
88  *    You can specify quotas by setting the <value> to a:
89  *      * unrestricted: unlimited
90  *      * number of bytes: e.g. 10240
91  *      * fancy value: e.g. 64 Kib
92  *
93  *    unlimited is defined as GNUNET_ATS_MaxBandwidthString and equivalent to
94  *    the value GNUNET_ATS_MaxBandwidth Important predefined values for quotas
95  *    are:
96  *      * GNUNET_ATS_DefaultBandwidth: 65536
97  *      * GNUNET_ATS_MaxBandwidth: UINT32_MAX
98  *      * GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT: 1024
99  *
100  *    Details of loading quotas and default values will be described on
101  *
102  *       1.1.4 Preference values
103  *
104  *     1.2 Data structures used
105  *
106  *    Addresse uses struct ATS_Address for each address. The structs are stored
107  *    in a linked list and provides a pointer void *solver_information for the
108  *    solver to store address specific information. It provides the int values
109  *    active which is set to GNUNET_YES if the address is select for transport
110  *    use and used, representing that transport service is actively using this
111  *    address. Address information are stored in peer, addr, addr_len, plugin.
112  *
113  *     1.3 Initialization
114  *
115  *    During initialization a hashmap to store addresses is created. The quotas
116  *    for all networks defined for ATS are loaded from configuration. For each
117  *    network first the logic will check if the string
118  *    GNUNET_ATS_MaxBandwidthString is configured, if not it will try to convert
119  *    the configured value as a fancy size and if this fails it will try to use
120  *    it as a value_number. If no configuration value is found it will assign
121  *    GNUNET_ATS_DefaultBandwidth. The most important step is to load the
122  *    configured solver using configuration "[ats]:MODE". Current solvers are
123  *    MODE_SIMPLISTIC, MODE_MLP. Interaction is done using a solver API
124  *
125  *     1.4 Solver API
126  *
127  *    Solver functions:
128  *      * s_init: init the solver with required information
129  *      * s_add: add a new address
130  *      * s_update: update ATS values or session for an address
131  *      * s_get: get prefered address for a peer
132  *      * s_del: delete an address
133  *      * s_pref: change preference value for a peer
134  *      * s_done: shutdown solver
135  *
136  *    Callbacks: addresses provides a bandwidth_changed_cb callback to the
137  *    solver which is called when bandwidth assigned to peer has changed
138  *
139  *     1.5 Shutdown
140  *
141  *    During shutdown all addresses are freed and the solver told to shutdown
142  *
143  *     1.6 Addresses and sessions
144  *
145  *    Addresses consist of the address itself and a numerical session. When a
146  *    new address without a session is added it has no session, so it gets
147  *    session 0 assigned. When an address with a session is added and an address
148  *    object with session 0 is found, this object is updated with the session
149  *    otherwise a new address object with this session assigned is created.
150  *
151  *       1.6.1 Terminology
152  *
153  *    Addresses a1,a2 with session s1, s2 are "exact" if:
154  *    (a1 == a2)&&(s1 == s2)
155  *    Addresses a1,a2 with session s1, s2 are "equivalent" if:
156  *    (a1 == a2)&&((s1 == s2)||(s1 == 0)||(s2 == 0)
157  *
158  *     1.7 Address management
159  *
160  *    Transport service notifies ATS about changes to the addresses known to
161  *    him.
162  *
163  *       1.7.1 Adding an address
164  *
165  *    When transport learns a new address it tells ATS and ATS is telling
166  *    addresses about it using GAS_address_add. If not known to addresses it
167  *    creates a new address object and calls solver's s_add. ATS information are
168  *    deserialized and solver is notified about the session and ATS information
169  *    using s_update.
170  *
171  *       1.7.2 Updating an address
172  *
173  *    Addresses does an lookup up for the existing address with the given
174  *    session. If disassembles included ATS information and notifies the solver
175  *    using s_update about the update.
176  *
177  *       1.7.3 Deleting an address
178  *
179  *    Addresses does an lookup for the exact address and session and if removes
180  *    this address. If session != 0 the session is set to 0 and the address is
181  *    kept. If session == 0, the addresses is removed.
182  *
183  *       1.7.4 Requesting an address suggestion
184  *
185  *    The address client issues a request address message to be notified about
186  *    address suggestions for a specific peer. Addresses asks the solver with
187  *    s_get. If no address is available, it will not send a response, otherwise
188  *    it will respond with the choosen address.
189  *
190  *       1.7.5 Address suggestions
191  *
192  *    Addresses will notify the client automatically on any bandwidth_changed_cb
193  *    by the solver if a address suggestion request is pending. If no address is
194  *    available it will not respond at all If the client is not interested
195  *    anymore, it has to cancel the address suggestion request.
196  *
197  *       1.7.6 Suggestions blocks and reset
198  *
199  *    After suggesting an address it is blocked for ATS_BLOCKING_DELTA sec. to
200  *    prevent the client from being thrashed. If the client requires immediately
201  *    it can reset this block using GAS_addresses_handle_backoff_reset.
202  *
203  *       1.7.7 Marking address in use
204  *
205  *    The client can notify addresses that it successfully uses an address and
206  *    wants this address to be kept by calling GSA_address_in_use. Adresses will
207  *    mark the address as used an notify the solver about the use.
208  *
209  *       1.7.8 Address lifecycle
210  *
211  *      * (add address)
212  *      * (updated address) || (address in use)
213  *      * (delete address)
214  *
215  *     1.8 Bandwidth assignment
216  *
217  *    The addresses are used to perform resource allocation operations. ATS
218  *    addresses takes care of instantiating the solver configured and notifies
219  *    the respective solver about address changes and receives changes to the
220  *    bandwidth assignment from the solver. The current bandwidth assignment is
221  *    sent to transport. The specific solvers will be described in the specific
222  *    section.
223  *
224  *     1.9 Changing peer preferences
225  *
226  *    The bandwidth assigned to a peer can be influenced by setting a preference
227  *    for a peer. The prefernce will be given to to the solver with s_pref which
228  *    has to take care of the preference value
229
230  */
231
232
233 /**
234  * Available ressource assignment modes
235  */
236 enum ATS_Mode
237 {
238   /*
239    * Simplistic mode:
240    *
241    * Assign each peer an equal amount of bandwidth (bw)
242    *
243    * bw_per_peer = bw_total / #active addresses
244    */
245   MODE_SIMPLISTIC,
246
247   /*
248    * MLP mode:
249    *
250    * Solve ressource assignment as an optimization problem
251    * Uses an mixed integer programming solver
252    */
253   MODE_MLP
254 };
255
256
257 /**
258  * Pending Address suggestion requests
259  */
260 struct GAS_Addresses_Suggestion_Requests
261 {
262   /**
263    * Next in DLL
264    */
265   struct GAS_Addresses_Suggestion_Requests *next;
266
267   /**
268    * Previous in DLL
269    */
270   struct GAS_Addresses_Suggestion_Requests *prev;
271
272   /**
273    * Peer ID
274    */
275   struct GNUNET_PeerIdentity id;
276 };
277
278
279 /**
280  * Handle for ATS address component
281  */
282 struct GAS_Addresses_Handle
283 {
284   /**
285    *
286    */
287   struct GNUNET_STATISTICS_Handle *stat;
288
289   /**
290    * A multihashmap to store all addresses
291    */
292   struct GNUNET_CONTAINER_MultiHashMap *addresses;
293
294   /**
295    * Configure WAN quota in
296    */
297   unsigned long long wan_quota_in;
298
299   /**
300    * Configure WAN quota out
301    */
302   unsigned long long wan_quota_out;
303
304   /**
305    * Is ATS addresses running
306    */
307   int running;
308
309   /**
310    * Configured ATS solver
311    */
312   int ats_mode;
313
314   /**
315    *  Solver handle
316    */
317   void *solver;
318
319   /**
320    * Address suggestion requests DLL head
321    */
322   struct GAS_Addresses_Suggestion_Requests *r_head;
323
324   /**
325    * Address suggestion requests DLL tail
326    */
327   struct GAS_Addresses_Suggestion_Requests *r_tail;
328
329   /* Solver functions */
330
331   /**
332    * Initialize solver
333    */
334   GAS_solver_init s_init;
335
336   /**
337    * Add an address to the solver
338    */
339   GAS_solver_address_add s_add;
340
341
342   GAS_solver_address_property_changed s_address_update_property;
343
344   GAS_solver_address_session_changed s_address_update_session;
345
346   GAS_solver_address_inuse_changed s_address_update_inuse;
347
348   GAS_solver_address_network_changed s_address_update_network;
349
350   /**
351    * Get address from solver
352    */
353   GAS_solver_get_preferred_address s_get;
354
355   /**
356    * Get address from solver
357    */
358   GAS_solver_stop_get_preferred_address s_get_stop;
359
360   /**
361    * Delete address in solver
362    */
363   GAS_solver_address_delete s_del;
364
365   /**
366    * Change relative preference for quality in solver
367    */
368   GAS_solver_address_change_preference s_pref;
369
370   /**
371    * Start a bulk operation
372    */
373   GAS_solver_bulk_start s_bulk_start;
374
375   /**
376    * Bulk operation done
377    */
378   GAS_solver_bulk_stop s_bulk_stop;
379
380   /**
381    * Shutdown solver
382    */
383   GAS_solver_done s_done;
384 };
385
386
387 /**
388  * Disassemble ATS information and update performance information in address
389  *
390  * Updates existing information and adds new information
391  *
392  * @param dest destination address
393  * @param update source ATS information
394  * @param update_count number of ATS information
395  * @param delta_dest ats performance information which were updated
396  *                              including previous value
397  * @param delta_count number of ATS information in the delta
398  * @return GNUNET_YES if address was address updated, GNUNET_NO otherwise
399  */
400 static unsigned int
401 disassemble_ats_information (struct ATS_Address *dest,
402                                                                                                                  const struct GNUNET_ATS_Information *update,
403                              uint32_t update_count,
404                              struct GNUNET_ATS_Information **delta_dest,
405                              uint32_t *delta_count)
406 {
407
408   int c1;
409   int c2;
410   int found;
411   int change;
412
413   struct GNUNET_ATS_Information add_atsi[update_count];
414   struct GNUNET_ATS_Information delta_atsi[update_count];
415   struct GNUNET_ATS_Information *tmp_atsi;
416   uint32_t add_atsi_count;
417   uint32_t delta_atsi_count;
418
419   change = GNUNET_NO;
420   add_atsi_count = 0;
421   delta_atsi_count = 0;
422
423   if (0 == update_count)
424         return GNUNET_NO;
425
426   if (NULL == dest->atsi)
427   {
428                 /* Create performance information */
429                 dest->atsi = GNUNET_malloc (update_count * sizeof (struct GNUNET_ATS_Information));
430                 dest->atsi_count = update_count;
431                 memcpy (dest->atsi, update, update_count * sizeof (struct GNUNET_ATS_Information));
432                 delta_atsi_count = update_count;
433                 (*delta_dest) = GNUNET_malloc (update_count * sizeof (struct GNUNET_ATS_Information));
434                 for (c1 = 0; c1 < update_count; c1 ++)
435                 {
436                         (*delta_dest)[c1].type = update[c1].type;
437                         (*delta_dest)[c1].value = htonl(GNUNET_ATS_VALUE_UNDEFINED);
438                 }
439                 (*delta_count) = update_count;
440                 return GNUNET_YES;
441   }
442
443   for (c1 = 0; c1 < update_count; c1++)
444   {
445         /* Update existing performance information */
446         found = GNUNET_NO;
447         for (c2 = 0; c2 < dest->atsi_count; c2++)
448         {
449                         if (update[c1].type == dest->atsi[c2].type)
450                         {
451                                 if (update[c1].value != dest->atsi[c2].value)
452                                 {
453                                                 /* Save previous value in delta */
454                                                 delta_atsi[delta_atsi_count] = dest->atsi[c2];
455                                                 delta_atsi_count ++;
456                                                 /* Set new value */
457                                                 dest->atsi[c2].value = update[c1].value;
458                                                 change = GNUNET_YES;
459                                 }
460                                 found = GNUNET_YES;
461                                 break;
462                         }
463         }
464                 if (GNUNET_NO == found)
465                 {
466                                 add_atsi[add_atsi_count] = update[c1];
467                                 add_atsi_count ++;
468                                 delta_atsi[delta_atsi_count].type = update[c1].type;
469                                 delta_atsi[delta_atsi_count].value = htonl (GNUNET_ATS_VALUE_UNDEFINED);
470                                 delta_atsi_count ++;
471                 }
472   }
473
474   if (add_atsi_count > 0)
475   {
476                 /* Extend ats performance information */
477
478                 tmp_atsi = GNUNET_malloc ((dest->atsi_count + add_atsi_count) *
479                                                                                                                         (sizeof (struct GNUNET_ATS_Information)));
480                 memcpy (tmp_atsi, dest->atsi, dest->atsi_count * sizeof (struct GNUNET_ATS_Information));
481                 memcpy (&tmp_atsi[dest->atsi_count], add_atsi, add_atsi_count * sizeof (struct GNUNET_ATS_Information));
482                 GNUNET_free (dest->atsi);
483                 dest->atsi = tmp_atsi;
484                 dest->atsi_count = dest->atsi_count + add_atsi_count;
485                         change = GNUNET_YES;
486   }
487
488   if (delta_atsi_count > 0)
489   {
490                 /* Copy delta */
491                 (*delta_dest) = GNUNET_malloc (delta_atsi_count * sizeof (struct GNUNET_ATS_Information));
492                 memcpy ((*delta_dest), delta_atsi, delta_atsi_count * sizeof (struct GNUNET_ATS_Information));
493                 (*delta_count) = delta_atsi_count;
494   }
495
496   return change;
497 }
498
499 /**
500  * Free the given address
501  *
502  * @param addr address to destroy
503  */
504 static void
505 free_address (struct ATS_Address *addr)
506 {
507   GNUNET_free (addr->plugin);
508   GNUNET_free_non_null (addr->atsi);
509   GNUNET_free (addr);
510 }
511
512 /**
513  * Create a ATS_address with the given information
514  *
515  * @param peer peer
516  * @param plugin_name plugin
517  * @param plugin_addr address
518  * @param plugin_addr_len address length
519  * @param session_id session
520  * @return the ATS_Address
521  */
522 static struct ATS_Address *
523 create_address (const struct GNUNET_PeerIdentity *peer,
524                 const char *plugin_name,
525                 const void *plugin_addr, size_t plugin_addr_len,
526                 uint32_t session_id)
527 {
528   struct ATS_Address *aa = NULL;
529   int c1;
530   int c2;
531
532   aa = GNUNET_malloc (sizeof (struct ATS_Address) + plugin_addr_len);
533   aa->peer = *peer;
534   aa->addr_len = plugin_addr_len;
535   aa->addr = &aa[1];
536   memcpy (&aa[1], plugin_addr, plugin_addr_len);
537   aa->plugin = GNUNET_strdup (plugin_name);
538   aa->session_id = session_id;
539   aa->active = GNUNET_NO;
540   aa->used = GNUNET_NO;
541   aa->solver_information = NULL;
542   aa->atsi = NULL;
543   aa->atsi_count = 0;
544   aa->assigned_bw_in = GNUNET_BANDWIDTH_value_init(0);
545   aa->assigned_bw_out = GNUNET_BANDWIDTH_value_init(0);
546
547   for (c1 = 0; c1 < GNUNET_ATS_QualityPropertiesCount; c1 ++)
548   {
549         aa->atsin[c1].avg_queue_index = 0;
550         for (c2 = 0; c2 < GAS_normalization_queue_length; c2++)
551                 aa->atsin[c1].atsi_abs[c2] = GNUNET_ATS_VALUE_UNDEFINED;
552   }
553
554   return aa;
555 }
556
557
558 struct CompareAddressContext
559 {
560   const struct ATS_Address *search;
561
562   /* exact_address != NULL if address and session is equal */
563   struct ATS_Address *exact_address;
564   /* exact_address != NULL if address and session is 0 */
565   struct ATS_Address *base_address;
566 };
567
568 /**
569  * Comapre addresses
570  *
571  * @param cls a CompareAddressContext containin the source address
572  * @param key peer id
573  * @param value the address to compare with
574  * @return GNUNET_YES to continue, GNUNET_NO if address is founce
575  */
576
577 static int
578 compare_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
579 {
580   struct CompareAddressContext *cac = cls;
581   struct ATS_Address *aa = value;
582
583   /* Find an matching exact address:
584    *
585    * Compare by:
586    * aa->addr_len == cac->search->addr_len
587    * aa->plugin == cac->search->plugin
588    * aa->addr == cac->search->addr
589    * aa->session == cac->search->session
590    *
591    * return as exact address
592    */
593   if ((aa->addr_len == cac->search->addr_len) && (0 == strcmp (aa->plugin, cac->search->plugin)))
594   {
595       if ((0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)) && (aa->session_id == cac->search->session_id))
596         cac->exact_address = aa;
597   }
598
599   /* Find an matching base address:
600    *
601    * Properties:
602    *
603    * aa->session_id == 0
604    *
605    * Compare by:
606    * aa->addr_len == cac->search->addr_len
607    * aa->plugin == cac->search->plugin
608    * aa->addr == cac->search->addr
609    *
610    * return as base address
611    */
612   if ((aa->addr_len == cac->search->addr_len) && (0 == strcmp (aa->plugin, cac->search->plugin)))
613   {
614       if ((0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)) && (aa->session_id == 0))
615         cac->base_address = aa;
616   }
617
618   /* Find an matching exact address based on session:
619    *
620    * Properties:
621    *
622    * cac->search->addr_len == 0
623    *
624    * Compare by:
625    * aa->plugin == cac->search->plugin
626    * aa->session_id == cac->search->session_id
627    *
628    * return as exact address
629    */
630   if (0 == cac->search->addr_len)
631   {
632       if ((0 == strcmp (aa->plugin, cac->search->plugin)) && (aa->session_id == cac->search->session_id))
633         cac->exact_address = aa;
634   }
635
636   if (cac->exact_address == NULL)
637     return GNUNET_YES; /* Continue iteration to find exact address */
638   else
639     return GNUNET_NO; /* Stop iteration since we have an exact address */
640 }
641
642
643 /**
644  * Find an existing equivalent address record.
645  * Compares by peer identity and network address OR by session ID
646  * (one of the two must match).
647  *
648  * @param handle the address handle
649  * @param peer peer to lookup addresses for
650  * @param addr existing address record
651  * @return existing address record, NULL for none
652  */
653 struct ATS_Address *
654 find_equivalent_address (struct GAS_Addresses_Handle *handle,
655                          const struct GNUNET_PeerIdentity *peer,
656                          const struct ATS_Address *addr)
657 {
658   struct CompareAddressContext cac;
659
660   cac.exact_address = NULL;
661   cac.base_address = NULL;
662   cac.search = addr;
663   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey,
664                                               &compare_address_it, &cac);
665
666   if (cac.exact_address == NULL)
667     return cac.base_address;
668   return cac.exact_address;
669 }
670
671
672 /**
673  * Find the exact address
674  *
675  * @param handle the address handle to use
676  * @param peer peer
677  * @param plugin_name transport plugin name
678  * @param plugin_addr plugin address
679  * @param plugin_addr_len length of the plugin address
680  * @param session_id session id, can be 0
681  * @return an ATS_address or NULL
682  */
683
684 static struct ATS_Address *
685 find_exact_address (struct GAS_Addresses_Handle *handle,
686                 const struct GNUNET_PeerIdentity *peer,
687                 const char *plugin_name,
688                 const void *plugin_addr,
689                 size_t plugin_addr_len,
690                 uint32_t session_id)
691 {
692   struct ATS_Address *aa;
693   struct ATS_Address *ea;
694
695   aa = create_address (peer,
696                        plugin_name,
697                        plugin_addr, plugin_addr_len,
698                        session_id);
699
700   /* Get existing address or address with session == 0 */
701   ea = find_equivalent_address (handle, peer, aa);
702   free_address (aa);
703   if (ea == NULL)
704     return NULL;
705   else if (ea->session_id != session_id)
706     return NULL;
707   return ea;
708 }
709
710
711 /**
712  * Extract an ATS performance info from an address
713  *
714  * @param address the address
715  * @param type the type to extract in HBO
716  * @return the value in HBO or GNUNET_ATS_VALUE_UNDEFINED in HBO if value does not exist
717  */
718 static int
719 get_performance_info (struct ATS_Address *address, uint32_t type)
720 {
721         int c1;
722         GNUNET_assert (NULL != address);
723
724         if ((NULL == address->atsi) || (0 == address->atsi_count))
725                         return GNUNET_ATS_VALUE_UNDEFINED;
726
727         for (c1 = 0; c1 < address->atsi_count; c1++)
728         {
729                         if (ntohl(address->atsi[c1].type) == type)
730                                 return ntohl(address->atsi[c1].value);
731         }
732         return GNUNET_ATS_VALUE_UNDEFINED;
733 }
734
735
736 /**
737  * Add a new address for a peer.
738  *
739  * @param handle the address handle to use
740  * @param peer peer
741  * @param plugin_name transport plugin name
742  * @param plugin_addr plugin address
743  * @param plugin_addr_len length of the plugin address
744  * @param session_id session id, can be 0
745  * @param atsi performance information for this address
746  * @param atsi_count number of performance information contained
747  */
748 void
749 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
750                    const struct GNUNET_PeerIdentity *peer,
751                    const char *plugin_name,
752                    const void *plugin_addr,
753                    size_t plugin_addr_len,
754                    uint32_t session_id,
755                    const struct GNUNET_ATS_Information *atsi,
756                    uint32_t atsi_count)
757 {
758   struct ATS_Address *new_address;
759   struct ATS_Address *existing_address;
760   struct GNUNET_ATS_Information *atsi_delta;
761   uint32_t atsi_delta_count;
762   uint32_t addr_net;
763   uint32_t previous_session;
764   int c1;
765
766   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
767               "Received `%s' for peer `%s'\n",
768               "ADDRESS ADD",
769               GNUNET_i2s (peer));
770
771   if (GNUNET_NO == handle->running)
772     return;
773
774   GNUNET_assert (NULL != handle->addresses);
775
776   new_address = create_address (peer, plugin_name, plugin_addr, plugin_addr_len,
777                        session_id);
778   atsi_delta = NULL;
779   disassemble_ats_information (new_address, atsi, atsi_count, &atsi_delta, &atsi_delta_count);
780   GNUNET_free_non_null (atsi_delta);
781   addr_net = get_performance_info (new_address, GNUNET_ATS_NETWORK_TYPE);
782   if (GNUNET_ATS_VALUE_UNDEFINED == addr_net)
783                 addr_net = GNUNET_ATS_NET_UNSPECIFIED;
784
785   /* Get existing address or address with session == 0 */
786   existing_address = find_equivalent_address (handle, peer, new_address);
787   if (existing_address == NULL)
788   {
789     /* Add a new address */
790     GNUNET_assert (GNUNET_OK ==
791                    GNUNET_CONTAINER_multihashmap_put (handle->addresses,
792                       &peer->hashPubKey, new_address,
793                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
794
795     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Adding new address %p for peer `%s' session id %u, %s\n",
796                 new_address, GNUNET_i2s (peer), session_id, GNUNET_ATS_print_network_type(addr_net));
797
798     /* Tell solver about new address */
799     handle->s_add (handle->solver, new_address, addr_net);
800
801     handle->s_bulk_start (handle->solver);
802     GAS_normalization_normalize_property (handle->addresses, new_address, atsi, atsi_count);
803     handle->s_bulk_stop (handle->solver);
804
805     /* Notify performance clients about new address */
806     GAS_performance_notify_all_clients (&new_address->peer,
807         new_address->plugin,
808         new_address->addr, new_address->addr_len,
809         new_address->session_id,
810         new_address->atsi, new_address->atsi_count,
811         new_address->assigned_bw_out,
812         new_address->assigned_bw_in);
813     return;
814   }
815
816   /* We have an existing address we can use, clean up new */
817   GNUNET_free (new_address->plugin);
818   GNUNET_free_non_null (new_address->atsi);
819   GNUNET_free (new_address);
820   new_address = NULL;
821
822   if (0 != existing_address->session_id)
823   {
824       /* Should not happen */
825       GNUNET_break (0);
826       return;
827   }
828
829   addr_net = get_performance_info (existing_address, GNUNET_ATS_NETWORK_TYPE);
830   if (GNUNET_ATS_VALUE_UNDEFINED == addr_net)
831                 addr_net = GNUNET_ATS_NET_UNSPECIFIED;
832
833   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
834            "Found existing address for peer `%s' %p with new session %u in network %s\n",
835            GNUNET_i2s (peer),
836            existing_address,
837            session_id,
838            GNUNET_ATS_print_network_type (addr_net));
839   /* We have an address without an session, update this address */
840   atsi_delta = NULL;
841   atsi_delta_count = 0;
842   if (GNUNET_YES == disassemble_ats_information (existing_address, atsi, atsi_count, &atsi_delta, &atsi_delta_count))
843   {
844         /* Notify performance clients about properties */
845                 GAS_performance_notify_all_clients (&existing_address->peer,
846                                 existing_address->plugin,
847                                 existing_address->addr, existing_address->addr_len,
848                                 existing_address->session_id,
849                                 existing_address->atsi, existing_address->atsi_count,
850                                 existing_address->assigned_bw_out,
851                                 existing_address->assigned_bw_in);
852
853                 for (c1 = 0; c1 < atsi_delta_count; c1++)
854                 {
855                         if (GNUNET_ATS_NETWORK_TYPE == ntohl (atsi_delta[c1].type))
856                         {
857                                 /* Network type changed */
858                                 GNUNET_break (0);
859                         handle->s_address_update_network (handle->solver, existing_address,
860                                         ntohl (atsi_delta[c1].value),
861                                         get_performance_info (existing_address, GNUNET_ATS_NETWORK_TYPE));
862                         addr_net = get_performance_info (existing_address, GNUNET_ATS_NETWORK_TYPE);
863                         }
864                 }
865
866                 /* Notify solver about update with atsi information and session */
867           handle->s_bulk_start (handle->solver);
868           GAS_normalization_normalize_property (handle->addresses, existing_address, atsi, atsi_count);
869           handle->s_bulk_stop (handle->solver);
870   }
871   GNUNET_free_non_null (atsi_delta);
872
873   /* Notify solver about new session */
874   previous_session = existing_address->session_id;
875   existing_address->session_id = session_id;
876   handle->s_address_update_session (handle->solver, existing_address,
877                 previous_session, session_id);
878
879   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
880            "Updated existing address for peer `%s' %p with new session %u in network %s\n",
881            GNUNET_i2s (peer),
882            existing_address,
883            session_id,
884            GNUNET_ATS_print_network_type(addr_net));
885 }
886
887
888 /**
889  * Update an address with a session or performance information for a peer.
890  *
891  * If an address was added without a session it will be updated with the
892  * session
893  *
894  * @param handle the address handle to use
895  * @param peer peer
896  * @param plugin_name transport plugin name
897  * @param plugin_addr plugin address
898  * @param plugin_addr_len length of the plugin address
899  * @param session_id session id, can be 0
900  * @param atsi performance information for this address
901  * @param atsi_count number of performance information contained
902  */
903 void
904 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
905                       const struct GNUNET_PeerIdentity *peer,
906                       const char *plugin_name, const void *plugin_addr,
907                       size_t plugin_addr_len, uint32_t session_id,
908                       const struct GNUNET_ATS_Information *atsi,
909                       uint32_t atsi_count)
910 {
911   struct ATS_Address *aa;
912   struct GNUNET_ATS_Information *atsi_delta;
913   uint32_t atsi_delta_count;
914   uint32_t prev_session;
915   int c1;
916
917   if (GNUNET_NO == handle->running)
918     return;
919
920   GNUNET_assert (NULL != handle->addresses);
921
922   /* Get existing address */
923   aa = find_exact_address (handle, peer, plugin_name,
924                                                                                                  plugin_addr, plugin_addr_len, session_id);
925   if (aa == NULL)
926   {
927     /* GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tried to update unknown address for peer `%s' `%s' session id %u\n", */
928     /*             GNUNET_i2s (peer), plugin_name, session_id); */
929     /* GNUNET_break (0); */
930     return;
931   }
932
933   if (NULL == aa->solver_information)
934   {
935     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tried to update unknown address for peer `%s' `%s' session id %u\n",
936                  GNUNET_i2s (peer), plugin_name, session_id);
937     return;
938   }
939
940   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
941                 "Received `%s' for peer `%s' address \n",
942                 "ADDRESS UPDATE",
943                 GNUNET_i2s (peer), aa);
944
945   /* Update address */
946   if (session_id != aa->session_id)
947   {
948         /* Session changed */
949     prev_session = aa->session_id;
950     aa->session_id = session_id;
951     handle->s_address_update_session (handle->solver, aa, prev_session, aa->session_id);
952   }
953
954   atsi_delta = NULL;
955   atsi_delta_count = 0;
956   if (GNUNET_YES == disassemble_ats_information (aa, atsi, atsi_count, &atsi_delta, &atsi_delta_count))
957   {
958         /* ATS properties changed */
959         for (c1 = 0; c1 < atsi_delta_count; c1++)
960         {
961                 if (GNUNET_ATS_NETWORK_TYPE == ntohl (atsi_delta[c1].type))
962                 {
963                         /* Network type changed */
964                         handle->s_address_update_network (handle->solver, aa,
965                                         ntohl (atsi_delta[c1].value),
966                                         get_performance_info (aa, GNUNET_ATS_NETWORK_TYPE));
967                 }
968         }
969
970                 /* Notify performance clients about updated address */
971                 GAS_performance_notify_all_clients (&aa->peer,
972                                 aa->plugin,
973                                 aa->addr, aa->addr_len,
974                                 aa->session_id,
975                                 aa->atsi, aa->atsi_count,
976                                 aa->assigned_bw_out,
977                                 aa->assigned_bw_in);
978
979                 handle->s_bulk_start (handle->solver);
980                 GAS_normalization_normalize_property (handle->addresses, aa, atsi, atsi_count);
981                 handle->s_bulk_stop (handle->solver);
982   }
983   GNUNET_free_non_null (atsi_delta);
984 }
985
986
987 struct DestroyContext
988 {
989   struct ATS_Address *aa;
990
991   struct GAS_Addresses_Handle *handle;
992
993   /**
994    * GNUNET_NO  : full address
995    * GNUNET_YES : just session
996    */
997   int result;
998 };
999
1000
1001 /**
1002  * Delete an address
1003  *
1004  * If session != 0, just the session is deleted, the address itself still exists
1005  * If session == 0, remove full address
1006  * If session == 0 and addrlen == 0, destroy inbound address
1007  *
1008  * @param cls unused
1009  * @param key unused
1010  * @param value the 'struct ATS_Address'
1011  * @return GNUNET_OK (continue to iterate)
1012  */
1013 static int
1014 destroy_by_session_id (void *cls, const struct GNUNET_HashCode * key, void *value)
1015 {
1016   struct DestroyContext *dc = cls;
1017   struct GAS_Addresses_Handle *handle = dc->handle;
1018   const struct ATS_Address *des = dc->aa;
1019   struct ATS_Address *aa = value;
1020
1021   GNUNET_assert (0 == memcmp (&aa->peer, &des->peer,
1022                               sizeof (struct GNUNET_PeerIdentity)));
1023
1024
1025   if (des->session_id == 0)
1026   {
1027     /* Session == 0, remove full address  */
1028     if ((0 == strcmp (des->plugin, aa->plugin)) &&
1029         (aa->addr_len == des->addr_len) &&
1030         (0 == memcmp (des->addr, aa->addr, aa->addr_len)))
1031     {
1032
1033       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1034                   "Deleting full address for peer `%s' session %u %p\n",
1035                   GNUNET_i2s (&aa->peer), aa->session_id, aa);
1036
1037       /* Notify solver about deletion */
1038       GNUNET_assert (GNUNET_YES ==
1039                 GNUNET_CONTAINER_multihashmap_remove (handle->addresses,
1040                         &aa->peer.hashPubKey, aa));
1041       handle->s_del (handle->solver, aa, GNUNET_NO);
1042       free_address (aa);
1043       dc->result = GNUNET_NO;
1044       return GNUNET_OK; /* Continue iteration */
1045     }
1046   }
1047   else
1048   {
1049     /* Session != 0, just remove session */
1050     if (aa->session_id != des->session_id)
1051       return GNUNET_OK; /* irrelevant */
1052
1053     if ((aa->session_id != 0) &&
1054         (0 != strcmp (des->plugin, aa->plugin)))
1055     {
1056         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1057                     "Different plugins during removal: `%s' vs `%s' \n",
1058                     des->plugin, aa->plugin);
1059         GNUNET_break (0);
1060         return GNUNET_OK;
1061     }
1062
1063     if (aa->addr_len == 0)
1064     {
1065         /* Inbound connection died, delete full address */
1066         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1067                     "Deleting inbound address for peer `%s': `%s' session %u\n",
1068                     GNUNET_i2s (&aa->peer), aa->plugin, aa->session_id);
1069
1070         /* Notify solver about deletion */
1071         GNUNET_assert (GNUNET_YES ==
1072                         GNUNET_CONTAINER_multihashmap_remove (handle->addresses,
1073                         &aa->peer.hashPubKey, aa));
1074         handle->s_del (handle->solver, aa, GNUNET_NO);
1075         free_address (aa);
1076         dc->result = GNUNET_NO;
1077         return GNUNET_OK; /* Continue iteration */
1078     }
1079     else
1080     {
1081         /* Session died */
1082         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1083                     "Deleting session for peer `%s': `%s' %u\n",
1084                     GNUNET_i2s (&aa->peer), aa->plugin, aa->session_id);
1085         /* Notify solver to delete session */
1086         handle->s_del (handle->solver, aa, GNUNET_YES);
1087         aa->session_id = 0;
1088         return GNUNET_OK;
1089     }
1090   }
1091   return GNUNET_OK;
1092 }
1093
1094
1095 /**
1096  * Remove an address or just a session for a peer.
1097  *
1098  * @param handle the address handle to use
1099  * @param peer peer
1100  * @param plugin_name transport plugin name
1101  * @param plugin_addr plugin address
1102  * @param plugin_addr_len length of the plugin address
1103  * @param session_id session id, can be 0
1104  */
1105 void
1106 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
1107                        const struct GNUNET_PeerIdentity *peer,
1108                        const char *plugin_name,
1109                        const void *plugin_addr,
1110                        size_t plugin_addr_len,
1111                        uint32_t session_id)
1112 {
1113   struct ATS_Address *ea;
1114   struct DestroyContext dc;
1115   if (GNUNET_NO == handle->running)
1116     return;
1117
1118   /* Get existing address */
1119   ea = find_exact_address (handle, peer, plugin_name, plugin_addr,
1120                 plugin_addr_len, session_id);
1121   if (ea == NULL)
1122   {
1123     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tried to destroy unknown address for peer `%s' `%s' session id %u\n",
1124                 GNUNET_i2s (peer), plugin_name, session_id);
1125     return;
1126   }
1127
1128   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1129               "Received `%s' for peer `%s' address %p session %u\n",
1130               "ADDRESS DESTROY",
1131               GNUNET_i2s (peer), ea, session_id);
1132
1133   GNUNET_break (0 < strlen (plugin_name));
1134   dc.handle = handle;
1135   dc.aa = create_address (peer, plugin_name, plugin_addr, plugin_addr_len, session_id);
1136
1137   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey,
1138                                               &destroy_by_session_id, &dc);
1139   free_address (dc.aa);
1140 }
1141
1142
1143 /**
1144  * Notification about active use of an address.
1145  * in_use == GNUNET_YES:
1146  *      This address is used to maintain an active connection with a peer.
1147  * in_use == GNUNET_NO:
1148  *      This address is no longer used to maintain an active connection with a peer.
1149  *
1150  * Note: can only be called with in_use == GNUNET_NO if called with GNUNET_YES
1151  * before
1152  *
1153  * @param handle the address handle to use
1154  * @param peer peer
1155  * @param plugin_name transport plugin name
1156  * @param plugin_addr plugin address
1157  * @param plugin_addr_len length of the plugin address
1158  * @param session_id session id, can be 0
1159  * @param in_use GNUNET_YES if GNUNET_NO
1160  * @return GNUNET_SYSERR on failure (address unknown ...)
1161  */
1162 int
1163 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
1164                       const struct GNUNET_PeerIdentity *peer,
1165                       const char *plugin_name,
1166                       const void *plugin_addr,
1167                       size_t plugin_addr_len,
1168                       uint32_t session_id,
1169                       int in_use)
1170 {
1171   struct ATS_Address *ea;
1172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1173                 "Received `%s' for peer `%s'\n",
1174                 "ADDRESS IN USE",
1175                 GNUNET_i2s (peer));
1176
1177   if (GNUNET_NO == handle->running)
1178     return GNUNET_SYSERR;
1179
1180   ea = find_exact_address (handle, peer, plugin_name,
1181                 plugin_addr, plugin_addr_len, session_id);
1182   if (NULL == ea)
1183   {
1184     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1185                 "Trying to set unknown address `%s', %s %u %s \n",
1186                 GNUNET_i2s (peer),
1187                 plugin_name, session_id,
1188                 (GNUNET_NO == in_use) ? "NO" : "YES");
1189     GNUNET_break (0);
1190     return GNUNET_SYSERR;
1191   }
1192   if (ea->used == in_use)
1193   {
1194     GNUNET_break (0);
1195     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1196                 "Address in use called multiple times for peer `%s': %s -> %s \n",
1197                 GNUNET_i2s (peer),
1198                 (GNUNET_NO == ea->used) ? "NO" : "YES",
1199                 (GNUNET_NO == in_use) ? "NO" : "YES");
1200     return GNUNET_SYSERR;
1201   }
1202
1203   /* Tell solver about update */
1204   ea->used = in_use;
1205   handle->s_address_update_inuse (handle->solver, ea, ea->used);
1206   return GNUNET_OK;
1207 }
1208
1209
1210 /**
1211  * Cancel address suggestions for a peer
1212  *
1213  * @param handle the address handle
1214  * @param peer the peer id
1215  */
1216 void
1217 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
1218                                       const struct GNUNET_PeerIdentity *peer)
1219 {
1220   struct GAS_Addresses_Suggestion_Requests *cur = handle->r_head;
1221
1222   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1223               "Received request: `%s' for peer %s\n", "request_address_cancel", GNUNET_i2s (peer));
1224
1225   while (NULL != cur)
1226   {
1227       if (0 == memcmp (peer, &cur->id, sizeof (cur->id)))
1228         break; /* found */
1229       cur = cur->next;
1230   }
1231
1232   if (NULL == cur)
1233   {
1234       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1235                   "No address requests pending for peer `%s', cannot remove!\n", GNUNET_i2s (peer));
1236       return;
1237   }
1238   handle->s_get_stop (handle->solver, peer);
1239   GAS_addresses_handle_backoff_reset (handle, peer);
1240   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1241               "Removed request pending for peer `%s\n", GNUNET_i2s (peer));
1242   GNUNET_CONTAINER_DLL_remove (handle->r_head, handle->r_tail, cur);
1243   GNUNET_free (cur);
1244 }
1245
1246
1247 /**
1248  * Request address suggestions for a peer
1249  *
1250  * @param handle the address handle
1251  * @param peer the peer id
1252  */
1253 void
1254 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
1255                                const struct GNUNET_PeerIdentity *peer)
1256 {
1257   struct GAS_Addresses_Suggestion_Requests *cur = handle->r_head;
1258   struct ATS_Address *aa;
1259
1260   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1261               "Received `%s' for peer `%s'\n",
1262               "REQUEST ADDRESS",
1263               GNUNET_i2s (peer));
1264
1265   if (GNUNET_NO == handle->running)
1266     return;
1267   while (NULL != cur)
1268   {
1269       if (0 == memcmp (peer, &cur->id, sizeof (cur->id)))
1270         break; /* already suggesting */
1271       cur = cur->next;
1272   }
1273   if (NULL == cur)
1274   {
1275       cur = GNUNET_malloc (sizeof (struct GAS_Addresses_Suggestion_Requests));
1276       cur->id = (*peer);
1277       GNUNET_CONTAINER_DLL_insert (handle->r_head, handle->r_tail, cur);
1278   }
1279
1280   /* Get prefered address from solver */
1281   aa = (struct ATS_Address *) handle->s_get (handle->solver, peer);
1282   if (NULL == aa)
1283   {
1284     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1285                 "Cannot suggest address for peer `%s'\n", GNUNET_i2s (peer));
1286     return;
1287   }
1288
1289   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1290               "Suggesting address %p for peer `%s'\n", aa, GNUNET_i2s (peer));
1291
1292   GAS_scheduling_transmit_address_suggestion (peer,
1293                                               aa->plugin,
1294                                               aa->addr, aa->addr_len,
1295                                               aa->session_id,
1296                                               aa->atsi, aa->atsi_count,
1297                                               aa->assigned_bw_out,
1298                                               aa->assigned_bw_in);
1299
1300   aa->block_interval = GNUNET_TIME_relative_add (aa->block_interval, ATS_BLOCKING_DELTA);
1301   aa->blocked_until = GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), aa->block_interval);
1302
1303   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1304        "Address %p ready for suggestion, block interval now %llu \n",
1305        aa, aa->block_interval);
1306 }
1307
1308
1309 /**
1310  * Iterator to reset address blocking
1311  *
1312  * @param cls not used
1313  * @param key the peer
1314  * @param value the address to reset
1315  * @return GNUNET_OK to continue
1316  */
1317 static int
1318 reset_address_it (void *cls, const struct GNUNET_HashCode *key, void *value)
1319 {
1320   struct ATS_Address *aa = value;
1321
1322   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1323               "Resetting interval for peer `%s' address %p from %llu to 0\n",
1324               GNUNET_i2s (&aa->peer), aa, aa->block_interval);
1325
1326   aa->blocked_until = GNUNET_TIME_UNIT_ZERO_ABS;
1327   aa->block_interval = GNUNET_TIME_UNIT_ZERO;
1328   return GNUNET_OK;
1329 }
1330
1331
1332 /**
1333  * Reset suggestion backoff for a peer
1334  *
1335  * Suggesting addresses is blocked for ATS_BLOCKING_DELTA. Blocking can be
1336  * reset using this function
1337  *
1338  * @param handle the address handle
1339  * @param peer the peer id
1340  */
1341 void
1342 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
1343                                     const struct GNUNET_PeerIdentity *peer)
1344 {
1345   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1346               "Received `%s' for peer `%s'\n",
1347               "RESET BACKOFF",
1348               GNUNET_i2s (peer));
1349
1350   GNUNET_break (GNUNET_SYSERR != GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses,
1351                                               &peer->hashPubKey,
1352                                               &reset_address_it,
1353                                               NULL));
1354 }
1355
1356
1357 /**
1358  * The preference changed for a peer
1359  *
1360  * @param cls the address handle
1361  * @param peer the peer
1362  * @param kind the ATS kind
1363  * @param pref_rel the new relative preference value
1364  */
1365 static void
1366 normalized_preference_changed_cb (void *cls,
1367                                                                   const struct GNUNET_PeerIdentity *peer,
1368                                                                   enum GNUNET_ATS_PreferenceKind kind,
1369                                                                   double pref_rel)
1370 {
1371         GNUNET_assert (NULL != cls);
1372         struct GAS_Addresses_Handle *handle = cls;
1373   /* Tell solver about update */
1374   handle->s_pref (handle->solver, peer, kind, pref_rel);
1375 }
1376
1377
1378 /**
1379  * The relative value for a property changed
1380  *
1381  * @param cls the address handle
1382  * @param address the peer
1383  * @param type the ATS type
1384  * @param prop_rel the new relative preference value
1385  */
1386 static void
1387 normalized_property_changed_cb (void *cls,
1388                                                                                                                   struct ATS_Address *address,
1389                                                                                                                   uint32_t type,
1390                                                                                                                   double prop_rel)
1391 {
1392         struct GAS_Addresses_Handle *ah = (struct GAS_Addresses_Handle *) cls;
1393         GNUNET_assert (NULL != ah);
1394
1395         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1396               "Normalized property %s for peer `%s' changed to %.3f \n",
1397               GNUNET_ATS_print_property_type (type),
1398               GNUNET_i2s (&address->peer),
1399               prop_rel);
1400
1401         ah->s_address_update_property (ah->solver,
1402                                                                                                                                 address,
1403                                                                                                                                 type,
1404                                                                                                                                 0,
1405                                                                                                                                 prop_rel);
1406 }
1407
1408
1409 /**
1410  * Function allowing the solver to obtain normalized preference
1411  * values from solver
1412  *
1413  * @param cls unused
1414  * @param id the peer to return the normalized properties for
1415  * @return array of double values with |GNUNET_ATS_PreferenceCount| elements
1416  */
1417 const double *
1418 get_preferences_cb (void *cls, const struct GNUNET_PeerIdentity *id)
1419 {
1420         return GAS_normalization_get_preferences (id);
1421 }
1422
1423 /**
1424  * Function allowing the solver to obtain normalized property
1425  * values for an address from solver
1426  *
1427  * @param cls unused
1428  * @param address the address
1429  * @return array of double values with |GNUNET_ATS_QualityPropertiesCount| elements
1430  */
1431 const double *
1432 get_property_cb (void *cls, const struct ATS_Address *address)
1433 {
1434         return GAS_normalization_get_properties ((struct ATS_Address *) address);
1435 }
1436
1437 /**
1438  * Change the preference for a peer
1439  *
1440  * @param handle the address handle
1441  * @param client the client sending this request
1442  * @param peer the peer id
1443  * @param kind the preference kind to change
1444  * @param score_abs the new preference score
1445  */
1446 void
1447 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
1448                                  void *client,
1449                                  const struct GNUNET_PeerIdentity *peer,
1450                                  enum GNUNET_ATS_PreferenceKind kind,
1451                                  float score_abs)
1452 {
1453         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1454               "Received `%s' for peer `%s' for client %p\n",
1455               "CHANGE PREFERENCE",
1456               GNUNET_i2s (peer), client);
1457
1458   if (GNUNET_NO == handle->running)
1459     return;
1460
1461   if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (handle->addresses,
1462                                                           &peer->hashPubKey))
1463   {
1464       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1465                   "Received `%s' for unknown peer `%s' from client %p\n",
1466                   "CHANGE PREFERENCE",
1467                   GNUNET_i2s (peer), client);
1468       return;
1469   }
1470
1471   handle->s_bulk_start (handle->solver);
1472   /* Tell normalization about change, normalization will call callback if preference changed */
1473   GAS_normalization_normalize_preference (client, peer, kind, score_abs);
1474   handle->s_bulk_stop (handle->solver);
1475 }
1476
1477
1478 /**
1479  * Load quotas for networks from configuration
1480  *
1481  * @param cfg configuration handle
1482  * @param out_dest where to write outbound quotas
1483  * @param in_dest where to write inbound quotas
1484  * @param dest_length length of inbound and outbound arrays
1485  * @return number of networks loaded
1486  */
1487 static unsigned int
1488 load_quotas (const struct GNUNET_CONFIGURATION_Handle *cfg, unsigned long long *out_dest, unsigned long long *in_dest, int dest_length)
1489 {
1490   char *network_str[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkTypeString;
1491   char * entry_in = NULL;
1492   char * entry_out = NULL;
1493   char * quota_out_str;
1494   char * quota_in_str;
1495   int c;
1496   int res;
1497
1498   for (c = 0; (c < GNUNET_ATS_NetworkTypeCount) && (c < dest_length); c++)
1499   {
1500     in_dest[c] = 0;
1501     out_dest[c] = 0;
1502     GNUNET_asprintf (&entry_out, "%s_QUOTA_OUT", network_str[c]);
1503     GNUNET_asprintf (&entry_in, "%s_QUOTA_IN", network_str[c]);
1504
1505     /* quota out */
1506     if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "ats", entry_out, &quota_out_str))
1507     {
1508       res = GNUNET_NO;
1509       if (0 == strcmp(quota_out_str, GNUNET_ATS_MaxBandwidthString))
1510       {
1511         out_dest[c] = GNUNET_ATS_MaxBandwidth;
1512         res = GNUNET_YES;
1513       }
1514       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_STRINGS_fancy_size_to_bytes (quota_out_str, &out_dest[c])))
1515         res = GNUNET_YES;
1516       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, "ats", entry_out,  &out_dest[c])))
1517          res = GNUNET_YES;
1518
1519       if (GNUNET_NO == res)
1520       {
1521           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not load quota for network `%s':  `%s', assigning default bandwidth %llu\n"),
1522               network_str[c], quota_out_str, GNUNET_ATS_DefaultBandwidth);
1523           out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1524       }
1525       else
1526       {
1527           GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Outbound quota configure for network `%s' is %llu\n"),
1528               network_str[c], out_dest[c]);
1529       }
1530       GNUNET_free (quota_out_str);
1531     }
1532     else
1533     {
1534       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("No outbound quota configured for network `%s', assigning default bandwidth %llu\n"),
1535           network_str[c], GNUNET_ATS_DefaultBandwidth);
1536       out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1537     }
1538
1539     /* quota in */
1540     if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "ats", entry_in, &quota_in_str))
1541     {
1542       res = GNUNET_NO;
1543       if (0 == strcmp(quota_in_str, GNUNET_ATS_MaxBandwidthString))
1544       {
1545         in_dest[c] = GNUNET_ATS_MaxBandwidth;
1546         res = GNUNET_YES;
1547       }
1548       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_STRINGS_fancy_size_to_bytes (quota_in_str, &in_dest[c])))
1549         res = GNUNET_YES;
1550       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, "ats", entry_in,  &in_dest[c])))
1551          res = GNUNET_YES;
1552
1553       if (GNUNET_NO == res)
1554       {
1555           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not load quota for network `%s':  `%s', assigning default bandwidth %llu\n"),
1556               network_str[c], quota_in_str, GNUNET_ATS_DefaultBandwidth);
1557           in_dest[c] = GNUNET_ATS_DefaultBandwidth;
1558       }
1559       else
1560       {
1561           GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Inbound quota configured for network `%s' is %llu\n"),
1562               network_str[c], in_dest[c]);
1563       }
1564       GNUNET_free (quota_in_str);
1565     }
1566     else
1567     {
1568       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("No outbound quota configure for network `%s', assigning default bandwidth %llu\n"),
1569           network_str[c], GNUNET_ATS_DefaultBandwidth);
1570       out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1571     }
1572     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Loaded quota for network `%s' (in/out): %llu %llu\n", network_str[c], in_dest[c], out_dest[c]);
1573     GNUNET_free (entry_out);
1574     GNUNET_free (entry_in);
1575   }
1576   return GNUNET_ATS_NetworkTypeCount;
1577 }
1578
1579
1580 /**
1581  * Callback for solver to notify about assignment changes
1582  *
1583  * @param cls the GAS_Addresses_Handle
1584  * @param address the address with changes
1585  */
1586 static void
1587 bandwidth_changed_cb (void *cls, struct ATS_Address *address)
1588 {
1589   struct GAS_Addresses_Handle *handle = cls;
1590   struct GAS_Addresses_Suggestion_Requests *cur;
1591
1592   GNUNET_assert (handle != NULL);
1593   GNUNET_assert (address != NULL);
1594
1595   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Bandwidth assignment changed for peer %s \n", GNUNET_i2s(&address->peer));
1596
1597   /* Notify performance clients about changes to address */
1598   GAS_performance_notify_all_clients (&address->peer,
1599       address->plugin,
1600       address->addr, address->addr_len,
1601       address->session_id,
1602       address->atsi, address->atsi_count,
1603       address->assigned_bw_out,
1604       address->assigned_bw_in);
1605   cur = handle->r_head;
1606   while (NULL != cur)
1607   {
1608       if (0 == memcmp (&address->peer, &cur->id, sizeof (cur->id)))
1609         break; /* we have an address request pending*/
1610       cur = cur->next;
1611   }
1612   if (NULL == cur)
1613   {
1614       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1615                   "Nobody is interested in peer `%s' :(\n",GNUNET_i2s (&address->peer));
1616       return;
1617   }
1618
1619   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1620               "Sending bandwidth update for peer `%s'\n",GNUNET_i2s (&address->peer));
1621
1622   /* *Notify scheduling clients about suggestion */
1623   GAS_scheduling_transmit_address_suggestion (&address->peer,
1624                                               address->plugin,
1625                                               address->addr, address->addr_len,
1626                                               address->session_id,
1627                                               address->atsi, address->atsi_count,
1628                                               address->assigned_bw_out,
1629                                               address->assigned_bw_in);
1630 }
1631
1632
1633 /**
1634  * Initialize address subsystem. The addresses subsystem manages the addresses
1635  * known and current performance information. It has a solver component
1636  * responsible for the resource allocation. It tells the solver about changes
1637  * and receives updates when the solver changes the ressource allocation.
1638  *
1639  * @param cfg configuration to use
1640  * @param stats the statistics handle to use
1641  * @return an address handle
1642  */
1643 struct GAS_Addresses_Handle *
1644 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
1645                     const struct GNUNET_STATISTICS_Handle *stats)
1646 {
1647   struct GAS_Addresses_Handle *ah;
1648   int quotas[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkType;
1649   unsigned long long  quotas_in[GNUNET_ATS_NetworkTypeCount];
1650   unsigned long long  quotas_out[GNUNET_ATS_NetworkTypeCount];
1651   int quota_count;
1652   char *mode_str;
1653   int c;
1654
1655   ah = GNUNET_malloc (sizeof (struct GAS_Addresses_Handle));
1656   ah->running = GNUNET_NO;
1657
1658   ah->stat = (struct GNUNET_STATISTICS_Handle *) stats;
1659   /* Initialize the addresses database */
1660   ah->addresses = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO);
1661   GNUNET_assert (NULL != ah->addresses);
1662
1663   /* Figure out configured solution method */
1664   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string (cfg, "ats", "MODE", &mode_str))
1665   {
1666       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "No ressource assignment method configured, using simplistic approch\n");
1667       ah->ats_mode = MODE_SIMPLISTIC;
1668   }
1669   else
1670   {
1671       for (c = 0; c < strlen (mode_str); c++)
1672         mode_str[c] = toupper (mode_str[c]);
1673       if (0 == strcmp (mode_str, "SIMPLISTIC"))
1674       {
1675           ah->ats_mode = MODE_SIMPLISTIC;
1676       }
1677       else if (0 == strcmp (mode_str, "MLP"))
1678       {
1679           ah->ats_mode = MODE_MLP;
1680 #if !HAVE_LIBGLPK
1681           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Assignment method `%s' configured, but GLPK is not availabe, please install \n", mode_str);
1682           ah->ats_mode = MODE_SIMPLISTIC;
1683 #endif
1684       }
1685       else
1686       {
1687           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid ressource assignment method `%s' configured, using simplistic approch\n", mode_str);
1688           ah->ats_mode = MODE_SIMPLISTIC;
1689       }
1690       GNUNET_free (mode_str);
1691   }
1692   /* Start configured solution method */
1693   switch (ah->ats_mode)
1694   {
1695     case MODE_MLP:
1696       /* Init the MLP solver with default values */
1697 #if HAVE_LIBGLPK
1698       ah->ats_mode = MODE_MLP;
1699       ah->s_init = &GAS_mlp_init;
1700       ah->s_add = &GAS_mlp_address_add;
1701       ah->s_address_update_property = &GAS_mlp_address_property_changed;
1702       ah->s_address_update_session = &GAS_mlp_address_session_changed;
1703       ah->s_address_update_inuse = &GAS_mlp_address_inuse_changed;
1704       ah->s_address_update_network = &GAS_mlp_address_change_network;
1705       ah->s_get = &GAS_mlp_get_preferred_address;
1706       ah->s_get_stop = &GAS_mlp_stop_get_preferred_address;
1707       ah->s_pref = &GAS_mlp_address_change_preference;
1708       ah->s_del =  &GAS_mlp_address_delete;
1709       ah->s_bulk_start = &GAS_mlp_bulk_start;
1710       ah->s_bulk_stop = &GAS_mlp_bulk_stop;
1711       ah->s_done = &GAS_mlp_done;
1712 #else
1713       GNUNET_free (ah);
1714       return NULL;
1715 #endif
1716       break;
1717     case MODE_SIMPLISTIC:
1718       /* Init the simplistic solver with default values */
1719       ah->ats_mode = MODE_SIMPLISTIC;
1720       ah->s_init = &GAS_proportional_init;
1721       ah->s_add = &GAS_proportional_address_add;
1722       ah->s_address_update_property = &GAS_proportional_address_property_changed;
1723       ah->s_address_update_session = &GAS_proportional_address_session_changed;
1724       ah->s_address_update_inuse = &GAS_proportional_address_inuse_changed;
1725       ah->s_address_update_network = &GAS_proportional_address_change_network;
1726       ah->s_get = &GAS_proportional_get_preferred_address;
1727       ah->s_get_stop = &GAS_proportional_stop_get_preferred_address;
1728       ah->s_pref = &GAS_proportional_address_change_preference;
1729       ah->s_del  = &GAS_proportional_address_delete;
1730       ah->s_bulk_start = &GAS_proportional_bulk_start;
1731       ah->s_bulk_stop = &GAS_proportional_bulk_stop;
1732       ah->s_done = &GAS_proportional_done;
1733       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS started in %s mode\n", "SIMPLISTIC");
1734       break;
1735     default:
1736       return NULL;
1737       break;
1738   }
1739
1740   GNUNET_assert (NULL != ah->s_init);
1741   GNUNET_assert (NULL != ah->s_add);
1742   GNUNET_assert (NULL != ah->s_address_update_inuse);
1743   GNUNET_assert (NULL != ah->s_address_update_property);
1744   GNUNET_assert (NULL != ah->s_address_update_session);
1745   GNUNET_assert (NULL != ah->s_address_update_network);
1746   GNUNET_assert (NULL != ah->s_get);
1747   GNUNET_assert (NULL != ah->s_get_stop);
1748   GNUNET_assert (NULL != ah->s_pref);
1749   GNUNET_assert (NULL != ah->s_del);
1750   GNUNET_assert (NULL != ah->s_done);
1751   GNUNET_assert (NULL != ah->s_bulk_start);
1752   GNUNET_assert (NULL != ah->s_bulk_stop);
1753
1754   GAS_normalization_start (&normalized_preference_changed_cb, ah,
1755                                                                                                  &normalized_property_changed_cb, ah);
1756   quota_count = load_quotas(cfg, quotas_in, quotas_out, GNUNET_ATS_NetworkTypeCount);
1757
1758   ah->solver = ah->s_init (cfg, stats, ah->addresses,
1759                   quotas, quotas_in, quotas_out, quota_count,
1760                   &bandwidth_changed_cb, ah,
1761                   &get_preferences_cb, NULL,
1762                   &get_property_cb, NULL);
1763   if (NULL == ah->solver)
1764   {
1765     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to initialize solver!\n"));
1766     GNUNET_free (ah);
1767     return NULL;
1768   }
1769
1770   /* up and running */
1771   ah->running = GNUNET_YES;
1772   return ah;
1773 }
1774
1775
1776 /**
1777  * Destroy all addresses iterator
1778  *
1779  * @param cls NULL
1780  * @param key peer identity (unused)
1781  * @param value the 'struct ATS_Address' to free
1782  * @return GNUNET_OK (continue to iterate)
1783  */
1784 static int
1785 destroy_all_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
1786 {
1787   struct GAS_Addresses_Handle *handle = cls;
1788   struct ATS_Address *aa = value;
1789
1790   /* Remove */
1791   GNUNET_assert (GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove (handle->addresses, key, value));
1792   /* Notify */
1793   handle->s_del (handle->solver, aa, GNUNET_NO);
1794   /* Destroy */
1795   free_address (aa);
1796
1797   return GNUNET_OK;
1798 }
1799
1800
1801 /**
1802  * Remove all addresses
1803  *
1804  * @param handle the address handle to use
1805  */
1806 void
1807 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle)
1808 {
1809   if (GNUNET_NO == handle->running)
1810     return;
1811
1812   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1813               "Received `%s'\n",
1814               "DESTROY ALL");
1815   if (handle->addresses != NULL)
1816     GNUNET_CONTAINER_multihashmap_iterate (handle->addresses, &destroy_all_address_it, handle);
1817 }
1818
1819
1820 /**
1821  * Shutdown address subsystem.
1822  *
1823  * @param handle the address handle to shutdown
1824  */
1825 void
1826 GAS_addresses_done (struct GAS_Addresses_Handle *handle)
1827 {
1828   struct GAS_Addresses_Suggestion_Requests *cur;
1829
1830   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1831               "Shutting down addresses\n");
1832   GNUNET_assert (NULL != handle);
1833   GAS_addresses_destroy_all (handle);
1834   handle->running = GNUNET_NO;
1835   GNUNET_CONTAINER_multihashmap_destroy (handle->addresses);
1836   handle->addresses = NULL;
1837   while (NULL != (cur = handle->r_head))
1838   {
1839       GNUNET_CONTAINER_DLL_remove (handle->r_head, handle->r_tail, cur);
1840       GNUNET_free (cur);
1841   }
1842   handle->s_done (handle->solver);
1843   GNUNET_free (handle);
1844   /* Stop configured solution method */
1845   GAS_normalization_stop ();
1846 }
1847
1848
1849 struct PeerIteratorContext
1850 {
1851   GNUNET_ATS_Peer_Iterator it;
1852   void *it_cls;
1853   struct GNUNET_CONTAINER_MultiHashMap *peers_returned;
1854 };
1855
1856
1857 /**
1858  * Iterator to iterate over all peers
1859  *
1860  * @param cls a PeerIteratorContext
1861  * @param key the peer id
1862  * @param value the ATS_address
1863  * @return GNUNET_OK to continue
1864  */
1865 static int
1866 peer_it (void *cls,
1867          const struct GNUNET_HashCode * key,
1868          void *value)
1869 {
1870   struct PeerIteratorContext *ip_ctx = cls;
1871   struct GNUNET_PeerIdentity tmp;
1872
1873   if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(ip_ctx->peers_returned, key))
1874   {
1875       GNUNET_CONTAINER_multihashmap_put(ip_ctx->peers_returned, key, NULL, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1876       tmp.hashPubKey = (*key);
1877       ip_ctx->it (ip_ctx->it_cls, &tmp);
1878   }
1879
1880   return GNUNET_OK;
1881 }
1882
1883
1884 /**
1885  * Return information all peers currently known to ATS
1886  *
1887  * @param handle the address handle to use
1888  * @param p_it the iterator to call for every peer
1889  * @param p_it_cls the closure for the iterator
1890  */
1891 void
1892 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle,
1893                                                                                                                  GNUNET_ATS_Peer_Iterator p_it,
1894                                                                                                                  void *p_it_cls)
1895 {
1896   struct PeerIteratorContext ip_ctx;
1897   unsigned int size;
1898
1899   if (NULL == p_it)
1900       return;
1901   GNUNET_assert (NULL != handle->addresses);
1902
1903   size = GNUNET_CONTAINER_multihashmap_size(handle->addresses);
1904   if (0 != size)
1905   {
1906     ip_ctx.it = p_it;
1907     ip_ctx.it_cls = p_it_cls;
1908     ip_ctx.peers_returned = GNUNET_CONTAINER_multihashmap_create (size, GNUNET_NO);
1909     GNUNET_CONTAINER_multihashmap_iterate (handle->addresses, &peer_it, &ip_ctx);
1910     GNUNET_CONTAINER_multihashmap_destroy (ip_ctx.peers_returned);
1911   }
1912   p_it (p_it_cls, NULL);
1913 }
1914
1915
1916 struct PeerInfoIteratorContext
1917 {
1918   GNUNET_ATS_PeerInfo_Iterator it;
1919   void *it_cls;
1920 };
1921
1922
1923 /**
1924  * Iterator to iterate over a peer's addresses
1925  *
1926  * @param cls a PeerInfoIteratorContext
1927  * @param key the peer id
1928  * @param value the ATS_address
1929  * @return GNUNET_OK to continue
1930  */
1931 static int 
1932 peerinfo_it (void *cls,
1933              const struct GNUNET_HashCode * key,
1934              void *value)
1935 {
1936   struct PeerInfoIteratorContext *pi_ctx = cls;
1937   struct ATS_Address *addr = (struct ATS_Address *)  value;
1938
1939   if (NULL != pi_ctx->it)
1940   {
1941     pi_ctx->it (pi_ctx->it_cls,
1942                 &addr->peer,
1943                 addr->plugin,
1944                 addr->addr, addr->addr_len,
1945                 addr->active,
1946                 addr->atsi, addr->atsi_count,
1947                 addr->assigned_bw_out,
1948                 addr->assigned_bw_in);
1949   }
1950   return GNUNET_YES;
1951 }
1952
1953
1954 /**
1955  * Return information all peers currently known to ATS
1956  *
1957  * @param handle the address handle to use
1958  * @param peer the respective peer
1959  * @param pi_it the iterator to call for every peer
1960  * @param pi_it_cls the closure for the iterator
1961  */
1962 void
1963 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
1964                              const struct GNUNET_PeerIdentity *peer,
1965                              GNUNET_ATS_PeerInfo_Iterator pi_it,
1966                              void *pi_it_cls)
1967 {
1968   struct PeerInfoIteratorContext pi_ctx;
1969   struct GNUNET_BANDWIDTH_Value32NBO zero_bw;
1970   GNUNET_assert (NULL != peer);
1971   GNUNET_assert (NULL != handle->addresses);
1972   if (NULL == pi_it)
1973     return; /* does not make sense without callback */
1974
1975   zero_bw = GNUNET_BANDWIDTH_value_init (0);
1976   pi_ctx.it = pi_it;
1977   pi_ctx.it_cls = pi_it_cls;
1978
1979   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey, &peerinfo_it, &pi_ctx);
1980
1981   if (NULL != pi_it)
1982     pi_it (pi_it_cls, NULL, NULL, NULL, 0, GNUNET_NO, NULL, 0, zero_bw, zero_bw);
1983
1984 }
1985
1986
1987 /* end of gnunet-service-ats_addresses.c */