new property
[oweals/gnunet.git] / src / include / gnunet_ats_service.h
1 /*
2  This file is part of GNUnet.
3  (C) 2010,2011 Christian Grothoff (and other contributing authors)
4
5  GNUnet is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published
7  by the Free Software Foundation; either version 3, or (at your
8  option) any later version.
9
10  GNUnet is distributed in the hope that it will be useful, but
11  WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  General Public License for more details.
14
15  You should have received a copy of the GNU General Public License
16  along with GNUnet; see the file COPYING.  If not, write to the
17  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  Boston, MA 02111-1307, USA.
19  */
20 /**
21  * @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  * Number of network types supported by ATS
35  */
36 #define GNUNET_ATS_NetworkTypeCount 6
37
38 /**
39  * ATS network types as array initializer
40  */
41 #define GNUNET_ATS_NetworkType {GNUNET_ATS_NET_UNSPECIFIED, GNUNET_ATS_NET_LOOPBACK, GNUNET_ATS_NET_LAN, GNUNET_ATS_NET_WAN, GNUNET_ATS_NET_WLAN, GNUNET_ATS_NET_BT}
42
43 /**
44  * ATS network types as string array initializer
45  */
46 #define GNUNET_ATS_NetworkTypeString {"UNSPECIFIED", "LOOPBACK", "LAN", "WAN", "WLAN", "BLUETOOTH"}
47
48 enum GNUNET_ATS_Network_Type
49 {
50   GNUNET_ATS_NET_UNSPECIFIED = 0,
51   GNUNET_ATS_NET_LOOPBACK = 1,
52   GNUNET_ATS_NET_LAN = 2,
53   GNUNET_ATS_NET_WAN = 3,
54   GNUNET_ATS_NET_WLAN = 4,
55   GNUNET_ATS_NET_BT = 5
56 };
57
58 /**
59  * Default bandwidth assigned to a network : 64 KB/s
60  */
61 #define GNUNET_ATS_DefaultBandwidth 65536
62
63 /**
64  * Undefined value for a GNUNET_ATS_Property
65  */
66 #define GNUNET_ATS_VALUE_UNDEFINED UINT32_MAX
67
68 /**
69  * String representation for GNUNET_ATS_VALUE_UNDEFINED
70  */
71 #define GNUNET_ATS_VALUE_UNDEFINED_STR "undefined"
72
73 /**
74  * Maximum bandwidth assigned to a network : 4095 MB/s
75  */
76 #define GNUNET_ATS_MaxBandwidth UINT32_MAX
77
78 /**
79  * Textual equivalent for GNUNET_ATS_MaxBandwidth
80  */
81 #define GNUNET_ATS_MaxBandwidthString "unlimited"
82
83 /**
84  * Number of property types supported by ATS
85  */
86 #define GNUNET_ATS_PropertyCount 11
87
88 /**
89  * ATS properties types as string array initializer
90  */
91 #define GNUNET_ATS_PropertyStrings {"TERMINATOR", "UTILIZATION_UP", "UTILIZATION_DOWN", "UTILIZATION_PAYLOAD_UP", "UTILIZATION_PAYLOAD_DOWN", "NETWORK_TYPE", "DELAY", "DISTANCE", "COST_WAN", "COST_LAN", "COST_WLAN"}
92
93 /**
94  * Enum defining all known property types for ATS Enum values are used
95  * in the GNUNET_ATS_Information struct as
96  * (key,value)-pairs.
97  *
98  * Cost are always stored in uint32_t, so all units used to define costs
99  * have to be normalized to fit in uint32_t [0 .. UINT32_MAX-1]
100  *
101  * UINT32_MAX is reserved for uninitialized values GNUNET_ATS_VALUE_UNDEFINED
102  */
103 enum GNUNET_ATS_Property
104 {
105
106   /**
107    * End of the array.
108    * @deprecated
109    */
110   GNUNET_ATS_ARRAY_TERMINATOR = 0,
111
112   /**
113    * Actual traffic on this connection from this peer to the other peer.
114    * Includes transport overhead
115    *
116    * Unit: [bytes/second]
117    */
118   GNUNET_ATS_UTILIZATION_OUT,
119
120   /**
121    * Actual traffic on this connection from the other peer to this peer.
122    * Includes transport overhead
123    *
124    * Unit: [bytes/second]
125    */
126   GNUNET_ATS_UTILIZATION_IN,
127
128
129   /**
130    * Actual traffic on this connection from this peer to the other peer.
131    * Only payload from layers > transport
132    *
133    * Unit: [bytes/second]
134    */
135   GNUNET_ATS_UTILIZATION_PAYLOAD_OUT,
136
137   /**
138    * Actual traffic on this connection from the other peer to this peer.
139    * Only payload from layers > transport
140    *
141    * Unit: [bytes/second]
142    */
143   GNUNET_ATS_UTILIZATION_PAYLOAD_IN,
144
145   /**
146    * Is this address located in WAN, LAN or a loopback address
147    * Value is element of GNUNET_ATS_Network_Type
148    */
149   GNUNET_ATS_NETWORK_TYPE,
150
151   /**
152    * Delay
153    * Time between when the time packet is sent and the packet arrives
154    *
155    * Unit: [microseconds]
156    *
157    * Examples:
158    *
159    * LAN   :    1
160    * WLAN  :    2
161    * Dialup:  500
162    */
163   GNUNET_ATS_QUALITY_NET_DELAY,
164
165   /**
166    * Distance on network layer (required for distance-vector routing).
167    *
168    * Unit: [DV-hops]
169    */
170   GNUNET_ATS_QUALITY_NET_DISTANCE,
171
172   /**
173    * Network overhead on WAN (Wide-Area Network)
174    *
175    * How many bytes are sent on the WAN when 1 kilobyte (1024 bytes)
176    * of application data is transmitted?
177    * A factor used with connect cost, bandwidth cost and energy cost
178    * to describe the overhead produced by the transport protocol
179    *
180    * Unit: [bytes/kb]
181    *
182    * Interpretation: less is better
183    *
184    * Examples:
185    *
186    * TCP/IPv4 over Ethernet: 1024 + 38 + 20 + 20 = 1102 [bytes/kb]
187    * TCP/IPv6 over Ethernet: 1024 + 38 + 20 + 40 = 1122 [bytes/kb]
188    * UDP/IPv4 over Ethernet: 1024 + 38 + 20 + 8  = 1090 [bytes/kb]
189    * UDP/IPv6 over Ethernet: 1024 + 38 + 40 + 8  = 1110 [bytes/kb]
190    */
191   GNUNET_ATS_COST_WAN,
192
193   /**
194    * Network overhead on LAN (Local-Area Network)
195    *
196    * How many bytes are sent on the LAN when 1 kilobyte (1024 bytes)
197    * of application data is transmitted?
198    * A factor used with connect cost, bandwidth cost and energy cost
199    * to describe the overhead produced by the transport protocol
200    *
201    * Unit: [bytes/kb]
202    *
203    * Interpretation: less is better
204    *
205    * Examples:
206    *
207    * TCP/IPv4 over Ethernet: 1024 + 38 + 20 + 20 = 1102 [bytes/kb]
208    * TCP/IPv6 over Ethernet: 1024 + 38 + 20 + 40 = 1122 [bytes/kb]
209    * UDP/IPv4 over Ethernet: 1024 + 38 + 20 + 8  = 1090 [bytes/kb]
210    * UDP/IPv6 over Ethernet: 1024 + 38 + 40 + 8  = 1110 [bytes/kb]
211    */
212   GNUNET_ATS_COST_LAN,
213
214   /**
215    * Network overhead on WLAN (Wireless Local Area Network)
216    *
217    * How many bytes are sent on the LAN when 1 kilobyte (1024 bytes)
218    * of application data is transmitted?
219    * A factor used with connect cost, bandwidth cost and energy cost
220    * to describe the overhead produced by the transport protocol
221    *
222    * Unit: [bytes/kb]
223    *
224    * Interpretation: less is better
225    *
226    * Examples:
227    *
228    * TCP/IPv4 over Ethernet: 1024 + 38 + 20 + 20 = 1102 [bytes/kb]
229    * TCP/IPv6 over Ethernet: 1024 + 38 + 20 + 40 = 1122 [bytes/kb]
230    * UDP/IPv4 over Ethernet: 1024 + 38 + 20 + 8  = 1090 [bytes/kb]
231    * UDP/IPv6 over Ethernet: 1024 + 38 + 40 + 8  = 1110 [bytes/kb]
232    */
233   GNUNET_ATS_COST_WLAN
234 /* Cost related values */
235 /* =================== */
236 /**
237  * Volume based cost in financial units to transmit data
238  *
239  * Note: This value is not bound to a specific currency or unit and only
240  * used locally.
241  * "cent" just refers the smallest amount of money in the respective
242  * currency.
243  *
244  * Unit: [cent/MB]
245  *
246  * Interpretation: less is better
247  *
248  * Examples:
249  * LAN:  0 [cent/MB]
250  * 2G : 10 [cent/MB]
251  */
252 // GNUNET_ATS_COST_FINANCIAL_PER_VOLUME = 1,
253 /**
254  * Time based cost in financial units to transmit data
255  *
256  * Note: This value is not bound to a specific currency or unit and only
257  * used locally.
258  * "cent" just refers the smallest amount of money in the respective
259  * currency.
260  *
261  * Unit: [cent/h]
262  *
263  * Interpretation: less is better
264  *
265  * Examples:
266  * LAN   :  0 [cent/h]
267  * Dialup: 10 [cent/h]
268  */
269 // GNUNET_ATS_COST_FINANCIAL_PER_TIME = 2,
270 /**
271  * Computational costs
272  *
273  * Effort of preparing data to be sent with this transport
274  * Includes encoding, encryption and conversion of data
275  * Partial values can be summed up: c_sum = c_enc + c_enc + c_conv
276  * Resulting values depend on local system properties, e.g. CPU
277  *
278  * Unit: [ms/GB]
279  *
280  * Interpretation: less is better
281  *
282  * Examples:
283  *
284  * HTTPS with AES CBC-256:      7,382
285  * HTTPS with AES CBC-128:      5,279
286  * HTTPS with RC4-1024:         2,652
287  */
288 // GNUNET_ATS_COST_COMPUTATIONAL = 3,
289 /**
290  * Energy consumption
291  *
292  * Energy consumption using this transport when sending with a certain
293  * power at a certain bitrate. This is only an approximation based on:
294  * Energy consumption E = P / D
295  *
296  * with:
297  * Power P in Watt (J/s)
298  * Datarate D in MBit/s
299  *
300  * Conversion between power P and dBm used by WLAN in radiotap's dBm TX power:
301  *
302  * Lp(dbm) = 10 log10 (P/ 1mW)
303  *
304  * => P = 1 mW  * 10^(Lp(dbm)/10)
305  *
306  * Unit: [mJ/MB]
307  *
308  * Interpretation: less is better
309  *
310  * Examples:
311  *
312  * LAN:       0
313  * WLAN:      89 (600 mW @ 802.11g /w 54 MBit/s)
314  * Bluetooth: 267 (100 mW @ BT2.0 EDR /w 3 MBit/s)
315  */
316 // GNUNET_ATS_COST_ENERGY_CONSUMPTION = 4,
317 /**
318  * Connect cost
319  * How many bytes are transmitted to initiate a new connection using
320  * this transport?
321  *
322  * Unit: [bytes]
323  *
324  * Interpretation: less is better
325  *
326  * Examples:
327  *
328  * UDP (No connection)      :
329  *     0 bytes
330  * TCP (TCP 3-Way handshake):
331  *   220 bytes Ethernet,  172 bytes TCP/IP,  122 bytes TCP
332  * HTTP (TCP + Header)      :
333  *   477 bytes Ethernet,  429 bytes TCP/IP,  374 bytes TCP,  278 bytes HTTP
334  * HTTPS  HTTP+TLS Handshake:
335  *  2129 bytes Ethernet, 1975 bytes TCP/IP, 1755 bytes TCP, 1403 bytes HTTPS
336  *
337  * */
338 // GNUNET_ATS_COST_CONNECT = 5,
339 /**
340  * Bandwidth cost
341  *
342  * How many bandwidth is available to consume?
343  * Used to calculate which impact sending data with this transport has
344  *
345  * Unit: [kB/s]
346  *
347  * Interpretation: more is better
348  *
349  * Examples:
350  * LAN:     12,800  (100 MBit/s)
351  * WLAN:    6,912   (54 MBit/s)
352  * Dial-up: 8       (64 Kbit/s)
353  *
354  */
355 // GNUNET_ATS_COST_BANDWITH_AVAILABLE = 6,
356 /**
357  *  Network overhead
358  *
359  * How many bytes are sent over the wire when 1 kilobyte (1024 bytes)
360  * of application data is transmitted?
361  * A factor used with connect cost, bandwidth cost and energy cost
362  * to describe the overhead produced by the transport protocol
363  *
364  * Unit: [bytes/kb]
365  *
366  * Interpretation: less is better
367  *
368  * Examples:
369  *
370  * TCP/IPv4 over Ethernet: 1024 + 38 + 20 + 20 = 1102 [bytes/kb]
371  * TCP/IPv6 over Ethernet: 1024 + 38 + 20 + 40 = 1122 [bytes/kb]
372  * UDP/IPv4 over Ethernet: 1024 + 38 + 20 + 8  = 1090 [bytes/kb]
373  * UDP/IPv6 over Ethernet: 1024 + 38 + 40 + 8  = 1110 [bytes/kb]
374  */
375 // GNUNET_ATS_COST_NETWORK_OVERHEAD = 7,
376 /* Quality related values */
377 /* ====================== */
378 /* Physical layer quality properties */
379 /**
380  * Signal strength on physical layer
381  *
382  * Unit: [dBm]
383  */
384 // GNUNET_ATS_QUALITY_PHY_SIGNAL_STRENGTH = 1025,
385 /**
386  * Collision rate on physical layer
387  *
388  * Unit: [B/s]
389  */
390 // GNUNET_ATS_QUALITY_PHY_COLLISION_RATE = 1026,
391 /**
392  * Error rate on physical layer
393  *
394  * Unit: [B/s]
395  */
396 // GNUNET_ATS_QUALITY_PHY_ERROR_RATE = 1027,
397 /**
398  * Jitter
399  * Time variations of the delay
400  * 1st derivative of a delay function
401  *
402  * Unit: [ms]
403  */
404 // GNUNET_ATS_QUALITY_NET_JITTER = 1029,
405 /**
406  * Error rate on network layer
407  *
408  * Unit: [B/s]
409  *
410  * Examples:
411  *
412  * LAN       :    0
413  * WLAN      :  400
414  * Bluetooth :  100
415  * Note: This numbers are just assumptions as an example, not
416  * measured or somehow determined
417  */
418 // GNUNET_ATS_QUALITY_NET_ERRORRATE = 1030,
419 /**
420  * Drop rate on network layer
421  * Bytes actively dismissed by a network component during transmission
422  * Reasons for dropped data can be full queues, congestion, quota violations...
423  *
424  * Unit: [B/s]
425  *
426  * Examples:
427  *
428  * LAN       :    0
429  * WLAN      :  400
430  * Bluetooth :  100
431  * Note: This numbers are just assumptions as an example, not
432  * measured or somehow determined
433  */
434 // GNUNET_ATS_QUALITY_NET_DROPRATE = 1031,
435 /**
436  * Loss rate on network layer
437  * Bytes lost during transmission
438  * Reasons can be collisions, ...
439  *
440  * Unit: [B/s]
441  *
442  * Examples:
443  *
444  * LAN       :    0
445  * WLAN      :   40
446  * Bluetooth :   10
447  * Note: This numbers are just assumptions as an example, not measured
448  * or somehow determined
449  */
450 // GNUNET_ATS_QUALITY_NET_LOSSRATE = 1032,
451 /**
452  * Throughput on network layer
453  *
454  * Unit: [kB/s]
455  *
456  * Examples:
457  *
458  * LAN   : 3400
459  * WLAN  : 1200
460  * Dialup:        4
461  *
462  */
463 // GNUNET_ATS_QUALITY_NET_THROUGHPUT = 1033,
464 /* Availability related values */
465 /* =========================== */
466 /**
467  * Is a peer reachable?
468  */
469 // GNUNET_ATS_AVAILABILITY_REACHABLE = 2048,
470 /**
471  * Is there a connection established to a peer using this transport
472  */
473 // GNUNET_ATS_AVAILABILITY_CONNECTED = 2049
474 };
475
476 /**
477  * Number of ATS quality properties
478  */
479 #define GNUNET_ATS_QualityPropertiesCount 2
480
481 /**
482  * ATS quality properties as array initializer
483  */
484 #define GNUNET_ATS_QualityProperties {GNUNET_ATS_QUALITY_NET_DELAY, GNUNET_ATS_QUALITY_NET_DISTANCE}
485
486 /**
487  * ATS quality properties as string array initializer
488  */
489 #define GNUNET_ATS_QualityPropertiesString {"Delay", "Distance"}
490
491 GNUNET_NETWORK_STRUCT_BEGIN
492
493 /**
494  * struct used to communicate the transport's properties like cost and
495  * quality of service as well as high-level constraints on resource
496  * consumption.
497  *
498  *                             +---+
499  *  +-----------+ Constraints  |   |  Plugin properties +---------+
500  *  | Highlevel |------------> |ATS| <------------------|Transport|
501  *  | Component | ATS struct   |   |    ATS struct      | Plugin  |
502  *  +-----------+              |   |                    +---------+
503  *                             +---+
504  *
505  * This structure will be used by transport plugins to communicate
506  * costs to ATS or by higher level components to tell ATS their
507  * constraints.  Always a pair of (GNUNET_ATS_Property,
508  * uint32_t value).  Value is always uint32_t, so all units used to
509  * define costs have to be normalized to fit uint32_t.
510  */
511 struct GNUNET_ATS_Information
512 {
513   /**
514    * ATS property type, in network byte order.
515    */
516   uint32_t type GNUNET_PACKED;
517
518   /**
519    * ATS property value, in network byte order.
520    */
521   uint32_t value GNUNET_PACKED;
522 };
523 GNUNET_NETWORK_STRUCT_END
524
525 /* ******************************** Scheduling API ***************************** */
526
527 /**
528  * Handle to the ATS subsystem for bandwidth/transport scheduling information.
529  */
530 struct GNUNET_ATS_SchedulingHandle;
531
532 /**
533  * Handle for address suggestion requests
534  *
535  */
536 struct GNUNET_ATS_SuggestHandle;
537
538 /**
539  * Opaque session handle, defined by plugins.  Contents not known to ATS.
540  */
541 struct Session;
542
543 /**
544  * Signature of a function called by ATS with the current bandwidth
545  * and address preferences as determined by ATS.
546  *
547  * @param cls closure
548  * @param address suggested address (including peer identity of the peer)
549  * @param session session to use
550  * @param bandwidth_out assigned outbound bandwidth for the connection
551  * @param bandwidth_in assigned inbound bandwidth for the connection
552  * @param ats performance data for the address (as far as known)
553  * @param ats_count number of performance records in 'ats'
554  */
555 typedef void
556 (*GNUNET_ATS_AddressSuggestionCallback) (void *cls,
557     const struct GNUNET_HELLO_Address * address, struct Session * session,
558     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
559     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
560     const struct GNUNET_ATS_Information * ats, uint32_t ats_count);
561
562 /**
563  * Initialize the ATS subsystem.
564  *
565  * @param cfg configuration to use
566  * @param suggest_cb notification to call whenever the suggestation changed
567  * @param suggest_cb_cls closure for 'suggest_cb'
568  * @return ats context
569  */
570 struct GNUNET_ATS_SchedulingHandle *
571 GNUNET_ATS_scheduling_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
572     GNUNET_ATS_AddressSuggestionCallback suggest_cb, void *suggest_cb_cls);
573
574 /**
575  * Client is done with ATS scheduling, release resources.
576  *
577  * @param sh handle to release
578  */
579 void
580 GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *sh);
581
582 /**
583  * We would like to reset the address suggestion block time for this
584  * peer
585  *
586  * @param sh handle
587  * @param peer identity of the peer we want to reset
588  */
589 void
590 GNUNET_ATS_reset_backoff (struct GNUNET_ATS_SchedulingHandle *sh,
591     const struct GNUNET_PeerIdentity *peer);
592
593 /**
594  * We would like to establish a new connection with a peer.  ATS
595  * should suggest a good address to begin with.
596  *
597  * @param sh handle
598  * @param peer identity of the peer we need an address for
599  * @return suggestion handle
600  */
601 struct GNUNET_ATS_SuggestHandle *
602 GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *sh,
603     const struct GNUNET_PeerIdentity *peer);
604
605 /**
606  * We want to cancel ATS suggesting addresses for a peer.
607  *
608  * @param sh handle
609  * @param peer identity of the peer
610  */
611 void
612 GNUNET_ATS_suggest_address_cancel (struct GNUNET_ATS_SchedulingHandle *sh,
613     const struct GNUNET_PeerIdentity *peer);
614
615 /**
616  * Convert a ATS property to a string
617  *
618  * @param type the atsi type
619  * @return a string or NULL if invalid
620  */
621 const char *
622 GNUNET_ATS_print_property_type (uint32_t type);
623
624 /**
625  * Convert a GNUNET_ATS_NetworkType to a string
626  *
627  * @param net the network type
628  * @return a string or NULL if invalid
629  */
630 const char *
631 GNUNET_ATS_print_network_type (uint32_t net);
632
633 /**
634  * Returns where the address is located: LAN or WAN or ...
635  * @param sh the GNUNET_ATS_SchedulingHandle handle
636  * @param addr address
637  * @param addrlen address length
638  * @return location as GNUNET_ATS_Information
639  */
640 struct GNUNET_ATS_Information
641 GNUNET_ATS_address_get_type (struct GNUNET_ATS_SchedulingHandle *sh,
642     const struct sockaddr * addr, socklen_t addrlen);
643
644 /**
645  * Test if a address and a session is known to ATS
646  *
647  * @param sh the scheduling handle
648  * @param address the address
649  * @param session the session
650  * @return GNUNET_YES or GNUNET_NO
651  */
652 int
653 GNUNET_ATS_session_known (struct GNUNET_ATS_SchedulingHandle *sh,
654     const struct GNUNET_HELLO_Address *address, struct Session *session);
655
656 /**
657  * We have a new address ATS should know. Addresses have to be added with this
658  * function before they can be: updated, set in use and destroyed
659  *
660  * @param sh handle
661  * @param address the address
662  * @param session session handle (if available)
663  * @param ats performance data for the address
664  * @param ats_count number of performance records in 'ats'
665  */
666 int
667 GNUNET_ATS_address_add (struct GNUNET_ATS_SchedulingHandle *sh,
668     const struct GNUNET_HELLO_Address *address, struct Session *session,
669     const struct GNUNET_ATS_Information *ats, uint32_t ats_count);
670
671 /**
672  * We have updated performance statistics for a given address.  Note
673  * that this function can be called for addresses that are currently
674  * in use as well as addresses that are valid but not actively in use.
675  * Furthermore, the peer may not even be connected to us right now (in
676  * which case the call may be ignored or the information may be stored
677  * for later use).  Update bandwidth assignments.
678  *
679  * @param sh handle
680  * @param address updated address
681  * @param session session handle (if available)
682  * @param ats performance data for the address
683  * @param ats_count number of performance records in 'ats'
684  * @return GNUNET_OK or GNUNET_SYSERR
685  */
686 int
687 GNUNET_ATS_address_update (struct GNUNET_ATS_SchedulingHandle *sh,
688     const struct GNUNET_HELLO_Address *address, struct Session *session,
689     const struct GNUNET_ATS_Information *ats, uint32_t ats_count);
690
691 /**
692  * An address is now in use or not used any more.
693  *
694  * @param sh handle
695  * @param address the address
696  * @param session session handle
697  * @param in_use GNUNET_YES if this address is now used, GNUNET_NO
698  * if address is not used any more
699  */
700 void
701 GNUNET_ATS_address_in_use (struct GNUNET_ATS_SchedulingHandle *sh,
702     const struct GNUNET_HELLO_Address *address, struct Session *session,
703     int in_use);
704
705 /**
706  * A session got destroyed, stop including it as a valid address.
707  *
708  * @param sh handle
709  * @param address the address
710  * @param session session handle that is no longer valid (if available)
711  */
712 void
713 GNUNET_ATS_address_destroyed (struct GNUNET_ATS_SchedulingHandle *sh,
714     const struct GNUNET_HELLO_Address *address, struct Session *session);
715
716 /* ******************************** Performance API ***************************** */
717
718 /**
719  * ATS Handle to obtain and/or modify performance information.
720  */
721 struct GNUNET_ATS_PerformanceHandle;
722
723 /**
724  * Signature of a function that is called with QoS information about an address.
725  *
726  * @param cls closure
727  * @param address the address
728  * @param address_active is this address actively used to maintain a connection
729  *                              to a peer
730  * @param bandwidth_out assigned outbound bandwidth for the connection
731  * @param bandwidth_in assigned inbound bandwidth for the connection
732  * @param ats performance data for the address (as far as known)
733  * @param ats_count number of performance records in 'ats'
734  */
735 typedef void
736 (*GNUNET_ATS_AddressInformationCallback) (void *cls,
737     const struct GNUNET_HELLO_Address *address, int address_active,
738     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
739     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
740     const struct GNUNET_ATS_Information *ats, uint32_t ats_count);
741
742 /**
743  * Handle for an address listing operation
744  */
745 struct GNUNET_ATS_AddressListHandle;
746
747 /**
748  * Get handle to access performance API of the ATS subsystem.
749  *
750  * @param cfg configuration to use
751  * @param addr_info_cb callback called when performance characteristics for
752  *      an address change
753  * @param addr_info_cb_cls closure for infocb
754  * @return ats performance context
755  */
756 struct GNUNET_ATS_PerformanceHandle *
757 GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
758     GNUNET_ATS_AddressInformationCallback addr_info_cb, void *addr_info_cb_cls);
759
760 /**
761  * Get information about addresses known to the ATS subsystem.
762  *
763  * @param handle the performance handle to use
764  * @param peer peer idm can be NULL for all peers
765  * @param all GNUNET_YES to get information about all addresses or GNUNET_NO to
766  *        get only address currently used
767  * @param infocb callback to call with the addresses,
768  *        will callback with address == NULL when done
769  * @param infocb_cls closure for infocb
770  * @return ats performance context
771  */
772 struct GNUNET_ATS_AddressListHandle *
773 GNUNET_ATS_performance_list_addresses (
774     struct GNUNET_ATS_PerformanceHandle *handle,
775     const struct GNUNET_PeerIdentity *peer, int all,
776     GNUNET_ATS_AddressInformationCallback infocb, void *infocb_cls);
777
778 /**
779  * Cancel a pending address listing operation
780  *
781  * @param handle the GNUNET_ATS_AddressListHandle handle to cancel
782  */
783 void
784 GNUNET_ATS_performance_list_addresses_cancel (
785     struct GNUNET_ATS_AddressListHandle *handle);
786
787 /**
788  * Client is done using the ATS performance subsystem, release resources.
789  *
790  * @param ph handle
791  */
792 void
793 GNUNET_ATS_performance_done (struct GNUNET_ATS_PerformanceHandle *ph);
794
795 /**
796  * Function called with reservation result.
797  *
798  * @param cls closure
799  * @param peer identifies the peer
800  * @param amount set to the amount that was actually reserved or unreserved;
801  *               either the full requested amount or zero (no partial reservations)
802  * @param res_delay if the reservation could not be satisfied (amount was 0), how
803  *        long should the client wait until re-trying?
804  */
805 typedef void
806 (*GNUNET_ATS_ReservationCallback) (void *cls,
807     const struct GNUNET_PeerIdentity * peer, int32_t amount,
808     struct GNUNET_TIME_Relative res_delay);
809
810 /**
811  * Context that can be used to cancel a peer information request.
812  */
813 struct GNUNET_ATS_ReservationContext;
814
815 /**
816  * Reserve inbound bandwidth from the given peer.  ATS will look at
817  * the current amount of traffic we receive from the peer and ensure
818  * that the peer could add 'amount' of data to its stream.
819  *
820  * @param ph performance handle
821  * @param peer identifies the peer
822  * @param amount reserve N bytes for receiving, negative
823  *                amounts can be used to undo a (recent) reservation;
824  * @param rcb function to call with the resulting reservation information
825  * @param rcb_cls closure for info
826  * @return NULL on error
827  * @deprecated will be replaced soon
828  */
829 struct GNUNET_ATS_ReservationContext *
830 GNUNET_ATS_reserve_bandwidth (struct GNUNET_ATS_PerformanceHandle *ph,
831     const struct GNUNET_PeerIdentity *peer, int32_t amount,
832     GNUNET_ATS_ReservationCallback rcb, void *rcb_cls);
833
834 /**
835  * Cancel request for reserving bandwidth.
836  *
837  * @param rc context returned by the original GNUNET_ATS_reserve_bandwidth call
838  */
839 void
840 GNUNET_ATS_reserve_bandwidth_cancel (struct GNUNET_ATS_ReservationContext *rc);
841
842 /**
843  * Number of preference types supported by ATS
844  */
845 #define GNUNET_ATS_PreferenceCount 3
846
847 /**
848  * ATS preference types as array initializer
849  */
850 #define GNUNET_ATS_PreferenceType {GNUNET_ATS_PREFERENCE_END, GNUNET_ATS_PREFERENCE_BANDWIDTH, GNUNET_ATS_PREFERENCE_LATENCY}
851
852 /**
853  * ATS preference types as string array initializer
854  */
855 #define GNUNET_ATS_PreferenceTypeString {"END", "BANDWIDTH", "LATENCY"}
856
857 /**
858  * Enum defining all known preference categories.
859  */
860 enum GNUNET_ATS_PreferenceKind
861 {
862
863   /**
864    * End of preference list.
865    */
866   GNUNET_ATS_PREFERENCE_END = 0,
867
868   /**
869    * Change the peer's bandwidth value (value per byte of bandwidth in
870    * the goal function) to the given amount.  The argument is followed
871    * by a double value giving the desired value (can be negative).
872    * Preference changes are forgotten if peers disconnect.
873    */
874   GNUNET_ATS_PREFERENCE_BANDWIDTH,
875
876   /**
877    * Change the peer's latency value to the given amount.  The
878    * argument is followed by a double value giving the desired value
879    * (can be negative).  The absolute score in the goal function is
880    * the inverse of the latency in microseconds (minimum: 1
881    * microsecond) multiplied by the latency preferences.
882    */
883   GNUNET_ATS_PREFERENCE_LATENCY
884 };
885
886 /**
887  * Convert a GNUNET_ATS_PreferenceType to a string
888  *
889  * @param type the preference type
890  * @return a string or NULL if invalid
891  */
892 const char *
893 GNUNET_ATS_print_preference_type (uint32_t type);
894
895 /**
896  * Change preferences for the given peer. Preference changes are forgotten if peers
897  * disconnect.
898  *
899  * @param ph performance handle
900  * @param peer identifies the peer
901  * @param ... 0-terminated specification of the desired changes
902  */
903 void
904 GNUNET_ATS_performance_change_preference (
905     struct GNUNET_ATS_PerformanceHandle *ph,
906     const struct GNUNET_PeerIdentity *peer, ...);
907
908 /**
909  * Application feedback on how good preference requirements are fulfilled
910  * for the preferences included in the given time scope [now - scope .. now]
911  *
912  * An application notifies ATS if (and only if) it has feedback information
913  * for specific properties. This values are valid until the feedback scores are
914  * updated by the application.
915  *
916  * If the application has no feedback for this preference kind the application
917  * will not explicitly call for this property and will not include it in this
918  * function call.
919  *
920  * @param ph performance handle
921  * @param scope the time interval this valid for: [now - scope .. now]
922  * @param peer identifies the peer
923  * @param ... 0-terminated specification of the desired changes
924  */
925 void
926 GNUNET_ATS_performance_give_feedback (struct GNUNET_ATS_PerformanceHandle *ph,
927     const struct GNUNET_PeerIdentity *peer,
928     const struct GNUNET_TIME_Relative scope, ...);
929
930 #endif
931 /* end of file gnunet-service-transport_ats.h */