add 'strength' argument to address suggestion request for ATS
[oweals/gnunet.git] / src / include / gnunet_ats_service.h
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2010-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., 51 Franklin Street, Fifth Floor,
18  Boston, MA 02110-1301, USA.
19  */
20 /**
21  * @file include/gnunet_ats_service.h
22  * @brief automatic transport selection and outbound bandwidth determination
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  */
26 #ifndef GNUNET_ATS_SERVICE_H
27 #define GNUNET_ATS_SERVICE_H
28
29 #include "gnunet_constants.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_hello_lib.h"
32
33 /**
34  * Types of networks (with separate quotas) we support.
35  */
36 enum GNUNET_ATS_Network_Type
37 {
38   /**
39    * Category of last resort.
40    */
41   GNUNET_ATS_NET_UNSPECIFIED = 0,
42
43   /**
44    * Loopback (same host).
45    */
46   GNUNET_ATS_NET_LOOPBACK = 1,
47
48   /**
49    * Local area network.
50    */
51   GNUNET_ATS_NET_LAN = 2,
52
53   /**
54    * Wide area network (i.e. Internet)
55    */
56   GNUNET_ATS_NET_WAN = 3,
57
58   /**
59    * Wireless LAN (i.e. 802.11abgn)
60    */
61   GNUNET_ATS_NET_WLAN = 4,
62
63   /**
64    * Bluetooth LAN
65    */
66   GNUNET_ATS_NET_BT = 5
67
68 /**
69  * Number of network types supported by ATS
70  */
71 #define GNUNET_ATS_NetworkTypeCount 6
72
73 };
74
75
76 /**
77  * Default bandwidth assigned to a network : 64 KB/s
78  */
79 #define GNUNET_ATS_DefaultBandwidth 65536
80
81 /**
82  * Undefined value for an `enum GNUNET_ATS_Property`
83  */
84 #define GNUNET_ATS_VALUE_UNDEFINED UINT32_MAX
85
86 /**
87  * String representation for GNUNET_ATS_VALUE_UNDEFINED
88  */
89 #define GNUNET_ATS_VALUE_UNDEFINED_STR "undefined"
90
91 /**
92  * Maximum bandwidth assigned to a network : 4095 MB/s
93  */
94 #define GNUNET_ATS_MaxBandwidth UINT32_MAX
95
96 /**
97  * Textual equivalent for GNUNET_ATS_MaxBandwidth
98  */
99 #define GNUNET_ATS_MaxBandwidthString "unlimited"
100
101
102 /**
103  * ATS performance characteristics for an address.
104  */
105 struct GNUNET_ATS_Properties
106 {
107
108   /**
109    * Delay.  Time between when the time packet is sent and the packet
110    * arrives.  FOREVER if we did not measure yet.
111    */
112   struct GNUNET_TIME_Relative delay;
113
114   /**
115    * Actual traffic on this connection from this peer to the other peer.
116    * Includes transport overhead.
117    *
118    * Unit: [bytes/second]
119    */
120   uint32_t utilization_out;
121
122   /**
123    * Actual traffic on this connection from the other peer to this peer.
124    * Includes transport overhead.
125    *
126    * Unit: [bytes/second]
127    */
128   uint32_t utilization_in;
129
130   /**
131    * Distance on network layer (required for distance-vector routing)
132    * in hops.  Zero for direct connections (i.e. plain TCP/UDP).
133    */
134   unsigned int distance;
135
136   /**
137    * Which network scope does the respective address belong to?
138    * This property does not change.
139    */
140   enum GNUNET_ATS_Network_Type scope;
141
142 };
143
144
145 /**
146  * ATS performance characteristics for an address in
147  * network byte order (for IPC).
148  */
149 struct GNUNET_ATS_PropertiesNBO
150 {
151
152   /**
153    * Actual traffic on this connection from this peer to the other peer.
154    * Includes transport overhead.
155    *
156    * Unit: [bytes/second]
157    */
158   uint32_t utilization_out GNUNET_PACKED;
159
160   /**
161    * Actual traffic on this connection from the other peer to this peer.
162    * Includes transport overhead.
163    *
164    * Unit: [bytes/second]
165    */
166   uint32_t utilization_in GNUNET_PACKED;
167
168   /**
169    * Which network scope does the respective address belong to?
170    * This property does not change.
171    */
172   uint32_t scope GNUNET_PACKED;
173
174   /**
175    * Distance on network layer (required for distance-vector routing)
176    * in hops.  Zero for direct connections (i.e. plain TCP/UDP).
177    */
178   uint32_t distance GNUNET_PACKED;
179
180   /**
181    * Delay.  Time between when the time packet is sent and the packet
182    * arrives.  FOREVER if we did not measure yet.
183    */
184   struct GNUNET_TIME_RelativeNBO delay;
185
186 };
187
188
189
190 /* ********************* LAN Characterization library ************************ */
191 /* Note: these functions do not really communicate with the ATS service */
192
193
194 /**
195  * Convert ATS properties from host to network byte order.
196  *
197  * @param nbo[OUT] value written
198  * @param hbo value read
199  */
200 void
201 GNUNET_ATS_properties_hton (struct GNUNET_ATS_PropertiesNBO *nbo,
202                             const struct GNUNET_ATS_Properties *hbo);
203
204
205 /**
206  * Convert ATS properties from network to host byte order.
207  *
208  * @param hbo[OUT] value written
209  * @param nbo value read
210  */
211 void
212 GNUNET_ATS_properties_ntoh (struct GNUNET_ATS_Properties *hbo,
213                             const struct GNUNET_ATS_PropertiesNBO *nbo);
214
215
216
217 /**
218  * Convert a `enum GNUNET_ATS_Network_Type` to a string
219  *
220  * @param net the network type
221  * @return a string or NULL if invalid
222  */
223 const char *
224 GNUNET_ATS_print_network_type (enum GNUNET_ATS_Network_Type net);
225
226
227 /**
228  * Handle for the LAN Characterization library.
229  */
230 struct GNUNET_ATS_InterfaceScanner;
231
232
233 /**
234  * Returns where the address is located: loopback, LAN or WAN.
235  *
236  * @param is handle from #GNUNET_ATS_interface_scanner_init()
237  * @param addr address
238  * @param addrlen address length
239  * @return type of the network the address belongs to
240  */
241 enum GNUNET_ATS_Network_Type
242 GNUNET_ATS_scanner_address_get_type (struct GNUNET_ATS_InterfaceScanner *is,
243                                      const struct sockaddr *addr,
244                                      socklen_t addrlen);
245
246
247 /**
248  * Initialize the ATS address characterization client handle.
249  *
250  * @return scanner handle, NULL on error
251  */
252 struct GNUNET_ATS_InterfaceScanner *
253 GNUNET_ATS_scanner_init (void);
254
255
256 /**
257  * Terminate interface scanner.
258  *
259  * @param is scanner we are done with
260  */
261 void
262 GNUNET_ATS_scanner_done (struct GNUNET_ATS_InterfaceScanner *is);
263
264
265
266 /* ********************Connection Suggestion API ***************************** */
267
268 /**
269  * Handle to the ATS subsystem for making suggestions about
270  * connections the peer would like to have.
271  */
272 struct GNUNET_ATS_ConnectivityHandle;
273
274 /**
275  * Handle for address suggestion requests.
276  */
277 struct GNUNET_ATS_ConnectivitySuggestHandle;
278
279
280 /**
281  * Initialize the ATS connectivity suggestion client handle.
282  *
283  * @param cfg configuration to use
284  * @return ats connectivity handle, NULL on error
285  */
286 struct GNUNET_ATS_ConnectivityHandle *
287 GNUNET_ATS_connectivity_init (const struct GNUNET_CONFIGURATION_Handle *cfg);
288
289
290 /**
291  * Shutdown ATS connectivity suggestion client.
292  *
293  * @param ch handle to destroy
294  */
295 void
296 GNUNET_ATS_connectivity_done (struct GNUNET_ATS_ConnectivityHandle *ch);
297
298
299 /**
300  * We would like to establish a new connection with a peer.  ATS
301  * should suggest a good address to begin with.
302  *
303  * @param ch handle
304  * @param peer identity of the peer we need an address for
305  * @param strength how urgent is the need for such a suggestion
306  * @return suggestion handle, NULL if request is already pending
307   */
308 struct GNUNET_ATS_ConnectivitySuggestHandle *
309 GNUNET_ATS_connectivity_suggest (struct GNUNET_ATS_ConnectivityHandle *ch,
310                                  const struct GNUNET_PeerIdentity *peer,
311                                  uint32_t strength);
312
313
314 /**
315  * We no longer care about being connected to a peer.
316  *
317  * @param sh handle
318  */
319 void
320 GNUNET_ATS_connectivity_suggest_cancel (struct GNUNET_ATS_ConnectivitySuggestHandle *sh);
321
322
323 /* ******************************** Scheduling API ***************************** */
324
325 /**
326  * Handle to the ATS subsystem for bandwidth/transport scheduling information.
327  */
328 struct GNUNET_ATS_SchedulingHandle;
329
330 /**
331  * Opaque session handle, defined by plugins.  Contents not known to ATS.
332  */
333 struct GNUNET_ATS_Session;
334
335
336 /**
337  * Signature of a function called by ATS with the current bandwidth
338  * and address preferences as determined by ATS.  If our connection
339  * to ATS dies and thus all suggestions become invalid, this function
340  * is called ONCE with all arguments (except @a cls) being NULL/0.
341  *
342  * @param cls closure
343  * @param peer for which we suggest an address, NULL if ATS connection died
344  * @param address suggested address (including peer identity of the peer),
345  *             may be NULL to signal disconnect from peer
346  * @param session session to use, NULL to establish a new outgoing session
347  * @param bandwidth_out assigned outbound bandwidth for the connection,
348  *        0 to signal disconnect
349  * @param bandwidth_in assigned inbound bandwidth for the connection,
350  *        0 to signal disconnect
351  */
352 typedef void
353 (*GNUNET_ATS_AddressSuggestionCallback) (void *cls,
354                                          const struct GNUNET_PeerIdentity *peer,
355                                          const struct GNUNET_HELLO_Address *address,
356                                          struct GNUNET_ATS_Session *session,
357                                          struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
358                                          struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
359
360
361 /**
362  * Initialize the ATS scheduling subsystem.
363  *
364  * @param cfg configuration to use
365  * @param suggest_cb notification to call whenever the suggestation changed
366  * @param suggest_cb_cls closure for @a suggest_cb
367  * @return ats context
368  */
369 struct GNUNET_ATS_SchedulingHandle *
370 GNUNET_ATS_scheduling_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
371                             GNUNET_ATS_AddressSuggestionCallback suggest_cb,
372                             void *suggest_cb_cls);
373
374
375 /**
376  * Client is done with ATS scheduling, release resources.
377  *
378  * @param sh handle to release
379  */
380 void
381 GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *sh);
382
383
384 /**
385  * Handle used within ATS to track an address.
386  */
387 struct GNUNET_ATS_AddressRecord;
388
389
390 /**
391  * We have a new address ATS should know. Addresses have to be added with this
392  * function before they can be: updated, set in use and destroyed
393  *
394  * @param sh handle
395  * @param address the address
396  * @param session session handle (if available, i.e. for incoming connections)
397  * @param prop performance data for the address
398  * @return handle to the address representation inside ATS, NULL
399  *         on error (i.e. ATS knows this exact address already, or
400  *         address is invalid)
401  */
402 struct GNUNET_ATS_AddressRecord *
403 GNUNET_ATS_address_add (struct GNUNET_ATS_SchedulingHandle *sh,
404                         const struct GNUNET_HELLO_Address *address,
405                         struct GNUNET_ATS_Session *session,
406                         const struct GNUNET_ATS_Properties *prop);
407
408
409 /**
410  * An address was used to initiate a session.
411  *
412  * @param ar address record to update information for
413  * @param session session handle
414  */
415 void
416 GNUNET_ATS_address_add_session (struct GNUNET_ATS_AddressRecord *ar,
417                                 struct GNUNET_ATS_Session *session);
418
419
420 /**
421  * A @a session was destroyed, disassociate it from the given address
422  * record.  If this was an incoming addess, destroys the address as
423  * well.
424  *
425  * @param ar address record to update information for
426  * @param session session handle
427  * @return #GNUNET_YES if the @a ar was destroyed because
428  *                     it was an incoming address,
429  *         #GNUNET_NO if the @ar was kept because we can
430  *                    use it still to establish a new session
431  */
432 int
433 GNUNET_ATS_address_del_session (struct GNUNET_ATS_AddressRecord *ar,
434                                 struct GNUNET_ATS_Session *session);
435
436
437 /**
438  * We have updated performance statistics for a given address.  Note
439  * that this function can be called for addresses that are currently
440  * in use as well as addresses that are valid but not actively in use.
441  * Furthermore, the peer may not even be connected to us right now (@a
442  * session value of NULL used to signal disconnect, or somehow we
443  * otherwise got updated on @a ats information).  Based on the
444  * information provided, ATS may update bandwidth assignments and
445  * suggest to switch addresses.
446  *
447  * @param ar address record to update information for
448  * @param prop performance data for the address
449  */
450 void
451 GNUNET_ATS_address_update (struct GNUNET_ATS_AddressRecord *ar,
452                            const struct GNUNET_ATS_Properties *prop);
453
454
455 /**
456  * An address got destroyed, stop using it as a valid address.
457  *
458  * @param ar address record to destroy, it's validation has
459  *           expired and ATS may no longer use it
460  */
461 void
462 GNUNET_ATS_address_destroy (struct GNUNET_ATS_AddressRecord *ar);
463
464
465
466 /* ******************************** Performance API ***************************** */
467
468 /**
469  * ATS Handle to obtain and/or modify performance information.
470  */
471 struct GNUNET_ATS_PerformanceHandle;
472
473 /**
474  * Signature of a function that is called with QoS information about an address.
475  *
476  * @param cls closure
477  * @param address the address, NULL if ATS service was disconnected or
478  *        when the iteration is completed in the case of
479  *        #GNUNET_ATS_performance_list_addresses()
480  * @param address_active #GNUNET_YES if this address is actively used
481  *        to maintain a connection to a peer;
482  *        #GNUNET_NO if the address is not actively used;
483  *        #GNUNET_SYSERR if this address is no longer available for ATS
484  * @param bandwidth_out assigned outbound bandwidth for the connection
485  * @param bandwidth_in assigned inbound bandwidth for the connection
486  * @param prop performance data for the address
487  */
488 typedef void
489 (*GNUNET_ATS_AddressInformationCallback) (void *cls,
490                                           const struct GNUNET_HELLO_Address *address,
491                                           int address_active,
492                                           struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
493                                           struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
494                                           const struct GNUNET_ATS_Properties *prop);
495
496
497 /**
498  * Handle for an address listing operation
499  */
500 struct GNUNET_ATS_AddressListHandle;
501
502
503 /**
504  * Get handle to access performance API of the ATS subsystem.
505  *
506  * @param cfg configuration to use
507  * @param addr_info_cb callback called when performance characteristics for
508  *      an address change
509  * @param addr_info_cb_cls closure for @a addr_info_cb
510  * @return ats performance context
511  */
512 struct GNUNET_ATS_PerformanceHandle *
513 GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
514                              GNUNET_ATS_AddressInformationCallback addr_info_cb,
515                              void *addr_info_cb_cls);
516
517
518 /**
519  * Get information about addresses known to the ATS subsystem.
520  *
521  * @param handle the performance handle to use
522  * @param peer peer idm can be NULL for all peers
523  * @param all #GNUNET_YES to get information about all addresses or #GNUNET_NO to
524  *        get only address currently used
525  * @param infocb callback to call with the addresses,
526  *        will callback with address == NULL when done
527  * @param infocb_cls closure for @a infocb
528  * @return handle to abort the operation
529  */
530 struct GNUNET_ATS_AddressListHandle *
531 GNUNET_ATS_performance_list_addresses (struct GNUNET_ATS_PerformanceHandle *handle,
532                                        const struct GNUNET_PeerIdentity *peer,
533                                        int all,
534                                        GNUNET_ATS_AddressInformationCallback infocb,
535                                        void *infocb_cls);
536
537
538 /**
539  * Cancel a pending address listing operation
540  *
541  * @param handle the `struct GNUNET_ATS_AddressListHandle` handle to cancel
542  */
543 void
544 GNUNET_ATS_performance_list_addresses_cancel (struct GNUNET_ATS_AddressListHandle *handle);
545
546
547 /**
548  * Client is done using the ATS performance subsystem, release resources.
549  *
550  * @param ph handle
551  */
552 void
553 GNUNET_ATS_performance_done (struct GNUNET_ATS_PerformanceHandle *ph);
554
555
556 /**
557  * Function called with reservation result.
558  *
559  * @param cls closure
560  * @param peer identifies the peer
561  * @param amount set to the amount that was actually reserved or unreserved;
562  *               either the full requested amount or zero (no partial reservations)
563  * @param res_delay if the reservation could not be satisfied (amount was 0), how
564  *        long should the client wait until re-trying?
565  */
566 typedef void
567 (*GNUNET_ATS_ReservationCallback) (void *cls,
568                                    const struct GNUNET_PeerIdentity *peer,
569                                    int32_t amount,
570                                    struct GNUNET_TIME_Relative res_delay);
571
572
573 /**
574  * Context that can be used to cancel a peer information request.
575  */
576 struct GNUNET_ATS_ReservationContext;
577
578
579 /**
580  * Reserve inbound bandwidth from the given peer.  ATS will look at
581  * the current amount of traffic we receive from the peer and ensure
582  * that the peer could add 'amount' of data to its stream.
583  *
584  * @param ph performance handle
585  * @param peer identifies the peer
586  * @param amount reserve N bytes for receiving, negative
587  *                amounts can be used to undo a (recent) reservation;
588  * @param rcb function to call with the resulting reservation information
589  * @param rcb_cls closure for @a rcb
590  * @return NULL on error
591  * @deprecated will be replaced soon
592  */
593 struct GNUNET_ATS_ReservationContext *
594 GNUNET_ATS_reserve_bandwidth (struct GNUNET_ATS_PerformanceHandle *ph,
595                               const struct GNUNET_PeerIdentity *peer,
596                               int32_t amount,
597                               GNUNET_ATS_ReservationCallback rcb,
598                               void *rcb_cls);
599
600
601 /**
602  * Cancel request for reserving bandwidth.
603  *
604  * @param rc context returned by the original GNUNET_ATS_reserve_bandwidth call
605  */
606 void
607 GNUNET_ATS_reserve_bandwidth_cancel (struct GNUNET_ATS_ReservationContext *rc);
608
609
610 /**
611  * ATS preference types as array initializer
612  */
613 #define GNUNET_ATS_PreferenceType {GNUNET_ATS_PREFERENCE_BANDWIDTH, GNUNET_ATS_PREFERENCE_LATENCY, GNUNET_ATS_PREFERENCE_END}
614
615 /**
616  * ATS preference types as string array initializer
617  */
618 #define GNUNET_ATS_PreferenceTypeString {"BANDWIDTH", "LATENCY", "END" }
619
620 /**
621  * Enum defining all known preference categories.
622  */
623 enum GNUNET_ATS_PreferenceKind
624 {
625
626   /**
627    * Change the peer's bandwidth value (value per byte of bandwidth in
628    * the goal function) to the given amount.  The argument is followed
629    * by a double value giving the desired value (can be negative).
630    * Preference changes are forgotten if peers disconnect.
631    */
632   GNUNET_ATS_PREFERENCE_BANDWIDTH = 0,
633
634   /**
635    * Change the peer's latency value to the given amount.  The
636    * argument is followed by a double value giving the desired value
637    * (can be negative).  The absolute score in the goal function is
638    * the inverse of the latency in microseconds (minimum: 1
639    * microsecond) multiplied by the latency preferences.
640    */
641   GNUNET_ATS_PREFERENCE_LATENCY = 1,
642
643   /**
644    * End of preference list.
645    */
646   GNUNET_ATS_PREFERENCE_END = 2
647
648 };
649
650
651 /**
652  * Convert a GNUNET_ATS_PreferenceType to a string
653  *
654  * @param type the preference type
655  * @return a string or NULL if invalid
656  */
657 const char *
658 GNUNET_ATS_print_preference_type (enum GNUNET_ATS_PreferenceKind type);
659
660
661 /**
662  * Change preferences for the given peer. Preference changes are forgotten if peers
663  * disconnect.
664  *
665  * @param ph performance handle @param peer identifies the peer
666  * @param ... #GNUNET_ATS_PREFERENCE_END-terminated specification of the
667  * desired changes
668  */
669 void
670 GNUNET_ATS_performance_change_preference (struct GNUNET_ATS_PerformanceHandle *ph,
671                                           const struct GNUNET_PeerIdentity *peer,
672                                           ...);
673
674
675 /**
676  * Application feedback on how good preference requirements are fulfilled
677  * for the preferences included in the given time scope [now - scope .. now]
678  *
679  * An application notifies ATS if (and only if) it has feedback information
680  * for specific properties. This values are valid until the feedback scores are
681  * updated by the application.
682  *
683  * If the application has no feedback for this preference kind the application
684  * will not explicitly call for this property and will not include it in this
685  * function call.
686  *
687  * @param ph performance handle
688  * @param scope the time interval this valid for: [now - scope .. now]
689  * @param peer identifies the peer
690  * @param ... #GNUNET_ATS_PREFERENCE_END-terminated specification of the desired changes
691  */
692 void
693 GNUNET_ATS_performance_give_feedback (struct GNUNET_ATS_PerformanceHandle *ph,
694                                       const struct GNUNET_PeerIdentity *peer,
695                                       const struct GNUNET_TIME_Relative scope,
696                                       ...);
697
698 #endif
699 /* end of file gnunet-service-transport_ats.h */