dead assignment
[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_dest) = GNUNET_malloc (update_count * sizeof (struct GNUNET_ATS_Information));
433                 for (c1 = 0; c1 < update_count; c1 ++)
434                 {
435                         (*delta_dest)[c1].type = update[c1].type;
436                         (*delta_dest)[c1].value = htonl(GNUNET_ATS_VALUE_UNDEFINED);
437                 }
438                 (*delta_count) = update_count;
439                 return GNUNET_YES;
440   }
441
442   for (c1 = 0; c1 < update_count; c1++)
443   {
444         /* Update existing performance information */
445         found = GNUNET_NO;
446         for (c2 = 0; c2 < dest->atsi_count; c2++)
447         {
448                         if (update[c1].type == dest->atsi[c2].type)
449                         {
450                                 if (update[c1].value != dest->atsi[c2].value)
451                                 {
452                                                 /* Save previous value in delta */
453                                                 delta_atsi[delta_atsi_count] = dest->atsi[c2];
454                                                 delta_atsi_count ++;
455                                                 /* Set new value */
456                                                 dest->atsi[c2].value = update[c1].value;
457                                                 change = GNUNET_YES;
458                                 }
459                                 found = GNUNET_YES;
460                                 break;
461                         }
462         }
463                 if (GNUNET_NO == found)
464                 {
465                                 add_atsi[add_atsi_count] = update[c1];
466                                 add_atsi_count ++;
467                                 delta_atsi[delta_atsi_count].type = update[c1].type;
468                                 delta_atsi[delta_atsi_count].value = htonl (GNUNET_ATS_VALUE_UNDEFINED);
469                                 delta_atsi_count ++;
470                 }
471   }
472
473   if (add_atsi_count > 0)
474   {
475                 /* Extend ats performance information */
476
477                 tmp_atsi = GNUNET_malloc ((dest->atsi_count + add_atsi_count) *
478                                                                                                                         (sizeof (struct GNUNET_ATS_Information)));
479                 memcpy (tmp_atsi, dest->atsi, dest->atsi_count * sizeof (struct GNUNET_ATS_Information));
480                 memcpy (&tmp_atsi[dest->atsi_count], add_atsi, add_atsi_count * sizeof (struct GNUNET_ATS_Information));
481                 GNUNET_free (dest->atsi);
482                 dest->atsi = tmp_atsi;
483                 dest->atsi_count = dest->atsi_count + add_atsi_count;
484                         change = GNUNET_YES;
485   }
486
487   if (delta_atsi_count > 0)
488   {
489                 /* Copy delta */
490                 (*delta_dest) = GNUNET_malloc (delta_atsi_count * sizeof (struct GNUNET_ATS_Information));
491                 memcpy ((*delta_dest), delta_atsi, delta_atsi_count * sizeof (struct GNUNET_ATS_Information));
492                 (*delta_count) = delta_atsi_count;
493   }
494
495   return change;
496 }
497
498 /**
499  * Free the given address
500  *
501  * @param addr address to destroy
502  */
503 static void
504 free_address (struct ATS_Address *addr)
505 {
506   GNUNET_free (addr->plugin);
507   GNUNET_free_non_null (addr->atsi);
508   GNUNET_free (addr);
509 }
510
511 /**
512  * Create a ATS_address with the given information
513  *
514  * @param peer peer
515  * @param plugin_name plugin
516  * @param plugin_addr address
517  * @param plugin_addr_len address length
518  * @param session_id session
519  * @return the ATS_Address
520  */
521 static struct ATS_Address *
522 create_address (const struct GNUNET_PeerIdentity *peer,
523                 const char *plugin_name,
524                 const void *plugin_addr, size_t plugin_addr_len,
525                 uint32_t session_id)
526 {
527   struct ATS_Address *aa = NULL;
528   int c1;
529   int c2;
530
531   aa = GNUNET_malloc (sizeof (struct ATS_Address) + plugin_addr_len);
532   aa->peer = *peer;
533   aa->addr_len = plugin_addr_len;
534   aa->addr = &aa[1];
535   memcpy (&aa[1], plugin_addr, plugin_addr_len);
536   aa->plugin = GNUNET_strdup (plugin_name);
537   aa->session_id = session_id;
538   aa->active = GNUNET_NO;
539   aa->used = GNUNET_NO;
540   aa->solver_information = NULL;
541   aa->atsi = NULL;
542   aa->atsi_count = 0;
543   aa->assigned_bw_in = GNUNET_BANDWIDTH_value_init(0);
544   aa->assigned_bw_out = GNUNET_BANDWIDTH_value_init(0);
545
546   for (c1 = 0; c1 < GNUNET_ATS_QualityPropertiesCount; c1 ++)
547   {
548         aa->atsin[c1].avg_queue_index = 0;
549         for (c2 = 0; c2 < GAS_normalization_queue_length; c2++)
550                 aa->atsin[c1].atsi_abs[c2] = GNUNET_ATS_VALUE_UNDEFINED;
551   }
552
553   return aa;
554 }
555
556
557 struct CompareAddressContext
558 {
559   const struct ATS_Address *search;
560
561   /* exact_address != NULL if address and session is equal */
562   struct ATS_Address *exact_address;
563   /* exact_address != NULL if address and session is 0 */
564   struct ATS_Address *base_address;
565 };
566
567 /**
568  * Comapre addresses
569  *
570  * @param cls a CompareAddressContext containin the source address
571  * @param key peer id
572  * @param value the address to compare with
573  * @return GNUNET_YES to continue, GNUNET_NO if address is founce
574  */
575
576 static int
577 compare_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
578 {
579   struct CompareAddressContext *cac = cls;
580   struct ATS_Address *aa = value;
581
582   /* Find an matching exact address:
583    *
584    * Compare by:
585    * aa->addr_len == cac->search->addr_len
586    * aa->plugin == cac->search->plugin
587    * aa->addr == cac->search->addr
588    * aa->session == cac->search->session
589    *
590    * return as exact address
591    */
592   if ((aa->addr_len == cac->search->addr_len) && (0 == strcmp (aa->plugin, cac->search->plugin)))
593   {
594       if ((0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)) && (aa->session_id == cac->search->session_id))
595         cac->exact_address = aa;
596   }
597
598   /* Find an matching base address:
599    *
600    * Properties:
601    *
602    * aa->session_id == 0
603    *
604    * Compare by:
605    * aa->addr_len == cac->search->addr_len
606    * aa->plugin == cac->search->plugin
607    * aa->addr == cac->search->addr
608    *
609    * return as base address
610    */
611   if ((aa->addr_len == cac->search->addr_len) && (0 == strcmp (aa->plugin, cac->search->plugin)))
612   {
613       if ((0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)) && (aa->session_id == 0))
614         cac->base_address = aa;
615   }
616
617   /* Find an matching exact address based on session:
618    *
619    * Properties:
620    *
621    * cac->search->addr_len == 0
622    *
623    * Compare by:
624    * aa->plugin == cac->search->plugin
625    * aa->session_id == cac->search->session_id
626    *
627    * return as exact address
628    */
629   if (0 == cac->search->addr_len)
630   {
631       if ((0 == strcmp (aa->plugin, cac->search->plugin)) && (aa->session_id == cac->search->session_id))
632         cac->exact_address = aa;
633   }
634
635   if (cac->exact_address == NULL)
636     return GNUNET_YES; /* Continue iteration to find exact address */
637   else
638     return GNUNET_NO; /* Stop iteration since we have an exact address */
639 }
640
641
642 /**
643  * Find an existing equivalent address record.
644  * Compares by peer identity and network address OR by session ID
645  * (one of the two must match).
646  *
647  * @param handle the address handle
648  * @param peer peer to lookup addresses for
649  * @param addr existing address record
650  * @return existing address record, NULL for none
651  */
652 struct ATS_Address *
653 find_equivalent_address (struct GAS_Addresses_Handle *handle,
654                          const struct GNUNET_PeerIdentity *peer,
655                          const struct ATS_Address *addr)
656 {
657   struct CompareAddressContext cac;
658
659   cac.exact_address = NULL;
660   cac.base_address = NULL;
661   cac.search = addr;
662   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey,
663                                               &compare_address_it, &cac);
664
665   if (cac.exact_address == NULL)
666     return cac.base_address;
667   return cac.exact_address;
668 }
669
670
671 /**
672  * Find the exact address
673  *
674  * @param handle the address handle to use
675  * @param peer peer
676  * @param plugin_name transport plugin name
677  * @param plugin_addr plugin address
678  * @param plugin_addr_len length of the plugin address
679  * @param session_id session id, can be 0
680  * @return an ATS_address or NULL
681  */
682
683 static struct ATS_Address *
684 find_exact_address (struct GAS_Addresses_Handle *handle,
685                 const struct GNUNET_PeerIdentity *peer,
686                 const char *plugin_name,
687                 const void *plugin_addr,
688                 size_t plugin_addr_len,
689                 uint32_t session_id)
690 {
691   struct ATS_Address *aa;
692   struct ATS_Address *ea;
693
694   aa = create_address (peer,
695                        plugin_name,
696                        plugin_addr, plugin_addr_len,
697                        session_id);
698
699   /* Get existing address or address with session == 0 */
700   ea = find_equivalent_address (handle, peer, aa);
701   free_address (aa);
702   if (ea == NULL)
703     return NULL;
704   else if (ea->session_id != session_id)
705     return NULL;
706   return ea;
707 }
708
709
710 /**
711  * Extract an ATS performance info from an address
712  *
713  * @param address the address
714  * @param type the type to extract in HBO
715  * @return the value in HBO or GNUNET_ATS_VALUE_UNDEFINED in HBO if value does not exist
716  */
717 static int
718 get_performance_info (struct ATS_Address *address, uint32_t type)
719 {
720         int c1;
721         GNUNET_assert (NULL != address);
722
723         if ((NULL == address->atsi) || (0 == address->atsi_count))
724                         return GNUNET_ATS_VALUE_UNDEFINED;
725
726         for (c1 = 0; c1 < address->atsi_count; c1++)
727         {
728                         if (ntohl(address->atsi[c1].type) == type)
729                                 return ntohl(address->atsi[c1].value);
730         }
731         return GNUNET_ATS_VALUE_UNDEFINED;
732 }
733
734
735 /**
736  * Add a new address for a peer.
737  *
738  * @param handle the address handle to use
739  * @param peer peer
740  * @param plugin_name transport plugin name
741  * @param plugin_addr plugin address
742  * @param plugin_addr_len length of the plugin address
743  * @param session_id session id, can be 0
744  * @param atsi performance information for this address
745  * @param atsi_count number of performance information contained
746  */
747 void
748 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
749                    const struct GNUNET_PeerIdentity *peer,
750                    const char *plugin_name,
751                    const void *plugin_addr,
752                    size_t plugin_addr_len,
753                    uint32_t session_id,
754                    const struct GNUNET_ATS_Information *atsi,
755                    uint32_t atsi_count)
756 {
757   struct ATS_Address *new_address;
758   struct ATS_Address *existing_address;
759   struct GNUNET_ATS_Information *atsi_delta;
760   uint32_t atsi_delta_count;
761   uint32_t addr_net;
762   uint32_t previous_session;
763   int c1;
764
765   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
766               "Received `%s' for peer `%s'\n",
767               "ADDRESS ADD",
768               GNUNET_i2s (peer));
769
770   if (GNUNET_NO == handle->running)
771     return;
772
773   GNUNET_assert (NULL != handle->addresses);
774
775   new_address = create_address (peer, plugin_name, plugin_addr, plugin_addr_len,
776                        session_id);
777   atsi_delta = NULL;
778   disassemble_ats_information (new_address, atsi, atsi_count, &atsi_delta, &atsi_delta_count);
779   GNUNET_free_non_null (atsi_delta);
780   addr_net = get_performance_info (new_address, GNUNET_ATS_NETWORK_TYPE);
781   if (GNUNET_ATS_VALUE_UNDEFINED == addr_net)
782                 addr_net = GNUNET_ATS_NET_UNSPECIFIED;
783
784   /* Get existing address or address with session == 0 */
785   existing_address = find_equivalent_address (handle, peer, new_address);
786   if (existing_address == NULL)
787   {
788     /* Add a new address */
789     GNUNET_assert (GNUNET_OK ==
790                    GNUNET_CONTAINER_multihashmap_put (handle->addresses,
791                       &peer->hashPubKey, new_address,
792                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
793
794     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Adding new address %p for peer `%s' session id %u, %s\n",
795                 new_address, GNUNET_i2s (peer), session_id, GNUNET_ATS_print_network_type(addr_net));
796
797     /* Tell solver about new address */
798     handle->s_add (handle->solver, new_address, addr_net);
799
800     handle->s_bulk_start (handle->solver);
801     GAS_normalization_normalize_property (handle->addresses, new_address, atsi, atsi_count);
802     handle->s_bulk_stop (handle->solver);
803
804     /* Notify performance clients about new address */
805     GAS_performance_notify_all_clients (&new_address->peer,
806         new_address->plugin,
807         new_address->addr, new_address->addr_len,
808         new_address->session_id,
809         new_address->atsi, new_address->atsi_count,
810         new_address->assigned_bw_out,
811         new_address->assigned_bw_in);
812     return;
813   }
814
815   /* We have an existing address we can use, clean up new */
816   GNUNET_free (new_address->plugin);
817   GNUNET_free_non_null (new_address->atsi);
818   GNUNET_free (new_address);
819   new_address = NULL;
820
821   if (0 != existing_address->session_id)
822   {
823       /* Should not happen */
824       GNUNET_break (0);
825       return;
826   }
827
828   addr_net = get_performance_info (existing_address, GNUNET_ATS_NETWORK_TYPE);
829   if (GNUNET_ATS_VALUE_UNDEFINED == addr_net)
830                 addr_net = GNUNET_ATS_NET_UNSPECIFIED;
831
832   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
833            "Found existing address for peer `%s' %p with new session %u in network %s\n",
834            GNUNET_i2s (peer),
835            existing_address,
836            session_id,
837            GNUNET_ATS_print_network_type (addr_net));
838   /* We have an address without an session, update this address */
839   atsi_delta = NULL;
840   atsi_delta_count = 0;
841   if (GNUNET_YES == disassemble_ats_information (existing_address, atsi, atsi_count, &atsi_delta, &atsi_delta_count))
842   {
843         /* Notify performance clients about properties */
844                 GAS_performance_notify_all_clients (&existing_address->peer,
845                                 existing_address->plugin,
846                                 existing_address->addr, existing_address->addr_len,
847                                 existing_address->session_id,
848                                 existing_address->atsi, existing_address->atsi_count,
849                                 existing_address->assigned_bw_out,
850                                 existing_address->assigned_bw_in);
851
852                 for (c1 = 0; c1 < atsi_delta_count; c1++)
853                 {
854                         if ((GNUNET_ATS_NETWORK_TYPE == ntohl (atsi_delta[c1].type)) &&
855                                         (addr_net != ntohl (atsi_delta[c1].value)))
856                         {
857                                 /* Network type changed */
858                                 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Address for peer `%s' %p changed from network %s to %s\n",
859                    GNUNET_i2s (peer),
860                    existing_address,
861                    GNUNET_ATS_print_network_type (addr_net),
862                    GNUNET_ATS_print_network_type (ntohl (atsi_delta[c1].value)));
863                         handle->s_address_update_network (handle->solver, existing_address,
864                                         ntohl (atsi_delta[c1].value),
865                                         get_performance_info (existing_address, GNUNET_ATS_NETWORK_TYPE));
866                         addr_net = get_performance_info (existing_address, GNUNET_ATS_NETWORK_TYPE);
867                         }
868                 }
869
870                 /* Notify solver about update with atsi information and session */
871           handle->s_bulk_start (handle->solver);
872           GAS_normalization_normalize_property (handle->addresses, existing_address, atsi, atsi_count);
873           handle->s_bulk_stop (handle->solver);
874   }
875   GNUNET_free_non_null (atsi_delta);
876
877   /* Notify solver about new session */
878   if (existing_address->session_id == session_id)
879         return; /* possible, can both be 0 since address is revalidated */
880
881   previous_session = existing_address->session_id;
882   existing_address->session_id = session_id;
883   handle->s_address_update_session (handle->solver, existing_address,
884                 previous_session, session_id);
885
886   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
887            "Updated existing address for peer `%s' %p with new session %u in network %s\n",
888            GNUNET_i2s (peer),
889            existing_address,
890            session_id,
891            GNUNET_ATS_print_network_type(addr_net));
892 }
893
894
895 /**
896  * Update an address with a session or performance information for a peer.
897  *
898  * If an address was added without a session it will be updated with the
899  * session
900  *
901  * @param handle the address handle to use
902  * @param peer peer
903  * @param plugin_name transport plugin name
904  * @param plugin_addr plugin address
905  * @param plugin_addr_len length of the plugin address
906  * @param session_id session id, can be 0
907  * @param atsi performance information for this address
908  * @param atsi_count number of performance information contained
909  */
910 void
911 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
912                       const struct GNUNET_PeerIdentity *peer,
913                       const char *plugin_name, const void *plugin_addr,
914                       size_t plugin_addr_len, uint32_t session_id,
915                       const struct GNUNET_ATS_Information *atsi,
916                       uint32_t atsi_count)
917 {
918   struct ATS_Address *aa;
919   struct GNUNET_ATS_Information *atsi_delta;
920   uint32_t atsi_delta_count;
921   uint32_t prev_session;
922   int c1;
923
924   if (GNUNET_NO == handle->running)
925     return;
926
927   GNUNET_assert (NULL != handle->addresses);
928
929   /* Get existing address */
930   aa = find_exact_address (handle, peer, plugin_name,
931                                                                                                  plugin_addr, plugin_addr_len, session_id);
932   if (aa == NULL)
933   {
934     /* GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tried to update unknown address for peer `%s' `%s' session id %u\n", */
935     /*             GNUNET_i2s (peer), plugin_name, session_id); */
936     /* GNUNET_break (0); */
937     return;
938   }
939
940   if (NULL == aa->solver_information)
941   {
942     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tried to update unknown address for peer `%s' `%s' session id %u\n",
943                  GNUNET_i2s (peer), plugin_name, session_id);
944     return;
945   }
946
947   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
948                 "Received `%s' for peer `%s' address \n",
949                 "ADDRESS UPDATE",
950                 GNUNET_i2s (peer), aa);
951
952   /* Update address */
953   if (session_id != aa->session_id)
954   {
955         /* Session changed */
956     prev_session = aa->session_id;
957     aa->session_id = session_id;
958     handle->s_address_update_session (handle->solver, aa, prev_session, aa->session_id);
959   }
960
961   atsi_delta = NULL;
962   atsi_delta_count = 0;
963   if (GNUNET_YES == disassemble_ats_information (aa, atsi, atsi_count, &atsi_delta, &atsi_delta_count))
964   {
965         /* ATS properties changed */
966         for (c1 = 0; c1 < atsi_delta_count; c1++)
967         {
968                 if (GNUNET_ATS_NETWORK_TYPE == ntohl (atsi_delta[c1].type))
969                 {
970                         /* Network type changed */
971                         handle->s_address_update_network (handle->solver, aa,
972                                         ntohl (atsi_delta[c1].value),
973                                         get_performance_info (aa, GNUNET_ATS_NETWORK_TYPE));
974                 }
975         }
976
977                 /* Notify performance clients about updated address */
978                 GAS_performance_notify_all_clients (&aa->peer,
979                                 aa->plugin,
980                                 aa->addr, aa->addr_len,
981                                 aa->session_id,
982                                 aa->atsi, aa->atsi_count,
983                                 aa->assigned_bw_out,
984                                 aa->assigned_bw_in);
985
986                 handle->s_bulk_start (handle->solver);
987                 GAS_normalization_normalize_property (handle->addresses, aa, atsi, atsi_count);
988                 handle->s_bulk_stop (handle->solver);
989   }
990   GNUNET_free_non_null (atsi_delta);
991 }
992
993
994 struct DestroyContext
995 {
996   struct ATS_Address *aa;
997
998   struct GAS_Addresses_Handle *handle;
999
1000   /**
1001    * GNUNET_NO  : full address
1002    * GNUNET_YES : just session
1003    */
1004   int result;
1005 };
1006
1007
1008 /**
1009  * Delete an address
1010  *
1011  * If session != 0, just the session is deleted, the address itself still exists
1012  * If session == 0, remove full address
1013  * If session == 0 and addrlen == 0, destroy inbound address
1014  *
1015  * @param cls unused
1016  * @param key unused
1017  * @param value the 'struct ATS_Address'
1018  * @return GNUNET_OK (continue to iterate)
1019  */
1020 static int
1021 destroy_by_session_id (void *cls, const struct GNUNET_HashCode * key, void *value)
1022 {
1023   struct DestroyContext *dc = cls;
1024   struct GAS_Addresses_Handle *handle = dc->handle;
1025   const struct ATS_Address *des = dc->aa;
1026   struct ATS_Address *aa = value;
1027
1028   GNUNET_assert (0 == memcmp (&aa->peer, &des->peer,
1029                               sizeof (struct GNUNET_PeerIdentity)));
1030
1031
1032   if (des->session_id == 0)
1033   {
1034     /* Session == 0, remove full address  */
1035     if ((0 == strcmp (des->plugin, aa->plugin)) &&
1036         (aa->addr_len == des->addr_len) &&
1037         (0 == memcmp (des->addr, aa->addr, aa->addr_len)))
1038     {
1039
1040       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1041                   "Deleting full address for peer `%s' session %u %p\n",
1042                   GNUNET_i2s (&aa->peer), aa->session_id, aa);
1043
1044       /* Notify solver about deletion */
1045       GNUNET_assert (GNUNET_YES ==
1046                 GNUNET_CONTAINER_multihashmap_remove (handle->addresses,
1047                         &aa->peer.hashPubKey, aa));
1048       handle->s_del (handle->solver, aa, GNUNET_NO);
1049       free_address (aa);
1050       dc->result = GNUNET_NO;
1051       return GNUNET_OK; /* Continue iteration */
1052     }
1053   }
1054   else
1055   {
1056     /* Session != 0, just remove session */
1057     if (aa->session_id != des->session_id)
1058       return GNUNET_OK; /* irrelevant */
1059
1060     if ((aa->session_id != 0) &&
1061         (0 != strcmp (des->plugin, aa->plugin)))
1062     {
1063         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1064                     "Different plugins during removal: `%s' vs `%s' \n",
1065                     des->plugin, aa->plugin);
1066         GNUNET_break (0);
1067         return GNUNET_OK;
1068     }
1069
1070     if (aa->addr_len == 0)
1071     {
1072         /* Inbound connection died, delete full address */
1073         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1074                     "Deleting inbound address for peer `%s': `%s' session %u\n",
1075                     GNUNET_i2s (&aa->peer), aa->plugin, aa->session_id);
1076
1077         /* Notify solver about deletion */
1078         GNUNET_assert (GNUNET_YES ==
1079                         GNUNET_CONTAINER_multihashmap_remove (handle->addresses,
1080                         &aa->peer.hashPubKey, aa));
1081         handle->s_del (handle->solver, aa, GNUNET_NO);
1082         free_address (aa);
1083         dc->result = GNUNET_NO;
1084         return GNUNET_OK; /* Continue iteration */
1085     }
1086     else
1087     {
1088         /* Session died */
1089         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1090                     "Deleting session for peer `%s': `%s' %u\n",
1091                     GNUNET_i2s (&aa->peer), aa->plugin, aa->session_id);
1092         /* Notify solver to delete session */
1093         handle->s_del (handle->solver, aa, GNUNET_YES);
1094         aa->session_id = 0;
1095         return GNUNET_OK;
1096     }
1097   }
1098   return GNUNET_OK;
1099 }
1100
1101
1102 /**
1103  * Remove an address or just a session for a peer.
1104  *
1105  * @param handle the address handle to use
1106  * @param peer peer
1107  * @param plugin_name transport plugin name
1108  * @param plugin_addr plugin address
1109  * @param plugin_addr_len length of the plugin address
1110  * @param session_id session id, can be 0
1111  */
1112 void
1113 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
1114                        const struct GNUNET_PeerIdentity *peer,
1115                        const char *plugin_name,
1116                        const void *plugin_addr,
1117                        size_t plugin_addr_len,
1118                        uint32_t session_id)
1119 {
1120   struct ATS_Address *ea;
1121   struct DestroyContext dc;
1122   if (GNUNET_NO == handle->running)
1123     return;
1124
1125   /* Get existing address */
1126   ea = find_exact_address (handle, peer, plugin_name, plugin_addr,
1127                 plugin_addr_len, session_id);
1128   if (ea == NULL)
1129   {
1130     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tried to destroy unknown address for peer `%s' `%s' session id %u\n",
1131                 GNUNET_i2s (peer), plugin_name, session_id);
1132     return;
1133   }
1134
1135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1136               "Received `%s' for peer `%s' address %p session %u\n",
1137               "ADDRESS DESTROY",
1138               GNUNET_i2s (peer), ea, session_id);
1139
1140   GNUNET_break (0 < strlen (plugin_name));
1141   dc.handle = handle;
1142   dc.aa = create_address (peer, plugin_name, plugin_addr, plugin_addr_len, session_id);
1143
1144   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey,
1145                                               &destroy_by_session_id, &dc);
1146   free_address (dc.aa);
1147 }
1148
1149
1150 /**
1151  * Notification about active use of an address.
1152  * in_use == GNUNET_YES:
1153  *      This address is used to maintain an active connection with a peer.
1154  * in_use == GNUNET_NO:
1155  *      This address is no longer used to maintain an active connection with a peer.
1156  *
1157  * Note: can only be called with in_use == GNUNET_NO if called with GNUNET_YES
1158  * before
1159  *
1160  * @param handle the address handle to use
1161  * @param peer peer
1162  * @param plugin_name transport plugin name
1163  * @param plugin_addr plugin address
1164  * @param plugin_addr_len length of the plugin address
1165  * @param session_id session id, can be 0
1166  * @param in_use GNUNET_YES if GNUNET_NO
1167  * @return GNUNET_SYSERR on failure (address unknown ...)
1168  */
1169 int
1170 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
1171                       const struct GNUNET_PeerIdentity *peer,
1172                       const char *plugin_name,
1173                       const void *plugin_addr,
1174                       size_t plugin_addr_len,
1175                       uint32_t session_id,
1176                       int in_use)
1177 {
1178   struct ATS_Address *ea;
1179   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1180                 "Received `%s' for peer `%s'\n",
1181                 "ADDRESS IN USE",
1182                 GNUNET_i2s (peer));
1183
1184   if (GNUNET_NO == handle->running)
1185     return GNUNET_SYSERR;
1186
1187   ea = find_exact_address (handle, peer, plugin_name,
1188                 plugin_addr, plugin_addr_len, session_id);
1189   if (NULL == ea)
1190   {
1191     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1192                 "Trying to set unknown address `%s', %s %u %s \n",
1193                 GNUNET_i2s (peer),
1194                 plugin_name, session_id,
1195                 (GNUNET_NO == in_use) ? "NO" : "YES");
1196     GNUNET_break (0);
1197     return GNUNET_SYSERR;
1198   }
1199   if (ea->used == in_use)
1200   {
1201     GNUNET_break (0);
1202     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1203                 "Address in use called multiple times for peer `%s': %s -> %s \n",
1204                 GNUNET_i2s (peer),
1205                 (GNUNET_NO == ea->used) ? "NO" : "YES",
1206                 (GNUNET_NO == in_use) ? "NO" : "YES");
1207     return GNUNET_SYSERR;
1208   }
1209
1210   /* Tell solver about update */
1211   ea->used = in_use;
1212   handle->s_address_update_inuse (handle->solver, ea, ea->used);
1213   return GNUNET_OK;
1214 }
1215
1216
1217 /**
1218  * Cancel address suggestions for a peer
1219  *
1220  * @param handle the address handle
1221  * @param peer the peer id
1222  */
1223 void
1224 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
1225                                       const struct GNUNET_PeerIdentity *peer)
1226 {
1227   struct GAS_Addresses_Suggestion_Requests *cur = handle->r_head;
1228
1229   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1230               "Received request: `%s' for peer %s\n", "request_address_cancel", GNUNET_i2s (peer));
1231
1232   while (NULL != cur)
1233   {
1234       if (0 == memcmp (peer, &cur->id, sizeof (cur->id)))
1235         break; /* found */
1236       cur = cur->next;
1237   }
1238
1239   if (NULL == cur)
1240   {
1241       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1242                   "No address requests pending for peer `%s', cannot remove!\n", GNUNET_i2s (peer));
1243       return;
1244   }
1245   handle->s_get_stop (handle->solver, peer);
1246   GAS_addresses_handle_backoff_reset (handle, peer);
1247   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1248               "Removed request pending for peer `%s\n", GNUNET_i2s (peer));
1249   GNUNET_CONTAINER_DLL_remove (handle->r_head, handle->r_tail, cur);
1250   GNUNET_free (cur);
1251 }
1252
1253
1254 /**
1255  * Request address suggestions for a peer
1256  *
1257  * @param handle the address handle
1258  * @param peer the peer id
1259  */
1260 void
1261 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
1262                                const struct GNUNET_PeerIdentity *peer)
1263 {
1264   struct GAS_Addresses_Suggestion_Requests *cur = handle->r_head;
1265   struct ATS_Address *aa;
1266
1267   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1268               "Received `%s' for peer `%s'\n",
1269               "REQUEST ADDRESS",
1270               GNUNET_i2s (peer));
1271
1272   if (GNUNET_NO == handle->running)
1273     return;
1274   while (NULL != cur)
1275   {
1276       if (0 == memcmp (peer, &cur->id, sizeof (cur->id)))
1277         break; /* already suggesting */
1278       cur = cur->next;
1279   }
1280   if (NULL == cur)
1281   {
1282       cur = GNUNET_malloc (sizeof (struct GAS_Addresses_Suggestion_Requests));
1283       cur->id = (*peer);
1284       GNUNET_CONTAINER_DLL_insert (handle->r_head, handle->r_tail, cur);
1285   }
1286
1287   /* Get prefered address from solver */
1288   aa = (struct ATS_Address *) handle->s_get (handle->solver, peer);
1289   if (NULL == aa)
1290   {
1291     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1292                 "Cannot suggest address for peer `%s'\n", GNUNET_i2s (peer));
1293     return;
1294   }
1295
1296   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1297               "Suggesting address %p for peer `%s'\n", aa, GNUNET_i2s (peer));
1298
1299   GAS_scheduling_transmit_address_suggestion (peer,
1300                                               aa->plugin,
1301                                               aa->addr, aa->addr_len,
1302                                               aa->session_id,
1303                                               aa->atsi, aa->atsi_count,
1304                                               aa->assigned_bw_out,
1305                                               aa->assigned_bw_in);
1306
1307   aa->block_interval = GNUNET_TIME_relative_add (aa->block_interval, ATS_BLOCKING_DELTA);
1308   aa->blocked_until = GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), aa->block_interval);
1309
1310   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1311        "Address %p ready for suggestion, block interval now %llu \n",
1312        aa, aa->block_interval);
1313 }
1314
1315
1316 /**
1317  * Iterator to reset address blocking
1318  *
1319  * @param cls not used
1320  * @param key the peer
1321  * @param value the address to reset
1322  * @return GNUNET_OK to continue
1323  */
1324 static int
1325 reset_address_it (void *cls, const struct GNUNET_HashCode *key, void *value)
1326 {
1327   struct ATS_Address *aa = value;
1328
1329   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1330               "Resetting interval for peer `%s' address %p from %llu to 0\n",
1331               GNUNET_i2s (&aa->peer), aa, aa->block_interval);
1332
1333   aa->blocked_until = GNUNET_TIME_UNIT_ZERO_ABS;
1334   aa->block_interval = GNUNET_TIME_UNIT_ZERO;
1335   return GNUNET_OK;
1336 }
1337
1338
1339 /**
1340  * Reset suggestion backoff for a peer
1341  *
1342  * Suggesting addresses is blocked for ATS_BLOCKING_DELTA. Blocking can be
1343  * reset using this function
1344  *
1345  * @param handle the address handle
1346  * @param peer the peer id
1347  */
1348 void
1349 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
1350                                     const struct GNUNET_PeerIdentity *peer)
1351 {
1352   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1353               "Received `%s' for peer `%s'\n",
1354               "RESET BACKOFF",
1355               GNUNET_i2s (peer));
1356
1357   GNUNET_break (GNUNET_SYSERR != GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses,
1358                                               &peer->hashPubKey,
1359                                               &reset_address_it,
1360                                               NULL));
1361 }
1362
1363
1364 /**
1365  * The preference changed for a peer
1366  *
1367  * @param cls the address handle
1368  * @param peer the peer
1369  * @param kind the ATS kind
1370  * @param pref_rel the new relative preference value
1371  */
1372 static void
1373 normalized_preference_changed_cb (void *cls,
1374                                                                   const struct GNUNET_PeerIdentity *peer,
1375                                                                   enum GNUNET_ATS_PreferenceKind kind,
1376                                                                   double pref_rel)
1377 {
1378         GNUNET_assert (NULL != cls);
1379         struct GAS_Addresses_Handle *handle = cls;
1380   /* Tell solver about update */
1381   handle->s_pref (handle->solver, peer, kind, pref_rel);
1382 }
1383
1384
1385 /**
1386  * The relative value for a property changed
1387  *
1388  * @param cls the address handle
1389  * @param address the peer
1390  * @param type the ATS type
1391  * @param prop_rel the new relative preference value
1392  */
1393 static void
1394 normalized_property_changed_cb (void *cls,
1395                                                                                                                   struct ATS_Address *address,
1396                                                                                                                   uint32_t type,
1397                                                                                                                   double prop_rel)
1398 {
1399         struct GAS_Addresses_Handle *ah = (struct GAS_Addresses_Handle *) cls;
1400         GNUNET_assert (NULL != ah);
1401
1402         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1403               "Normalized property %s for peer `%s' changed to %.3f \n",
1404               GNUNET_ATS_print_property_type (type),
1405               GNUNET_i2s (&address->peer),
1406               prop_rel);
1407
1408         ah->s_address_update_property (ah->solver,
1409                                                                                                                                 address,
1410                                                                                                                                 type,
1411                                                                                                                                 0,
1412                                                                                                                                 prop_rel);
1413 }
1414
1415
1416 /**
1417  * Function allowing the solver to obtain normalized preference
1418  * values from solver
1419  *
1420  * @param cls unused
1421  * @param id the peer to return the normalized properties for
1422  * @return array of double values with |GNUNET_ATS_PreferenceCount| elements
1423  */
1424 const double *
1425 get_preferences_cb (void *cls, const struct GNUNET_PeerIdentity *id)
1426 {
1427         return GAS_normalization_get_preferences (id);
1428 }
1429
1430 /**
1431  * Function allowing the solver to obtain normalized property
1432  * values for an address from solver
1433  *
1434  * @param cls unused
1435  * @param address the address
1436  * @return array of double values with |GNUNET_ATS_QualityPropertiesCount| elements
1437  */
1438 const double *
1439 get_property_cb (void *cls, const struct ATS_Address *address)
1440 {
1441         return GAS_normalization_get_properties ((struct ATS_Address *) address);
1442 }
1443
1444 /**
1445  * Change the preference for a peer
1446  *
1447  * @param handle the address handle
1448  * @param client the client sending this request
1449  * @param peer the peer id
1450  * @param kind the preference kind to change
1451  * @param score_abs the new preference score
1452  */
1453 void
1454 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
1455                                  void *client,
1456                                  const struct GNUNET_PeerIdentity *peer,
1457                                  enum GNUNET_ATS_PreferenceKind kind,
1458                                  float score_abs)
1459 {
1460         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1461               "Received `%s' for peer `%s' for client %p\n",
1462               "CHANGE PREFERENCE",
1463               GNUNET_i2s (peer), client);
1464
1465   if (GNUNET_NO == handle->running)
1466     return;
1467
1468   if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (handle->addresses,
1469                                                           &peer->hashPubKey))
1470   {
1471       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1472                   "Received `%s' for unknown peer `%s' from client %p\n",
1473                   "CHANGE PREFERENCE",
1474                   GNUNET_i2s (peer), client);
1475       return;
1476   }
1477
1478   handle->s_bulk_start (handle->solver);
1479   /* Tell normalization about change, normalization will call callback if preference changed */
1480   GAS_normalization_normalize_preference (client, peer, kind, score_abs);
1481   handle->s_bulk_stop (handle->solver);
1482 }
1483
1484
1485 /**
1486  * Load quotas for networks from configuration
1487  *
1488  * @param cfg configuration handle
1489  * @param out_dest where to write outbound quotas
1490  * @param in_dest where to write inbound quotas
1491  * @param dest_length length of inbound and outbound arrays
1492  * @return number of networks loaded
1493  */
1494 static unsigned int
1495 load_quotas (const struct GNUNET_CONFIGURATION_Handle *cfg, unsigned long long *out_dest, unsigned long long *in_dest, int dest_length)
1496 {
1497   char *network_str[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkTypeString;
1498   char * entry_in = NULL;
1499   char * entry_out = NULL;
1500   char * quota_out_str;
1501   char * quota_in_str;
1502   int c;
1503   int res;
1504
1505   for (c = 0; (c < GNUNET_ATS_NetworkTypeCount) && (c < dest_length); c++)
1506   {
1507     in_dest[c] = 0;
1508     out_dest[c] = 0;
1509     GNUNET_asprintf (&entry_out, "%s_QUOTA_OUT", network_str[c]);
1510     GNUNET_asprintf (&entry_in, "%s_QUOTA_IN", network_str[c]);
1511
1512     /* quota out */
1513     if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "ats", entry_out, &quota_out_str))
1514     {
1515       res = GNUNET_NO;
1516       if (0 == strcmp(quota_out_str, GNUNET_ATS_MaxBandwidthString))
1517       {
1518         out_dest[c] = GNUNET_ATS_MaxBandwidth;
1519         res = GNUNET_YES;
1520       }
1521       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_STRINGS_fancy_size_to_bytes (quota_out_str, &out_dest[c])))
1522         res = GNUNET_YES;
1523       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, "ats", entry_out,  &out_dest[c])))
1524          res = GNUNET_YES;
1525
1526       if (GNUNET_NO == res)
1527       {
1528           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not load quota for network `%s':  `%s', assigning default bandwidth %llu\n"),
1529               network_str[c], quota_out_str, GNUNET_ATS_DefaultBandwidth);
1530           out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1531       }
1532       else
1533       {
1534           GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Outbound quota configure for network `%s' is %llu\n"),
1535               network_str[c], out_dest[c]);
1536       }
1537       GNUNET_free (quota_out_str);
1538     }
1539     else
1540     {
1541       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("No outbound quota configured for network `%s', assigning default bandwidth %llu\n"),
1542           network_str[c], GNUNET_ATS_DefaultBandwidth);
1543       out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1544     }
1545
1546     /* quota in */
1547     if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "ats", entry_in, &quota_in_str))
1548     {
1549       res = GNUNET_NO;
1550       if (0 == strcmp(quota_in_str, GNUNET_ATS_MaxBandwidthString))
1551       {
1552         in_dest[c] = GNUNET_ATS_MaxBandwidth;
1553         res = GNUNET_YES;
1554       }
1555       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_STRINGS_fancy_size_to_bytes (quota_in_str, &in_dest[c])))
1556         res = GNUNET_YES;
1557       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, "ats", entry_in,  &in_dest[c])))
1558          res = GNUNET_YES;
1559
1560       if (GNUNET_NO == res)
1561       {
1562           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not load quota for network `%s':  `%s', assigning default bandwidth %llu\n"),
1563               network_str[c], quota_in_str, GNUNET_ATS_DefaultBandwidth);
1564           in_dest[c] = GNUNET_ATS_DefaultBandwidth;
1565       }
1566       else
1567       {
1568           GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Inbound quota configured for network `%s' is %llu\n"),
1569               network_str[c], in_dest[c]);
1570       }
1571       GNUNET_free (quota_in_str);
1572     }
1573     else
1574     {
1575       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("No outbound quota configure for network `%s', assigning default bandwidth %llu\n"),
1576           network_str[c], GNUNET_ATS_DefaultBandwidth);
1577       out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1578     }
1579     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]);
1580     GNUNET_free (entry_out);
1581     GNUNET_free (entry_in);
1582   }
1583   return GNUNET_ATS_NetworkTypeCount;
1584 }
1585
1586
1587 /**
1588  * Callback for solver to notify about assignment changes
1589  *
1590  * @param cls the GAS_Addresses_Handle
1591  * @param address the address with changes
1592  */
1593 static void
1594 bandwidth_changed_cb (void *cls, struct ATS_Address *address)
1595 {
1596   struct GAS_Addresses_Handle *handle = cls;
1597   struct GAS_Addresses_Suggestion_Requests *cur;
1598
1599   GNUNET_assert (handle != NULL);
1600   GNUNET_assert (address != NULL);
1601
1602   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Bandwidth assignment changed for peer %s \n", GNUNET_i2s(&address->peer));
1603
1604   /* Notify performance clients about changes to address */
1605   GAS_performance_notify_all_clients (&address->peer,
1606       address->plugin,
1607       address->addr, address->addr_len,
1608       address->session_id,
1609       address->atsi, address->atsi_count,
1610       address->assigned_bw_out,
1611       address->assigned_bw_in);
1612   cur = handle->r_head;
1613   while (NULL != cur)
1614   {
1615       if (0 == memcmp (&address->peer, &cur->id, sizeof (cur->id)))
1616         break; /* we have an address request pending*/
1617       cur = cur->next;
1618   }
1619   if (NULL == cur)
1620   {
1621       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1622                   "Nobody is interested in peer `%s' :(\n",GNUNET_i2s (&address->peer));
1623       return;
1624   }
1625
1626   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1627               "Sending bandwidth update for peer `%s'\n",GNUNET_i2s (&address->peer));
1628
1629   /* *Notify scheduling clients about suggestion */
1630   GAS_scheduling_transmit_address_suggestion (&address->peer,
1631                                               address->plugin,
1632                                               address->addr, address->addr_len,
1633                                               address->session_id,
1634                                               address->atsi, address->atsi_count,
1635                                               address->assigned_bw_out,
1636                                               address->assigned_bw_in);
1637 }
1638
1639
1640 /**
1641  * Initialize address subsystem. The addresses subsystem manages the addresses
1642  * known and current performance information. It has a solver component
1643  * responsible for the resource allocation. It tells the solver about changes
1644  * and receives updates when the solver changes the ressource allocation.
1645  *
1646  * @param cfg configuration to use
1647  * @param stats the statistics handle to use
1648  * @return an address handle
1649  */
1650 struct GAS_Addresses_Handle *
1651 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
1652                     const struct GNUNET_STATISTICS_Handle *stats)
1653 {
1654   struct GAS_Addresses_Handle *ah;
1655   int quotas[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkType;
1656   unsigned long long  quotas_in[GNUNET_ATS_NetworkTypeCount];
1657   unsigned long long  quotas_out[GNUNET_ATS_NetworkTypeCount];
1658   int quota_count;
1659   char *mode_str;
1660   int c;
1661
1662   ah = GNUNET_malloc (sizeof (struct GAS_Addresses_Handle));
1663   ah->running = GNUNET_NO;
1664
1665   ah->stat = (struct GNUNET_STATISTICS_Handle *) stats;
1666   /* Initialize the addresses database */
1667   ah->addresses = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO);
1668   GNUNET_assert (NULL != ah->addresses);
1669
1670   /* Figure out configured solution method */
1671   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string (cfg, "ats", "MODE", &mode_str))
1672   {
1673       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "No ressource assignment method configured, using simplistic approch\n");
1674       ah->ats_mode = MODE_SIMPLISTIC;
1675   }
1676   else
1677   {
1678       for (c = 0; c < strlen (mode_str); c++)
1679         mode_str[c] = toupper (mode_str[c]);
1680       if (0 == strcmp (mode_str, "SIMPLISTIC"))
1681       {
1682           ah->ats_mode = MODE_SIMPLISTIC;
1683       }
1684       else if (0 == strcmp (mode_str, "MLP"))
1685       {
1686           ah->ats_mode = MODE_MLP;
1687 #if !HAVE_LIBGLPK
1688           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Assignment method `%s' configured, but GLPK is not availabe, please install \n", mode_str);
1689           ah->ats_mode = MODE_SIMPLISTIC;
1690 #endif
1691       }
1692       else
1693       {
1694           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid ressource assignment method `%s' configured, using simplistic approch\n", mode_str);
1695           ah->ats_mode = MODE_SIMPLISTIC;
1696       }
1697       GNUNET_free (mode_str);
1698   }
1699   /* Start configured solution method */
1700   switch (ah->ats_mode)
1701   {
1702     case MODE_MLP:
1703       /* Init the MLP solver with default values */
1704 #if HAVE_LIBGLPK
1705       ah->ats_mode = MODE_MLP;
1706       ah->s_init = &GAS_mlp_init;
1707       ah->s_add = &GAS_mlp_address_add;
1708       ah->s_address_update_property = &GAS_mlp_address_property_changed;
1709       ah->s_address_update_session = &GAS_mlp_address_session_changed;
1710       ah->s_address_update_inuse = &GAS_mlp_address_inuse_changed;
1711       ah->s_address_update_network = &GAS_mlp_address_change_network;
1712       ah->s_get = &GAS_mlp_get_preferred_address;
1713       ah->s_get_stop = &GAS_mlp_stop_get_preferred_address;
1714       ah->s_pref = &GAS_mlp_address_change_preference;
1715       ah->s_del =  &GAS_mlp_address_delete;
1716       ah->s_bulk_start = &GAS_mlp_bulk_start;
1717       ah->s_bulk_stop = &GAS_mlp_bulk_stop;
1718       ah->s_done = &GAS_mlp_done;
1719 #else
1720       GNUNET_free (ah);
1721       return NULL;
1722 #endif
1723       break;
1724     case MODE_SIMPLISTIC:
1725       /* Init the simplistic solver with default values */
1726       ah->ats_mode = MODE_SIMPLISTIC;
1727       ah->s_init = &GAS_proportional_init;
1728       ah->s_add = &GAS_proportional_address_add;
1729       ah->s_address_update_property = &GAS_proportional_address_property_changed;
1730       ah->s_address_update_session = &GAS_proportional_address_session_changed;
1731       ah->s_address_update_inuse = &GAS_proportional_address_inuse_changed;
1732       ah->s_address_update_network = &GAS_proportional_address_change_network;
1733       ah->s_get = &GAS_proportional_get_preferred_address;
1734       ah->s_get_stop = &GAS_proportional_stop_get_preferred_address;
1735       ah->s_pref = &GAS_proportional_address_change_preference;
1736       ah->s_del  = &GAS_proportional_address_delete;
1737       ah->s_bulk_start = &GAS_proportional_bulk_start;
1738       ah->s_bulk_stop = &GAS_proportional_bulk_stop;
1739       ah->s_done = &GAS_proportional_done;
1740       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS started in %s mode\n", "SIMPLISTIC");
1741       break;
1742     default:
1743       return NULL;
1744       break;
1745   }
1746
1747   GNUNET_assert (NULL != ah->s_init);
1748   GNUNET_assert (NULL != ah->s_add);
1749   GNUNET_assert (NULL != ah->s_address_update_inuse);
1750   GNUNET_assert (NULL != ah->s_address_update_property);
1751   GNUNET_assert (NULL != ah->s_address_update_session);
1752   GNUNET_assert (NULL != ah->s_address_update_network);
1753   GNUNET_assert (NULL != ah->s_get);
1754   GNUNET_assert (NULL != ah->s_get_stop);
1755   GNUNET_assert (NULL != ah->s_pref);
1756   GNUNET_assert (NULL != ah->s_del);
1757   GNUNET_assert (NULL != ah->s_done);
1758   GNUNET_assert (NULL != ah->s_bulk_start);
1759   GNUNET_assert (NULL != ah->s_bulk_stop);
1760
1761   GAS_normalization_start (&normalized_preference_changed_cb, ah,
1762                                                                                                  &normalized_property_changed_cb, ah);
1763   quota_count = load_quotas(cfg, quotas_in, quotas_out, GNUNET_ATS_NetworkTypeCount);
1764
1765   ah->solver = ah->s_init (cfg, stats, ah->addresses,
1766                   quotas, quotas_in, quotas_out, quota_count,
1767                   &bandwidth_changed_cb, ah,
1768                   &get_preferences_cb, NULL,
1769                   &get_property_cb, NULL);
1770   if (NULL == ah->solver)
1771   {
1772     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to initialize solver!\n"));
1773     GNUNET_free (ah);
1774     return NULL;
1775   }
1776
1777   /* up and running */
1778   ah->running = GNUNET_YES;
1779   return ah;
1780 }
1781
1782
1783 /**
1784  * Destroy all addresses iterator
1785  *
1786  * @param cls NULL
1787  * @param key peer identity (unused)
1788  * @param value the 'struct ATS_Address' to free
1789  * @return GNUNET_OK (continue to iterate)
1790  */
1791 static int
1792 destroy_all_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
1793 {
1794   struct GAS_Addresses_Handle *handle = cls;
1795   struct ATS_Address *aa = value;
1796
1797   /* Remove */
1798   GNUNET_assert (GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove (handle->addresses, key, value));
1799   /* Notify */
1800   handle->s_del (handle->solver, aa, GNUNET_NO);
1801   /* Destroy */
1802   free_address (aa);
1803
1804   return GNUNET_OK;
1805 }
1806
1807
1808 /**
1809  * Remove all addresses
1810  *
1811  * @param handle the address handle to use
1812  */
1813 void
1814 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle)
1815 {
1816   if (GNUNET_NO == handle->running)
1817     return;
1818
1819   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1820               "Received `%s'\n",
1821               "DESTROY ALL");
1822   if (handle->addresses != NULL)
1823     GNUNET_CONTAINER_multihashmap_iterate (handle->addresses, &destroy_all_address_it, handle);
1824 }
1825
1826
1827 /**
1828  * Shutdown address subsystem.
1829  *
1830  * @param handle the address handle to shutdown
1831  */
1832 void
1833 GAS_addresses_done (struct GAS_Addresses_Handle *handle)
1834 {
1835   struct GAS_Addresses_Suggestion_Requests *cur;
1836
1837   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1838               "Shutting down addresses\n");
1839   GNUNET_assert (NULL != handle);
1840   GAS_addresses_destroy_all (handle);
1841   handle->running = GNUNET_NO;
1842   GNUNET_CONTAINER_multihashmap_destroy (handle->addresses);
1843   handle->addresses = NULL;
1844   while (NULL != (cur = handle->r_head))
1845   {
1846       GNUNET_CONTAINER_DLL_remove (handle->r_head, handle->r_tail, cur);
1847       GNUNET_free (cur);
1848   }
1849   handle->s_done (handle->solver);
1850   GNUNET_free (handle);
1851   /* Stop configured solution method */
1852   GAS_normalization_stop ();
1853 }
1854
1855
1856 struct PeerIteratorContext
1857 {
1858   GNUNET_ATS_Peer_Iterator it;
1859   void *it_cls;
1860   struct GNUNET_CONTAINER_MultiHashMap *peers_returned;
1861 };
1862
1863
1864 /**
1865  * Iterator to iterate over all peers
1866  *
1867  * @param cls a PeerIteratorContext
1868  * @param key the peer id
1869  * @param value the ATS_address
1870  * @return GNUNET_OK to continue
1871  */
1872 static int
1873 peer_it (void *cls,
1874          const struct GNUNET_HashCode * key,
1875          void *value)
1876 {
1877   struct PeerIteratorContext *ip_ctx = cls;
1878   struct GNUNET_PeerIdentity tmp;
1879
1880   if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(ip_ctx->peers_returned, key))
1881   {
1882       GNUNET_CONTAINER_multihashmap_put(ip_ctx->peers_returned, key, NULL, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1883       tmp.hashPubKey = (*key);
1884       ip_ctx->it (ip_ctx->it_cls, &tmp);
1885   }
1886
1887   return GNUNET_OK;
1888 }
1889
1890
1891 /**
1892  * Return information all peers currently known to ATS
1893  *
1894  * @param handle the address handle to use
1895  * @param p_it the iterator to call for every peer
1896  * @param p_it_cls the closure for the iterator
1897  */
1898 void
1899 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle,
1900                                                                                                                  GNUNET_ATS_Peer_Iterator p_it,
1901                                                                                                                  void *p_it_cls)
1902 {
1903   struct PeerIteratorContext ip_ctx;
1904   unsigned int size;
1905
1906   if (NULL == p_it)
1907       return;
1908   GNUNET_assert (NULL != handle->addresses);
1909
1910   size = GNUNET_CONTAINER_multihashmap_size(handle->addresses);
1911   if (0 != size)
1912   {
1913     ip_ctx.it = p_it;
1914     ip_ctx.it_cls = p_it_cls;
1915     ip_ctx.peers_returned = GNUNET_CONTAINER_multihashmap_create (size, GNUNET_NO);
1916     GNUNET_CONTAINER_multihashmap_iterate (handle->addresses, &peer_it, &ip_ctx);
1917     GNUNET_CONTAINER_multihashmap_destroy (ip_ctx.peers_returned);
1918   }
1919   p_it (p_it_cls, NULL);
1920 }
1921
1922
1923 struct PeerInfoIteratorContext
1924 {
1925   GNUNET_ATS_PeerInfo_Iterator it;
1926   void *it_cls;
1927 };
1928
1929
1930 /**
1931  * Iterator to iterate over a peer's addresses
1932  *
1933  * @param cls a PeerInfoIteratorContext
1934  * @param key the peer id
1935  * @param value the ATS_address
1936  * @return GNUNET_OK to continue
1937  */
1938 static int 
1939 peerinfo_it (void *cls,
1940              const struct GNUNET_HashCode * key,
1941              void *value)
1942 {
1943   struct PeerInfoIteratorContext *pi_ctx = cls;
1944   struct ATS_Address *addr = (struct ATS_Address *)  value;
1945
1946   if (NULL != pi_ctx->it)
1947   {
1948     pi_ctx->it (pi_ctx->it_cls,
1949                 &addr->peer,
1950                 addr->plugin,
1951                 addr->addr, addr->addr_len,
1952                 addr->active,
1953                 addr->atsi, addr->atsi_count,
1954                 addr->assigned_bw_out,
1955                 addr->assigned_bw_in);
1956   }
1957   return GNUNET_YES;
1958 }
1959
1960
1961 /**
1962  * Return information all peers currently known to ATS
1963  *
1964  * @param handle the address handle to use
1965  * @param peer the respective peer
1966  * @param pi_it the iterator to call for every peer
1967  * @param pi_it_cls the closure for the iterator
1968  */
1969 void
1970 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
1971                              const struct GNUNET_PeerIdentity *peer,
1972                              GNUNET_ATS_PeerInfo_Iterator pi_it,
1973                              void *pi_it_cls)
1974 {
1975   struct PeerInfoIteratorContext pi_ctx;
1976   struct GNUNET_BANDWIDTH_Value32NBO zero_bw;
1977   GNUNET_assert (NULL != peer);
1978   GNUNET_assert (NULL != handle->addresses);
1979   if (NULL == pi_it)
1980     return; /* does not make sense without callback */
1981
1982   zero_bw = GNUNET_BANDWIDTH_value_init (0);
1983   pi_ctx.it = pi_it;
1984   pi_ctx.it_cls = pi_it_cls;
1985
1986   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey, &peerinfo_it, &pi_ctx);
1987
1988   if (NULL != pi_it)
1989     pi_it (pi_it_cls, NULL, NULL, NULL, 0, GNUNET_NO, NULL, 0, zero_bw, zero_bw);
1990
1991 }
1992
1993
1994 /* end of gnunet-service-ats_addresses.c */