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