cleaning up get_active_address
[oweals/gnunet.git] / src / ats / plugin_ats_proportional.c
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2011-2015 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 /**
214  * Default value to assume for the proportionality factor,
215  * if none is given in the configuration.
216  */
217 #define PROPORTIONALITY_FACTOR 2.0
218
219
220 /**
221  * Address information stored for the proportional solver in the
222  * `solver_information` member of `struct GNUNET_ATS_Address`.
223  *
224  * They are also stored in the respective `struct Network`'s linked
225  * list.
226  */
227 struct AddressWrapper
228 {
229   /**
230    * Next in DLL
231    */
232   struct AddressWrapper *next;
233
234   /**
235    * Previous in DLL
236    */
237   struct AddressWrapper *prev;
238
239   /**
240    * The address
241    */
242   struct ATS_Address *addr;
243
244     /**
245    * Network scope this address is in
246    */
247   struct Network *network;
248
249   /**
250    * Inbound quota
251    */
252   uint32_t calculated_quota_in;
253
254   /**
255    * Outbound quota
256    */
257   uint32_t calculated_quota_out;
258
259   /**
260    * When was this address activated
261    */
262   struct GNUNET_TIME_Absolute activated;
263
264 };
265
266
267 /**
268  * Representation of a network
269  */
270 struct Network
271 {
272   /**
273    * Network description
274    */
275   const char *desc;
276
277   /**
278    * String for statistics total addresses
279    */
280   char *stat_total;
281
282   /**
283    * String for statistics active addresses
284    */
285   char *stat_active;
286
287   /**
288    * Linked list of addresses in this network: head
289    */
290   struct AddressWrapper *head;
291
292   /**
293    * Linked list of addresses in this network: tail
294    */
295   struct AddressWrapper *tail;
296
297   /**
298    * Total inbound quota
299    */
300   unsigned long long total_quota_in;
301
302   /**
303    * Total outbound quota
304    */
305   unsigned long long total_quota_out;
306
307   /**
308    * ATS network type
309    */
310   enum GNUNET_ATS_Network_Type type;
311
312   /**
313    * Number of active addresses for this network
314    */
315   unsigned int active_addresses;
316
317   /**
318    * Number of total addresses for this network
319    */
320   unsigned int total_addresses;
321
322 };
323
324
325 /**
326  * A handle for the proportional solver
327  */
328 struct GAS_PROPORTIONAL_Handle
329 {
330
331   /**
332    * Our execution environment.
333    */
334   struct GNUNET_ATS_PluginEnvironment *env;
335
336   /**
337    * Networks array
338    */
339   struct Network *network_entries;
340
341   /**
342    * Proportionality factor
343    */
344   double prop_factor;
345
346   /**
347    * Stability factor
348    */
349   double stability_factor;
350
351   /**
352    * Bulk lock counter. If zero, we are not locked.
353    */
354   unsigned int bulk_lock;
355
356   /**
357    * Number of changes made while solver was locked.  We really only
358    * use 0/non-zero to check on unlock if we have to run the update.
359    */
360   unsigned int bulk_requests;
361
362   /**
363    * Number of active addresses for solver
364    */
365   unsigned int active_addresses;
366
367   /**
368    * Number of networks in @a network_entries
369    */
370   unsigned int network_count;
371 };
372
373
374 /**
375  * Function used to unload the plugin.
376  *
377  * @param cls return value from #libgnunet_plugin_ats_proportional_init()
378  */
379 void *
380 libgnunet_plugin_ats_proportional_done (void *cls)
381 {
382   struct GNUNET_ATS_SolverFunctions *sf = cls;
383   struct GAS_PROPORTIONAL_Handle *s = sf->cls;
384   struct AddressWrapper *cur;
385   struct AddressWrapper *next;
386   unsigned int c;
387
388   for (c = 0; c < s->network_count; c++)
389   {
390     if (s->network_entries[c].total_addresses > 0)
391     {
392       LOG (GNUNET_ERROR_TYPE_DEBUG,
393            "Had %u addresses for network `%s' not deleted during shutdown\n",
394            s->network_entries[c].total_addresses,
395            s->network_entries[c].desc);
396       //GNUNET_break(0);
397     }
398
399     if (s->network_entries[c].active_addresses > 0)
400     {
401       LOG (GNUNET_ERROR_TYPE_DEBUG,
402            "Had %u active addresses for network `%s' not deleted during shutdown\n",
403            s->network_entries[c].active_addresses,
404            s->network_entries[c].desc);
405       //GNUNET_break(0);
406     }
407
408     next = s->network_entries[c].head;
409     while (NULL != (cur = next))
410     {
411       next = cur->next;
412       GNUNET_CONTAINER_DLL_remove (s->network_entries[c].head,
413                                    s->network_entries[c].tail,
414                                    cur);
415       GNUNET_free_non_null (cur->addr->solver_information);
416       GNUNET_free(cur);
417     }
418     GNUNET_free (s->network_entries[c].stat_total);
419     GNUNET_free (s->network_entries[c].stat_active);
420   }
421   if (s->active_addresses > 0)
422   {
423     LOG (GNUNET_ERROR_TYPE_DEBUG,
424          "Had %u active addresses not deleted during shutdown\n",
425          s->active_addresses);
426     // GNUNET_break (0);
427   }
428   GNUNET_free (s->network_entries);
429   GNUNET_free (s);
430   return NULL;
431 }
432
433
434 /**
435  * Test if bandwidth is available in this network to add an additional address
436  *
437  * @param net the network type to update
438  * @return #GNUNET_YES or #GNUNET_NO
439  */
440 static int
441 is_bandwidth_available_in_network (struct Network *net)
442 {
443   unsigned int na = net->active_addresses + 1;
444   uint32_t min_bw = ntohl (GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT.value__);
445
446   if (((net->total_quota_in / na) > min_bw)
447       && ((net->total_quota_out / na) > min_bw))
448   {
449     LOG (GNUNET_ERROR_TYPE_DEBUG,
450          "Enough bandwidth available for %u active addresses in network `%s'\n",
451          na,
452          net->desc);
453
454     return GNUNET_YES;
455   }
456   LOG (GNUNET_ERROR_TYPE_DEBUG,
457        "Not enough bandwidth available for %u active addresses in network `%s'\n",
458        na,
459        net->desc);
460   return GNUNET_NO;
461 }
462
463
464 /**
465  * Update bandwidth assigned to peers in this network
466  *
467  * @param s the solver handle
468  * @param net the network type to update
469  * this address
470  */
471 static void
472 distribute_bandwidth (struct GAS_PROPORTIONAL_Handle *s,
473                       struct Network *net)
474 {
475   struct AddressWrapper *aw;
476   unsigned long long remaining_quota_in = 0;
477   unsigned long long quota_out_used = 0;
478   unsigned long long remaining_quota_out = 0;
479   unsigned long long quota_in_used = 0;
480   int count_addresses;
481   uint32_t min_bw = ntohl (GNUNET_CONSTANTS_DEFAULT_BW_IN_OUT.value__);
482   double relative_peer_prefence;
483   double sum_relative_peer_prefences; /* Important: has to be double not float due to precision */
484   double cur_pref; /* Important: has to be double not float due to precision */
485   double peer_weight;
486   double total_weight;
487   const double *peer_relative_prefs = NULL; /* Important: has to be double not float due to precision */
488
489   uint32_t assigned_quota_in = 0;
490   uint32_t assigned_quota_out = 0;
491
492
493   LOG (GNUNET_ERROR_TYPE_INFO,
494        "Recalculate quota for network type `%s' for %u addresses (in/out): %llu/%llu \n",
495        net->desc,
496        net->active_addresses,
497        net->total_quota_in,
498        net->total_quota_in);
499
500   if (net->active_addresses == 0)
501   {
502     return; /* no addresses to update */
503   }
504
505   /* Idea
506    * Assign every peer in network minimum Bandwidth
507    * Distribute bandwidth left according to preference
508    */
509
510   if ((net->active_addresses * min_bw) > net->total_quota_in)
511   {
512     GNUNET_break(0);
513     return;
514   }
515   if ((net->active_addresses * min_bw) > net->total_quota_out)
516   {
517     GNUNET_break(0);
518     return;
519   }
520
521   remaining_quota_in = net->total_quota_in - (net->active_addresses * min_bw);
522   remaining_quota_out = net->total_quota_out - (net->active_addresses * min_bw);
523   LOG(GNUNET_ERROR_TYPE_DEBUG, "Remaining bandwidth : (in/out): %llu/%llu \n",
524       remaining_quota_in, remaining_quota_out);
525   sum_relative_peer_prefences = 0.0;
526
527   /* Calculate sum of relative preference for active addresses in this network */
528   count_addresses = 0;
529   for (aw = net->head; NULL != aw; aw = aw->next)
530   {
531     if (GNUNET_YES != aw->addr->active)
532       continue;
533
534     peer_relative_prefs = s->env->get_preferences (s->env->cls,
535                                                    &aw->addr->peer);
536     relative_peer_prefence = 0.0;
537     relative_peer_prefence += peer_relative_prefs[GNUNET_ATS_PREFERENCE_BANDWIDTH];
538     sum_relative_peer_prefences += relative_peer_prefence;
539     count_addresses ++;
540   }
541
542   if (count_addresses != net->active_addresses)
543   {
544     GNUNET_break (0);
545     LOG (GNUNET_ERROR_TYPE_WARNING,
546          "%s: Counted %u active addresses, but network says to have %u active addresses\n",
547          net->desc, count_addresses, net->active_addresses);
548     for (aw = net->head; NULL != aw; aw = aw->next)
549     {
550       if (GNUNET_YES != aw->addr->active)
551         continue;
552
553       LOG (GNUNET_ERROR_TYPE_WARNING,
554            "Active: `%s' `%s' length %u\n",
555            GNUNET_i2s (&aw->addr->peer),
556            aw->addr->plugin,
557            aw->addr->addr_len);
558     }
559   }
560
561   LOG (GNUNET_ERROR_TYPE_INFO,
562       "Total relative preference %.3f for %u addresses in network %s\n",
563       sum_relative_peer_prefences, net->active_addresses, net->desc);
564
565   for (aw = net->head; NULL != aw; aw = aw->next)
566   {
567     if (GNUNET_YES == aw->addr->active)
568     {
569       peer_relative_prefs = s->env->get_preferences (s->env->cls,
570                                                      &aw->addr->peer);
571
572       cur_pref = peer_relative_prefs[GNUNET_ATS_PREFERENCE_BANDWIDTH];
573       total_weight = net->active_addresses +
574           s->prop_factor * sum_relative_peer_prefences;
575       peer_weight = (1.0 + (s->prop_factor * cur_pref));
576
577       assigned_quota_in = min_bw
578           + ((peer_weight / total_weight) * remaining_quota_in);
579       assigned_quota_out = min_bw
580           + ((peer_weight / total_weight) * remaining_quota_out);
581
582       LOG (GNUNET_ERROR_TYPE_INFO,
583           "New quota for peer `%s' with weight (cur/total) %.3f/%.3f (in/out): %llu / %llu\n",
584           GNUNET_i2s (&aw->addr->peer), peer_weight, total_weight,
585           assigned_quota_in, assigned_quota_out);
586     }
587     else
588     {
589       assigned_quota_in = 0;
590       assigned_quota_out = 0;
591     }
592
593     quota_in_used += assigned_quota_in;
594     quota_out_used += assigned_quota_out;
595     /* Prevent overflow due to rounding errors */
596     if (assigned_quota_in > UINT32_MAX)
597       assigned_quota_in = UINT32_MAX;
598     if (assigned_quota_out > UINT32_MAX)
599       assigned_quota_out = UINT32_MAX;
600
601     /* Compare to current bandwidth assigned */
602     aw->calculated_quota_in = assigned_quota_in;
603     aw->calculated_quota_out = assigned_quota_out;
604   }
605   LOG(GNUNET_ERROR_TYPE_DEBUG,
606       "Total bandwidth assigned is (in/out): %llu /%llu\n", quota_in_used,
607       quota_out_used);
608   if (quota_out_used > net->total_quota_out + 1) /* +1 is required due to rounding errors */
609   {
610     LOG(GNUNET_ERROR_TYPE_ERROR,
611         "Total outbound bandwidth assigned is larger than allowed (used/allowed) for %u active addresses: %llu / %llu\n",
612         net->active_addresses, quota_out_used, net->total_quota_out);
613   }
614   if (quota_in_used > net->total_quota_in + 1) /* +1 is required due to rounding errors */
615   {
616     LOG(GNUNET_ERROR_TYPE_ERROR,
617         "Total inbound bandwidth assigned is larger than allowed (used/allowed) for %u active addresses: %llu / %llu\n",
618         net->active_addresses, quota_in_used, net->total_quota_in);
619   }
620 }
621
622
623 /**
624  * Context for finding the best address* Linked list of addresses in this network: head
625  */
626 struct FindBestAddressCtx
627 {
628   /**
629    * The solver handle
630    */
631   struct GAS_PROPORTIONAL_Handle *s;
632
633   /**
634    * The currently best address
635    */
636   struct ATS_Address *best;
637 };
638
639
640 /**
641  * Find index of a ATS property type in the array.
642  */
643 static int
644 find_property_index (uint32_t type)
645 {
646   int existing_types[] = GNUNET_ATS_QualityProperties;
647   int c;
648
649   for (c = 0; c < GNUNET_ATS_QualityPropertiesCount; c++)
650     if (existing_types[c] == type)
651       return c;
652   return GNUNET_SYSERR;
653 }
654
655
656 /**
657  * Find a "good" address to use for a peer by iterating over the addresses for this peer.
658  * If we already have an existing address, we stick to it.
659  * Otherwise, we pick by lowest distance and then by lowest latency.
660  *
661  * @param cls the `struct FindBestAddressCtx *' where we store the result
662  * @param key unused
663  * @param value another `struct ATS_Address*` to consider using
664  * @return #GNUNET_OK (continue to iterate)
665  */
666 static int
667 find_best_address_it (void *cls,
668                       const struct GNUNET_PeerIdentity *key,
669                       void *value)
670 {
671   struct FindBestAddressCtx *ctx = cls;
672   struct ATS_Address *current = value;
673   struct ATS_Address *current_best = current;
674   struct AddressWrapper *asi;
675   struct GNUNET_TIME_Relative active_time;
676   struct GNUNET_TIME_Relative min_active_time;
677   double best_delay;
678   double best_distance;
679   double cur_delay;
680   double cur_distance;
681   int index;
682
683   current_best = NULL;
684   asi = current->solver_information;
685   if (NULL == asi)
686   {
687     GNUNET_break (0);
688     return GNUNET_OK;
689   }
690
691   if (GNUNET_NO == is_bandwidth_available_in_network (asi->network))
692   {
693     return GNUNET_OK; /* There's no bandwidth available in this network */
694   }
695
696   if (NULL != ctx->best)
697   {
698     /* Compare current addresses with denominated 'best' address */
699     current_best = ctx->best;
700   }
701   else
702   {
703     /* We do not have a 'best' address so take this address */
704     LOG (GNUNET_ERROR_TYPE_DEBUG,
705          "Setting initial address %p\n",
706          current);
707     current_best = current;
708     goto end;
709   }
710
711   if (GNUNET_YES == current->active)
712   {
713     GNUNET_assert (asi->activated.abs_value_us != GNUNET_TIME_UNIT_ZERO_ABS.abs_value_us);
714     active_time = GNUNET_TIME_absolute_get_duration (asi->activated);
715     min_active_time.rel_value_us =  ((double) GNUNET_TIME_UNIT_SECONDS.rel_value_us) *
716         ctx->s->stability_factor;
717     if (active_time.rel_value_us <= min_active_time.rel_value_us)
718     {
719       /* Keep active address for stability reasons */
720       ctx->best = current;
721       return GNUNET_NO;
722     }
723   }
724
725   /* Now compare ATS information */
726   index = find_property_index (GNUNET_ATS_QUALITY_NET_DISTANCE);
727   cur_distance = current->atsin[index].norm;
728   best_distance = ctx->best->atsin[index].norm;
729   index = find_property_index (GNUNET_ATS_QUALITY_NET_DELAY);
730   cur_delay = current->atsin[index].norm;
731   best_delay = ctx->best->atsin[index].norm;
732
733   /* user shorter distance */
734   if (cur_distance < best_distance)
735   {
736     if (GNUNET_NO == ctx->best->active)
737     {
738       current_best = current; /* Use current */
739     }
740     else if ((best_distance / cur_distance) > ctx->s->stability_factor)
741     {
742       /* Best and active address performs worse  */
743       current_best = current;
744     }
745   }
746   else
747   {
748     /* Use current best */
749     current_best = ctx->best;
750   }
751
752   /* User connection with less delay */
753   if (cur_delay < best_delay)
754   {
755
756     if (GNUNET_NO == ctx->best->active)
757     {
758       current_best = current; /* Use current */
759     }
760     else if ((best_delay / cur_delay) > ctx->s->stability_factor)
761     {
762       /* Best and active address performs worse  */
763       current_best = current;
764     }
765   }
766   else
767   {
768     /* Use current best */
769     current_best = ctx->best;
770   }
771
772 end:
773   ctx->best = current_best;
774   return GNUNET_OK;
775 }
776
777
778 /**
779  * Find the currently best address for a peer from the set of addresses available
780  * or return NULL of no address is available
781  *
782  * @param s the proportional handle
783  * @param addresses the address hashmap
784  * @param id the peer id
785  * @return the address or NULL
786  */
787 struct ATS_Address *
788 get_best_address (struct GAS_PROPORTIONAL_Handle *s,
789                   struct GNUNET_CONTAINER_MultiPeerMap *addresses,
790                   const struct GNUNET_PeerIdentity *id)
791 {
792   struct FindBestAddressCtx fba_ctx;
793
794   fba_ctx.best = NULL;
795   fba_ctx.s = s;
796   GNUNET_CONTAINER_multipeermap_get_multiple (addresses,
797                                               id,
798                                               &find_best_address_it,
799                                               &fba_ctx);
800   return fba_ctx.best;
801 }
802
803
804 /**
805  * Hashmap Iterator to find current active address for peer
806  *
807  * @param cls last active address
808  * @param key peer's key
809  * @param value address to check
810  * @return #GNUNET_NO on double active address else #GNUNET_YES;
811  */
812 static int
813 get_active_address_it (void *cls,
814                        const struct GNUNET_PeerIdentity *key,
815                        void *value)
816 {
817   struct ATS_Address **dest = cls;
818   struct ATS_Address *aa = (struct ATS_Address *) value;
819
820   LOG (GNUNET_ERROR_TYPE_INFO,
821          "Checking address %p\n", aa);
822
823   if (GNUNET_YES == aa->active)
824   {
825   LOG (GNUNET_ERROR_TYPE_INFO,
826          "Address %p is active\n", aa);
827     if (NULL != (*dest))
828     {
829       /* should never happen */
830       LOG (GNUNET_ERROR_TYPE_ERROR,
831            "Multiple active addresses for peer `%s'\n",
832            GNUNET_i2s (&aa->peer));
833       GNUNET_break(0);
834       return GNUNET_NO;
835     }
836     (*dest) = aa;
837
838   }
839   return GNUNET_OK;
840 }
841
842
843 /**
844  * Find current active address for peer
845  *
846  * @param s the solver handle
847  * @param peer the peer
848  * @return active address or NULL
849  */
850 static struct ATS_Address *
851 get_active_address (struct GAS_PROPORTIONAL_Handle *s,
852                     const struct GNUNET_PeerIdentity *peer)
853 {
854   struct ATS_Address *dest;
855
856   dest = NULL;
857   GNUNET_CONTAINER_multipeermap_get_multiple (s->env->addresses,
858                                               peer,
859                                               &get_active_address_it,
860                                               &dest);
861   return dest;
862 }
863
864
865 /**
866  * Lookup network struct by type
867  *
868  * @param s the solver handle
869  * @param type the network type
870  * @return the network struct
871  */
872 static struct Network *
873 get_network (struct GAS_PROPORTIONAL_Handle *s,
874              enum GNUNET_ATS_Network_Type type)
875 {
876   if (type >= s->env->network_count)
877   {
878     GNUNET_break (0);
879     return NULL;
880   }
881   return &s->network_entries[type];
882 }
883
884
885 /**
886  * Decrease address count in network
887  *
888  * @param s the solver handle
889  * @param net the network type
890  */
891 static void
892 address_decrement_active (struct GAS_PROPORTIONAL_Handle *s,
893                           struct Network *net)
894 {
895   if (net->active_addresses < 1)
896   {
897     GNUNET_break (0);
898   }
899   else
900   {
901     net->active_addresses--;
902     GNUNET_STATISTICS_update (s->env->stats,
903                               net->stat_active, -1, GNUNET_NO);
904   }
905   if (s->active_addresses < 1)
906   {
907     GNUNET_break (0);
908   }
909   else
910   {
911     s->active_addresses--;
912     GNUNET_STATISTICS_update (s->env->stats,
913                               "# ATS addresses total",
914                               -1,
915                               GNUNET_NO);
916   }
917 }
918
919
920 /**
921  * Compares addresses
922  *
923  * @param a address a
924  * @param b address b
925  * @return GNUNET_YES if equal, GNUNET_NO else
926  */
927 static int
928 address_eq (struct ATS_Address *a, struct ATS_Address *b)
929 {
930   GNUNET_assert (NULL != a);
931   GNUNET_assert (NULL != b);
932   if (0 != strcmp(a->plugin, b->plugin))
933     return GNUNET_NO;
934   if (a->addr_len != b->addr_len)
935     return GNUNET_NO;
936   if (0 != memcmp (a->addr, b->addr, b->addr_len))
937     return GNUNET_NO;
938   if (a->session_id != b->session_id)
939     return GNUNET_NO;
940   return GNUNET_YES;
941 }
942
943
944 /**
945  * Notify bandwidth changes to addresses
946  *
947  * @param s solver handle
948  * @param net the network to propagate changes in
949  */
950 static void
951 propagate_bandwidth (struct GAS_PROPORTIONAL_Handle *s,
952                      struct Network *net)
953 {
954   struct AddressWrapper *cur;
955
956   for (cur = net->head; NULL != cur; cur = cur->next)
957   {
958       if ( (cur->addr->assigned_bw_in != cur->calculated_quota_in) ||
959            (cur->addr->assigned_bw_out != cur->calculated_quota_out) )
960       {
961         cur->addr->assigned_bw_in = cur->calculated_quota_in;
962         cur->addr->assigned_bw_out = cur->calculated_quota_out;
963
964         /* Reset for next iteration */
965         cur->calculated_quota_in = 0;
966         cur->calculated_quota_out = 0;
967         LOG (GNUNET_ERROR_TYPE_DEBUG,
968             "Bandwidth for %s address %p for peer `%s' changed to %u/%u\n",
969             (GNUNET_NO == cur->addr->active) ? "inactive" : "active",
970             cur->addr,
971             GNUNET_i2s (&cur->addr->peer),
972             cur->addr->assigned_bw_in,
973             cur->addr->assigned_bw_out);
974
975         /* Notify on change */
976         if ((GNUNET_YES == cur->addr->active))
977         {
978           s->env->bandwidth_changed_cb (s->env->cls,
979                                         cur->addr);
980         }
981       }
982   }
983 }
984
985
986 /**
987  * Distribibute bandwidth
988  *
989  * @param s the solver handle
990  * @param n the network, can be NULL for all network
991  */
992 static void
993 distribute_bandwidth_in_network (struct GAS_PROPORTIONAL_Handle *s,
994                                  struct Network *n)
995 {
996   if (GNUNET_YES == s->bulk_lock)
997   {
998     s->bulk_requests++;
999     return;
1000   }
1001
1002   if (NULL != n)
1003   {
1004     LOG (GNUNET_ERROR_TYPE_INFO,
1005         "Redistributing bandwidth in network %s with %u active and %u total addresses\n",
1006          GNUNET_ATS_print_network_type(n->type),
1007          n->active_addresses,
1008          n->total_addresses);
1009
1010     s->env->info_cb (s->env->cls,
1011                      GAS_OP_SOLVE_START,
1012                      GAS_STAT_SUCCESS,
1013                      GAS_INFO_PROP_SINGLE);
1014
1015     /* Distribute  */
1016     distribute_bandwidth(s, n);
1017
1018     s->env->info_cb (s->env->cls,
1019                      GAS_OP_SOLVE_STOP,
1020                      GAS_STAT_SUCCESS,
1021                      GAS_INFO_PROP_SINGLE);
1022     s->env->info_cb (s->env->cls,
1023                      GAS_OP_SOLVE_UPDATE_NOTIFICATION_START,
1024                      GAS_STAT_SUCCESS,
1025                      GAS_INFO_PROP_SINGLE);
1026
1027     /* Do propagation */
1028     propagate_bandwidth (s, n);
1029
1030     s->env->info_cb (s->env->cls,
1031                      GAS_OP_SOLVE_UPDATE_NOTIFICATION_STOP,
1032                      GAS_STAT_SUCCESS,
1033                      GAS_INFO_PROP_SINGLE);
1034   }
1035   else
1036   {
1037     int i;
1038     s->env->info_cb (s->env->cls,
1039                      GAS_OP_SOLVE_START,
1040                      GAS_STAT_SUCCESS,
1041                      GAS_INFO_PROP_ALL);
1042     for (i = 0; i < s->network_count; i++)
1043     {
1044       /* Distribute */
1045       distribute_bandwidth(s, &s->network_entries[i]);
1046     }
1047
1048     s->env->info_cb (s->env->cls,
1049                      GAS_OP_SOLVE_STOP,
1050                      GAS_STAT_SUCCESS,
1051                      GAS_INFO_PROP_ALL);
1052     s->env->info_cb (s->env->cls,
1053                      GAS_OP_SOLVE_UPDATE_NOTIFICATION_START,
1054                      GAS_STAT_SUCCESS,
1055                      GAS_INFO_PROP_ALL);
1056     for (i = 0; i < s->network_count; i++)
1057     {
1058       /* Do propagation */
1059       propagate_bandwidth(s, &s->network_entries[i]);
1060     }
1061     s->env->info_cb (s->env->cls,
1062                      GAS_OP_SOLVE_UPDATE_NOTIFICATION_STOP,
1063                      GAS_STAT_SUCCESS,
1064                      GAS_INFO_PROP_ALL);
1065   }
1066 }
1067
1068
1069 /**
1070  * Update active address for a peer:
1071  * Check if active address exists and what the best address is, if addresses
1072  * are different switch
1073  *
1074  * @param s solver handle
1075  * @param peer the peer to check
1076  * return the new address or NULL if no update was performed
1077   */
1078 static struct ATS_Address *
1079 update_active_address (struct GAS_PROPORTIONAL_Handle *s,
1080                        const struct GNUNET_PeerIdentity *peer)
1081 {
1082   struct ATS_Address *best_address;
1083   struct ATS_Address *current_address;
1084   struct AddressWrapper *asi;
1085   struct Network *net;
1086
1087   LOG (GNUNET_ERROR_TYPE_INFO,
1088        "Updating active address for peer `%s'\n",
1089        GNUNET_i2s (peer));
1090
1091   /* Find active address */
1092   current_address = get_active_address (s,
1093                                         peer);
1094
1095   LOG (GNUNET_ERROR_TYPE_INFO,
1096        "Peer `%s' has active address %p\n",
1097        GNUNET_i2s (peer),
1098        current_address);
1099
1100   /* Find best address */
1101   best_address = get_best_address (s,
1102                                    s->env->addresses,
1103                                    peer);
1104   LOG (GNUNET_ERROR_TYPE_INFO,
1105        "Peer `%s' has best address %p\n",
1106        GNUNET_i2s (peer),
1107        best_address);
1108
1109   if (NULL != current_address)
1110   {
1111     GNUNET_assert (GNUNET_YES == current_address->active);
1112     if ( (NULL == best_address) ||
1113          ( (NULL != best_address) &&
1114            (GNUNET_NO == address_eq (current_address,
1115                                      best_address)) ) )
1116     {
1117       /* We switch to a new address (or to none),
1118          mark old address as inactive */
1119       LOG (GNUNET_ERROR_TYPE_INFO,
1120            "Disabling previous %s address %p for peer `%s'\n",
1121            (GNUNET_NO == current_address->active) ? "inactive" : "active",
1122            current_address,
1123            GNUNET_i2s (peer));
1124
1125       asi = current_address->solver_information;
1126       net = asi->network;
1127       asi->activated = GNUNET_TIME_UNIT_ZERO_ABS;
1128       current_address->active = GNUNET_NO; /* No active any longer */
1129       current_address->assigned_bw_in = 0; /* no bandwidth assigned */
1130       current_address->assigned_bw_out = 0; /* no bandwidth assigned */
1131       address_decrement_active (s, net);
1132       distribute_bandwidth_in_network (s, net);
1133     }
1134     if (NULL == best_address)
1135     {
1136       /* We previously had an active address, but now we cannot suggest one
1137        * Therefore we have to disconnect the peer */
1138       LOG (GNUNET_ERROR_TYPE_INFO,
1139            "Disconnecting peer `%s' with previous address %p\n",
1140            GNUNET_i2s (peer),
1141            current_address);
1142       s->env->bandwidth_changed_cb (s->env->cls,
1143                                     current_address);
1144     }
1145   }
1146   if (NULL == best_address)
1147   {
1148     LOG (GNUNET_ERROR_TYPE_INFO,
1149          "Cannot suggest address for peer `%s'\n",
1150          GNUNET_i2s (peer));
1151     return NULL;
1152   }
1153
1154   LOG (GNUNET_ERROR_TYPE_INFO,
1155        "Suggesting new address %p for peer `%s'\n",
1156        best_address,
1157        GNUNET_i2s (peer));
1158
1159   if ( (NULL != current_address) &&
1160        (GNUNET_YES == address_eq (best_address, current_address)) )
1161   {
1162     GNUNET_break (GNUNET_NO != current_address->active);
1163     return best_address; /* Same same */
1164   }
1165
1166   asi = best_address->solver_information;
1167   GNUNET_assert (NULL != asi);
1168   net = asi->network;
1169
1170   /* Mark address as active */
1171   asi->activated = GNUNET_TIME_absolute_get ();
1172   best_address->active = GNUNET_YES;
1173
1174   net->active_addresses++;
1175   s->active_addresses++;
1176   GNUNET_STATISTICS_update (s->env->stats,
1177                             "# ATS active addresses total",
1178                             1,
1179                             GNUNET_NO);
1180   GNUNET_STATISTICS_update (s->env->stats,
1181                             net->stat_active,
1182                             1,
1183                             GNUNET_NO);
1184   LOG (GNUNET_ERROR_TYPE_INFO,
1185        "Address %p for peer `%s' is now active\n",
1186        best_address,
1187        GNUNET_i2s (peer));
1188   /* Distribute bandwidth */
1189   distribute_bandwidth_in_network (s, net);
1190   return best_address;
1191 }
1192
1193
1194 /**
1195  * Changes the preferences for a peer in the problem
1196  *
1197  * @param solver the solver handle
1198  * @param peer the peer to change the preference for
1199  * @param kind the kind to change the preference
1200  * @param pref_rel the normalized preference value for this kind over all clients
1201  */
1202 static void
1203 GAS_proportional_address_change_preference (void *solver,
1204                                             const struct GNUNET_PeerIdentity *peer,
1205                                             enum GNUNET_ATS_PreferenceKind kind,
1206                                             double pref_rel)
1207 {
1208   struct GAS_PROPORTIONAL_Handle *s = solver;
1209   struct ATS_Address *best_address;
1210   struct ATS_Address *active_address;
1211   struct AddressWrapper *asi;
1212
1213   if (0 ==
1214       s->env->get_connectivity (s->env->cls,
1215                                 peer))
1216     return; /* Peer is not requested */
1217
1218   /* This peer is requested, find best address */
1219   active_address = get_active_address (s,
1220                                        peer);
1221   best_address = update_active_address (s, peer);
1222
1223   if ((NULL != best_address) && ((NULL != active_address) &&
1224       (GNUNET_YES == address_eq (active_address, best_address))))
1225   {
1226     asi = best_address->solver_information;
1227     GNUNET_assert (NULL != asi);
1228
1229     /* We sticked to the same address, therefore redistribute  */
1230     distribute_bandwidth_in_network (s, asi->network);
1231   }
1232 }
1233
1234
1235 /**
1236  * Get application feedback for a peer
1237  *
1238  * @param solver the solver handle
1239  * @param application the application
1240  * @param peer the peer to change the preference for
1241  * @param scope the time interval for this feedback: [now - scope .. now]
1242  * @param kind the kind to change the preference
1243  * @param score the score
1244  */
1245 static void
1246 GAS_proportional_address_preference_feedback (void *solver,
1247                                               struct GNUNET_SERVER_Client *application,
1248                                               const struct GNUNET_PeerIdentity *peer,
1249                                               const struct GNUNET_TIME_Relative scope,
1250                                               enum GNUNET_ATS_PreferenceKind kind,
1251                                               double score)
1252 {
1253   struct GAS_PROPORTIONAL_Handle *s = solver;
1254
1255   GNUNET_assert(NULL != peer);
1256   GNUNET_assert(NULL != s);
1257 }
1258
1259
1260 /**
1261  * Get the preferred address for a specific peer
1262  *
1263  * @param solver the solver handle
1264  * @param peer the identity of the peer
1265  * @return best address
1266  */
1267 static const struct ATS_Address *
1268 GAS_proportional_get_preferred_address (void *solver,
1269                                         const struct GNUNET_PeerIdentity *peer)
1270 {
1271   struct GAS_PROPORTIONAL_Handle *s = solver;
1272   const struct ATS_Address *best_address;
1273
1274   best_address = update_active_address (s, peer);
1275   if (s->bulk_lock > 0)
1276     return NULL;
1277   return best_address;
1278 }
1279
1280
1281 /**
1282  * Stop notifying about address and bandwidth changes for this peer
1283  *
1284  * @param solver the solver handle
1285  * @param peer the peer
1286  */
1287 static void
1288 GAS_proportional_stop_get_preferred_address (void *solver,
1289                                              const struct GNUNET_PeerIdentity *peer)
1290 {
1291   struct GAS_PROPORTIONAL_Handle *s = solver;
1292   struct ATS_Address *cur;
1293   struct AddressWrapper *asi;
1294   struct Network *cur_net;
1295
1296   cur = get_active_address (s,
1297                             peer);
1298   if (NULL != cur)
1299   {
1300     LOG (GNUNET_ERROR_TYPE_INFO,
1301          "Disabling %s address %p for peer `%s'\n",
1302          (GNUNET_NO == cur->active) ? "inactive" : "active",
1303          cur,
1304          GNUNET_i2s (&cur->peer));
1305
1306     /* Disabling current address */
1307     asi = cur->solver_information;
1308     cur_net = asi->network;
1309     asi->activated = GNUNET_TIME_UNIT_ZERO_ABS;
1310     cur->active = GNUNET_NO; /* No active any longer */
1311     cur->assigned_bw_in = 0; /* no bandwidth assigned */
1312     cur->assigned_bw_out = 0; /* no bandwidth assigned */
1313
1314     address_decrement_active (s, cur_net);
1315
1316     distribute_bandwidth_in_network (s, cur_net);
1317   }
1318 }
1319
1320
1321 /**
1322  * Start a bulk operation
1323  *
1324  * @param solver the solver
1325  */
1326 static void
1327 GAS_proportional_bulk_start (void *solver)
1328 {
1329   struct GAS_PROPORTIONAL_Handle *s = solver;
1330
1331   LOG (GNUNET_ERROR_TYPE_DEBUG,
1332        "Locking solver for bulk operation ...\n");
1333   GNUNET_assert (NULL != solver);
1334   s->bulk_lock++;
1335 }
1336
1337
1338 /**
1339  * Bulk operation done
1340  */
1341 static void
1342 GAS_proportional_bulk_stop (void *solver)
1343 {
1344   struct GAS_PROPORTIONAL_Handle *s = solver;
1345
1346   LOG (GNUNET_ERROR_TYPE_DEBUG,
1347        "Unlocking solver from bulk operation ...\n");
1348   if (s->bulk_lock < 1)
1349   {
1350     GNUNET_break(0);
1351     return;
1352   }
1353   s->bulk_lock--;
1354   if ((0 == s->bulk_lock) && (0 < s->bulk_requests))
1355   {
1356     LOG (GNUNET_ERROR_TYPE_INFO,
1357          "No lock pending, recalculating\n");
1358     distribute_bandwidth_in_network (s, NULL);
1359     s->bulk_requests = 0;
1360   }
1361 }
1362
1363
1364 /**
1365  * Transport properties for this address have changed
1366  *
1367  * @param solver solver handle
1368  * @param address the address
1369  * @param type the ATSI type in HBO
1370  * @param abs_value the absolute value of the property
1371  * @param rel_value the normalized value
1372  */
1373 static void
1374 GAS_proportional_address_property_changed (void *solver,
1375                                            struct ATS_Address *address,
1376                                            enum GNUNET_ATS_Property type,
1377                                            uint32_t abs_value,
1378                                            double rel_value)
1379 {
1380   struct GAS_PROPORTIONAL_Handle *s = solver;
1381   struct AddressWrapper *asi;
1382   struct ATS_Address *best_address;
1383   struct ATS_Address *active_address;
1384
1385   asi = address->solver_information;
1386   LOG (GNUNET_ERROR_TYPE_INFO,
1387        "Property `%s' for peer `%s' address %p changed to %.2f\n",
1388        GNUNET_ATS_print_property_type (type),
1389        GNUNET_i2s (&address->peer),
1390        address,
1391        rel_value);
1392
1393   if (0 ==
1394       s->env->get_connectivity (s->env->cls,
1395                                 &address->peer))
1396     return; /* Peer is not requested */
1397
1398   /* This peer is requested, find active and best address */
1399   active_address = get_active_address(s,
1400                                       &address->peer);
1401   best_address = update_active_address (s,
1402                                         &address->peer);
1403
1404   if ((NULL != best_address) && ((NULL != active_address) &&
1405       (GNUNET_YES == address_eq (active_address, best_address))))
1406   {
1407     asi = best_address->solver_information;
1408     GNUNET_assert (NULL != asi);
1409
1410     /* We sticked to the same address, therefore redistribute  */
1411     distribute_bandwidth_in_network (s, asi->network);
1412   }
1413 }
1414
1415
1416 /**
1417  * Add a new single address to a network
1418  *
1419  * @param solver the solver Handle
1420  * @param address the address to add
1421  * @param network network type of this address
1422  */
1423 static void
1424 GAS_proportional_address_add (void *solver,
1425                               struct ATS_Address *address,
1426                               enum GNUNET_ATS_Network_Type network)
1427 {
1428   struct GAS_PROPORTIONAL_Handle *s = solver;
1429   struct Network *net;
1430   struct AddressWrapper *aw;
1431
1432   net = get_network (s,
1433                      network);
1434   if (NULL == net)
1435   {
1436     GNUNET_break (0);
1437     return;
1438   }
1439
1440   aw = GNUNET_new (struct AddressWrapper);
1441   aw->addr = address;
1442   GNUNET_CONTAINER_DLL_insert (net->head,
1443                                net->tail,
1444                                aw);
1445   net->total_addresses++;
1446   GNUNET_STATISTICS_update (s->env->stats,
1447                             "# ATS addresses total",
1448                             1,
1449                             GNUNET_NO);
1450   GNUNET_STATISTICS_update (s->env->stats,
1451                             net->stat_total,
1452                             1,
1453                             GNUNET_NO);
1454   aw->network = net;
1455   address->solver_information = aw;
1456
1457   LOG (GNUNET_ERROR_TYPE_INFO,
1458        "Adding new address %p for peer `%s', now total %u and active %u addresses in network `%s'\n",
1459        address,
1460        GNUNET_i2s (&address->peer),
1461        net->total_addresses,
1462        net->active_addresses,
1463        net->desc);
1464
1465   if (0 ==
1466       s->env->get_connectivity (s->env->cls,
1467                                 &address->peer))
1468     return; /* Peer is not requested */
1469
1470   /* This peer is requested, find best address */
1471   update_active_address (s,
1472                          &address->peer);
1473 }
1474
1475
1476 /**
1477  * Remove an address from the solver. To do so, we:
1478  * - Removed it from specific network
1479  * - Decrease the number of total addresses
1480  * - If active:
1481  *   - decrease number of active addreses
1482  *   - update quotas
1483  *
1484  * @param solver the solver handle
1485  * @param address the address to remove
1486  */
1487 static void
1488 GAS_proportional_address_delete (void *solver,
1489                                  struct ATS_Address *address)
1490 {
1491   struct GAS_PROPORTIONAL_Handle *s = solver;
1492   struct AddressWrapper *aw = address->solver_information;
1493   struct Network *net = aw->network;
1494
1495   LOG (GNUNET_ERROR_TYPE_DEBUG,
1496        "Deleting %s address for peer `%s' from network `%s' (total: %u/active: %u)\n",
1497        (GNUNET_NO == address->active) ? "inactive" : "active",
1498        GNUNET_i2s (&address->peer),
1499        net->desc,
1500        net->total_addresses,
1501        net->active_addresses);
1502
1503   GNUNET_CONTAINER_DLL_remove (net->head,
1504                                net->tail,
1505                                aw);
1506   GNUNET_assert (net->total_addresses > 0);
1507   net->total_addresses--;
1508   GNUNET_STATISTICS_update (s->env->stats,
1509                             net->stat_total,
1510                             -1,
1511                             GNUNET_NO);
1512   if (GNUNET_YES == address->active)
1513   {
1514     /* Address was active, remove from network and update quotas*/
1515     address->active = GNUNET_NO;
1516     address->assigned_bw_in = 0;
1517     address->assigned_bw_out = 0;
1518     address_decrement_active (s, net);
1519     /* FIXME: this may trigger the solver unnecessarily,
1520        especially if update_active_address() succeeds! */
1521     distribute_bandwidth_in_network (s, net);
1522
1523     if (NULL ==
1524         update_active_address (s,
1525                                &address->peer))
1526     {
1527       /* No alternative address found, disconnect peer */
1528       LOG (GNUNET_ERROR_TYPE_INFO,
1529            "Disconnecting peer `%s' after deleting previous address %p\n",
1530            GNUNET_i2s (&address->peer),
1531            address);
1532       s->env->bandwidth_changed_cb (s->env->cls,
1533                                     address);
1534     }
1535   }
1536   GNUNET_free (aw);
1537   address->solver_information = NULL;
1538   LOG (GNUNET_ERROR_TYPE_DEBUG,
1539        "After deleting address now total %u and active %u addresses in network `%s'\n",
1540        net->total_addresses,
1541        net->active_addresses,
1542        net->desc);
1543 }
1544
1545
1546 /**
1547  * Function invoked when the plugin is loaded.
1548  *
1549  * @param[in,out] cls the `struct GNUNET_ATS_PluginEnvironment *` to use;
1550  *            modified to return the API functions (ugh).
1551  * @return the `struct GAS_PROPORTIONAL_Handle` to pass as a closure
1552  */
1553 void *
1554 libgnunet_plugin_ats_proportional_init (void *cls)
1555 {
1556   static struct GNUNET_ATS_SolverFunctions sf;
1557   struct GNUNET_ATS_PluginEnvironment *env = cls;
1558   struct GAS_PROPORTIONAL_Handle *s;
1559   struct Network * cur;
1560   float f_tmp;
1561   unsigned int c;
1562
1563   s = GNUNET_new (struct GAS_PROPORTIONAL_Handle);
1564   s->env = env;
1565   sf.cls = s;
1566   sf.s_add = &GAS_proportional_address_add;
1567   sf.s_address_update_property = &GAS_proportional_address_property_changed;
1568   sf.s_get = &GAS_proportional_get_preferred_address;
1569   sf.s_get_stop = &GAS_proportional_stop_get_preferred_address;
1570   sf.s_pref = &GAS_proportional_address_change_preference;
1571   sf.s_feedback = &GAS_proportional_address_preference_feedback;
1572   sf.s_del = &GAS_proportional_address_delete;
1573   sf.s_bulk_start = &GAS_proportional_bulk_start;
1574   sf.s_bulk_stop = &GAS_proportional_bulk_stop;
1575   s->stability_factor = PROP_STABILITY_FACTOR;
1576   if (GNUNET_SYSERR !=
1577       GNUNET_CONFIGURATION_get_value_float (env->cfg,
1578                                             "ats",
1579                                             "PROP_STABILITY_FACTOR",
1580                                             &f_tmp))
1581   {
1582     if ((f_tmp < 1.0) || (f_tmp > 2.0))
1583     {
1584       LOG (GNUNET_ERROR_TYPE_ERROR,
1585            _("Invalid %s configuration %f \n"),
1586            "PROP_STABILITY_FACTOR",
1587            f_tmp);
1588     }
1589     else
1590     {
1591       s->stability_factor = f_tmp;
1592       LOG (GNUNET_ERROR_TYPE_INFO,
1593            "Using %s of %.3f\n",
1594            "PROP_STABILITY_FACTOR",
1595            f_tmp);
1596     }
1597   }
1598   s->prop_factor = PROPORTIONALITY_FACTOR;
1599   if (GNUNET_SYSERR !=
1600       GNUNET_CONFIGURATION_get_value_float (env->cfg,
1601                                             "ats",
1602                                             "PROP_PROPORTIONALITY_FACTOR",
1603                                             &f_tmp))
1604   {
1605     if (f_tmp < 1.0)
1606     {
1607       LOG (GNUNET_ERROR_TYPE_ERROR,
1608            _("Invalid %s configuration %f\n"),
1609            "PROP_PROPORTIONALITY_FACTOR",
1610            f_tmp);
1611     }
1612     else
1613     {
1614       s->prop_factor = f_tmp;
1615       LOG (GNUNET_ERROR_TYPE_INFO,
1616            "Using %s of %.3f\n",
1617            "PROP_PROPORTIONALITY_FACTOR"
1618            , f_tmp);
1619     }
1620   }
1621
1622   s->network_entries = GNUNET_malloc (env->network_count *
1623                                       sizeof (struct Network));
1624   for (c = 0; c < env->network_count; c++)
1625   {
1626     cur = &s->network_entries[c];
1627     cur->type = c;
1628     cur->total_quota_in = env->in_quota[c];
1629     cur->total_quota_out = env->out_quota[c];
1630     cur->desc = GNUNET_ATS_print_network_type (c);
1631     GNUNET_asprintf (&cur->stat_total,
1632                      "# ATS addresses %s total",
1633                      cur->desc);
1634     GNUNET_asprintf (&cur->stat_active,
1635                      "# ATS active addresses %s total",
1636                      cur->desc);
1637     LOG (GNUNET_ERROR_TYPE_INFO,
1638          "Added network %u `%s' (%llu/%llu)\n",
1639          c,
1640          cur->desc,
1641          cur->total_quota_in,
1642          cur->total_quota_out);
1643   }
1644   return &sf;
1645 }
1646
1647
1648 /* end of plugin_ats_proportional.c */