- added benchmarking for updates
[oweals/gnunet.git] / src / ats / ats_api_performance.c
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 ats/ats_api_performance.c
22  * @brief automatic transport selection and outbound bandwidth determination
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25   */
26 #include "platform.h"
27 #include "gnunet_ats_service.h"
28 #include "ats.h"
29
30
31 /**
32  * Message in linked list we should send to the ATS service.  The
33  * actual binary message follows this struct.
34  */
35 struct PendingMessage
36 {
37
38   /**
39    * Kept in a DLL.
40    */
41   struct PendingMessage *next;
42
43   /**
44    * Kept in a DLL.
45    */
46   struct PendingMessage *prev;
47
48   /**
49    * Size of the message.
50    */
51   size_t size;
52
53   /**
54    * Is this the 'ATS_START' message?
55    */
56   int is_init;
57 };
58
59
60 /**
61  * Linked list of pending reservations.
62  */
63 struct GNUNET_ATS_ReservationContext
64 {
65
66   /**
67    * Kept in a DLL.
68    */
69   struct GNUNET_ATS_ReservationContext *next;
70
71   /**
72    * Kept in a DLL.
73    */
74   struct GNUNET_ATS_ReservationContext *prev;
75
76   /**
77    * Target peer.
78    */
79   struct GNUNET_PeerIdentity peer;
80
81   /**
82    * Desired reservation
83    */
84   int32_t size;
85
86   /**
87    * Function to call on result.
88    */
89   GNUNET_ATS_ReservationCallback rcb;
90
91   /**
92    * Closure for 'rcb'
93    */
94   void *rcb_cls;
95
96   /**
97    * Do we need to undo this reservation if it succeeded?  Set to
98    * GNUNET_YES if a reservation is cancelled.  (at that point, 'info'
99    * is also set to NULL; however, info will ALSO be NULL for the
100    * reservation context that is created to undo the original request,
101    * so 'info' being NULL cannot be used to check if undo is
102    * required).
103    */
104   int undo;
105 };
106
107
108 /**
109  * ATS Handle to obtain and/or modify performance information.
110  */
111 struct GNUNET_ATS_PerformanceHandle
112 {
113
114   /**
115    * Our configuration.
116    */
117   const struct GNUNET_CONFIGURATION_Handle *cfg;
118
119   /**
120    * Callback to invoke on performance changes.
121    */
122   GNUNET_ATS_PeerInformationCallback infocb;
123
124   /**
125    * Closure for 'infocb'.
126    */
127   void *infocb_cls;
128
129   /**
130    * Connection to ATS service.
131    */
132   struct GNUNET_CLIENT_Connection *client;
133
134   /**
135    * Head of list of messages for the ATS service.
136    */
137   struct PendingMessage *pending_head;
138
139   /**
140    * Tail of list of messages for the ATS service
141    */
142   struct PendingMessage *pending_tail;
143
144   /**
145    * Head of linked list of pending reservation requests.
146    */
147   struct GNUNET_ATS_ReservationContext *reservation_head;
148
149   /**
150    * Tail of linked list of pending reservation requests.
151    */
152   struct GNUNET_ATS_ReservationContext *reservation_tail;
153
154   /**
155    * Current request for transmission to ATS.
156    */
157   struct GNUNET_CLIENT_TransmitHandle *th;
158
159   /**
160    * Task to trigger reconnect.
161    */
162   GNUNET_SCHEDULER_TaskIdentifier task;
163
164 };
165
166
167 /**
168  * Re-establish the connection to the ATS service.
169  *
170  * @param ph handle to use to re-connect.
171  */
172 static void
173 reconnect (struct GNUNET_ATS_PerformanceHandle *ph);
174
175
176 /**
177  * Re-establish the connection to the ATS service.
178  *
179  * @param cls handle to use to re-connect.
180  * @param tc scheduler context
181  */
182 static void
183 reconnect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
184 {
185   struct GNUNET_ATS_PerformanceHandle *ph = cls;
186
187   ph->task = GNUNET_SCHEDULER_NO_TASK;
188   reconnect (ph);
189 }
190
191
192 /**
193  * Transmit messages from the message queue to the service
194  * (if there are any, and if we are not already trying).
195  *
196  * @param ph handle to use
197  */
198 static void
199 do_transmit (struct GNUNET_ATS_PerformanceHandle *ph);
200
201
202 /**
203  * We can now transmit a message to ATS. Do it.
204  *
205  * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
206  * @param size number of bytes we can transmit to ATS
207  * @param buf where to copy the messages
208  * @return number of bytes copied into buf
209  */
210 static size_t
211 transmit_message_to_ats (void *cls, size_t size, void *buf)
212 {
213   struct GNUNET_ATS_PerformanceHandle *ph = cls;
214   struct PendingMessage *p;
215   size_t ret;
216   char *cbuf;
217
218   ph->th = NULL;
219   ret = 0;
220   cbuf = buf;
221   while ((NULL != (p = ph->pending_head)) && (p->size <= size))
222   {
223     memcpy (&cbuf[ret], &p[1], p->size);
224     ret += p->size;
225     size -= p->size;
226     GNUNET_CONTAINER_DLL_remove (ph->pending_head, ph->pending_tail, p);
227     GNUNET_free (p);
228   }
229   do_transmit (ph);
230   return ret;
231 }
232
233
234 /**
235  * Transmit messages from the message queue to the service
236  * (if there are any, and if we are not already trying).
237  *
238  * @param ph handle to use
239  */
240 static void
241 do_transmit (struct GNUNET_ATS_PerformanceHandle *ph)
242 {
243   struct PendingMessage *p;
244
245   if (NULL != ph->th)
246     return;
247   if (NULL == (p = ph->pending_head))
248     return;
249   if (NULL == ph->client)
250     return;                     /* currently reconnecting */
251   ph->th =
252       GNUNET_CLIENT_notify_transmit_ready (ph->client, p->size,
253                                            GNUNET_TIME_UNIT_FOREVER_REL,
254                                            GNUNET_YES, &transmit_message_to_ats,
255                                            ph);
256 }
257
258
259 /**
260  * We received a peer information message.  Validate and process it.
261  *
262  * @param ph our context with the callback
263  * @param msg the message
264  * @return GNUNET_OK if the message was well-formed
265  */
266 static int
267 process_pi_message (struct GNUNET_ATS_PerformanceHandle *ph,
268                     const struct GNUNET_MessageHeader *msg)
269 {
270   const struct PeerInformationMessage *pi;
271   const struct GNUNET_ATS_Information *atsi;
272   const char *plugin_address;
273   const char *plugin_name;
274   struct GNUNET_HELLO_Address address;
275   uint16_t plugin_address_length;
276   uint16_t plugin_name_length;
277   uint32_t ats_count;
278
279   if (ph->infocb == NULL)
280   {
281     GNUNET_break (0);
282     return GNUNET_SYSERR;
283   }
284   if (ntohs (msg->size) < sizeof (struct PeerInformationMessage))
285   {
286     GNUNET_break (0);
287     return GNUNET_SYSERR;
288   }
289   pi = (const struct PeerInformationMessage *) msg;
290   ats_count = ntohl (pi->ats_count);
291   plugin_address_length = ntohs (pi->address_length);
292   plugin_name_length = ntohs (pi->plugin_name_length);
293   atsi = (const struct GNUNET_ATS_Information *) &pi[1];
294   plugin_address = (const char *) &atsi[ats_count];
295   plugin_name = &plugin_address[plugin_address_length];
296   if ((plugin_address_length + plugin_name_length +
297        ats_count * sizeof (struct GNUNET_ATS_Information) +
298        sizeof (struct PeerInformationMessage) != ntohs (msg->size)) ||
299       (ats_count >
300        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_ATS_Information))
301       || (plugin_name[plugin_name_length - 1] != '\0'))
302   {
303     GNUNET_break (0);
304     return GNUNET_SYSERR;
305   }
306   address.peer = pi->peer;
307   address.address = plugin_address;
308   address.address_length = plugin_address_length;
309   address.transport_name = plugin_name;
310   ph->infocb (ph->infocb_cls, &address, pi->bandwidth_out, pi->bandwidth_in,
311               atsi, ats_count);
312   return GNUNET_OK;
313 }
314
315
316 /**
317  * We received a reservation result message.  Validate and process it.
318  *
319  * @param ph our context with the callback
320  * @param msg the message
321  * @return GNUNET_OK if the message was well-formed
322  */
323 static int
324 process_rr_message (struct GNUNET_ATS_PerformanceHandle *ph,
325                     const struct GNUNET_MessageHeader *msg)
326 {
327   const struct ReservationResultMessage *rr;
328   struct GNUNET_ATS_ReservationContext *rc;
329   int32_t amount;
330
331   if (ntohs (msg->size) < sizeof (struct ReservationResultMessage))
332   {
333     GNUNET_break (0);
334     return GNUNET_SYSERR;
335   }
336   rr = (const struct ReservationResultMessage *) msg;
337   amount = ntohl (rr->amount);
338   rc = ph->reservation_head;
339   if (0 != memcmp (&rr->peer, &rc->peer, sizeof (struct GNUNET_PeerIdentity)))
340   {
341     GNUNET_break (0);
342     return GNUNET_SYSERR;
343   }
344   GNUNET_CONTAINER_DLL_remove (ph->reservation_head, ph->reservation_tail, rc);
345   if ((amount == 0) || (rc->rcb != NULL))
346   {
347     /* tell client if not cancelled */
348     if (rc->rcb != NULL)
349       rc->rcb (rc->rcb_cls, &rr->peer, amount,
350                GNUNET_TIME_relative_ntoh (rr->res_delay));
351     GNUNET_free (rc);
352     return GNUNET_OK;
353   }
354   /* amount non-zero, but client cancelled, consider undo! */
355   if (GNUNET_YES != rc->undo)
356   {
357     GNUNET_free (rc);
358     return GNUNET_OK;           /* do not try to undo failed undos or negative amounts */
359   }
360   GNUNET_free (rc);
361   (void) GNUNET_ATS_reserve_bandwidth (ph, &rr->peer, -amount, NULL, NULL);
362   return GNUNET_OK;
363 }
364
365
366 /**
367  * Type of a function to call when we receive a message
368  * from the service.
369  *
370  * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
371  * @param msg message received, NULL on timeout or fatal error
372  */
373 static void
374 process_ats_message (void *cls, const struct GNUNET_MessageHeader *msg)
375 {
376   struct GNUNET_ATS_PerformanceHandle *ph = cls;
377
378   if (NULL == msg)
379     goto reconnect;
380   switch (ntohs (msg->type))
381   {
382   case GNUNET_MESSAGE_TYPE_ATS_PEER_INFORMATION:
383     if (GNUNET_OK != process_pi_message (ph, msg))
384       goto reconnect;
385     break;
386   case GNUNET_MESSAGE_TYPE_ATS_RESERVATION_RESULT:
387     if (GNUNET_OK != process_rr_message (ph, msg))
388       goto reconnect;
389     break;
390   default:
391     GNUNET_break (0);
392     goto reconnect;
393   }
394   GNUNET_CLIENT_receive (ph->client, &process_ats_message, ph,
395                          GNUNET_TIME_UNIT_FOREVER_REL);
396   return;
397 reconnect:
398   GNUNET_CLIENT_disconnect (ph->client);
399   ph->client = NULL;
400   ph->task =
401       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &reconnect_task,
402                                     ph);
403 }
404
405
406 /**
407  * Re-establish the connection to the ATS service.
408  *
409  * @param ph handle to use to re-connect.
410  */
411 static void
412 reconnect (struct GNUNET_ATS_PerformanceHandle *ph)
413 {
414   struct PendingMessage *p;
415   struct ClientStartMessage *init;
416
417   GNUNET_assert (NULL == ph->client);
418   ph->client = GNUNET_CLIENT_connect ("ats", ph->cfg);
419   GNUNET_assert (NULL != ph->client);
420   GNUNET_CLIENT_receive (ph->client, &process_ats_message, ph,
421                          GNUNET_TIME_UNIT_FOREVER_REL);
422   if ((NULL == (p = ph->pending_head)) || (GNUNET_YES != p->is_init))
423   {
424     p = GNUNET_malloc (sizeof (struct PendingMessage) +
425                        sizeof (struct ClientStartMessage));
426     p->size = sizeof (struct ClientStartMessage);
427     p->is_init = GNUNET_YES;
428     init = (struct ClientStartMessage *) &p[1];
429     init->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_START);
430     init->header.size = htons (sizeof (struct ClientStartMessage));
431     init->start_flag =
432         htonl ((ph->infocb ==
433                 NULL) ? START_FLAG_PERFORMANCE_NO_PIC :
434                START_FLAG_PERFORMANCE_WITH_PIC);
435     GNUNET_CONTAINER_DLL_insert (ph->pending_head, ph->pending_tail, p);
436   }
437   do_transmit (ph);
438 }
439
440
441
442 /**
443  * Get handle to access performance API of the ATS subsystem.
444  *
445  * @param cfg configuration to use
446  * @param infocb function to call on allocation changes, can be NULL
447  * @param infocb_cls closure for infocb
448  * @return ats performance context
449  */
450 struct GNUNET_ATS_PerformanceHandle *
451 GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
452                              GNUNET_ATS_PeerInformationCallback infocb,
453                              void *infocb_cls)
454 {
455   struct GNUNET_ATS_PerformanceHandle *ph;
456
457   ph = GNUNET_malloc (sizeof (struct GNUNET_ATS_PerformanceHandle));
458   ph->cfg = cfg;
459   ph->infocb = infocb;
460   ph->infocb_cls = infocb_cls;
461   reconnect (ph);
462   return ph;
463 }
464
465
466 /**
467  * Client is done using the ATS performance subsystem, release resources.
468  *
469  * @param ph handle
470  */
471 void
472 GNUNET_ATS_performance_done (struct GNUNET_ATS_PerformanceHandle *ph)
473 {
474   struct PendingMessage *p;
475   struct GNUNET_ATS_ReservationContext *rc;
476
477   while (NULL != (p = ph->pending_head))
478   {
479     GNUNET_CONTAINER_DLL_remove (ph->pending_head, ph->pending_tail, p);
480     GNUNET_free (p);
481   }
482   while (NULL != (rc = ph->reservation_head))
483   {
484     GNUNET_CONTAINER_DLL_remove (ph->reservation_head, ph->reservation_tail,
485                                  rc);
486     GNUNET_break (NULL == rc->rcb);
487     GNUNET_free (rc);
488   }
489   if (GNUNET_SCHEDULER_NO_TASK != ph->task)
490   {
491     GNUNET_SCHEDULER_cancel (ph->task);
492     ph->task = GNUNET_SCHEDULER_NO_TASK;
493   }
494   if (NULL != ph->client)
495   {
496     GNUNET_CLIENT_disconnect (ph->client);
497     ph->client = NULL;
498   }
499   GNUNET_free (ph);
500 }
501
502
503 /**
504  * Reserve inbound bandwidth from the given peer.  ATS will look at
505  * the current amount of traffic we receive from the peer and ensure
506  * that the peer could add 'amount' of data to its stream.
507  *
508  * @param ph performance handle
509  * @param peer identifies the peer
510  * @param amount reserve N bytes for receiving, negative
511  *                amounts can be used to undo a (recent) reservation;
512  * @param rcb function to call with the resulting reservation information
513  * @param rcb_cls closure for info
514  * @return NULL on error
515  * @deprecated will be replaced soon
516  */
517 struct GNUNET_ATS_ReservationContext *
518 GNUNET_ATS_reserve_bandwidth (struct GNUNET_ATS_PerformanceHandle *ph,
519                               const struct GNUNET_PeerIdentity *peer,
520                               int32_t amount,
521                               GNUNET_ATS_ReservationCallback rcb, void *rcb_cls)
522 {
523   struct GNUNET_ATS_ReservationContext *rc;
524   struct PendingMessage *p;
525   struct ReservationRequestMessage *m;
526
527   rc = GNUNET_malloc (sizeof (struct GNUNET_ATS_ReservationContext));
528   rc->size = amount;
529   rc->peer = *peer;
530   rc->rcb = rcb;
531   rc->rcb_cls = rcb_cls;
532   if ((rcb != NULL) && (amount > 0))
533     rc->undo = GNUNET_YES;
534   GNUNET_CONTAINER_DLL_insert_tail (ph->reservation_head, ph->reservation_tail,
535                                     rc);
536
537   p = GNUNET_malloc (sizeof (struct PendingMessage) +
538                      sizeof (struct ReservationRequestMessage));
539   p->size = sizeof (struct ReservationRequestMessage);
540   p->is_init = GNUNET_NO;
541   m = (struct ReservationRequestMessage *) &p[1];
542   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_RESERVATION_REQUEST);
543   m->header.size = htons (sizeof (struct ReservationRequestMessage));
544   m->amount = htonl (amount);
545   m->peer = *peer;
546   GNUNET_CONTAINER_DLL_insert_tail (ph->pending_head, ph->pending_tail, p);
547   do_transmit (ph);
548   return rc;
549 }
550
551
552 /**
553  * Cancel request for reserving bandwidth.
554  *
555  * @param rc context returned by the original GNUNET_ATS_reserve_bandwidth call
556  */
557 void
558 GNUNET_ATS_reserve_bandwidth_cancel (struct GNUNET_ATS_ReservationContext *rc)
559 {
560   rc->rcb = NULL;
561 }
562
563
564 /**
565  * Change preferences for the given peer. Preference changes are forgotten if peers
566  * disconnect.
567  *
568  * @param ph performance handle
569  * @param peer identifies the peer
570  * @param ... 0-terminated specification of the desired changes
571  */
572 void
573 GNUNET_ATS_change_preference (struct GNUNET_ATS_PerformanceHandle *ph,
574                               const struct GNUNET_PeerIdentity *peer, ...)
575 {
576   struct PendingMessage *p;
577   struct ChangePreferenceMessage *m;
578   size_t msize;
579   uint32_t count;
580   struct PreferenceInformation *pi;
581   va_list ap;
582   enum GNUNET_ATS_PreferenceKind kind;
583
584   count = 0;
585   va_start (ap, peer);
586   while (GNUNET_ATS_PREFERENCE_END !=
587          (kind = va_arg (ap, enum GNUNET_ATS_PreferenceKind)))
588   {
589     switch (kind)
590     {
591     case GNUNET_ATS_PREFERENCE_BANDWIDTH:
592       count++;
593       (void) va_arg (ap, double);
594
595       break;
596     case GNUNET_ATS_PREFERENCE_LATENCY:
597       count++;
598       (void) va_arg (ap, double);
599
600       break;
601     default:
602       GNUNET_assert (0);
603     }
604   }
605   va_end (ap);
606   msize =
607       count * sizeof (struct PreferenceInformation) +
608       sizeof (struct ChangePreferenceMessage);
609   p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
610   p->size = msize;
611   p->is_init = GNUNET_NO;
612   m = (struct ChangePreferenceMessage *) &p[1];
613   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_PREFERENCE_CHANGE);
614   m->header.size = htons (msize);
615   m->num_preferences = htonl (count);
616   m->peer = *peer;
617   pi = (struct PreferenceInformation *) &m[1];
618   count = 0;
619   va_start (ap, peer);
620   while (GNUNET_ATS_PREFERENCE_END !=
621          (kind = va_arg (ap, enum GNUNET_ATS_PreferenceKind)))
622   {
623     pi[count].preference_kind = htonl (kind);
624     switch (kind)
625     {
626     case GNUNET_ATS_PREFERENCE_BANDWIDTH:
627       pi[count].preference_value = (float) va_arg (ap, double);
628
629       count++;
630       break;
631     case GNUNET_ATS_PREFERENCE_LATENCY:
632       pi[count].preference_value = (float) va_arg (ap, double);
633
634       count++;
635       break;
636     default:
637       GNUNET_assert (0);
638     }
639   }
640   va_end (ap);
641   GNUNET_CONTAINER_DLL_insert_tail (ph->pending_head, ph->pending_tail, p);
642   do_transmit (ph);
643 }
644
645 /* end of ats_api_performance.c */