pre lunch commit
[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 static unsigned int
371 assemble_ats_information (const struct ATS_Address *aa,  struct GNUNET_ATS_Information **dest)
372 {
373   unsigned int ats_count = GNUNET_ATS_PropertyCount - 1;
374   struct GNUNET_ATS_Information *ats = GNUNET_malloc (ats_count * sizeof (struct GNUNET_ATS_Information));
375   (*dest) = ats;
376
377   ats[0].type = ntohl(GNUNET_ATS_UTILIZATION_UP);
378   ats[0].value = aa->atsp_utilization_out.value__;
379   ats[1].type = ntohl(GNUNET_ATS_UTILIZATION_DOWN);
380   ats[1].value = aa->atsp_utilization_in.value__;
381   ats[2].type = ntohl(GNUNET_ATS_NETWORK_TYPE);
382   ats[2].value = ntohl(aa->atsp_network_type);
383   ats[3].type = ntohl(GNUNET_ATS_QUALITY_NET_DELAY);
384   ats[3].value = ntohl(aa->atsp_latency.rel_value);
385   ats[4].type = ntohl(GNUNET_ATS_QUALITY_NET_DISTANCE);
386   ats[4].value = ntohl(aa->atsp_distance);
387   ats[5].type = ntohl(GNUNET_ATS_COST_WAN);
388   ats[5].value = ntohl (aa->atsp_cost_wan);
389   ats[6].type = ntohl(GNUNET_ATS_COST_LAN);
390   ats[6].value = ntohl (aa->atsp_cost_lan);
391   ats[7].type = ntohl(GNUNET_ATS_COST_WLAN);
392   ats[7].value = ntohl (aa->atsp_cost_wlan);
393   return ats_count;
394 }
395
396 static unsigned int
397 disassemble_ats_information (const struct GNUNET_ATS_Information *src,
398                              uint32_t ats_count,
399                              struct ATS_Address *dest)
400 {
401   int i;
402   int res = 0;
403   for (i = 0; i < ats_count; i++)
404     switch (ntohl (src[i].type))
405     {
406     case GNUNET_ATS_UTILIZATION_UP:
407       dest->atsp_utilization_out.value__ = src[i].value;
408       res ++;
409       break;
410     case GNUNET_ATS_UTILIZATION_DOWN:
411       dest->atsp_utilization_in.value__ = src[i].value;
412       res ++;
413       break;
414     case GNUNET_ATS_QUALITY_NET_DELAY:
415       dest->atsp_latency.rel_value = ntohl (src[i].value);
416       res ++;
417       break;
418     case GNUNET_ATS_QUALITY_NET_DISTANCE:
419       dest->atsp_distance = ntohl (src[i].value);
420       res ++;
421       break;
422     case GNUNET_ATS_COST_WAN:
423       dest->atsp_cost_wan = ntohl (src[i].value);
424       res ++;
425       break;
426     case GNUNET_ATS_COST_LAN:
427       dest->atsp_cost_lan = ntohl (src[i].value);
428       res ++;
429       break;
430     case GNUNET_ATS_COST_WLAN:
431       dest->atsp_cost_wlan = ntohl (src[i].value);
432       res ++;
433       break;
434     case GNUNET_ATS_NETWORK_TYPE:
435       dest->atsp_network_type = ntohl (src[i].value);
436       res ++;
437       break;
438     case GNUNET_ATS_ARRAY_TERMINATOR:
439       break;
440     default:
441       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
442                   "Received unsupported ATS type %u\n", ntohl (src[i].type));
443       GNUNET_break (0);
444       break;
445     }
446   return res;
447 }
448
449 /**
450  * Free the given address
451  * @param addr address to destroy
452  */
453 static void
454 free_address (struct ATS_Address *addr)
455 {
456   GNUNET_free (addr->plugin);
457   GNUNET_free (addr);
458 }
459
460 /**
461  * Create a ATS_address with the given information
462  * @param peer peer
463  * @param plugin_name plugin
464  * @param plugin_addr address
465  * @param plugin_addr_len address length
466  * @param session_id session
467  * @return the ATS_Address
468  */
469 static struct ATS_Address *
470 create_address (const struct GNUNET_PeerIdentity *peer,
471                 const char *plugin_name,
472                 const void *plugin_addr, size_t plugin_addr_len,
473                 uint32_t session_id)
474 {
475   struct ATS_Address *aa = NULL;
476
477   aa = GNUNET_malloc (sizeof (struct ATS_Address) + plugin_addr_len);
478   aa->peer = *peer;
479   aa->addr_len = plugin_addr_len;
480   aa->addr = &aa[1];
481   memcpy (&aa[1], plugin_addr, plugin_addr_len);
482   aa->plugin = GNUNET_strdup (plugin_name);
483   aa->session_id = session_id;
484   aa->active = GNUNET_NO;
485   aa->used = GNUNET_NO;
486   aa->solver_information = NULL;
487   aa->assigned_bw_in = GNUNET_BANDWIDTH_value_init(0);
488   aa->assigned_bw_out = GNUNET_BANDWIDTH_value_init(0);
489   return aa;
490 }
491
492
493 /**
494  * Destroy the given address.
495  *
496  * @param handle the address handle
497  * @param addr address to destroy
498  * @return GNUNET_YES if bandwidth allocations should be recalcualted
499  */
500 static int
501 destroy_address (struct GAS_Addresses_Handle *handle, struct ATS_Address *addr)
502 {
503   int ret;
504
505   ret = GNUNET_NO;
506   GNUNET_assert (GNUNET_YES ==
507                  GNUNET_CONTAINER_multihashmap_remove (handle->addresses,
508                                                        &addr->peer.hashPubKey,
509                                                        addr));
510   free_address (addr);
511   return ret;
512 }
513
514
515 struct CompareAddressContext
516 {
517   const struct ATS_Address *search;
518
519   /* exact_address != NULL if address and session is equal */
520   struct ATS_Address *exact_address;
521   /* exact_address != NULL if address and session is 0 */
522   struct ATS_Address *base_address;
523 };
524
525
526 static int
527 compare_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
528 {
529   struct CompareAddressContext *cac = cls;
530   struct ATS_Address *aa = value;
531
532   /* Find an matching exact address:
533    *
534    * Compare by:
535    * aa->addr_len == cac->search->addr_len
536    * aa->plugin == cac->search->plugin
537    * aa->addr == cac->search->addr
538    * aa->session == cac->search->session
539    *
540    * return as exact address
541    */
542   if ((aa->addr_len == cac->search->addr_len) && (0 == strcmp (aa->plugin, cac->search->plugin)))
543   {
544       if ((0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)) && (aa->session_id == cac->search->session_id))
545         cac->exact_address = aa;
546   }
547
548   /* Find an matching base address:
549    *
550    * Properties:
551    *
552    * aa->session_id == 0
553    *
554    * Compare by:
555    * aa->addr_len == cac->search->addr_len
556    * aa->plugin == cac->search->plugin
557    * aa->addr == cac->search->addr
558    *
559    * return as base address
560    */
561   if ((aa->addr_len == cac->search->addr_len) && (0 == strcmp (aa->plugin, cac->search->plugin)))
562   {
563       if ((0 == memcmp (aa->addr, cac->search->addr, aa->addr_len)) && (aa->session_id == 0))
564         cac->base_address = aa;
565   }
566
567   /* Find an matching exact address based on session:
568    *
569    * Properties:
570    *
571    * cac->search->addr_len == 0
572    *
573    * Compare by:
574    * aa->plugin == cac->search->plugin
575    * aa->session_id == cac->search->session_id
576    *
577    * return as exact address
578    */
579   if (0 == cac->search->addr_len)
580   {
581       if ((0 == strcmp (aa->plugin, cac->search->plugin)) && (aa->session_id == cac->search->session_id))
582         cac->exact_address = aa;
583   }
584
585   if (cac->exact_address == NULL)
586     return GNUNET_YES; /* Continue iteration to find exact address */
587   else
588     return GNUNET_NO; /* Stop iteration since we have an exact address */
589 }
590
591
592 /**
593  * Find an existing equivalent address record.
594  * Compares by peer identity and network address OR by session ID
595  * (one of the two must match).
596  *
597  * @param handle the address handle
598  * @param peer peer to lookup addresses for
599  * @param addr existing address record
600  * @return existing address record, NULL for none
601  */
602 struct ATS_Address *
603 find_equivalent_address (struct GAS_Addresses_Handle *handle,
604                          const struct GNUNET_PeerIdentity *peer,
605                          const struct ATS_Address *addr)
606 {
607   struct CompareAddressContext cac;
608
609   cac.exact_address = NULL;
610   cac.base_address = NULL;
611   cac.search = addr;
612   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey,
613                                               &compare_address_it, &cac);
614
615   if (cac.exact_address == NULL)
616     return cac.base_address;
617   return cac.exact_address;
618 }
619
620
621 static struct ATS_Address *
622 lookup_address (struct GAS_Addresses_Handle *handle,
623                 const struct GNUNET_PeerIdentity *peer,
624                 const char *plugin_name,
625                 const void *plugin_addr,
626                 size_t plugin_addr_len,
627                 uint32_t session_id,
628                 const struct GNUNET_ATS_Information *atsi,
629                 uint32_t atsi_count)
630 {
631   struct ATS_Address *aa;
632   struct ATS_Address *ea;
633
634   aa = create_address (peer,
635                        plugin_name,
636                        plugin_addr, plugin_addr_len,
637                        session_id);
638
639   /* Get existing address or address with session == 0 */
640   ea = find_equivalent_address (handle, peer, aa);
641   free_address (aa);
642   if (ea == NULL)
643   {
644     return NULL;
645   }
646   else if (ea->session_id != session_id)
647   {
648     return NULL;
649   }
650   return ea;
651 }
652
653
654 void
655 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
656                    const struct GNUNET_PeerIdentity *peer,
657                    const char *plugin_name, const void *plugin_addr,
658                    size_t plugin_addr_len, uint32_t session_id,
659                    const struct GNUNET_ATS_Information *atsi,
660                    uint32_t atsi_count)
661 {
662   struct ATS_Address *aa;
663   struct ATS_Address *ea;
664   unsigned int ats_res;
665
666   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
667               "Received `%s' for peer `%s'\n",
668               "ADDRESS ADD",
669               GNUNET_i2s (peer));
670
671   if (GNUNET_NO == handle->running)
672     return;
673
674   GNUNET_assert (NULL != handle->addresses);
675
676   aa = create_address (peer, plugin_name, plugin_addr, plugin_addr_len,
677                        session_id);
678   if (atsi_count != (ats_res = disassemble_ats_information(atsi, atsi_count, aa)))
679   {
680       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
681                 "While adding address: had %u ATS elements to add, could only add %u\n",
682                 atsi_count, ats_res);
683   }
684
685   /* Get existing address or address with session == 0 */
686   ea = find_equivalent_address (handle, peer, aa);
687   if (ea == NULL)
688   {
689     /* We have a new address */
690     GNUNET_assert (GNUNET_OK ==
691                    GNUNET_CONTAINER_multihashmap_put (handle->addresses,
692                                                       &peer->hashPubKey, aa,
693                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
694     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Added new address for peer `%s' session id %u, %p\n",
695                 GNUNET_i2s (peer), session_id, aa);
696     /* Tell solver about new address */
697     handle->s_add (handle->solver, handle->addresses, aa);
698     return;
699   }
700   GNUNET_free (aa->plugin);
701   GNUNET_free (aa);
702
703   if (ea->session_id != 0)
704   {
705       /* This address with the same session is already existing
706        * Should not happen */
707       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
708                 "Added already existing address for peer `%s' `%s' %p with new session %u\n",
709                 GNUNET_i2s (peer), plugin_name, session_id);
710       GNUNET_break (0);
711       return;
712   }
713
714   /* We have an address without an session, update this address */
715
716   /* Notify solver about update with atsi information and session */
717   handle->s_update (handle->solver, handle->addresses, ea, session_id, ea->used, atsi, atsi_count);
718
719   /* Do the update */
720   ea->session_id = session_id;
721   if (atsi_count != (ats_res = disassemble_ats_information(atsi, atsi_count, ea)))
722   {
723       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
724                   "While updating address: had %u ATS elements to add, could only add %u\n",
725                   atsi_count, ats_res);
726   }
727   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
728            "Updated existing address for peer `%s' %p with new session %u\n",
729            GNUNET_i2s (peer), ea, session_id);
730 }
731
732
733 void
734 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
735                       const struct GNUNET_PeerIdentity *peer,
736                       const char *plugin_name, const void *plugin_addr,
737                       size_t plugin_addr_len, uint32_t session_id,
738                       const struct GNUNET_ATS_Information *atsi,
739                       uint32_t atsi_count)
740 {
741   struct ATS_Address *aa;
742   uint32_t ats_res;
743
744   if (GNUNET_NO == handle->running)
745     return;
746
747   GNUNET_assert (NULL != handle->addresses);
748
749   /* Get existing address */
750   aa = lookup_address (handle, peer, plugin_name, plugin_addr, plugin_addr_len,
751                        session_id, atsi, atsi_count);
752   if (aa == NULL)
753   {
754     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Tried to update unknown address for peer `%s' `%s' session id %u\n",
755                 GNUNET_i2s (peer), plugin_name, session_id);
756     GNUNET_break (0);
757     return;
758   }
759
760   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
761                 "Received `%s' for peer `%s' address \n",
762                 "ADDRESS UPDATE",
763                 GNUNET_i2s (peer), aa);
764
765   /* Tell solver about update */
766   handle->s_update (handle->solver, handle->addresses, aa, session_id, aa->used, atsi, atsi_count);
767
768   /* Update address */
769   if (atsi_count != (ats_res = disassemble_ats_information (atsi, atsi_count, aa)))
770   {
771       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
772                 "While adding address: had %u ATS elements to add, could only add %u\n",
773                 atsi_count, ats_res);
774   }
775   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
776             "Updated %u ATS elements for address %p\n",
777             ats_res, aa);
778 }
779
780
781 struct DestroyContext
782 {
783   struct ATS_Address *aa;
784
785   struct GAS_Addresses_Handle *handle;
786
787   /**
788    * GNUNET_NO  : full address
789    * GNUNET_YES : just session
790    */
791   int result;
792 };
793
794
795 /**
796  * Delete an address
797  *
798  * If session != 0, just the session is deleted, the address itself still exists
799  * If session == 0, remove full address
800  * If session == 0 and addrlen == 0, destroy inbound address
801  *
802  * @param cls unused
803  * @param key unused
804  * @param value the 'struct ATS_Address'
805  * @return GNUNET_OK (continue to iterate)
806  */
807 static int
808 destroy_by_session_id (void *cls, const struct GNUNET_HashCode * key, void *value)
809 {
810   struct DestroyContext *dc = cls;
811   struct GAS_Addresses_Handle *handle = dc->handle;
812   const struct ATS_Address *des = dc->aa;
813   struct ATS_Address *aa = value;
814
815   GNUNET_assert (0 == memcmp (&aa->peer, &des->peer,
816                               sizeof (struct GNUNET_PeerIdentity)));
817
818
819   if (des->session_id == 0)
820   {
821     /* Session == 0, remove full address  */
822     if ((0 == strcmp (des->plugin, aa->plugin)) &&
823         (aa->addr_len == des->addr_len) &&
824         (0 == memcmp (des->addr, aa->addr, aa->addr_len)))
825     {
826
827       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
828                   "Deleting full address for peer `%s' session %u %p\n",
829                   GNUNET_i2s (&aa->peer), aa->session_id, aa);
830
831       /* Notify solver about deletion */
832       handle->s_del (handle->solver, handle->addresses, aa, GNUNET_NO);
833       destroy_address (handle, aa);
834       dc->result = GNUNET_NO;
835       return GNUNET_OK; /* Continue iteration */
836     }
837   }
838   else
839   {
840     /* Session != 0, just remove session */
841     if (aa->session_id != des->session_id)
842       return GNUNET_OK; /* irrelevant */
843
844     if ((aa->session_id != 0) &&
845         (0 != strcmp (des->plugin, aa->plugin)))
846     {
847         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
848                     "Different plugins during removal: `%s' vs `%s' \n",
849                     des->plugin, aa->plugin);
850         GNUNET_break (0);
851         return GNUNET_OK;
852     }
853
854     if (aa->addr_len == 0)
855     {
856         /* Inbound connection died, delete full address */
857         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
858                     "Deleting inbound address for peer `%s': `%s' session %u\n",
859                     GNUNET_i2s (&aa->peer), aa->plugin, aa->session_id);
860
861         /* Notify solver about deletion */
862         handle->s_del (handle->solver, handle->addresses, aa, GNUNET_NO);
863         destroy_address (handle, aa);
864         dc->result = GNUNET_NO;
865         return GNUNET_OK; /* Continue iteration */
866     }
867     else
868     {
869         /* Session died */
870         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
871                     "Deleting session for peer `%s': `%s' %u\n",
872                     GNUNET_i2s (&aa->peer), aa->plugin, aa->session_id);
873         /* Notify solver to delete session */
874         handle->s_del (handle->solver, handle->addresses, aa, GNUNET_YES);
875         aa->session_id = 0;
876         return GNUNET_OK;
877     }
878   }
879   return GNUNET_OK;
880 }
881
882 void
883 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
884                        const struct GNUNET_PeerIdentity *peer,
885                        const char *plugin_name, const void *plugin_addr,
886                        size_t plugin_addr_len, uint32_t session_id)
887 {
888   struct ATS_Address *ea;
889   struct DestroyContext dc;
890
891   if (GNUNET_NO == handle->running)
892     return;
893
894   /* Get existing address */
895   ea = lookup_address (handle, peer, plugin_name, plugin_addr, plugin_addr_len,
896                        session_id, NULL, 0);
897
898   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
899               "Received `%s' for peer `%s' address %p session %u\n",
900               "ADDRESS DESTROY",
901               GNUNET_i2s (peer), ea, session_id);
902
903   if (ea == NULL)
904   {
905     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Tried to destroy unknown address for peer `%s' `%s' session id %u\n",
906                 GNUNET_i2s (peer), plugin_name, session_id);
907     return;
908   }
909
910   GNUNET_break (0 < strlen (plugin_name));
911   dc.handle = handle;
912   dc.aa = create_address (peer, plugin_name, plugin_addr, plugin_addr_len, session_id);
913
914   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey,
915                                               &destroy_by_session_id, &dc);
916   free_address (dc.aa);
917 }
918
919
920 int
921 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
922                       const struct GNUNET_PeerIdentity *peer,
923                       const char *plugin_name, const void *plugin_addr,
924                       size_t plugin_addr_len, uint32_t session_id, int in_use)
925 {
926   struct ATS_Address *ea;
927
928   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
929                 "Received `%s' for peer `%s'\n",
930                 "ADDRESS IN USE",
931                 GNUNET_i2s (peer));
932
933   if (GNUNET_NO == handle->running)
934     return GNUNET_SYSERR;
935
936   ea = lookup_address (handle, peer, plugin_name,
937                         plugin_addr, plugin_addr_len,
938                         session_id, NULL, 0);
939   if (NULL == ea)
940   {
941     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
942                 "Trying to set unknown address `%s', %s %u %s \n",
943                 GNUNET_i2s (peer),
944                 plugin_name, session_id,
945                 (GNUNET_NO == in_use) ? "NO" : "YES");
946     GNUNET_break (0);
947     return GNUNET_SYSERR;
948   }
949   if (ea->used == in_use)
950   {
951     GNUNET_break (0);
952     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
953                 "Address in use called multiple times for peer `%s': %s -> %s \n",
954                 GNUNET_i2s (peer),
955                 (GNUNET_NO == ea->used) ? "NO" : "YES",
956                 (GNUNET_NO == in_use) ? "NO" : "YES");
957     return GNUNET_SYSERR;
958   }
959
960   /* Tell solver about update */
961   handle->s_update (handle->solver, handle->addresses, ea, session_id, in_use, NULL, 0);
962   ea->used = in_use;
963
964   return GNUNET_OK;
965 }
966
967
968 /**
969  * Cancel address suggestions for a peer
970  *
971  * @param handle the address handle
972  * @param peer the respective peer
973  */
974 void
975 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
976                                       const struct GNUNET_PeerIdentity *peer)
977 {
978   struct GAS_Addresses_Suggestion_Requests *cur = handle->r_head;
979
980   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
981               "Received request: `%s' for peer %s\n", "request_address_cancel", GNUNET_i2s (peer));
982
983   while (NULL != cur)
984   {
985       if (0 == memcmp (peer, &cur->id, sizeof (cur->id)))
986         break; /* found */
987       cur = cur->next;
988   }
989
990   if (NULL == cur)
991   {
992       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
993                   "No address requests pending for peer `%s', cannot remove!\n", GNUNET_i2s (peer));
994       return;
995   }
996   handle->s_get_stop (handle->solver, handle->addresses, peer);
997   GAS_addresses_handle_backoff_reset (handle, peer);
998   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
999               "Removed request pending for peer `%s\n", GNUNET_i2s (peer));
1000   GNUNET_CONTAINER_DLL_remove (handle->r_head, handle->r_tail, cur);
1001   GNUNET_free (cur);
1002 }
1003
1004
1005 /**
1006  * Add an address suggestions for a peer
1007  *
1008  * @param handle the address handle
1009  * @param peer the respective peer
1010  */
1011 void
1012 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
1013                                const struct GNUNET_PeerIdentity *peer)
1014 {
1015   struct GAS_Addresses_Suggestion_Requests *cur = handle->r_head;
1016   struct ATS_Address *aa;
1017   struct GNUNET_ATS_Information *ats;
1018   unsigned int ats_count;
1019
1020   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1021               "Received `%s' for peer `%s'\n",
1022               "REQUEST ADDRESS",
1023               GNUNET_i2s (peer));
1024
1025   if (GNUNET_NO == handle->running)
1026     return;
1027   while (NULL != cur)
1028   {
1029       if (0 == memcmp (peer, &cur->id, sizeof (cur->id)))
1030         break; /* already suggesting */
1031       cur = cur->next;
1032   }
1033   if (NULL == cur)
1034   {
1035       cur = GNUNET_malloc (sizeof (struct GAS_Addresses_Suggestion_Requests));
1036       cur->id = (*peer);
1037       GNUNET_CONTAINER_DLL_insert (handle->r_head, handle->r_tail, cur);
1038   }
1039
1040   /* Get prefered address from solver */
1041   aa = (struct ATS_Address *) handle->s_get (handle->solver, handle->addresses, peer);
1042   if (NULL == aa)
1043   {
1044     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1045                 "Cannot suggest address for peer `%s'\n", GNUNET_i2s (peer));
1046     return;
1047   }
1048
1049   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1050               "Suggesting address %p for peer `%s'\n", aa, GNUNET_i2s (peer));
1051
1052   ats_count = assemble_ats_information (aa, &ats);
1053   GAS_scheduling_transmit_address_suggestion (peer,
1054                                               aa->plugin,
1055                                               aa->addr, aa->addr_len,
1056                                               aa->session_id,
1057                                               ats, ats_count,
1058                                               aa->assigned_bw_out,
1059                                               aa->assigned_bw_in);
1060
1061   aa->block_interval = GNUNET_TIME_relative_add (aa->block_interval, ATS_BLOCKING_DELTA);
1062   aa->blocked_until = GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), aa->block_interval);
1063
1064   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1065        "Address %p ready for suggestion, block interval now %llu \n",
1066        aa, aa->block_interval);
1067
1068   GNUNET_free (ats);
1069 }
1070
1071
1072 static int
1073 reset_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
1074 {
1075   struct ATS_Address *aa = value;
1076
1077   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1078               "Resetting interval for peer `%s' address %p from %llu to 0\n",
1079               GNUNET_i2s (&aa->peer), aa, aa->block_interval);
1080
1081   aa->blocked_until = GNUNET_TIME_UNIT_ZERO_ABS;
1082   aa->block_interval = GNUNET_TIME_UNIT_ZERO;
1083   return GNUNET_OK;
1084 }
1085
1086
1087 void
1088 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
1089                                     const struct GNUNET_PeerIdentity *peer)
1090 {
1091   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1092               "Received `%s' for peer `%s'\n",
1093               "RESET BACKOFF",
1094               GNUNET_i2s (peer));
1095
1096   GNUNET_break (GNUNET_SYSERR != GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses,
1097                                               &peer->hashPubKey,
1098                                               &reset_address_it,
1099                                               NULL));
1100 }
1101
1102
1103 void
1104 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
1105                                  void *client,
1106                                  const struct GNUNET_PeerIdentity *peer,
1107                                  enum GNUNET_ATS_PreferenceKind kind,
1108                                  float score)
1109 {
1110   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1111               "Received `%s' for peer `%s' for client %p\n",
1112               "CHANGE PREFERENCE",
1113               GNUNET_i2s (peer), client);
1114
1115   if (GNUNET_NO == handle->running)
1116     return;
1117
1118   if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains (handle->addresses,
1119                                                           &peer->hashPubKey))
1120   {
1121       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1122                   "Received `%s' for unknown peer `%s' from client %p\n",
1123                   "CHANGE PREFERENCE",
1124                   GNUNET_i2s (peer), client);
1125       return;
1126   }
1127
1128   /* Tell solver about update */
1129   handle->s_pref (handle->solver, client, peer, kind, score);
1130 }
1131
1132
1133 /**
1134  * Load quotas for networks from configuration
1135  *
1136  * @param cfg configuration handle
1137  * @param out_dest where to write outbound quotas
1138  * @param in_dest where to write inbound quotas
1139  * @param dest_length length of inbound and outbound arrays
1140  * @return number of networks loaded
1141  */
1142 static unsigned int
1143 load_quotas (const struct GNUNET_CONFIGURATION_Handle *cfg, unsigned long long *out_dest, unsigned long long *in_dest, int dest_length)
1144 {
1145   char *network_str[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkTypeString;
1146   char * entry_in = NULL;
1147   char * entry_out = NULL;
1148   char * quota_out_str;
1149   char * quota_in_str;
1150   int c;
1151   int res;
1152
1153   for (c = 0; (c < GNUNET_ATS_NetworkTypeCount) && (c < dest_length); c++)
1154   {
1155     in_dest[c] = 0;
1156     out_dest[c] = 0;
1157     GNUNET_asprintf (&entry_out, "%s_QUOTA_OUT", network_str[c]);
1158     GNUNET_asprintf (&entry_in, "%s_QUOTA_IN", network_str[c]);
1159
1160     /* quota out */
1161     if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "ats", entry_out, &quota_out_str))
1162     {
1163       res = GNUNET_NO;
1164       if (0 == strcmp(quota_out_str, GNUNET_ATS_MaxBandwidthString))
1165       {
1166         out_dest[c] = GNUNET_ATS_MaxBandwidth;
1167         res = GNUNET_YES;
1168       }
1169       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_STRINGS_fancy_size_to_bytes (quota_out_str, &out_dest[c])))
1170         res = GNUNET_YES;
1171       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, "ats", entry_out,  &out_dest[c])))
1172          res = GNUNET_YES;
1173
1174       if (GNUNET_NO == res)
1175       {
1176           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not load quota for network `%s':  `%s', assigning default bandwidth %llu\n"),
1177               network_str[c], quota_out_str, GNUNET_ATS_DefaultBandwidth);
1178           out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1179       }
1180       else
1181       {
1182           GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Outbound quota configure for network `%s' is %llu\n"),
1183               network_str[c], out_dest[c]);
1184       }
1185       GNUNET_free (quota_out_str);
1186     }
1187     else
1188     {
1189       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("No outbound quota configured for network `%s', assigning default bandwidth %llu\n"),
1190           network_str[c], GNUNET_ATS_DefaultBandwidth);
1191       out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1192     }
1193
1194     /* quota in */
1195     if (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string(cfg, "ats", entry_in, &quota_in_str))
1196     {
1197       res = GNUNET_NO;
1198       if (0 == strcmp(quota_in_str, GNUNET_ATS_MaxBandwidthString))
1199       {
1200         in_dest[c] = GNUNET_ATS_MaxBandwidth;
1201         res = GNUNET_YES;
1202       }
1203       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_STRINGS_fancy_size_to_bytes (quota_in_str, &in_dest[c])))
1204         res = GNUNET_YES;
1205       if ((GNUNET_NO == res) && (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, "ats", entry_in,  &in_dest[c])))
1206          res = GNUNET_YES;
1207
1208       if (GNUNET_NO == res)
1209       {
1210           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Could not load quota for network `%s':  `%s', assigning default bandwidth %llu\n"),
1211               network_str[c], quota_in_str, GNUNET_ATS_DefaultBandwidth);
1212           in_dest[c] = GNUNET_ATS_DefaultBandwidth;
1213       }
1214       else
1215       {
1216           GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Inbound quota configured for network `%s' is %llu\n"),
1217               network_str[c], in_dest[c]);
1218       }
1219       GNUNET_free (quota_in_str);
1220     }
1221     else
1222     {
1223       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("No outbound quota configure for network `%s', assigning default bandwidth %llu\n"),
1224           network_str[c], GNUNET_ATS_DefaultBandwidth);
1225       out_dest[c] = GNUNET_ATS_DefaultBandwidth;
1226     }
1227     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]);
1228     GNUNET_free (entry_out);
1229     GNUNET_free (entry_in);
1230   }
1231   return GNUNET_ATS_NetworkTypeCount;
1232 }
1233
1234
1235 static void
1236 bandwidth_changed_cb (void *cls, struct ATS_Address *address)
1237 {
1238   struct GAS_Addresses_Handle *handle = cls;
1239   struct GAS_Addresses_Suggestion_Requests *cur;
1240
1241   GNUNET_assert (handle != NULL);
1242   GNUNET_assert (address != NULL);
1243
1244   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Bandwidth assignment changed for peer %s \n", GNUNET_i2s(&address->peer));
1245   struct GNUNET_ATS_Information *ats;
1246   unsigned int ats_count;
1247
1248   cur = handle->r_head;
1249   while (NULL != cur)
1250   {
1251       if (0 == memcmp (&address->peer, &cur->id, sizeof (cur->id)))
1252         break; /* we have an address request pending*/
1253       cur = cur->next;
1254   }
1255   if (NULL == cur)
1256   {
1257       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1258                   "Nobody is interested in peer `%s' :(\n",GNUNET_i2s (&address->peer));
1259       return;
1260   }
1261
1262   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1263               "Sending bandwidth update for peer `%s'\n",GNUNET_i2s (&address->peer));
1264
1265   ats_count = assemble_ats_information (address, &ats);
1266   GAS_scheduling_transmit_address_suggestion (&address->peer,
1267                                               address->plugin,
1268                                               address->addr, address->addr_len,
1269                                               address->session_id,
1270                                               ats, ats_count,
1271                                               address->assigned_bw_out,
1272                                               address->assigned_bw_in);
1273   GNUNET_free (ats);
1274 }
1275
1276
1277 /**
1278  * Initialize address subsystem.
1279  *
1280  * @param cfg configuration to use
1281  * @param stats the statistics handle to use
1282  */
1283 struct GAS_Addresses_Handle *
1284 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
1285                     const struct GNUNET_STATISTICS_Handle *stats)
1286 {
1287   struct GAS_Addresses_Handle *ah;
1288   int quotas[GNUNET_ATS_NetworkTypeCount] = GNUNET_ATS_NetworkType;
1289   unsigned long long  quotas_in[GNUNET_ATS_NetworkTypeCount];
1290   unsigned long long  quotas_out[GNUNET_ATS_NetworkTypeCount];
1291   int quota_count;
1292   char *mode_str;
1293   int c;
1294
1295   ah = GNUNET_malloc (sizeof (struct GAS_Addresses_Handle));
1296   ah->running = GNUNET_NO;
1297
1298   ah->stat = (struct GNUNET_STATISTICS_Handle *) stats;
1299   /* Initialize the addresses database */
1300   ah->addresses = GNUNET_CONTAINER_multihashmap_create (128, GNUNET_NO);
1301   GNUNET_assert (NULL != ah->addresses);
1302
1303   /* Figure out configured solution method */
1304   if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string (cfg, "ats", "MODE", &mode_str))
1305   {
1306       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "No ressource assignment method configured, using simplistic approch\n");
1307       ah->ats_mode = MODE_SIMPLISTIC;
1308   }
1309   else
1310   {
1311       for (c = 0; c < strlen (mode_str); c++)
1312         mode_str[c] = toupper (mode_str[c]);
1313       if (0 == strcmp (mode_str, "SIMPLISTIC"))
1314       {
1315           ah->ats_mode = MODE_SIMPLISTIC;
1316       }
1317       else if (0 == strcmp (mode_str, "MLP"))
1318       {
1319           ah->ats_mode = MODE_MLP;
1320 #if !HAVE_LIBGLPK
1321           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Assignment method `%s' configured, but GLPK is not availabe, please install \n", mode_str);
1322           ah->ats_mode = MODE_SIMPLISTIC;
1323 #endif
1324       }
1325       else
1326       {
1327           GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid ressource assignment method `%s' configured, using simplistic approch\n", mode_str);
1328           ah->ats_mode = MODE_SIMPLISTIC;
1329       }
1330       GNUNET_free (mode_str);
1331   }
1332   /* Start configured solution method */
1333   switch (ah->ats_mode)
1334   {
1335     case MODE_MLP:
1336       /* Init the MLP solver with default values */
1337 #if HAVE_LIBGLPK
1338       ah->ats_mode = MODE_MLP;
1339       ah->s_init = &GAS_mlp_init;
1340       ah->s_add = &GAS_mlp_address_add;
1341       ah->s_update = &GAS_mlp_address_update;
1342       ah->s_get = &GAS_mlp_get_preferred_address;
1343       ah->s_get_stop = &GAS_mlp_stop_get_preferred_address;
1344       ah->s_pref = &GAS_mlp_address_change_preference;
1345       ah->s_del =  &GAS_mlp_address_delete;
1346       ah->s_done = &GAS_mlp_done;
1347 #else
1348       GNUNET_free (ah);
1349       return NULL;
1350 #endif
1351       break;
1352     case MODE_SIMPLISTIC:
1353       /* Init the simplistic solver with default values */
1354       ah->ats_mode = MODE_SIMPLISTIC;
1355       ah->s_init = &GAS_simplistic_init;
1356       ah->s_add = &GAS_simplistic_address_add;
1357       ah->s_update = &GAS_simplistic_address_update;
1358       ah->s_get = &GAS_simplistic_get_preferred_address;
1359       ah->s_get_stop = &GAS_simplistic_stop_get_preferred_address;
1360       ah->s_pref = &GAS_simplistic_address_change_preference;
1361       ah->s_del  = &GAS_simplistic_address_delete;
1362       ah->s_done = &GAS_simplistic_done;
1363       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS started in %s mode\n", "SIMPLISTIC");
1364       break;
1365     default:
1366       return NULL;
1367       break;
1368   }
1369
1370   GNUNET_assert (NULL != ah->s_init);
1371   GNUNET_assert (NULL != ah->s_add);
1372   GNUNET_assert (NULL != ah->s_update);
1373   GNUNET_assert (NULL != ah->s_get);
1374   GNUNET_assert (NULL != ah->s_get_stop);
1375   GNUNET_assert (NULL != ah->s_pref);
1376   GNUNET_assert (NULL != ah->s_del);
1377   GNUNET_assert (NULL != ah->s_done);
1378
1379   quota_count = load_quotas(cfg, quotas_in, quotas_out, GNUNET_ATS_NetworkTypeCount);
1380
1381   ah->solver = ah->s_init (cfg, stats, quotas, quotas_in, quotas_out, quota_count, &bandwidth_changed_cb, ah);
1382   if (NULL == ah->solver)
1383   {
1384     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to initialize solver!\n");
1385     GNUNET_free (ah);
1386     return NULL;
1387   }
1388
1389   /* up and running */
1390   ah->running = GNUNET_YES;
1391   return ah;
1392 }
1393
1394
1395 /**
1396  * Free memory of address.
1397  *
1398  * @param cls NULL
1399  * @param key peer identity (unused)
1400  * @param value the 'struct ATS_Address' to free
1401  * @return GNUNET_OK (continue to iterate)
1402  */
1403 static int
1404 free_address_it (void *cls, const struct GNUNET_HashCode * key, void *value)
1405 {
1406   struct GAS_Addresses_Handle *handle = cls;
1407   struct ATS_Address *aa = value;
1408   handle->s_del (handle->solver, handle->addresses, aa, GNUNET_NO);
1409   destroy_address (handle, aa);
1410   return GNUNET_OK;
1411 }
1412
1413
1414 void
1415 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle)
1416 {
1417   if (GNUNET_NO == handle->running)
1418     return;
1419
1420   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1421               "Received `%s'\n",
1422               "DESTROY ALL");
1423
1424   if (handle->addresses != NULL)
1425     GNUNET_CONTAINER_multihashmap_iterate (handle->addresses, &free_address_it, handle);
1426 }
1427
1428
1429 /**
1430  * Shutdown address subsystem.
1431  */
1432 void
1433 GAS_addresses_done (struct GAS_Addresses_Handle *handle)
1434 {
1435   struct GAS_Addresses_Suggestion_Requests *cur;
1436
1437   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1438               "Shutting down addresses\n");
1439   GNUNET_assert (NULL != handle);
1440   GAS_addresses_destroy_all (handle);
1441   handle->running = GNUNET_NO;
1442   GNUNET_CONTAINER_multihashmap_destroy (handle->addresses);
1443   handle->addresses = NULL;
1444   while (NULL != (cur = handle->r_head))
1445   {
1446       GNUNET_CONTAINER_DLL_remove (handle->r_head, handle->r_tail, cur);
1447       GNUNET_free (cur);
1448   }
1449   handle->s_done (handle->solver);
1450   GNUNET_free (handle);
1451   /* Stop configured solution method */
1452
1453 }
1454
1455 struct PeerIteratorContext
1456 {
1457   GNUNET_ATS_Peer_Iterator it;
1458   void *it_cls;
1459   struct GNUNET_CONTAINER_MultiHashMap *peers_returned;
1460 };
1461
1462 static int
1463 peer_it (void *cls,
1464          const struct GNUNET_HashCode * key,
1465          void *value)
1466 {
1467   struct PeerIteratorContext *ip_ctx = cls;
1468   struct GNUNET_PeerIdentity tmp;
1469
1470   if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(ip_ctx->peers_returned, key))
1471   {
1472       GNUNET_CONTAINER_multihashmap_put(ip_ctx->peers_returned, key, NULL, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1473       tmp.hashPubKey = (*key);
1474       ip_ctx->it (ip_ctx->it_cls, &tmp);
1475   }
1476
1477   return GNUNET_OK;
1478 }
1479
1480 /**
1481  * Return all peers currently known to ATS
1482  *
1483  * @param handle the address handle
1484  * @param p_it the iterator to call for every peer, callbach with id == NULL
1485  *        when done
1486  * @param p_it_cls the closure for the iterator
1487  */
1488 void
1489 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle, GNUNET_ATS_Peer_Iterator p_it, void *p_it_cls)
1490 {
1491   struct PeerIteratorContext ip_ctx;
1492   unsigned int size;
1493
1494   if (NULL == p_it)
1495       return;
1496   GNUNET_assert (NULL != handle->addresses);
1497
1498   size = GNUNET_CONTAINER_multihashmap_size(handle->addresses);
1499   if (0 != size)
1500   {
1501     ip_ctx.it = p_it;
1502     ip_ctx.it_cls = p_it_cls;
1503     ip_ctx.peers_returned = GNUNET_CONTAINER_multihashmap_create (size, GNUNET_NO);
1504     GNUNET_CONTAINER_multihashmap_iterate (handle->addresses, &peer_it, &ip_ctx);
1505     GNUNET_CONTAINER_multihashmap_destroy (ip_ctx.peers_returned);
1506   }
1507   p_it (p_it_cls, NULL);
1508 }
1509
1510 struct PeerInfoIteratorContext
1511 {
1512   GNUNET_ATS_PeerInfo_Iterator it;
1513   void *it_cls;
1514 };
1515
1516
1517 static int 
1518 peerinfo_it (void *cls,
1519              const struct GNUNET_HashCode * key,
1520              void *value)
1521 {
1522   struct PeerInfoIteratorContext *pi_ctx = cls;
1523   struct ATS_Address *addr = (struct ATS_Address *)  value;
1524   struct GNUNET_ATS_Information *ats;
1525   uint32_t ats_count;
1526
1527   if (NULL != pi_ctx->it)
1528   {
1529     ats_count = assemble_ats_information (addr, &ats);
1530
1531     pi_ctx->it (pi_ctx->it_cls,
1532                 &addr->peer,
1533                 addr->plugin,
1534                 addr->addr, addr->addr_len,
1535                 addr->active,
1536                 ats, ats_count,
1537                 addr->assigned_bw_out,
1538                 addr->assigned_bw_in);
1539     GNUNET_free (ats);
1540   }
1541   return GNUNET_YES;
1542 }
1543
1544
1545 /**
1546  * Return all peers currently known to ATS
1547  *
1548  * @param handle the address handle
1549  * @param peer the respective peer
1550  * @param pi_it the iterator to call for every peer
1551  * @param pi_it_cls the closure for the iterator
1552  */
1553 void
1554 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
1555                              const struct GNUNET_PeerIdentity *peer,
1556                              GNUNET_ATS_PeerInfo_Iterator pi_it,
1557                              void *pi_it_cls)
1558 {
1559   struct PeerInfoIteratorContext pi_ctx;
1560   struct GNUNET_BANDWIDTH_Value32NBO zero_bw;
1561   GNUNET_assert (NULL != peer);
1562   GNUNET_assert (NULL != handle->addresses);
1563   if (NULL == pi_it)
1564     return; /* does not make sense without callback */
1565
1566   zero_bw = GNUNET_BANDWIDTH_value_init (0);
1567   pi_ctx.it = pi_it;
1568   pi_ctx.it_cls = pi_it_cls;
1569
1570   GNUNET_CONTAINER_multihashmap_get_multiple (handle->addresses, &peer->hashPubKey, &peerinfo_it, &pi_ctx);
1571
1572   if (NULL != pi_it)
1573     pi_it (pi_it_cls, NULL, NULL, NULL, 0, GNUNET_NO, NULL, 0, zero_bw, zero_bw);
1574
1575 }
1576
1577
1578 /* end of gnunet-service-ats_addresses.c */