dummy for address in use
[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 sh 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 sh 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 *address;
273   const char *plugin_name;
274   uint16_t address_length;
275   uint16_t plugin_name_length;
276   uint32_t ats_count;
277
278   if (ph->infocb == NULL)
279   {
280     GNUNET_break (0);
281     return GNUNET_SYSERR;
282   }
283   if (ntohs (msg->size) < sizeof (struct PeerInformationMessage))
284   {
285     GNUNET_break (0);
286     return GNUNET_SYSERR;
287   }
288   pi = (const struct PeerInformationMessage *) msg;
289   ats_count = ntohl (pi->ats_count);
290   address_length = ntohs (pi->address_length);
291   plugin_name_length = ntohs (pi->plugin_name_length);
292   atsi = (const struct GNUNET_ATS_Information *) &pi[1];
293   address = (const char *) &atsi[ats_count];
294   plugin_name = &address[address_length];
295   if ((address_length + plugin_name_length +
296        ats_count * sizeof (struct GNUNET_ATS_Information) +
297        sizeof (struct PeerInformationMessage) != ntohs (msg->size)) ||
298       (ats_count >
299        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_ATS_Information))
300       || (plugin_name[plugin_name_length - 1] != '\0'))
301   {
302     GNUNET_break (0);
303     return GNUNET_SYSERR;
304   }
305   ph->infocb (ph->infocb_cls, &pi->peer, plugin_name, address, address_length,
306               pi->bandwidth_out, pi->bandwidth_in, atsi, ats_count);
307   return GNUNET_OK;
308 }
309
310
311 /**
312  * We received a reservation result message.  Validate and process it.
313  *
314  * @param ph our context with the callback
315  * @param msg the message
316  * @return GNUNET_OK if the message was well-formed
317  */
318 static int
319 process_rr_message (struct GNUNET_ATS_PerformanceHandle *ph,
320                     const struct GNUNET_MessageHeader *msg)
321 {
322   const struct ReservationResultMessage *rr;
323   struct GNUNET_ATS_ReservationContext *rc;
324   int32_t amount;
325
326   if (ntohs (msg->size) < sizeof (struct ReservationResultMessage))
327   {
328     GNUNET_break (0);
329     return GNUNET_SYSERR;
330   }
331   rr = (const struct ReservationResultMessage *) msg;
332   amount = ntohl (rr->amount);
333   rc = ph->reservation_head;
334   if (0 != memcmp (&rr->peer, &rc->peer, sizeof (struct GNUNET_PeerIdentity)))
335   {
336     GNUNET_break (0);
337     return GNUNET_SYSERR;
338   }
339   GNUNET_CONTAINER_DLL_remove (ph->reservation_head, ph->reservation_tail, rc);
340   if ((amount == 0) || (rc->rcb != NULL))
341   {
342     /* tell client if not cancelled */
343     if (rc->rcb != NULL)
344       rc->rcb (rc->rcb_cls, &rr->peer, amount,
345                GNUNET_TIME_relative_ntoh (rr->res_delay));
346     GNUNET_free (rc);
347     return GNUNET_OK;
348   }
349   /* amount non-zero, but client cancelled, consider undo! */
350   if (GNUNET_YES != rc->undo)
351   {
352     GNUNET_free (rc);
353     return GNUNET_OK;           /* do not try to undo failed undos or negative amounts */
354   }
355   GNUNET_free (rc);
356   (void) GNUNET_ATS_reserve_bandwidth (ph, &rr->peer, -amount, NULL, NULL);
357   return GNUNET_OK;
358 }
359
360
361 /**
362  * Type of a function to call when we receive a message
363  * from the service.
364  *
365  * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
366  * @param msg message received, NULL on timeout or fatal error
367  */
368 static void
369 process_ats_message (void *cls, const struct GNUNET_MessageHeader *msg)
370 {
371   struct GNUNET_ATS_PerformanceHandle *ph = cls;
372
373   if (NULL == msg)
374     goto reconnect;
375   switch (ntohs (msg->type))
376   {
377   case GNUNET_MESSAGE_TYPE_ATS_PEER_INFORMATION:
378     if (GNUNET_OK != process_pi_message (ph, msg))
379       goto reconnect;
380     break;
381   case GNUNET_MESSAGE_TYPE_ATS_RESERVATION_RESULT:
382     if (GNUNET_OK != process_rr_message (ph, msg))
383       goto reconnect;
384     break;
385   default:
386     GNUNET_break (0);
387     goto reconnect;
388     return;
389   }
390   GNUNET_CLIENT_receive (ph->client, &process_ats_message, ph,
391                          GNUNET_TIME_UNIT_FOREVER_REL);
392   return;
393 reconnect:
394   GNUNET_CLIENT_disconnect (ph->client, GNUNET_NO);
395   ph->client = NULL;
396   ph->task =
397       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &reconnect_task,
398                                     ph);
399 }
400
401
402 /**
403  * Re-establish the connection to the ATS service.
404  *
405  * @param ph handle to use to re-connect.
406  */
407 static void
408 reconnect (struct GNUNET_ATS_PerformanceHandle *ph)
409 {
410   struct PendingMessage *p;
411   struct ClientStartMessage *init;
412
413   GNUNET_assert (NULL == ph->client);
414   ph->client = GNUNET_CLIENT_connect ("ats", ph->cfg);
415   GNUNET_assert (NULL != ph->client);
416   GNUNET_CLIENT_receive (ph->client, &process_ats_message, ph,
417                          GNUNET_TIME_UNIT_FOREVER_REL);
418   if ((NULL == (p = ph->pending_head)) || (GNUNET_YES != p->is_init))
419   {
420     p = GNUNET_malloc (sizeof (struct PendingMessage) +
421                        sizeof (struct ClientStartMessage));
422     p->size = sizeof (struct ClientStartMessage);
423     p->is_init = GNUNET_YES;
424     init = (struct ClientStartMessage *) &p[1];
425     init->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_START);
426     init->header.size = htons (sizeof (struct ClientStartMessage));
427     init->start_flag =
428         htonl ((ph->infocb ==
429                 NULL) ? START_FLAG_PERFORMANCE_NO_PIC :
430                START_FLAG_PERFORMANCE_WITH_PIC);
431     GNUNET_CONTAINER_DLL_insert (ph->pending_head, ph->pending_tail, p);
432   }
433   do_transmit (ph);
434 }
435
436
437
438 /**
439  * Get handle to access performance API of the ATS subsystem.
440  *
441  * @param cfg configuration to use
442  * @param infocb function to call on allocation changes, can be NULL
443  * @param infocb_cls closure for infocb
444  * @return ats performance context
445  */
446 struct GNUNET_ATS_PerformanceHandle *
447 GNUNET_ATS_performance_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
448                              GNUNET_ATS_PeerInformationCallback infocb,
449                              void *infocb_cls)
450 {
451   struct GNUNET_ATS_PerformanceHandle *ph;
452
453   ph = GNUNET_malloc (sizeof (struct GNUNET_ATS_PerformanceHandle));
454   ph->cfg = cfg;
455   ph->infocb = infocb;
456   ph->infocb_cls = infocb_cls;
457   reconnect (ph);
458   return ph;
459 }
460
461
462 /**
463  * Client is done using the ATS performance subsystem, release resources.
464  *
465  * @param ph handle
466  */
467 void
468 GNUNET_ATS_performance_done (struct GNUNET_ATS_PerformanceHandle *ph)
469 {
470   struct PendingMessage *p;
471   struct GNUNET_ATS_ReservationContext *rc;
472
473   while (NULL != (p = ph->pending_head))
474   {
475     GNUNET_CONTAINER_DLL_remove (ph->pending_head, ph->pending_tail, p);
476     GNUNET_free (p);
477   }
478   while (NULL != (rc = ph->reservation_head))
479   {
480     GNUNET_CONTAINER_DLL_remove (ph->reservation_head, ph->reservation_tail,
481                                  rc);
482     GNUNET_break (NULL == rc->rcb);
483     GNUNET_free (rc);
484   }
485   if (GNUNET_SCHEDULER_NO_TASK != ph->task)
486   {
487     GNUNET_SCHEDULER_cancel (ph->task);
488     ph->task = GNUNET_SCHEDULER_NO_TASK;
489   }
490   if (NULL != ph->client)
491   {
492     GNUNET_CLIENT_disconnect (ph->client, GNUNET_NO);
493     ph->client = NULL;
494   }
495   GNUNET_free (ph);
496 }
497
498
499 /**
500  * Reserve inbound bandwidth from the given peer.  ATS will look at
501  * the current amount of traffic we receive from the peer and ensure
502  * that the peer could add 'amount' of data to its stream.
503  *
504  * @param ph performance handle
505  * @param peer identifies the peer
506  * @param amount reserve N bytes for receiving, negative
507  *                amounts can be used to undo a (recent) reservation;
508  * @param rcb function to call with the resulting reservation information
509  * @param rcb_cls closure for info
510  * @return NULL on error
511  * @deprecated will be replaced soon
512  */
513 struct GNUNET_ATS_ReservationContext *
514 GNUNET_ATS_reserve_bandwidth (struct GNUNET_ATS_PerformanceHandle *ph,
515                               const struct GNUNET_PeerIdentity *peer,
516                               int32_t amount,
517                               GNUNET_ATS_ReservationCallback rcb, void *rcb_cls)
518 {
519   struct GNUNET_ATS_ReservationContext *rc;
520   struct PendingMessage *p;
521   struct ReservationRequestMessage *m;
522
523   rc = GNUNET_malloc (sizeof (struct GNUNET_ATS_ReservationContext));
524   rc->size = amount;
525   rc->peer = *peer;
526   rc->rcb = rcb;
527   rc->rcb_cls = rcb_cls;
528   if ((rcb != NULL) && (amount > 0))
529     rc->undo = GNUNET_YES;
530   GNUNET_CONTAINER_DLL_insert_tail (ph->reservation_head, ph->reservation_tail,
531                                     rc);
532
533   p = GNUNET_malloc (sizeof (struct PendingMessage) +
534                      sizeof (struct ReservationRequestMessage));
535   p->size = sizeof (struct ReservationRequestMessage);
536   p->is_init = GNUNET_NO;
537   m = (struct ReservationRequestMessage *) &p[1];
538   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_RESERVATION_REQUEST);
539   m->header.size = htons (sizeof (struct ReservationRequestMessage));
540   m->amount = htonl (amount);
541   m->peer = *peer;
542   GNUNET_CONTAINER_DLL_insert_tail (ph->pending_head, ph->pending_tail, p);
543   do_transmit (ph);
544   return rc;
545 }
546
547
548 /**
549  * Cancel request for reserving bandwidth.
550  *
551  * @param rc context returned by the original GNUNET_ATS_reserve_bandwidth call
552  */
553 void
554 GNUNET_ATS_reserve_bandwidth_cancel (struct GNUNET_ATS_ReservationContext *rc)
555 {
556   rc->rcb = NULL;
557 }
558
559
560 /**
561  * Change preferences for the given peer. Preference changes are forgotten if peers
562  * disconnect.
563  *
564  * @param ph performance handle
565  * @param peer identifies the peer
566  * @param ... 0-terminated specification of the desired changes
567  */
568 void
569 GNUNET_ATS_change_preference (struct GNUNET_ATS_PerformanceHandle *ph,
570                               const struct GNUNET_PeerIdentity *peer, ...)
571 {
572   struct PendingMessage *p;
573   struct ChangePreferenceMessage *m;
574   size_t msize;
575   uint32_t count;
576   struct PreferenceInformation *pi;
577   va_list ap;
578   enum GNUNET_ATS_PreferenceKind kind;
579
580   count = 0;
581   va_start (ap, peer);
582   while (GNUNET_ATS_PREFERENCE_END !=
583          (kind = va_arg (ap, enum GNUNET_ATS_PreferenceKind)))
584   {
585     switch (kind)
586     {
587     case GNUNET_ATS_PREFERENCE_BANDWIDTH:
588       count++;
589       (void) va_arg (ap, double);
590
591       break;
592     case GNUNET_ATS_PREFERENCE_LATENCY:
593       count++;
594       (void) va_arg (ap, double);
595
596       break;
597     default:
598       GNUNET_assert (0);
599     }
600   }
601   va_end (ap);
602   msize =
603       count * sizeof (struct PreferenceInformation) +
604       sizeof (struct ChangePreferenceMessage);
605   p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
606   p->size = msize;
607   p->is_init = GNUNET_NO;
608   m = (struct ChangePreferenceMessage *) &p[1];
609   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_PREFERENCE_CHANGE);
610   m->header.size = htons (msize);
611   m->num_preferences = htonl (count);
612   m->peer = *peer;
613   pi = (struct PreferenceInformation *) &m[1];
614   count = 0;
615   va_start (ap, peer);
616   while (GNUNET_ATS_PREFERENCE_END !=
617          (kind = va_arg (ap, enum GNUNET_ATS_PreferenceKind)))
618   {
619     pi[count].preference_kind = htonl (kind);
620     switch (kind)
621     {
622     case GNUNET_ATS_PREFERENCE_BANDWIDTH:
623       pi[count].preference_value = (float) va_arg (ap, double);
624
625       count++;
626       break;
627     case GNUNET_ATS_PREFERENCE_LATENCY:
628       pi[count].preference_value = (float) va_arg (ap, double);
629
630       count++;
631       break;
632     default:
633       GNUNET_assert (0);
634     }
635   }
636   va_end (ap);
637   GNUNET_CONTAINER_DLL_insert_tail (ph->pending_head, ph->pending_tail, p);
638   do_transmit (ph);
639 }
640
641 /* end of ats_api_performance.c */