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