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