a154ceff3e296e47dcf53ed3e3c47381f60d9fff
[oweals/gnunet.git] / src / ats / plugin_ats_proportional.c
1 /*
2  This file is part of GNUnet.
3  (C) 2011-2014 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/plugin_ats_proportional.c
23  * @brief ATS proportional solver
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_statistics_service.h"
29 #include "gnunet_ats_plugin.h"
30 #include "gnunet_ats_service.h"
31 #include "gnunet-service-ats_addresses.h"
32
33 #define PROP_STABILITY_FACTOR 1.25
34
35
36 #define LOG(kind,...) GNUNET_log_from (kind, "ats-proportional",__VA_ARGS__)
37
38
39 /**
40  *
41  * NOTE: Do not change this documentation. This documentation is based
42  * on gnunet.org:/vcs/fsnsg/ats-paper.git/tech-doku/ats-tech-guide.tex
43  * use build_txt.sh to generate plaintext output
44  *
45  * ATS addresses : proportional solver
46  *
47  *    The proportional solver ("proportional") distributes the available
48  *    bandwidth fair over all the addresses influenced by the
49  *    preference values. For each available network type an in- and
50  *    outbound quota is configured and the bandwidth available in
51  *    these networks is distributed over the addresses.  The solver
52  *    first assigns every addresses the minimum amount of bandwidth
53  *    #GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT and then distributes the
54  *    remaining bandwidth available according to the preference
55  *    values. For each peer only a single address gets bandwidth
56  *    assigned and only one address marked as active.  The most
57  *    important functionality for the solver is implemented in: *
58  *    find_address_it is an hashmap iterator returning the prefered
59  *    address for an peer * update_quota_per_network distributes
60  *    available bandwidth for a network over active addresses
61  *
62  *    Changes to addresses automatically have an impact on the the
63  *    bandwidth assigned to other addresses in the same network since
64  *    the solver distributes the remaining bandwidth over the
65  *    addresses in the network.  When changes to the addresses occur,
66  *    the solver first performs the changes, like adding or deleting
67  *    addresses, and then updates bandwidth assignment for the
68  *    affected network. Bandwidth assignment is only recalculated on
69  *    demand when an address is requested by a client for a peer or
70  *    when the addresses available have changed or an address changed
71  *    the network it is located in. When the bandwidth assignment has
72  *    changed the callback is called with the new bandwidth
73  *    assignments. The bandwidth distribution for a network is
74  *    recalculated due to: * address suggestion requests * address
75  *    deletions * address switching networks during address update *
76  *    preference changes
77  *
78  *     3.1 Data structures used
79  *
80  *    For each ATS network (e.g. WAN, LAN, loopback) a struct Network
81  *    is used to specify network related information as total adresses
82  *    and active addresses in this network and the configured in- and
83  *    outbound quota. Each network also contains a list of addresses
84  *    added to the solver located in this network. The proportional
85  *    solver uses the addresses' solver_information field to store the
86  *    proportional network it belongs to for each address.
87  *
88  *     3.2 Initializing
89  *
90  *    When the proportional solver is initialized the solver creates a
91  *    new solver handle and initializes the network structures with
92  *    the quotas passed from addresses and returns the handle solver.
93  *
94  *     3.3 Adding an address
95  *
96  *    When a new address is added to the solver using s_add, a lookup
97  *    for the network for this address is done and the address is
98  *    enqueued in in the linked list of the network.
99  *
100  *     3.4 Updating an address
101  *
102  *    The main purpose of address updates is to update the ATS
103  *    information for addresse selection. Important for the proportional
104  *    solver is when an address switches network it is located
105  *    in. This is common because addresses added by transport's
106  *    validation mechanism are commonly located in
107  *    #GNUNET_ATS_NET_UNSPECIFIED. Addresses in validation are located
108  *    in this network type and only if a connection is successful on
109  *    return of payload data transport switches to the real network
110  *    the address is located in.  When an address changes networks it
111  *    is first of all removed from the old network using the solver
112  *    API function #GAS_proportional_address_delete() and the network in
113  *    the address struct is updated. A lookup for the respective new
114  *    proportional network is done and stored in the addresse's
115  *    solver_information field. Next the address is re-added to the
116  *    solver using the solver API function
117  *    #GAS_proportional_address_add(). If the address was marked as in
118  *    active, the solver checks if bandwidth is available in the
119  *    network and if yes sets the address to active and updates the
120  *    bandwidth distribution in this network. If no bandwidth is
121  *    available it sets the bandwidth for this address to 0 and tries
122  *    to suggest an alternative address. If an alternative address was
123  *    found, addresses' callback is called for this address.
124  *
125  *     3.5 Deleting an address
126  *
127  *    When an address is removed from the solver, it removes the
128  *    respective address from the network and if the address was
129  *    marked as active, it updates the bandwidth distribution for this
130  *    network.
131  *
132  *     3.6 Requesting addresses
133  *
134  *    When an address is requested for a peer the solver performs a
135  *    lookup for the peer entry in addresses address hashmap and
136  *    selects the best address.  The selection of the most suitable
137  *    address is done in the find_address_it hashmap iterator
138  *    described in detail in section 3.7. If no address is returned,
139  *    no address can be suggested at the moment. If the address
140  *    returned is marked as active, the solver can return this
141  *    address. If the address is not marked as active, the solver
142  *    checks if another address belongign to this peer is marked as
143  *    active and marks the address as inactive, updates the bandwidth
144  *    for this address to 0, call the bandwidth changed callback for
145  *    this address due to the change and updates quota assignment for
146  *    the addresse's network. the now in-active address is belonging
147  *    to. The solver marks the new address as active and updates the
148  *    bandwidth assignment for this network.
149  *
150  *     3.7 Choosing addresses
151  *
152  *    Choosing the best possible address for suggestion is done by
153  *    iterating over all addresses of a peer stored in addresses'
154  *    hashmap and using the hashmap iterator find_address_it to select
155  *    the best available address.  Several checks are done when an
156  *    address is selected. First if this address is currently blocked
157  *    by addresses from being suggested. An address is blocked for the
158  *    duration of #ATS_BLOCKING_DELTA when it is suggested to
159  *    transport. Next it is checked if at least
160  *    #GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT bytes bandwidth is available
161  *    in the addresse's network, because suggesting an address without
162  *    bandwidth does not make sense. This also ensures that all active
163  *    addresses in this network get at least the minimum amount of
164  *    bandwidth assigned. In the next step the solver ensures that for
165  *    tcp connections inbound connections are prefered over outbound
166  *    connections. In the next stet the solver ensures that
167  *    connections are prefered in the following order: * connections
168  *    are already established and have bandwidth assigned *
169  *    connections with a shorter distance * connectes have a shorter
170  *    latency
171  *
172  *     3.8 Changing preferences
173  *
174  *     3.9 Shutdown
175  *
176  *    During shutdown all network entries and aging processes are
177  *    destroyed and freed.
178  *
179  *
180  * OLD DOCUMENTATION
181  *
182  * This solver assigns in and outbound bandwidth equally for all
183  * addresses in specific network type (WAN, LAN) based on configured
184  * in and outbound quota for this network.
185  *
186  * The solver is notified by addresses about changes to the addresses
187  * and recalculates the bandwith assigned if required. The solver
188  * notifies addresses by calling the GAS_bandwidth_changed_cb
189  * callback.
190  *
191  * - Initialization
192  *
193  *
194  *
195  *
196  * For each peer only a single is selected and marked as "active" in the address
197  * struct.
198  *
199  * E.g.:
200  *
201  * You have the networks WAN and LAN and quotas
202  * WAN_TOTAL_IN, WAN_TOTAL_OUT
203  * LAN_TOTAL_IN, LAN_TOTAL_OUT
204  *
205  * If you have x addresses in the network segment LAN, the quotas are
206  * QUOTA_PER_ADDRESS = LAN_TOTAL_OUT / x
207  *
208  * Quotas are automatically recalculated and reported back when addresses are
209  * - requested
210  *
211  */
212
213 #define PROPORTIONALITY_FACTOR 2.0
214
215 /**
216  * A handle for the proportional solver
217  */
218 struct GAS_PROPORTIONAL_Handle
219 {
220
221   /**
222    * Our execution environment.
223    */
224   struct GNUNET_ATS_PluginEnvironment *env;
225
226   /**
227    * Hashmap containing all valid addresses
228    */
229   struct GNUNET_CONTAINER_MultiPeerMap *addresses;
230
231   /**
232    * Pending address requests
233    */
234   struct GNUNET_CONTAINER_MultiPeerMap *requests;
235
236   /**
237    * Bulk lock
238    */
239   int bulk_lock;
240
241   /**
242    * Number of changes while solver was locked
243    */
244   int bulk_requests;
245
246   /**
247    * Total number of addresses for solver
248    */
249   unsigned int total_addresses;
250
251   /**
252    * Number of active addresses for solver
253    */
254   unsigned int active_addresses;
255
256   /**
257    * Networks array
258    */
259   struct Network *network_entries;
260
261   /**
262    * Number of networks
263    */
264   unsigned int network_count;
265
266   /**
267    * Proportionality factor
268    */
269   double prop_factor;
270
271   /**
272    * Stability factor
273    */
274   double stability_factor;
275 };
276
277 /**
278  * Representation of a network
279  */
280 struct Network
281 {
282   /**
283    * ATS network type
284    */
285   unsigned int type;
286
287   /**
288    * Network description
289    */
290   const char *desc;
291
292   /**
293    * Total inbound quota
294    */
295   unsigned long long total_quota_in;
296
297   /**
298    * Total outbound quota
299    */
300   unsigned long long total_quota_out;
301
302   /**
303    * Number of active addresses for this network
304    */
305   unsigned int active_addresses;
306
307   /**
308    * Number of total addresses for this network
309    */
310   unsigned int total_addresses;
311
312   /**
313    * String for statistics total addresses
314    */
315   char *stat_total;
316
317   /**
318    * String for statistics active addresses
319    */
320   char *stat_active;
321
322   /**
323    * Linked list of addresses in this network: head
324    */
325   struct AddressWrapper *head;
326
327   /**
328    * Linked list of addresses in this network: tail
329    */
330   struct AddressWrapper *tail;
331 };
332
333 /**
334  * Address information stored in the solver
335  */
336 struct AddressSolverInformation
337 {
338   /**
339    * Network scope this address is in
340    */
341   struct Network *network;
342
343   /**
344    * Inbound quota
345    */
346   uint32_t calculated_quota_in;
347
348   /**
349    * Outbound quota
350    */
351   uint32_t calculated_quota_out;
352
353   /**
354    * When was this address activated
355    */
356   struct GNUNET_TIME_Absolute activated;
357
358 };
359
360 /**
361  * Wrapper for addresses to store them in network's linked list
362  */
363 struct AddressWrapper
364 {
365   /**
366    * Next in DLL
367    */
368   struct AddressWrapper *next;
369
370   /**
371    * Previous in DLL
372    */
373   struct AddressWrapper *prev;
374
375   /**
376    * The address
377    */
378   struct ATS_Address *addr;
379 };
380
381
382 /**
383  * Function used to unload the plugin.
384  *
385  * @param cls return value from #libgnunet_plugin_ats_proportional_init()
386  */
387 void *
388 libgnunet_plugin_ats_proportional_done (void *cls)
389 {
390   struct GNUNET_ATS_SolverFunctions *sf = cls;
391   struct GAS_PROPORTIONAL_Handle *s = sf->cls;
392   struct AddressWrapper *cur;
393   struct AddressWrapper *next;
394   int c;
395
396   for (c = 0; c < s->network_count; c++)
397   {
398     if (s->network_entries[c].total_addresses > 0)
399     {
400       LOG(GNUNET_ERROR_TYPE_DEBUG,
401           "Had %u addresses for network `%s' not deleted during shutdown\n",
402           s->network_entries[c].total_addresses, s->network_entries[c].desc);
403       //GNUNET_break(0);
404     }
405
406     if (s->network_entries[c].active_addresses > 0)
407     {
408       LOG(GNUNET_ERROR_TYPE_DEBUG,
409           "Had %u active addresses for network `%s' not deleted during shutdown\n",
410           s->network_entries[c].active_addresses, s->network_entries[c].desc);
411       //GNUNET_break(0);
412     }
413
414     next = s->network_entries[c].head;
415     while (NULL != (cur = next))
416     {
417       next = cur->next;
418       GNUNET_CONTAINER_DLL_remove(s->network_entries[c].head,
419           s->network_entries[c].tail, cur);
420       GNUNET_free_non_null (cur->addr->solver_information);
421       GNUNET_free(cur);
422     }
423     GNUNET_free(s->network_entries[c].stat_total);
424     GNUNET_free(s->network_entries[c].stat_active);
425   }
426   if (s->total_addresses > 0)
427   {
428     LOG(GNUNET_ERROR_TYPE_DEBUG,
429         "Had %u addresses not deleted during shutdown\n", s->total_addresses);
430     // GNUNET_break(0);
431   }
432   if (s->active_addresses > 0)
433   {
434     LOG(GNUNET_ERROR_TYPE_DEBUG,
435         "Had %u active addresses not deleted during shutdown\n",
436         s->active_addresses);
437     // GNUNET_break (0);
438   }
439   GNUNET_free (s->network_entries);
440   GNUNET_CONTAINER_multipeermap_destroy (s->requests);
441   GNUNET_free (s);
442   return NULL;
443 }
444
445
446 /**
447  * Test if bandwidth is available in this network to add an additional address
448  *
449  * @param net the network type to update
450  * @return #GNUNET_YES or #GNUNET_NO
451  */
452 static int
453 is_bandwidth_available_in_network (struct Network *net)
454 {
455   GNUNET_assert(NULL != net);
456   unsigned int na = net->active_addresses + 1;
457   uint32_t min_bw = ntohl (GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT.value__);
458   if (((net->total_quota_in / na) > min_bw)
459       && ((net->total_quota_out / na) > min_bw))
460   {
461     LOG(GNUNET_ERROR_TYPE_DEBUG,
462         "Enough bandwidth available for %u active addresses in network `%s'\n",
463         na, net->desc);
464
465     return GNUNET_YES;
466   }
467   LOG(GNUNET_ERROR_TYPE_DEBUG,
468       "Not enough bandwidth available for %u active addresses in network `%s'\n",
469       na, net->desc);
470   return GNUNET_NO;
471 }
472
473
474 /**
475  * Update bandwidth assigned to peers in this network
476  *
477  * @param s the solver handle
478  * @param net the network type to update
479  * this address
480  */
481 static void
482 distribute_bandwidth (struct GAS_PROPORTIONAL_Handle *s,
483                       struct Network *net)
484 {
485   struct AddressSolverInformation *asi;
486   struct AddressWrapper *cur_address;
487   unsigned long long remaining_quota_in = 0;
488   unsigned long long quota_out_used = 0;
489   unsigned long long remaining_quota_out = 0;
490   unsigned long long quota_in_used = 0;
491   int count_addresses;
492   uint32_t min_bw = ntohl (GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT.value__);
493   double relative_peer_prefence;
494   double sum_relative_peer_prefences; /* Important: has to be double not float due to precision */
495   double cur_pref; /* Important: has to be double not float due to precision */
496   double peer_weight;
497   double total_weight;
498   const double *peer_relative_prefs = NULL; /* Important: has to be double not float due to precision */
499
500   uint32_t assigned_quota_in = 0;
501   uint32_t assigned_quota_out = 0;
502
503
504   LOG (GNUNET_ERROR_TYPE_INFO,
505        "Recalculate quota for network type `%s' for %u addresses (in/out): %llu/%llu \n",
506        net->desc,
507        net->active_addresses,
508        net->total_quota_in,
509        net->total_quota_in);
510
511   if (net->active_addresses == 0)
512   {
513     return; /* no addresses to update */
514   }
515
516   /* Idea
517    * Assign every peer in network minimum Bandwidth
518    * Distribute bandwidth left according to preference
519    */
520
521   if ((net->active_addresses * min_bw) > net->total_quota_in)
522   {
523     GNUNET_break(0);
524     return;
525   }
526   if ((net->active_addresses * min_bw) > net->total_quota_out)
527   {
528     GNUNET_break(0);
529     return;
530   }
531
532   remaining_quota_in = net->total_quota_in - (net->active_addresses * min_bw);
533   remaining_quota_out = net->total_quota_out - (net->active_addresses * min_bw);
534   LOG(GNUNET_ERROR_TYPE_DEBUG, "Remaining bandwidth : (in/out): %llu/%llu \n",
535       remaining_quota_in, remaining_quota_out);
536   sum_relative_peer_prefences = 0.0;
537
538   /* Calculate sum of relative preference for active addresses in this network */
539   count_addresses = 0;
540   for (cur_address = net->head; NULL != cur_address; cur_address = cur_address->next)
541   {
542     if (GNUNET_YES != cur_address->addr->active)
543       continue;
544
545     GNUNET_assert( NULL != (peer_relative_prefs = s->env->get_preferences (s->env->cls,
546                                                                            &cur_address->addr->peer)));
547     relative_peer_prefence = 0.0;
548     relative_peer_prefence += peer_relative_prefs[GNUNET_ATS_PREFERENCE_BANDWIDTH];
549     sum_relative_peer_prefences += relative_peer_prefence;
550     count_addresses ++;
551   }
552
553   if (count_addresses != net->active_addresses)
554   {
555     GNUNET_break (0);
556     LOG (GNUNET_ERROR_TYPE_WARNING,
557          "%s: Counted %u active addresses, but network says to have %u active addresses\n",
558          net->desc, count_addresses, net->active_addresses);
559     for (cur_address = net->head; NULL != cur_address; cur_address = cur_address->next)
560     {
561       if (GNUNET_YES != cur_address->addr->active)
562         continue;
563
564       LOG (GNUNET_ERROR_TYPE_WARNING,
565            "Active: `%s' `%s' length %u\n",
566            GNUNET_i2s (&cur_address->addr->peer),
567            cur_address->addr->plugin,
568            cur_address->addr->addr_len);
569     }
570   }
571
572   LOG (GNUNET_ERROR_TYPE_INFO,
573       "Total relative preference %.3f for %u addresses in network %s\n",
574       sum_relative_peer_prefences, net->active_addresses, net->desc);
575
576   for (cur_address = net->head; NULL != cur_address; cur_address = cur_address->next)
577   {
578     if (GNUNET_YES == cur_address->addr->active)
579     {
580       GNUNET_assert( NULL != (peer_relative_prefs =
581                               s->env->get_preferences (s->env->cls,
582                                                        &cur_address->addr->peer)));
583
584       cur_pref = peer_relative_prefs[GNUNET_ATS_PREFERENCE_BANDWIDTH];
585       total_weight = net->active_addresses +
586           s->prop_factor * sum_relative_peer_prefences;
587       peer_weight = (1.0 + (s->prop_factor * cur_pref));
588
589       assigned_quota_in = min_bw
590           + ((peer_weight / total_weight) * remaining_quota_in);
591       assigned_quota_out = min_bw
592           + ((peer_weight / total_weight) * remaining_quota_out);
593
594       LOG (GNUNET_ERROR_TYPE_INFO,
595           "New quota for peer `%s' with weight (cur/total) %.3f/%.3f (in/out): %llu / %llu\n",
596           GNUNET_i2s (&cur_address->addr->peer), peer_weight, total_weight,
597           assigned_quota_in, assigned_quota_out);
598     }
599     else
600     {
601       assigned_quota_in = 0;
602       assigned_quota_out = 0;
603     }
604
605     quota_in_used += assigned_quota_in;
606     quota_out_used += assigned_quota_out;
607     /* Prevent overflow due to rounding errors */
608     if (assigned_quota_in > UINT32_MAX)
609       assigned_quota_in = UINT32_MAX;
610     if (assigned_quota_out > UINT32_MAX)
611       assigned_quota_out = UINT32_MAX;
612
613     /* Compare to current bandwidth assigned */
614     asi = cur_address->addr->solver_information;
615     asi->calculated_quota_in = assigned_quota_in;
616     asi->calculated_quota_out = assigned_quota_out;
617   }
618   LOG(GNUNET_ERROR_TYPE_DEBUG,
619       "Total bandwidth assigned is (in/out): %llu /%llu\n", quota_in_used,
620       quota_out_used);
621   if (quota_out_used > net->total_quota_out + 1) /* +1 is required due to rounding errors */
622   {
623     LOG(GNUNET_ERROR_TYPE_ERROR,
624         "Total outbound bandwidth assigned is larger than allowed (used/allowed) for %u active addresses: %llu / %llu\n",
625         net->active_addresses, quota_out_used, net->total_quota_out);
626   }
627   if (quota_in_used > net->total_quota_in + 1) /* +1 is required due to rounding errors */
628   {
629     LOG(GNUNET_ERROR_TYPE_ERROR,
630         "Total inbound bandwidth assigned is larger than allowed (used/allowed) for %u active addresses: %llu / %llu\n",
631         net->active_addresses, quota_in_used, net->total_quota_in);
632   }
633 }
634
635
636 /**
637  * Context for finding the best address* Linked list of addresses in this network: head
638  */
639 struct FindBestAddressCtx
640 {
641   /**
642    * The solver handle
643    */
644   struct GAS_PROPORTIONAL_Handle *s;
645
646   /**
647    * The currently best address
648    */
649   struct ATS_Address *best;
650 };
651
652
653 /**
654  * Find index of a ATS property type in the array.
655  */
656 static int
657 find_property_index (uint32_t type)
658 {
659   int existing_types[] = GNUNET_ATS_QualityProperties;
660   int c;
661
662   for (c = 0; c < GNUNET_ATS_QualityPropertiesCount; c++)
663     if (existing_types[c] == type)
664       return c;
665   return GNUNET_SYSERR;
666 }
667
668
669 /**
670  * Find a "good" address to use for a peer by iterating over the addresses for this peer.
671  * If we already have an existing address, we stick to it.
672  * Otherwise, we pick by lowest distance and then by lowest latency.
673  *
674  * @param cls the `struct FindBestAddressCtx *' where we store the result
675  * @param key unused
676  * @param value another `struct ATS_Address*` to consider using
677  * @return #GNUNET_OK (continue to iterate)
678  */
679 static int
680 find_best_address_it (void *cls,
681                       const struct GNUNET_PeerIdentity *key,
682                       void *value)
683 {
684   struct FindBestAddressCtx *ctx = cls;
685   struct ATS_Address *current = value;
686   struct ATS_Address *current_best = current;
687   struct AddressSolverInformation *asi;
688   struct GNUNET_TIME_Relative active_time;
689   struct GNUNET_TIME_Relative min_active_time;
690   const double *norm_prop_cur;
691   const double *norm_prop_best;
692   double best_delay;
693   double best_distance;
694   double cur_delay;
695   double cur_distance;
696   int index;
697
698   current_best = NULL;
699   asi = current->solver_information;
700   if (NULL == asi)
701   {
702     GNUNET_break (0);
703     return GNUNET_OK;
704   }
705
706   if (GNUNET_NO == is_bandwidth_available_in_network (asi->network))
707   {
708     return GNUNET_OK; /* There's no bandwidth available in this network */
709   }
710
711   if (NULL != ctx->best)
712   {
713     /* Compare current addresses with denominated 'best' address */
714     current_best = ctx->best;
715   }
716   else
717   {
718     /* We do not have a 'best' address so take this address */
719     LOG (GNUNET_ERROR_TYPE_DEBUG,
720          "Setting initial address %p\n",
721          current);
722     current_best = current;
723     goto end;
724   }
725
726   if (GNUNET_YES == current->active)
727   {
728     GNUNET_assert (asi->activated.abs_value_us != GNUNET_TIME_UNIT_ZERO_ABS.abs_value_us);
729     active_time = GNUNET_TIME_absolute_get_duration (asi->activated);
730     min_active_time.rel_value_us =  ((double) GNUNET_TIME_UNIT_SECONDS.rel_value_us) *
731         ctx->s->stability_factor;
732     if (active_time.rel_value_us <= min_active_time.rel_value_us)
733     {
734       /* Keep active address for stability reasons */
735       ctx->best = current;
736       return GNUNET_NO;
737     }
738   }
739
740   /* Now compare ATS information */
741   norm_prop_cur = ctx->s->env->get_property (ctx->s->env->cls,
742                                              current);
743   index = find_property_index (GNUNET_ATS_QUALITY_NET_DISTANCE);
744   cur_distance = norm_prop_cur[index];
745   index = find_property_index (GNUNET_ATS_QUALITY_NET_DELAY);
746   cur_delay = norm_prop_cur[index];
747
748   norm_prop_best = ctx->s->env->get_property (ctx->s->env->cls,
749                                               ctx->best);
750   index = find_property_index (GNUNET_ATS_QUALITY_NET_DISTANCE);
751   best_distance = norm_prop_best[index];
752   index = find_property_index (GNUNET_ATS_QUALITY_NET_DELAY);
753   best_delay = norm_prop_best[index];
754
755   /* user shorter distance */
756   if (cur_distance < best_distance)
757   {
758     if (GNUNET_NO == ctx->best->active)
759     {
760       current_best = current; /* Use current */
761     }
762     else if ((best_distance / cur_distance) > ctx->s->stability_factor)
763     {
764       /* Best and active address performs worse  */
765       current_best = current;
766     }
767   }
768   else
769   {
770     /* Use current best */
771     current_best = ctx->best;
772   }
773
774   /* User connection with less delay */
775   if (cur_delay < best_delay)
776   {
777
778     if (GNUNET_NO == ctx->best->active)
779     {
780       current_best = current; /* Use current */
781     }
782     else if ((best_delay / cur_delay) > ctx->s->stability_factor)
783     {
784       /* Best and active address performs worse  */
785       current_best = current;
786     }
787   }
788   else
789   {
790     /* Use current best */
791     current_best = ctx->best;
792   }
793
794 end:
795   ctx->best = current_best;
796   return GNUNET_OK;
797 }
798
799
800 /**
801  * Find the currently best address for a peer from the set of addresses available
802  * or return NULL of no address is available
803  *
804  * @param s the proportional handle
805  * @param addresses the address hashmap
806  * @param id the peer id
807  * @return the address or NULL
808  */
809 struct ATS_Address *
810 get_best_address (struct GAS_PROPORTIONAL_Handle *s,
811                   struct GNUNET_CONTAINER_MultiPeerMap *addresses,
812                   const struct GNUNET_PeerIdentity *id)
813 {
814   struct FindBestAddressCtx fba_ctx;
815
816   fba_ctx.best = NULL;
817   fba_ctx.s = s;
818   GNUNET_CONTAINER_multipeermap_get_multiple (addresses,
819                                               id,
820                                               &find_best_address_it,
821                                               &fba_ctx);
822   return fba_ctx.best;
823 }
824
825
826 /**
827  * Hashmap Iterator to find current active address for peer
828  *
829  * @param cls last active address
830  * @param key peer's key
831  * @param value address to check
832  * @return #GNUNET_NO on double active address else #GNUNET_YES;
833  */
834 static int
835 get_active_address_it (void *cls,
836                        const struct GNUNET_PeerIdentity *key,
837                        void *value)
838 {
839   struct ATS_Address **dest = cls;
840   struct ATS_Address *aa = (struct ATS_Address *) value;
841
842   LOG (GNUNET_ERROR_TYPE_INFO,
843          "Checking address %p\n", aa);
844
845   if (GNUNET_YES == aa->active)
846   {
847   LOG (GNUNET_ERROR_TYPE_INFO,
848          "Address %p is active\n", aa);
849     if (NULL != (*dest))
850     {
851       /* should never happen */
852       LOG (GNUNET_ERROR_TYPE_ERROR,
853            "Multiple active addresses for peer `%s'\n",
854            GNUNET_i2s (&aa->peer));
855       GNUNET_break(0);
856       return GNUNET_NO;
857     }
858     (*dest) = aa;
859
860   }
861   return GNUNET_OK;
862 }
863
864
865 /**
866  * Find current active address for peer
867  *
868  * @param solver the solver handle
869  * @param addresses the address set
870  * @param peer the peer
871  * @return active address or NULL
872  */
873 static struct ATS_Address *
874 get_active_address (void *solver,
875                     const struct GNUNET_CONTAINER_MultiPeerMap * addresses,
876                     const struct GNUNET_PeerIdentity *peer)
877 {
878   static struct ATS_Address * dest = NULL;
879
880   dest = NULL;
881   GNUNET_CONTAINER_multipeermap_get_multiple (addresses, peer,
882                                               &get_active_address_it, &dest);
883   return dest;
884 }
885
886
887 /**
888  * Lookup network struct by type
889  *
890  * @param s the solver handle
891  * @param type the network type
892  * @return the network struct
893  */
894 static struct Network *
895 get_network (struct GAS_PROPORTIONAL_Handle *s, uint32_t type)
896 {
897   int c;
898   for (c = 0; c < s->network_count; c++)
899   {
900     if (s->network_entries[c].type == type)
901       return &s->network_entries[c];
902   }
903   return NULL ;
904 }
905
906
907 /**
908  * Increase address count in network
909  *
910  * @param s the solver handle
911  * @param net the network type
912  * @param total increase total addresses
913  * @param active increase active addresses
914  */
915 static void
916 address_increment (struct GAS_PROPORTIONAL_Handle *s,
917                     struct Network *net,
918                     int total,
919                     int active)
920 {
921   if (GNUNET_YES == total)
922   {
923     s->total_addresses++;
924     net->total_addresses++;
925     GNUNET_STATISTICS_update (s->env->stats,
926                               "# ATS addresses total", 1, GNUNET_NO);
927     GNUNET_STATISTICS_update (s->env->stats,
928                               net->stat_total, 1, GNUNET_NO);
929   }
930   if (GNUNET_YES == active)
931   {
932     net->active_addresses++;
933     s->active_addresses++;
934     GNUNET_STATISTICS_update (s->env->stats,
935                               "# ATS active addresses total", 1,
936         GNUNET_NO);
937     GNUNET_STATISTICS_update (s->env->stats,
938                               net->stat_active, 1, GNUNET_NO);
939   }
940
941 }
942
943
944 /**
945  * Decrease address count in network
946  *
947  * @param s the solver handle
948  * @param net the network type
949  * @param total decrease total addresses
950  * @param active decrease active addresses
951  */
952 static int
953 addresse_decrement (struct GAS_PROPORTIONAL_Handle *s,
954                     struct Network *net,
955                     int total,
956                     int active)
957 {
958   int res = GNUNET_OK;
959
960   if (GNUNET_YES == total)
961   {
962     if (s->total_addresses < 1)
963     {
964       GNUNET_break(0);
965       res = GNUNET_SYSERR;
966     }
967     else
968     {
969       s->total_addresses--;
970       GNUNET_STATISTICS_update (s->env->stats,
971                                 "# ATS addresses total", -1,
972           GNUNET_NO);
973     }
974     if (net->total_addresses < 1)
975     {
976       GNUNET_break(0);
977       res = GNUNET_SYSERR;
978     }
979     else
980     {
981       net->total_addresses--;
982       GNUNET_STATISTICS_update (s->env->stats,
983                                 net->stat_total, -1, GNUNET_NO);
984     }
985   }
986
987   if (GNUNET_YES == active)
988   {
989     if (net->active_addresses < 1)
990     {
991       GNUNET_break(0);
992       res = GNUNET_SYSERR;
993     }
994     else
995     {
996       net->active_addresses--;
997       GNUNET_STATISTICS_update (s->env->stats,
998                                 net->stat_active, -1, GNUNET_NO);
999     }
1000     if (s->active_addresses < 1)
1001     {
1002       GNUNET_break(0);
1003       res = GNUNET_SYSERR;
1004     }
1005     else
1006     {
1007       s->active_addresses--;
1008       GNUNET_STATISTICS_update (s->env->stats,
1009                                 "# ATS addresses total", -1,
1010           GNUNET_NO);
1011     }
1012   }
1013   return res;
1014 }
1015
1016
1017 /**
1018  * Compares addresses
1019  *
1020  * @param a address a
1021  * @param b address b
1022  * @return GNUNET_YES if equal, GNUNET_NO else
1023  */
1024 static int
1025 address_eq (struct ATS_Address *a, struct ATS_Address *b)
1026 {
1027   GNUNET_assert (NULL != a);
1028   GNUNET_assert (NULL != b);
1029   if (0 != strcmp(a->plugin, b->plugin))
1030     return GNUNET_NO;
1031   if (a->addr_len != b->addr_len)
1032     return GNUNET_NO;
1033   if (0 != memcmp (a->addr, b->addr, b->addr_len))
1034     return GNUNET_NO;
1035   if (a->session_id != b->session_id)
1036     return GNUNET_NO;
1037   return GNUNET_YES;
1038 }
1039
1040
1041 /**
1042  * Notify bandwidth changes to addresses
1043  *
1044  * @param s solver handle
1045  * @param net the network to propagate changes in
1046  */
1047 static void
1048 propagate_bandwidth (struct GAS_PROPORTIONAL_Handle *s,
1049                      struct Network *net)
1050 {
1051   struct AddressWrapper *cur;
1052   struct AddressSolverInformation *asi;
1053
1054   for (cur = net->head; NULL != cur; cur = cur->next)
1055   {
1056       asi = cur->addr->solver_information;
1057       if ( (cur->addr->assigned_bw_in != asi->calculated_quota_in) ||
1058            (cur->addr->assigned_bw_out != asi->calculated_quota_out) )
1059       {
1060         cur->addr->assigned_bw_in = asi->calculated_quota_in;
1061         cur->addr->assigned_bw_out = asi->calculated_quota_out;
1062
1063         /* Reset for next iteration */
1064         asi->calculated_quota_in = 0;
1065         asi->calculated_quota_out = 0;
1066         LOG (GNUNET_ERROR_TYPE_DEBUG,
1067             "Bandwidth for %s address %p for peer `%s' changed to %u/%u\n",
1068             (GNUNET_NO == cur->addr->active) ? "inactive" : "active",
1069             cur->addr,
1070             GNUNET_i2s (&cur->addr->peer),
1071             cur->addr->assigned_bw_in,
1072             cur->addr->assigned_bw_out);
1073
1074         /* Notify on change */
1075         if ((GNUNET_YES == cur->addr->active))
1076         {
1077           s->env->bandwidth_changed_cb (s->env->cls,
1078                                         cur->addr);
1079         }
1080       }
1081   }
1082 }
1083
1084
1085 /**
1086  * Distribibute bandwidth
1087  *
1088  * @param s the solver handle
1089  * @param n the network, can be NULL for all network
1090  */
1091 static void
1092 distribute_bandwidth_in_network (struct GAS_PROPORTIONAL_Handle *s,
1093                                  struct Network *n)
1094 {
1095   if (GNUNET_YES == s->bulk_lock)
1096   {
1097     s->bulk_requests++;
1098     return;
1099   }
1100
1101   if (NULL != n)
1102   {
1103     LOG (GNUNET_ERROR_TYPE_INFO,
1104         "Redistributing bandwidth in network %s with %u active and %u total addresses\n",
1105         GNUNET_ATS_print_network_type(n->type),
1106         n->active_addresses, n->total_addresses);
1107
1108     if (NULL != s->env->info_cb)
1109       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_START,
1110           GAS_STAT_SUCCESS, GAS_INFO_PROP_SINGLE);
1111
1112     /* Distribute  */
1113     distribute_bandwidth(s, n);
1114
1115     if (NULL != s->env->info_cb)
1116       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_STOP,
1117           GAS_STAT_SUCCESS, GAS_INFO_PROP_SINGLE);
1118     if (NULL != s->env->info_cb)
1119       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_UPDATE_NOTIFICATION_START,
1120           GAS_STAT_SUCCESS, GAS_INFO_PROP_SINGLE);
1121
1122     /* Do propagation */
1123     propagate_bandwidth (s, n);
1124
1125     if (NULL != s->env->info_cb)
1126       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_UPDATE_NOTIFICATION_STOP,
1127           GAS_STAT_SUCCESS, GAS_INFO_PROP_SINGLE);
1128   }
1129   else
1130   {
1131     int i;
1132     if (NULL != s->env->info_cb)
1133       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_START,
1134           GAS_STAT_SUCCESS, GAS_INFO_PROP_ALL);
1135     for (i = 0; i < s->network_count; i++)
1136     {
1137       /* Distribute */
1138       distribute_bandwidth(s, &s->network_entries[i]);
1139     }
1140
1141     if (NULL != s->env->info_cb)
1142       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_STOP,
1143           GAS_STAT_SUCCESS, GAS_INFO_PROP_ALL);
1144     if (NULL != s->env->info_cb)
1145       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_UPDATE_NOTIFICATION_START,
1146           GAS_STAT_SUCCESS, GAS_INFO_PROP_ALL);
1147     for (i = 0; i < s->network_count; i++)
1148     {
1149       /* Do propagation */
1150       propagate_bandwidth(s, &s->network_entries[i]);
1151     }
1152     if (NULL != s->env->info_cb)
1153       s->env->info_cb(s->env->cls, GAS_OP_SOLVE_UPDATE_NOTIFICATION_STOP,
1154           GAS_STAT_SUCCESS, GAS_INFO_PROP_ALL);
1155   }
1156 }
1157
1158
1159 /**
1160  * Update active address for a peer:
1161  * Check if active address exists and what the best address is, if addresses
1162  * are different switch
1163  *
1164  * @param s solver handle
1165  * @param peer the peer to check
1166  * return the new address or NULL if no update was performed
1167   */
1168 static struct ATS_Address *
1169 update_active_address (struct GAS_PROPORTIONAL_Handle *s,
1170                        const struct GNUNET_PeerIdentity *peer)
1171 {
1172   struct ATS_Address *best_address;
1173   struct ATS_Address *current_address;
1174   struct AddressSolverInformation *asi;
1175   struct Network *net;
1176
1177   LOG (GNUNET_ERROR_TYPE_INFO,
1178        "Updating active address for peer `%s'\n",
1179        GNUNET_i2s (peer));
1180
1181   /* Find active address */
1182   current_address = get_active_address (s,
1183                                         s->addresses,
1184                                         peer);
1185
1186   LOG (GNUNET_ERROR_TYPE_INFO,
1187        "Peer `%s' has active address %p\n",
1188        GNUNET_i2s (peer),
1189        current_address);
1190
1191   /* Find best address */
1192   best_address = get_best_address (s,
1193                                    s->addresses,
1194                                    peer);
1195   LOG (GNUNET_ERROR_TYPE_INFO,
1196        "Peer `%s' has best address %p\n",
1197        GNUNET_i2s (peer),
1198        best_address);
1199
1200   if (NULL != current_address)
1201   {
1202     if ( (NULL == best_address) ||
1203          ( (NULL != best_address) &&
1204            (GNUNET_NO == address_eq (current_address,
1205                                      best_address)) ) )
1206     {
1207       /* We switch to a new address (or to none),
1208          mark old address as inactive */
1209       LOG (GNUNET_ERROR_TYPE_INFO,
1210            "Disabling previous %s address %p for peer `%s'\n",
1211            (GNUNET_NO == current_address->active) ? "inactive" : "active",
1212            current_address,
1213            GNUNET_i2s (peer));
1214
1215       asi = current_address->solver_information;
1216       GNUNET_assert (NULL != asi);
1217
1218       net = asi->network;
1219       asi->activated = GNUNET_TIME_UNIT_ZERO_ABS;
1220       current_address->active = GNUNET_NO; /* No active any longer */
1221       current_address->assigned_bw_in = 0; /* no bandwidth assigned */
1222       current_address->assigned_bw_out = 0; /* no bandwidth assigned */
1223
1224       if (GNUNET_SYSERR == addresse_decrement (s, net, GNUNET_NO, GNUNET_YES))
1225         GNUNET_break(0);
1226
1227       /* Update network of previous address */
1228       distribute_bandwidth_in_network (s, net);
1229     }
1230     if (NULL == best_address)
1231     {
1232       /* We previously had an active address, but now we cannot suggest one
1233        * Therefore we have to disconnect the peer */
1234       LOG (GNUNET_ERROR_TYPE_INFO,
1235            "Disconnecting peer `%s' with previous address %p\n",
1236            GNUNET_i2s (peer),
1237            current_address);
1238       s->env->bandwidth_changed_cb (s->env->cls,
1239                                     current_address);
1240     }
1241   }
1242   if (NULL == best_address)
1243   {
1244     LOG (GNUNET_ERROR_TYPE_INFO,
1245          "Cannot suggest address for peer `%s'\n",
1246          GNUNET_i2s (peer));
1247     return NULL;
1248   }
1249
1250   LOG (GNUNET_ERROR_TYPE_INFO,
1251        "Suggesting new address %p for peer `%s'\n",
1252        best_address,
1253        GNUNET_i2s (peer));
1254
1255   if ( (NULL != current_address) &&
1256        (GNUNET_YES == address_eq (best_address, current_address)) )
1257   {
1258     GNUNET_break (GNUNET_NO != current_address->active);
1259     return best_address; /* Same same */
1260   }
1261
1262   asi = best_address->solver_information;
1263   GNUNET_assert (NULL != asi);
1264   net = asi->network;
1265
1266   /* Mark address as active */
1267   asi->activated = GNUNET_TIME_absolute_get ();
1268   best_address->active = GNUNET_YES;
1269   address_increment (s, net, GNUNET_NO, GNUNET_YES);
1270   LOG (GNUNET_ERROR_TYPE_INFO,
1271        "Address %p for peer `%s' is now active\n",
1272        best_address,
1273        GNUNET_i2s (peer));
1274   /* Distribute bandwidth */
1275   distribute_bandwidth_in_network (s, net);
1276   return best_address;
1277 }
1278
1279
1280 /**
1281  * Changes the preferences for a peer in the problem
1282  *
1283  * @param solver the solver handle
1284  * @param peer the peer to change the preference for
1285  * @param kind the kind to change the preference
1286  * @param pref_rel the normalized preference value for this kind over all clients
1287  */
1288 static void
1289 GAS_proportional_address_change_preference (void *solver,
1290                                             const struct GNUNET_PeerIdentity *peer,
1291                                             enum GNUNET_ATS_PreferenceKind kind,
1292                                             double pref_rel)
1293 {
1294   struct GAS_PROPORTIONAL_Handle *s = solver;
1295   struct ATS_Address *best_address;
1296   struct ATS_Address *active_address;
1297   struct AddressSolverInformation *asi;
1298
1299   if (GNUNET_NO ==
1300       GNUNET_CONTAINER_multipeermap_contains (s->requests, peer))
1301     return; /* Peer is not requested */
1302
1303   /* This peer is requested, find best address */
1304   active_address = get_active_address (s, s->addresses, peer);
1305   best_address = update_active_address (s, peer);
1306
1307   if ((NULL != best_address) && ((NULL != active_address) &&
1308       (GNUNET_YES == address_eq (active_address, best_address))))
1309   {
1310     asi = best_address->solver_information;
1311     GNUNET_assert (NULL != asi);
1312
1313     /* We sticked to the same address, therefore redistribute  */
1314     distribute_bandwidth_in_network (s, asi->network);
1315   }
1316 }
1317
1318
1319 /**
1320  * Get application feedback for a peer
1321  *
1322  * @param solver the solver handle
1323  * @param application the application
1324  * @param peer the peer to change the preference for
1325  * @param scope the time interval for this feedback: [now - scope .. now]
1326  * @param kind the kind to change the preference
1327  * @param score the score
1328  */
1329 static void
1330 GAS_proportional_address_preference_feedback (void *solver,
1331                                               struct GNUNET_SERVER_Client *application,
1332                                               const struct GNUNET_PeerIdentity *peer,
1333                                               const struct GNUNET_TIME_Relative scope,
1334                                               enum GNUNET_ATS_PreferenceKind kind,
1335                                               double score)
1336 {
1337   struct GAS_PROPORTIONAL_Handle *s = solver;
1338
1339   GNUNET_assert(NULL != peer);
1340   GNUNET_assert(NULL != s);
1341 }
1342
1343
1344 /**
1345  * Get the preferred address for a specific peer
1346  *
1347  * @param solver the solver handle
1348  * @param peer the identity of the peer
1349  * @return best address
1350  */
1351 static const struct ATS_Address *
1352 GAS_proportional_get_preferred_address (void *solver,
1353                                         const struct GNUNET_PeerIdentity *peer)
1354 {
1355   struct GAS_PROPORTIONAL_Handle *s = solver;
1356   const struct ATS_Address *best_address;
1357
1358   /* Add to list of pending requests */
1359   if (GNUNET_NO ==
1360       GNUNET_CONTAINER_multipeermap_contains (s->requests, peer))
1361   {
1362     GNUNET_assert (GNUNET_OK ==
1363                    GNUNET_CONTAINER_multipeermap_put (s->requests,
1364                                                      peer,
1365                                                      NULL,
1366             GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
1367     LOG (GNUNET_ERROR_TYPE_INFO,
1368          "Start suggesting addresses for peer `%s'\n",
1369          GNUNET_i2s (peer));
1370   }
1371
1372   best_address = update_active_address (s, peer);
1373   if (s->bulk_lock > 0)
1374     return NULL; /* Do not suggest since bulk lock is pending */
1375
1376   return best_address;
1377 }
1378
1379
1380 /**
1381  * Stop notifying about address and bandwidth changes for this peer
1382  *
1383  * @param solver the solver handle
1384  * @param peer the peer
1385  */
1386 static void
1387 GAS_proportional_stop_get_preferred_address (void *solver,
1388                                              const struct GNUNET_PeerIdentity *peer)
1389 {
1390   struct GAS_PROPORTIONAL_Handle *s = solver;
1391   struct ATS_Address *cur;
1392   struct AddressSolverInformation *asi;
1393   struct Network *cur_net;
1394
1395   if (GNUNET_YES ==
1396       GNUNET_CONTAINER_multipeermap_contains (s->requests, peer))
1397   {
1398     GNUNET_assert (GNUNET_OK ==
1399                    GNUNET_CONTAINER_multipeermap_remove (s->requests,
1400                                                          peer,
1401                                                          NULL));
1402     LOG (GNUNET_ERROR_TYPE_INFO,
1403          "Stop suggesting addresses for peer `%s'\n",
1404          GNUNET_i2s (peer));
1405   }
1406
1407   cur = get_active_address (s,
1408                             s->addresses,
1409                             peer);
1410   if (NULL != cur)
1411   {
1412     LOG (GNUNET_ERROR_TYPE_INFO,
1413          "Disabling %s address %p for peer `%s'\n",
1414          (GNUNET_NO == cur->active) ? "inactive" : "active",
1415          cur,
1416          GNUNET_i2s (&cur->peer));
1417
1418     /* Disabling current address */
1419     asi = cur->solver_information;
1420     cur_net = asi->network ;
1421     asi->activated = GNUNET_TIME_UNIT_ZERO_ABS;
1422     cur->active = GNUNET_NO; /* No active any longer */
1423     cur->assigned_bw_in = 0; /* no bandwidth assigned */
1424     cur->assigned_bw_out = 0; /* no bandwidth assigned */
1425
1426     if (GNUNET_SYSERR ==
1427         addresse_decrement (s, cur_net, GNUNET_NO, GNUNET_YES))
1428       GNUNET_break(0);
1429
1430     distribute_bandwidth_in_network (s, cur_net);
1431   }
1432 }
1433
1434
1435 /**
1436  * Remove an address from the solver
1437  *
1438  * @param solver the solver handle
1439  * @param address the address to remove
1440  * @param session_only delete only session not whole address
1441  */
1442 static void
1443 GAS_proportional_address_delete (void *solver,
1444                                  struct ATS_Address *address,
1445                                  int session_only)
1446 {
1447   struct GAS_PROPORTIONAL_Handle *s = solver;
1448   struct Network *net;
1449   struct AddressWrapper *aw;
1450   struct AddressSolverInformation *asi;
1451
1452   /* Remove an adress completely, we have to:
1453    * - Remove from specific network
1454    * - Decrease number of total addresses
1455    * - If active:
1456    *   - decrease number of active addreses
1457    *   - update quotas
1458    */
1459   asi = address->solver_information;
1460
1461   if (NULL == asi)
1462   {
1463     GNUNET_break (0);
1464     return;
1465   }
1466   net = asi->network;
1467
1468   if (GNUNET_NO == session_only)
1469   {
1470     LOG (GNUNET_ERROR_TYPE_INFO,
1471          "Deleting %s address %p for peer `%s' from network `%s' (total: %u/ active: %u)\n",
1472          (GNUNET_NO == address->active) ? "inactive" : "active",
1473          address,
1474          GNUNET_i2s (&address->peer),
1475          net->desc,
1476          net->total_addresses,
1477          net->active_addresses);
1478
1479     /* Remove address */
1480     addresse_decrement (s, net, GNUNET_YES, GNUNET_NO);
1481     for (aw = net->head; NULL != aw; aw = aw->next)
1482     {
1483       if (aw->addr == address)
1484         break;
1485     }
1486     if (NULL == aw)
1487     {
1488       GNUNET_break(0);
1489       return;
1490     }
1491     GNUNET_CONTAINER_DLL_remove (net->head,
1492                                  net->tail,
1493                                  aw);
1494     GNUNET_free (aw);
1495   }
1496   else
1497   {
1498     /* Remove session only: remove if active and update */
1499     LOG (GNUNET_ERROR_TYPE_INFO,
1500          "Deleting %s session %p for peer `%s' from network `%s' (total: %u/ active: %u)\n",
1501          (GNUNET_NO == address->active) ? "inactive" : "active",
1502          address,
1503          GNUNET_i2s (&address->peer),
1504          net->desc,
1505          net->total_addresses,
1506          net->active_addresses);
1507   }
1508
1509   if (GNUNET_YES == address->active)
1510   {
1511     /* Address was active, remove from network and update quotas*/
1512     address->active = GNUNET_NO;
1513     address->assigned_bw_in = 0;
1514     address->assigned_bw_out = 0;
1515     asi->calculated_quota_in = 0;
1516     asi->calculated_quota_out = 0;
1517
1518     if (GNUNET_SYSERR ==
1519         addresse_decrement (s, net, GNUNET_NO, GNUNET_YES))
1520       GNUNET_break(0);
1521     distribute_bandwidth_in_network (s, net);
1522
1523     if (NULL ==
1524         update_active_address (s, &address->peer))
1525     {
1526       /* No alternative address found, disconnect peer */
1527       LOG (GNUNET_ERROR_TYPE_INFO,
1528            "Disconnecting peer `%s' after deleting previous address %p\n",
1529            GNUNET_i2s (&address->peer),
1530            address);
1531       s->env->bandwidth_changed_cb (s->env->cls,
1532                                     address);
1533     }
1534   }
1535   if (GNUNET_NO == session_only)
1536   {
1537     GNUNET_free_non_null (address->solver_information);
1538     address->solver_information = NULL;
1539   }
1540
1541   LOG (GNUNET_ERROR_TYPE_INFO,
1542        "After deleting address now total %u and active %u addresses in network `%s'\n",
1543        net->total_addresses,
1544        net->active_addresses,
1545        net->desc);
1546 }
1547
1548
1549 /**
1550  * Start a bulk operation
1551  *
1552  * @param solver the solver
1553  */
1554 static void
1555 GAS_proportional_bulk_start (void *solver)
1556 {
1557   struct GAS_PROPORTIONAL_Handle *s = solver;
1558
1559   LOG (GNUNET_ERROR_TYPE_DEBUG,
1560        "Locking solver for bulk operation ...\n");
1561   GNUNET_assert (NULL != solver);
1562   s->bulk_lock++;
1563 }
1564
1565
1566 /**
1567  * Bulk operation done
1568  */
1569 static void
1570 GAS_proportional_bulk_stop (void *solver)
1571 {
1572   struct GAS_PROPORTIONAL_Handle *s = solver;
1573
1574   LOG (GNUNET_ERROR_TYPE_DEBUG,
1575        "Unlocking solver from bulk operation ...\n");
1576   if (s->bulk_lock < 1)
1577   {
1578     GNUNET_break(0);
1579     return;
1580   }
1581   s->bulk_lock--;
1582   if ((0 == s->bulk_lock) && (0 < s->bulk_requests))
1583   {
1584     LOG(GNUNET_ERROR_TYPE_INFO, "No lock pending, recalculating\n");
1585     distribute_bandwidth_in_network (s, NULL);
1586     s->bulk_requests = 0;
1587   }
1588 }
1589
1590
1591 /**
1592  * Add a new single address to a network
1593  *
1594  * @param solver the solver Handle
1595  * @param address the address to add
1596  * @param network network type of this address
1597  */
1598 static void
1599 GAS_proportional_address_add (void *solver,
1600                               struct ATS_Address *address,
1601                               uint32_t network);
1602
1603
1604 /**
1605  * Transport properties for this address have changed
1606  *
1607  * @param solver solver handle
1608  * @param address the address
1609  * @param type the ATSI type in HBO
1610  * @param abs_value the absolute value of the property
1611  * @param rel_value the normalized value
1612  */
1613 static void
1614 GAS_proportional_address_property_changed (void *solver,
1615                                            struct ATS_Address *address,
1616                                            uint32_t type,
1617                                            uint32_t abs_value,
1618                                            double rel_value)
1619 {
1620   struct GAS_PROPORTIONAL_Handle *s = solver;
1621   struct Network *n;
1622   struct AddressSolverInformation *asi;
1623   struct ATS_Address *best_address;
1624   struct ATS_Address *active_address;
1625
1626   asi = address->solver_information;
1627   if (NULL == asi)
1628   {
1629     GNUNET_break(0);
1630     return;
1631   }
1632
1633   n = asi->network;
1634   if (NULL == n)
1635   {
1636     GNUNET_break(0);
1637     return;
1638   }
1639
1640   LOG(GNUNET_ERROR_TYPE_INFO,
1641       "Property `%s' for peer `%s' address %p changed to %.2f \n",
1642       GNUNET_ATS_print_property_type (type), GNUNET_i2s (&address->peer),
1643       address, rel_value);
1644
1645   if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (s->requests, &address->peer))
1646     return; /* Peer is not requested */
1647
1648   /* This peer is requested, find active and best address */
1649   active_address = get_active_address(s, s->addresses, &address->peer);
1650   best_address = update_active_address (s,
1651                                         &address->peer);
1652
1653   if ((NULL != best_address) && ((NULL != active_address) &&
1654       (GNUNET_YES == address_eq (active_address, best_address))))
1655   {
1656     asi = best_address->solver_information;
1657     GNUNET_assert (NULL != asi);
1658
1659     /* We sticked to the same address, therefore redistribute  */
1660     distribute_bandwidth_in_network (s, asi->network);
1661   }
1662 }
1663
1664
1665 /**
1666  * Add a new single address to a network
1667  *
1668  * @param solver the solver Handle
1669  * @param address the address to add
1670  * @param network network type of this address
1671  */
1672 static void
1673 GAS_proportional_address_add (void *solver,
1674                               struct ATS_Address *address,
1675                               uint32_t network)
1676 {
1677   struct GAS_PROPORTIONAL_Handle *s = solver;
1678   struct Network *net = NULL;
1679   struct AddressWrapper *aw = NULL;
1680   struct AddressSolverInformation *asi;
1681
1682   GNUNET_assert(NULL != s);
1683   net = get_network (s, network);
1684   if (NULL == net)
1685   {
1686     GNUNET_break(0);
1687
1688     LOG(GNUNET_ERROR_TYPE_ERROR,
1689         "Unknown network %u `%s' for new address %p for peer `%s'\n",
1690         network, GNUNET_ATS_print_network_type(network),
1691         address, GNUNET_i2s(&address->peer));
1692
1693     return;
1694   }
1695
1696   aw = GNUNET_new (struct AddressWrapper);
1697   aw->addr = address;
1698   GNUNET_CONTAINER_DLL_insert(net->head, net->tail, aw);
1699   address_increment (s, net, GNUNET_YES, GNUNET_NO);
1700
1701   asi = GNUNET_new (struct AddressSolverInformation);
1702   asi->network = net;
1703   asi->calculated_quota_in = 0;
1704   asi->calculated_quota_out = 0;
1705   aw->addr->solver_information = asi;
1706
1707   LOG(GNUNET_ERROR_TYPE_INFO,
1708       "Adding new address %p for peer `%s', now total %u and active %u addresses in network `%s'\n",
1709       address, GNUNET_i2s(&address->peer), net->total_addresses, net->active_addresses, net->desc);
1710
1711   if (GNUNET_NO == GNUNET_CONTAINER_multipeermap_contains (s->requests, &address->peer))
1712     return; /* Peer is not requested */
1713
1714   /* This peer is requested, find best address */
1715   update_active_address (s, &address->peer);
1716 }
1717
1718
1719
1720 /**
1721  * Function invoked when the plugin is loaded.
1722  *
1723  * @param[in,out] cls the `struct GNUNET_ATS_PluginEnvironment *` to use;
1724  *            modified to return the API functions (ugh).
1725  * @return the `struct GAS_PROPORTIONAL_Handle` to pass as a closure
1726  */
1727 void *
1728 libgnunet_plugin_ats_proportional_init (void *cls)
1729 {
1730   static struct GNUNET_ATS_SolverFunctions sf;
1731   struct GNUNET_ATS_PluginEnvironment *env = cls;
1732   struct GAS_PROPORTIONAL_Handle *s;
1733   struct Network * cur;
1734   float f_tmp;
1735   int c;
1736
1737   GNUNET_assert (NULL != env);
1738   GNUNET_assert (NULL != env->cfg);
1739   GNUNET_assert (NULL != env->bandwidth_changed_cb);
1740   GNUNET_assert (NULL != env->get_preferences);
1741   GNUNET_assert (NULL != env->get_property);
1742
1743   s = GNUNET_new (struct GAS_PROPORTIONAL_Handle);
1744   s->env = env;
1745   sf.cls = s;
1746   sf.s_add = &GAS_proportional_address_add;
1747   sf.s_address_update_property = &GAS_proportional_address_property_changed;
1748   sf.s_get = &GAS_proportional_get_preferred_address;
1749   sf.s_get_stop = &GAS_proportional_stop_get_preferred_address;
1750   sf.s_pref = &GAS_proportional_address_change_preference;
1751   sf.s_feedback = &GAS_proportional_address_preference_feedback;
1752   sf.s_del = &GAS_proportional_address_delete;
1753   sf.s_bulk_start = &GAS_proportional_bulk_start;
1754   sf.s_bulk_stop = &GAS_proportional_bulk_stop;
1755
1756   s->network_entries = GNUNET_malloc (env->network_count * sizeof (struct Network));
1757
1758   /* Init */
1759   s->active_addresses = 0;
1760   s->total_addresses = 0;
1761   s->bulk_lock = GNUNET_NO;
1762   s->addresses = env->addresses;
1763   s->requests = GNUNET_CONTAINER_multipeermap_create (10, GNUNET_NO);
1764
1765   s->stability_factor = PROP_STABILITY_FACTOR;
1766   if (GNUNET_SYSERR !=
1767       GNUNET_CONFIGURATION_get_value_float (env->cfg, "ats",
1768                                             "PROP_STABILITY_FACTOR", &f_tmp))
1769   {
1770     if ((f_tmp < 1.0) || (f_tmp > 2.0))
1771     {
1772       LOG (GNUNET_ERROR_TYPE_ERROR,
1773            _("Invalid %s configuration %f \n"),
1774            "PROP_STABILITY_FACTOR",
1775            f_tmp);
1776     }
1777     else
1778     {
1779       s->stability_factor = f_tmp;
1780       LOG (GNUNET_ERROR_TYPE_INFO,
1781            "Using %s of %.3f\n",
1782            "PROP_STABILITY_FACTOR", f_tmp);
1783     }
1784   }
1785
1786   s->prop_factor = PROPORTIONALITY_FACTOR;
1787   if (GNUNET_SYSERR !=
1788       GNUNET_CONFIGURATION_get_value_float (env->cfg, "ats",
1789                                             "PROP_PROPORTIONALITY_FACTOR",
1790                                             &f_tmp))
1791   {
1792     if (f_tmp < 1.0)
1793     {
1794       LOG (GNUNET_ERROR_TYPE_ERROR,
1795            _("Invalid %s configuration %f \n"),
1796            "PROP_PROPORTIONALITY_FACTOR", f_tmp);
1797     }
1798     else
1799     {
1800       s->prop_factor = f_tmp;
1801       LOG (GNUNET_ERROR_TYPE_INFO,
1802            "Using %s of %.3f\n",
1803            "PROP_PROPORTIONALITY_FACTOR", f_tmp);
1804     }
1805   }
1806
1807   for (c = 0; c < env->network_count; c++)
1808   {
1809     cur = &s->network_entries[c];
1810     cur->type = env->networks[c];
1811     cur->total_quota_in = env->in_quota[c];
1812     cur->total_quota_out = env->out_quota[c];
1813     cur->desc = GNUNET_ATS_print_network_type (c);
1814     GNUNET_asprintf (&cur->stat_total,
1815                      "# ATS addresses %s total",
1816                      cur->desc);
1817     GNUNET_asprintf (&cur->stat_active,
1818                      "# ATS active addresses %s total",
1819                      cur->desc);
1820     LOG (GNUNET_ERROR_TYPE_INFO,
1821          "Added network %u `%s' (%llu/%llu)\n",
1822          c,
1823          cur->desc,
1824          cur->total_quota_in,
1825          cur->total_quota_out);
1826   }
1827   return &sf;
1828 }
1829
1830
1831 /* end of plugin_ats_proportional.c */