correct and better to understand
[oweals/gnunet.git] / src / transport / transport_selection.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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 transport/transport_selection.h
23  * @brief structure definition for automatic transport selection (ATS)
24  * @author Matthias Wachs
25  */
26
27 /**
28  * Enum defining all known cost types for ATS
29  * Enum values are used in the GNUNET_ATS_Cost_Information struct as (key,value)-pair
30  * Cost are always stored in uint32_t, so all units used to define costs have to be normalized to fit in uint32_t [0 .. 4.294.967.295]
31  */
32
33 enum GNUNET_ATS_Cost_Type
34 {
35         /*
36          * Cost will be passed as struct GNUNET_ATS_Cost_Information[]
37          * array is 0-terminated:
38          * the last element in the array is the pair (GNUNET_ATS_ARRAY_TERMINATOR, 0)
39          */
40         GNUNET_ATS_ARRAY_TERMINATOR= 0,
41
42         /* Volume based cost in financial units to transmit data
43          * Note: this value is not bound to a specific currency or unit and only used locally
44          *
45          * Unit: [1/MB]
46          *
47          * Interpretation: less is better
48          *
49          * Examples:
50          * LAN: 0
51          * 2G:  10
52          */
53         GNUNET_ATS_FINANCIAL_PER_VOLUME_COST = 1,
54
55         /* Time based cost in financial units to transmit data
56          * Note: this value is not bound to a specific currency or unit
57          *
58          * Unit: [1/h]
59          *
60          * Interpretation: less is better
61          *
62          * Examples:
63          * LAN: 0
64          * Dialup: 10
65          */
66         GNUNET_ATS_FINANCIAL_PER_TIME_COST = 2,
67
68         /* Computational costs
69          * Effort of preparing data to send with this transport
70          * Includes encoding, encryption and conversion of data
71          * Partial values can be summed: c_sum = c_enc + c_conv + c_enc
72          * Resulting value depends on local system properties, e.g. CPU
73          *
74          * Unit: [ms/GB]
75          *
76          * Interpretation: less is better
77          *
78          * Examples:
79          *
80          * HTTPS with AES CBC-256:      7,382
81          * HTTPS with AES CBC-128:      5,279
82          * HTTPS with RC4-1024:         2,652
83          */
84         GNUNET_ATS_COMPUTATIONAL_COST = 3,
85
86         /* Energy consumption
87          * Energy consumption using this transport when sending with a certain power at a certain bitrate
88          * This is only an approximation based on:
89          * Energy consumption E = P / D
90          *
91          * with:
92          * Power P in Watt (J/s)
93          * Datarate D in MBit/s
94          *
95          * Conversion between power P and dBm used by WLAN in radiotap's dBm TX power:
96          *
97          * Lp(dbm) = 10 log10 (P/ 1mW)
98          *
99          * => P = 1 mW  * 10^(Lp(dbm)/10)
100          *
101          * Unit: [mJ/MB]
102          *
103          * Interpretation: less is better
104          *
105          * Examples:
106          *
107          * LAN:       0
108          * WLAN:      89 (600 mW @ 802.11g /w 54 MBit/s)
109          * Bluetooth: 267 (100 mW @ BT2.0 EDR /w 3 MBit/s)
110          */
111         GNUNET_ATS_ENERGY_CONSUMPTION = 4,
112
113         /* Connect cost
114          * How expensive is it to initiate a new connection using this transport
115          *
116          * Unit: [bytes]
117          *
118          * Interpretation: less is better
119          *
120          * Examples:
121          *
122          * UDP (No connection)      :    0 bytes
123          * TCP (TCP 3-Way handshake):  220 bytes Ethernet,  172 bytes TCP/IP,  122 bytes TCP
124          * HTTP (TCP + Header)      :  477 bytes Ethernet,  429 bytes TCP/IP,  374 bytes TCP,  278 bytes HTTP
125          * HTTPS  HTTP+TLS Handshake: 2129 bytes Ethernet, 1975 bytes TCP/IP, 1755 bytes TCP, 1403 bytes HTTPS
126          *
127          * */
128         GNUNET_ATS_CONNECT_COST = 5,
129
130         /* Bandwidth cost
131          * How many bandwidth is available to consume
132          * Used to calculate which impact sending data with this transport has
133          *
134          * Unit: [kB/s]
135          *
136          * Interpretation: more is better
137          *
138          * Examples:
139          * LAN:     12,800  (100 MBit/s)
140          * WLAN:    6,912   (54 MBit/s)
141          * Dial-up: 8       (64 Kbit/s)
142          *
143          */
144         GNUNET_ATS_BANDWITH_COST = 6,
145
146         /* Network overhead
147          * a factor used with connect cost, bandwidth cost and energy cost to describe the overhead produced by the transport protocol
148          *
149          * Unit: [10,000 - (Efficiency in Percent * 100)]
150          *
151          * Interpretation: less is better
152          *
153          * Examples:
154          *
155          * TCP/IPv4 over Ethernet: 507 (Efficiency: 94,93 %)
156          * TCP/IPv6 over Ethernet: 646 (Efficiency: 93,64 %)
157          * UDP/IPv4 over Ethernet: 429 (Efficiency: 95,71 %)
158          * UDP/IPv6 over Ethernet: 559 (Efficiency: 94,41 %)
159          */
160         GNUNET_ATS_NETWORK_OVERHEAD_COST = 7,
161 };
162
163 /**
164  * This structure will be used by plugins to communicate costs to ATS
165  * Always a pair of (GNUNET_ATS_Cost_Types, uint32_t value)
166  * Value is always uint32_t, so all units used to define costs have to be normalized to fit uint32_t
167  */
168 struct GNUNET_ATS_Cost_Information
169 {
170         /**
171          * ATS Cost Type
172          */
173         uint32_t cost_type;
174
175         /**
176          * ATS Cost value
177          */
178         uint32_t cost_value;
179 };