fixing #3657 (replace ATS_Information with struct), but WIHTOUT fixing ATS testcases yet
[oweals/gnunet.git] / src / ats / gnunet-service-ats_performance.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  * @file ats/gnunet-service-ats_performance.c
22  * @brief ats service, interaction with 'performance' API
23  * @author Matthias Wachs
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet-service-ats.h"
28 #include "gnunet-service-ats_addresses.h"
29 #include "gnunet-service-ats_performance.h"
30 #include "ats.h"
31
32
33 /**
34  * Context for sending messages to performance clients without PIC.
35  */
36 static struct GNUNET_SERVER_NotificationContext *nc_no_pic;
37
38 /**
39  * Context for sending messages to performance clients with PIC.
40  */
41 static struct GNUNET_SERVER_NotificationContext *nc_pic;
42
43
44 /**
45  * Transmit the given performance information to all performance
46  * clients.
47  *
48  * @param pc client to send to, NULL for all
49  * @param peer peer for which this is an address suggestion
50  * @param plugin_name 0-termintated string specifying the transport plugin
51  * @param plugin_addr binary address for the plugin to use
52  * @param plugin_addr_len number of bytes in plugin_addr
53  * @param active #GNUNET_YES if this address is actively used
54  *        to maintain a connection to a peer;
55  *        #GNUNET_NO if the address is not actively used;
56  *        #GNUNET_SYSERR if this address is no longer available for ATS
57  * @param prop performance data for the address
58  * @param bandwidth_out assigned outbound bandwidth
59  * @param bandwidth_in assigned inbound bandwidth
60  */
61 static void
62 notify_client (struct GNUNET_SERVER_Client *client,
63                const struct GNUNET_PeerIdentity *peer,
64                const char *plugin_name,
65                const void *plugin_addr,
66                size_t plugin_addr_len,
67                int active,
68                const struct GNUNET_ATS_Properties *prop,
69                struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
70                struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
71 {
72   struct PeerInformationMessage *msg;
73   size_t plugin_name_length = strlen (plugin_name) + 1;
74   size_t msize =
75     sizeof (struct PeerInformationMessage) +
76     plugin_addr_len +
77     plugin_name_length;
78   char buf[msize] GNUNET_ALIGN;
79   struct GNUNET_SERVER_NotificationContext *nc;
80   char *addrp;
81
82   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
83   msg = (struct PeerInformationMessage *) buf;
84   msg->header.size = htons (msize);
85   msg->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_PEER_INFORMATION);
86   msg->id = htonl (0);
87   msg->peer = *peer;
88   msg->address_length = htons (plugin_addr_len);
89   msg->address_active = ntohl ((uint32_t) active);
90   msg->plugin_name_length = htons (plugin_name_length);
91   msg->bandwidth_out = bandwidth_out;
92   msg->bandwidth_in = bandwidth_in;
93   GNUNET_ATS_properties_hton (&msg->properties,
94                               prop);
95   addrp = (char *) &msg[1];
96   memcpy (addrp, plugin_addr, plugin_addr_len);
97   strcpy (&addrp[plugin_addr_len], plugin_name);
98   if (NULL == client)
99   {
100     GNUNET_SERVER_notification_context_broadcast (nc_pic,
101                                                   &msg->header,
102                                                   GNUNET_YES);
103   }
104   else
105   {
106     nc = *GNUNET_SERVER_client_get_user_context (client,
107                                                  struct GNUNET_SERVER_NotificationContext *);
108     if (NULL == nc)
109     {
110       GNUNET_break (0);
111       return;
112     }
113     GNUNET_SERVER_notification_context_unicast (nc,
114                                                 client,
115                                                 &msg->header,
116                                                 GNUNET_YES);
117   }
118 }
119
120
121 /**
122  * Transmit the given performance information to all performance
123  * clients.
124  *
125  * @param peer peer for which this is an address suggestion
126  * @param plugin_name 0-termintated string specifying the transport plugin
127  * @param plugin_addr binary address for the plugin to use
128  * @param plugin_addr_len number of bytes in @a plugin_addr
129  * @param active #GNUNET_YES if this address is actively used
130  *        to maintain a connection to a peer;
131  *        #GNUNET_NO if the address is not actively used;
132  *        #GNUNET_SYSERR if this address is no longer available for ATS
133  * @param prop performance data for the address
134  * @param bandwidth_out assigned outbound bandwidth
135  * @param bandwidth_in assigned inbound bandwidth
136  */
137 void
138 GAS_performance_notify_all_clients (const struct GNUNET_PeerIdentity *peer,
139                                     const char *plugin_name,
140                                     const void *plugin_addr,
141                                     size_t plugin_addr_len,
142                                     int active,
143                                     const struct GNUNET_ATS_Properties *prop,
144                                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
145                                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
146 {
147   notify_client (NULL,
148                  peer,
149                  plugin_name,
150                  plugin_addr,
151                  plugin_addr_len,
152                  active,
153                  prop,
154                  bandwidth_out,
155                  bandwidth_in);
156   GNUNET_STATISTICS_update (GSA_stats,
157                             "# performance updates given to clients",
158                             1,
159                             GNUNET_NO);
160 }
161
162
163 /**
164  * Iterator for called from #GAS_addresses_get_peer_info()
165  *
166  * @param cls closure with the `struct GNUNET_SERVER_Client *` to inform.
167  * @param id the peer id
168  * @param plugin_name plugin name
169  * @param plugin_addr address
170  * @param plugin_addr_len length of @a plugin_addr
171  * @param active is address actively used
172  * @param prop performance information
173  * @param bandwidth_out current outbound bandwidth assigned to address
174  * @param bandwidth_in current inbound bandwidth assigned to address
175  */
176 static void
177 peerinfo_it (void *cls,
178              const struct GNUNET_PeerIdentity *id,
179              const char *plugin_name,
180              const void *plugin_addr,
181              size_t plugin_addr_len,
182              int active,
183              const struct GNUNET_ATS_Properties *prop,
184              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
185              struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
186 {
187   struct GNUNET_SERVER_Client *client = cls;
188
189   if (NULL == id)
190     return;
191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
192               "Callback for peer `%s' plugin `%s' BW out %u, BW in %u \n",
193               GNUNET_i2s (id),
194               plugin_name,
195               (unsigned int) ntohl (bandwidth_out.value__),
196               (unsigned int) ntohl (bandwidth_in.value__));
197   notify_client (client,
198                  id,
199                  plugin_name,
200                  plugin_addr,
201                  plugin_addr_len,
202                  active,
203                  prop,
204                  bandwidth_out,
205                  bandwidth_in);
206 }
207
208
209 /**
210  * Register a new performance client.
211  *
212  * @param client handle of the new client
213  * @param flag flag specifying the type of the client
214  */
215 void
216 GAS_performance_add_client (struct GNUNET_SERVER_Client *client,
217                             enum StartFlag flag)
218 {
219   if (START_FLAG_PERFORMANCE_WITH_PIC == flag)
220   {
221     GNUNET_SERVER_notification_context_add (nc_pic,
222                                             client);
223     GNUNET_SERVER_client_set_user_context (client,
224                                            &nc_pic);
225     GAS_addresses_get_peer_info (NULL,
226                                  &peerinfo_it,
227                                  client);
228   }
229   else
230   {
231     GNUNET_SERVER_notification_context_add (nc_no_pic,
232                                             client);
233     GNUNET_SERVER_client_set_user_context (client,
234                                            &nc_no_pic);
235   }
236 }
237
238
239 /**
240  * Initialize performance subsystem.
241  *
242  * @param server handle to our server
243  */
244 void
245 GAS_performance_init (struct GNUNET_SERVER_Handle *server)
246 {
247   nc_no_pic = GNUNET_SERVER_notification_context_create (server, 32);
248   nc_pic = GNUNET_SERVER_notification_context_create (server, 32);
249 }
250
251
252 /**
253  * Shutdown performance subsystem.
254  */
255 void
256 GAS_performance_done ()
257 {
258   GNUNET_SERVER_notification_context_destroy (nc_no_pic);
259   nc_no_pic = NULL;
260   GNUNET_SERVER_notification_context_destroy (nc_pic);
261   nc_pic = NULL;
262 }
263
264 /* end of gnunet-service-ats_performance.c */