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