- refactor to check messages from both enc systems
[oweals/gnunet.git] / src / ats / gnunet-service-ats_scheduling.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011-2014 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/gnunet-service-ats_scheduling.c
23  * @brief ats service, interaction with 'scheduling' API
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet-service-ats_addresses.h"
29 #include "gnunet-service-ats_scheduling.h"
30 #include "ats.h"
31
32
33 /**
34  * Context for sending messages to clients.
35  */
36 static struct GNUNET_SERVER_NotificationContext *nc;
37
38 /**
39  * Actual handle to the client.
40  */
41 static struct GNUNET_SERVER_Client *my_client;
42
43
44 /**
45  * Register a new scheduling client.
46  *
47  * @param client handle of the new client
48  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
49  */
50 int
51 GAS_scheduling_add_client (struct GNUNET_SERVER_Client *client)
52 {
53   if (NULL != my_client)
54   {
55     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
56                 "This ATS already has a scheduling client, refusing new scheduling client for now.\n");
57     return GNUNET_SYSERR;
58   }
59   my_client = client;
60   GNUNET_SERVER_notification_context_add (nc,
61                                           client);
62   GNUNET_SERVER_client_set_user_context (client,
63                                          &nc);
64   return GNUNET_OK;
65 }
66
67
68 /**
69  * Unregister a client (which may have been a scheduling client,
70  * but this is not assured).
71  *
72  * @param client handle of the (now dead) client
73  */
74 void
75 GAS_scheduling_remove_client (struct GNUNET_SERVER_Client *client)
76 {
77   if (my_client != client)
78     return;
79   GAS_addresses_destroy_all ();
80   my_client = NULL;
81 }
82
83
84 /**
85  * Transmit the given address suggestion and bandwidth update to all scheduling
86  * clients.
87  *
88  * @param peer peer for which this is an address suggestion
89  * @param session_id session ID to use for the given client
90  * @param bandwidth_out assigned outbound bandwidth
91  * @param bandwidth_in assigned inbound bandwidth
92  */
93 void
94 GAS_scheduling_transmit_address_suggestion (const struct GNUNET_PeerIdentity *peer,
95                                             uint32_t session_id,
96                                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
97                                             struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
98 {
99   struct AddressSuggestionMessage msg;
100
101   if (NULL == my_client)
102     return;
103   GNUNET_STATISTICS_update (GSA_stats,
104                             "# address suggestions made",
105                             1,
106                             GNUNET_NO);
107   msg.header.size = htons (sizeof (struct AddressSuggestionMessage));
108   msg.header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESS_SUGGESTION);
109   msg.peer = *peer;
110   msg.session_id = htonl (session_id);
111   msg.bandwidth_out = bandwidth_out;
112   msg.bandwidth_in = bandwidth_in;
113   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
114               "ATS sends quota for peer `%s': (in/out) %u/%u\n",
115               GNUNET_i2s (peer),
116               (unsigned int) ntohl (bandwidth_in.value__),
117               (unsigned int) ntohl (bandwidth_out.value__));
118   GNUNET_SERVER_notification_context_unicast (nc,
119                                               my_client,
120                                               &msg.header,
121                                               GNUNET_YES);
122 }
123
124
125 /**
126  * Handle 'address add' messages from clients.
127  *
128  * @param cls unused, NULL
129  * @param client client that sent the request
130  * @param message the request message
131  */
132 void
133 GAS_handle_address_add (void *cls,
134                         struct GNUNET_SERVER_Client *client,
135                         const struct GNUNET_MessageHeader *message)
136 {
137   const struct AddressAddMessage *m;
138   const char *address;
139   const char *plugin_name;
140   uint16_t address_length;
141   uint16_t plugin_name_length;
142   uint16_t size;
143   struct GNUNET_ATS_Properties prop;
144
145   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
146               "Received `%s' message\n",
147               "ADDRESS_ADD");
148   size = ntohs (message->size);
149   if (size < sizeof (struct AddressAddMessage))
150   {
151     GNUNET_break (0);
152     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
153     return;
154   }
155   m = (const struct AddressAddMessage *) message;
156   address_length = ntohs (m->address_length);
157   plugin_name_length = ntohs (m->plugin_name_length);
158   address = (const char *) &m[1];
159   if (plugin_name_length != 0)
160     plugin_name = &address[address_length];
161   else
162     plugin_name = "";
163
164   if ((address_length + plugin_name_length +
165        sizeof (struct AddressAddMessage) != ntohs (message->size)) ||
166        ( (plugin_name_length > 0) &&
167          (plugin_name[plugin_name_length - 1] != '\0') ) )
168   {
169     GNUNET_break (0);
170     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
171     return;
172   }
173   GNUNET_STATISTICS_update (GSA_stats,
174                             "# addresses created",
175                             1,
176                             GNUNET_NO);
177   GNUNET_ATS_properties_ntoh (&prop,
178                               &m->properties);
179   GAS_addresses_add (&m->peer,
180                      plugin_name,
181                      address,
182                      address_length,
183                      ntohl (m->address_local_info),
184                      ntohl (m->session_id),
185                      &prop);
186   GNUNET_SERVER_receive_done (client,
187                               GNUNET_OK);
188 }
189
190
191 /**
192  * Handle 'address update' messages from clients.
193  *
194  * @param cls unused, NULL
195  * @param client client that sent the request
196  * @param message the request message
197  */
198 void
199 GAS_handle_address_update (void *cls,
200                            struct GNUNET_SERVER_Client *client,
201                            const struct GNUNET_MessageHeader *message)
202 {
203   const struct AddressUpdateMessage *m;
204   struct GNUNET_ATS_Properties prop;
205
206   m = (const struct AddressUpdateMessage *) message;
207   GNUNET_STATISTICS_update (GSA_stats,
208                             "# address updates received",
209                             1,
210                             GNUNET_NO);
211   GNUNET_ATS_properties_ntoh (&prop,
212                               &m->properties);
213   GAS_addresses_update (&m->peer,
214                         ntohl (m->session_id),
215                         &prop);
216   GNUNET_SERVER_receive_done (client,
217                               GNUNET_OK);
218 }
219
220
221 /**
222  * Handle 'address destroyed' messages from clients.
223  *
224  * @param cls unused, NULL
225  * @param client client that sent the request
226  * @param message the request message
227  */
228 void
229 GAS_handle_address_destroyed (void *cls,
230                               struct GNUNET_SERVER_Client *client,
231                               const struct GNUNET_MessageHeader *message)
232 {
233   const struct AddressDestroyedMessage *m;
234   struct SessionReleaseMessage srm;
235
236   m = (const struct AddressDestroyedMessage *) message;
237   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
238               "Received `%s' message\n",
239               "ADDRESS_DESTROYED");
240   GNUNET_STATISTICS_update (GSA_stats,
241                             "# addresses destroyed",
242                             1,
243                             GNUNET_NO);
244   GAS_addresses_destroy (&m->peer,
245                          ntohl (m->session_id));
246   srm.header.type = ntohs (GNUNET_MESSAGE_TYPE_ATS_SESSION_RELEASE);
247   srm.header.size = ntohs (sizeof (struct SessionReleaseMessage));
248   srm.session_id = m->session_id;
249   srm.peer = m->peer;
250   GNUNET_SERVER_notification_context_unicast (nc,
251                                               client,
252                                               &srm.header,
253                                               GNUNET_NO);
254   GNUNET_SERVER_receive_done (client, GNUNET_OK);
255 }
256
257
258 /**
259  * Initialize scheduling subsystem.
260  *
261  * @param server handle to our server
262  * @param ah the address handle to use
263  */
264 void
265 GAS_scheduling_init (struct GNUNET_SERVER_Handle *server)
266 {
267   nc = GNUNET_SERVER_notification_context_create (server, 128);
268 }
269
270
271 /**
272  * Shutdown scheduling subsystem.
273  */
274 void
275 GAS_scheduling_done ()
276 {
277   if (NULL != my_client)
278   {
279     my_client = NULL;
280   }
281   GNUNET_SERVER_notification_context_destroy (nc);
282   nc = NULL;
283 }
284
285
286 /* end of gnunet-service-ats_scheduling.c */