cancel address suggests
[oweals/gnunet.git] / src / ats / ats_api_scheduling.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_scheduling.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  * Information we track per session.
62  */
63 struct SessionRecord
64 {
65   /**
66    * Identity of the peer (just needed for error checking).
67    */
68   struct GNUNET_PeerIdentity peer;
69
70   /**
71    * Session handle.
72    */
73   struct Session *session;
74
75   /**
76    * Set to GNUNET_YES if the slot is used.
77    */
78   int slot_used;
79 };
80
81
82 /**
83  * Handle to the ATS subsystem for bandwidth/transport scheduling information.
84  */
85 struct GNUNET_ATS_SchedulingHandle
86 {
87
88   /**
89    * Our configuration.
90    */
91   const struct GNUNET_CONFIGURATION_Handle *cfg;
92
93   /**
94    * Callback to invoke on suggestions.
95    */
96   GNUNET_ATS_AddressSuggestionCallback suggest_cb;
97
98   /**
99    * Closure for 'suggest_cb'.
100    */
101   void *suggest_cb_cls;
102
103   /**
104    * Connection to ATS service.
105    */
106   struct GNUNET_CLIENT_Connection *client;
107
108   /**
109    * Head of list of messages for the ATS service.
110    */
111   struct PendingMessage *pending_head;
112
113   /**
114    * Tail of list of messages for the ATS service
115    */
116   struct PendingMessage *pending_tail;
117
118   /**
119    * Current request for transmission to ATS.
120    */
121   struct GNUNET_CLIENT_TransmitHandle *th;
122
123   /**
124    * Array of session objects (we need to translate them to numbers and back
125    * for the protocol; the offset in the array is the session number on the
126    * network).  Index 0 is always NULL and reserved to represent the NULL pointer.
127    * Unused entries are also NULL.
128    */
129   struct SessionRecord *session_array;
130
131   /**
132    * Task to trigger reconnect.
133    */
134   GNUNET_SCHEDULER_TaskIdentifier task;
135
136   /**
137    * Size of the session array.
138    */
139   unsigned int session_array_size;
140
141   /**
142    * Should we reconnect to ATS due to some serious error?
143    */
144   int reconnect;
145 };
146
147
148 /**
149  * Re-establish the connection to the ATS service.
150  *
151  * @param sh handle to use to re-connect.
152  */
153 static void
154 reconnect (struct GNUNET_ATS_SchedulingHandle *sh);
155
156
157 /**
158  * Re-establish the connection to the ATS service.
159  *
160  * @param cls handle to use to re-connect.
161  * @param tc scheduler context
162  */
163 static void
164 reconnect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
165 {
166   struct GNUNET_ATS_SchedulingHandle *sh = cls;
167
168   sh->task = GNUNET_SCHEDULER_NO_TASK;
169   reconnect (sh);
170 }
171
172
173 /**
174  * Disconnect from ATS and then reconnect.
175  *
176  * @param sh our handle
177  */
178 static void
179 force_reconnect (struct GNUNET_ATS_SchedulingHandle *sh)
180 {
181   sh->reconnect = GNUNET_NO;
182   GNUNET_CLIENT_disconnect (sh->client, GNUNET_NO);
183   sh->client = NULL;
184   sh->task =
185       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &reconnect_task,
186                                     sh);
187 }
188
189
190 /**
191  * Transmit messages from the message queue to the service
192  * (if there are any, and if we are not already trying).
193  *
194  * @param sh handle to use
195  */
196 static void
197 do_transmit (struct GNUNET_ATS_SchedulingHandle *sh);
198
199
200 /**
201  * Type of a function to call when we receive a message
202  * from the service.
203  *
204  * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
205  * @param msg message received, NULL on timeout or fatal error
206  */
207 static void
208 process_ats_message (void *cls, const struct GNUNET_MessageHeader *msg);
209
210
211 /**
212  * We can now transmit a message to ATS. Do it.
213  *
214  * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
215  * @param size number of bytes we can transmit to ATS
216  * @param buf where to copy the messages
217  * @return number of bytes copied into buf
218  */
219 static size_t
220 transmit_message_to_ats (void *cls, size_t size, void *buf)
221 {
222   struct GNUNET_ATS_SchedulingHandle *sh = cls;
223   struct PendingMessage *p;
224   size_t ret;
225   char *cbuf;
226
227   sh->th = NULL;
228   if ((size == 0) || (buf == NULL))
229   {
230     force_reconnect (sh);
231     return 0;
232   }
233   ret = 0;
234   cbuf = buf;
235   while ((NULL != (p = sh->pending_head)) && (p->size <= size))
236   {
237     memcpy (&cbuf[ret], &p[1], p->size);
238     ret += p->size;
239     size -= p->size;
240     GNUNET_CONTAINER_DLL_remove (sh->pending_head, sh->pending_tail, p);
241     if (GNUNET_YES == p->is_init)
242       GNUNET_CLIENT_receive (sh->client, &process_ats_message, sh,
243                              GNUNET_TIME_UNIT_FOREVER_REL);
244     GNUNET_free (p);
245   }
246   do_transmit (sh);
247   return ret;
248 }
249
250
251 /**
252  * Transmit messages from the message queue to the service
253  * (if there are any, and if we are not already trying).
254  *
255  * @param sh handle to use
256  */
257 static void
258 do_transmit (struct GNUNET_ATS_SchedulingHandle *sh)
259 {
260   struct PendingMessage *p;
261
262   if (NULL != sh->th)
263     return;
264   if (NULL == (p = sh->pending_head))
265     return;
266   if (NULL == sh->client)
267     return;                     /* currently reconnecting */
268   sh->th =
269       GNUNET_CLIENT_notify_transmit_ready (sh->client, p->size,
270                                            GNUNET_TIME_UNIT_FOREVER_REL,
271                                            GNUNET_NO, &transmit_message_to_ats,
272                                            sh);
273 }
274
275
276 /**
277  * Find the session object corresponding to the given session ID.
278  *
279  * @param sh our handle
280  * @param session_id current session ID
281  * @param peer peer the session belongs to
282  * @return the session object (or NULL)
283  */
284 static struct Session *
285 find_session (struct GNUNET_ATS_SchedulingHandle *sh, uint32_t session_id,
286               const struct GNUNET_PeerIdentity *peer)
287 {
288   if (session_id >= sh->session_array_size)
289   {
290     GNUNET_break (0);
291     return NULL;
292   }
293   if (0 == session_id)
294     return NULL;
295   /* Check if this session was:
296    *  removed by remove_session (transport service)
297    *  released by release_session (ATS)
298    *  */
299   if (sh->session_array[session_id].session == NULL)
300   {
301     GNUNET_break (0 ==
302         memcmp (peer, &sh->session_array[session_id].peer,
303                 sizeof (struct GNUNET_PeerIdentity)));
304     return NULL;
305   }
306
307   if (0 !=
308       memcmp (peer, &sh->session_array[session_id].peer,
309               sizeof (struct GNUNET_PeerIdentity)))
310   {
311     GNUNET_break (0);
312     sh->reconnect = GNUNET_YES;
313     return NULL;
314   }
315   return sh->session_array[session_id].session;
316 }
317
318
319 /**
320  * Get the ID for the given session object.  If we do not have an ID for
321  * the given session object, allocate one.
322  *
323  * @param sh our handle
324  * @param session session object
325  * @param peer peer the session belongs to
326  * @return the session id
327  */
328 static uint32_t
329 get_session_id (struct GNUNET_ATS_SchedulingHandle *sh, struct Session *session,
330                 const struct GNUNET_PeerIdentity *peer)
331 {
332   unsigned int i;
333   unsigned int f;
334
335   if (NULL == session)
336     return 0;
337   f = 0;
338   for (i = 1; i < sh->session_array_size; i++)
339   {
340     if (session == sh->session_array[i].session)
341     {
342       GNUNET_assert (0 ==
343                      memcmp (peer, &sh->session_array[i].peer,
344                              sizeof (struct GNUNET_PeerIdentity)));
345       return i;
346     }
347     if ((f == 0) && (sh->session_array[i].slot_used == GNUNET_NO))
348       f = i;
349   }
350   if (f == 0)
351   {
352     f = sh->session_array_size;
353     GNUNET_array_grow (sh->session_array, sh->session_array_size,
354                        sh->session_array_size * 2);
355   }
356   GNUNET_assert (f > 0);
357   sh->session_array[f].session = session;
358   sh->session_array[f].peer = *peer;
359   sh->session_array[f].slot_used = GNUNET_YES;
360   return f;
361 }
362
363
364 /**
365  * Remove the session of the given session ID from the session
366  * table (it is no longer valid).
367  *
368  * @param sh our handle
369  * @param session_id identifies session that is no longer valid
370  * @param peer peer the session belongs to
371  */
372 static void
373 remove_session (struct GNUNET_ATS_SchedulingHandle *sh, uint32_t session_id,
374                 const struct GNUNET_PeerIdentity *peer)
375 {
376   if (0 == session_id)
377     return;
378   GNUNET_assert (session_id < sh->session_array_size);
379   GNUNET_assert (GNUNET_YES == sh->session_array[session_id].slot_used);
380   GNUNET_assert (0 ==
381                  memcmp (peer, &sh->session_array[session_id].peer,
382                          sizeof (struct GNUNET_PeerIdentity)));
383   sh->session_array[session_id].session = NULL;
384 }
385
386
387 /**
388  * Release the session slot from the session table (ATS service is
389  * also done using it).
390  *
391  * @param sh our handle
392  * @param session_id identifies session that is no longer valid
393  * @param peer peer the session belongs to
394  */
395 static void
396 release_session (struct GNUNET_ATS_SchedulingHandle *sh, uint32_t session_id,
397                  const struct GNUNET_PeerIdentity *peer)
398 {
399   if (session_id >= sh->session_array_size)
400   {
401     GNUNET_break (0);
402     sh->reconnect = GNUNET_YES;
403     return;
404   }
405
406   /* this slot should have been removed from remove_session before */
407   GNUNET_assert (sh->session_array[session_id].session == NULL);
408
409   if (0 !=
410       memcmp (peer, &sh->session_array[session_id].peer,
411               sizeof (struct GNUNET_PeerIdentity)))
412   {
413     GNUNET_break (0);
414     sh->reconnect = GNUNET_YES;
415     return;
416   }
417
418   sh->session_array[session_id].slot_used = GNUNET_NO;
419   memset (&sh->session_array[session_id].peer, 0,
420           sizeof (struct GNUNET_PeerIdentity));
421 }
422
423
424 static void
425 process_release_message (struct GNUNET_ATS_SchedulingHandle *sh,
426                          const struct SessionReleaseMessage *srm)
427 {
428   release_session (sh, ntohl (srm->session_id), &srm->peer);
429 }
430
431
432 /**
433  * Type of a function to call when we receive a message
434  * from the service.
435  *
436  * @param cls the 'struct GNUNET_ATS_SchedulingHandle'
437  * @param msg message received, NULL on timeout or fatal error
438  */
439 static void
440 process_ats_message (void *cls, const struct GNUNET_MessageHeader *msg)
441 {
442   struct GNUNET_ATS_SchedulingHandle *sh = cls;
443   const struct AddressSuggestionMessage *m;
444   const struct GNUNET_ATS_Information *atsi;
445   const char *plugin_address;
446   const char *plugin_name;
447   uint16_t plugin_address_length;
448   uint16_t plugin_name_length;
449   uint32_t ats_count;
450   struct GNUNET_HELLO_Address address;
451
452   if (NULL == msg)
453   {
454     force_reconnect (sh);
455     return;
456   }
457   if ((ntohs (msg->type) == GNUNET_MESSAGE_TYPE_ATS_SESSION_RELEASE) &&
458       (ntohs (msg->size) == sizeof (struct SessionReleaseMessage)))
459   {
460     process_release_message (sh, (const struct SessionReleaseMessage *) msg);
461     GNUNET_CLIENT_receive (sh->client, &process_ats_message, sh,
462                            GNUNET_TIME_UNIT_FOREVER_REL);
463     if (GNUNET_YES == sh->reconnect)
464       force_reconnect (sh);
465     return;
466   }
467   if ((ntohs (msg->type) != GNUNET_MESSAGE_TYPE_ATS_ADDRESS_SUGGESTION) ||
468       (ntohs (msg->size) <= sizeof (struct AddressSuggestionMessage)))
469   {
470     GNUNET_break (0);
471     force_reconnect (sh);
472     return;
473   }
474   m = (const struct AddressSuggestionMessage *) msg;
475   ats_count = ntohl (m->ats_count);
476   plugin_address_length = ntohs (m->address_length);
477   atsi = (const struct GNUNET_ATS_Information *) &m[1];
478   plugin_address = (const char *) &atsi[ats_count];
479   plugin_name = &plugin_address[plugin_address_length];
480   plugin_name_length = ntohs (m->plugin_name_length);
481   if ((plugin_address_length + plugin_name_length +
482        ats_count * sizeof (struct GNUNET_ATS_Information) +
483        sizeof (struct AddressSuggestionMessage) != ntohs (msg->size)) ||
484       (ats_count >
485        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_ATS_Information))
486       || (plugin_name[plugin_name_length - 1] != '\0'))
487   {
488     GNUNET_break (0);
489     force_reconnect (sh);
490     return;
491   }
492   uint32_t session_id =  ntohl (m->session_id);
493
494   struct Session * s = NULL;
495   if (session_id == 0)
496     s = NULL;
497   else
498   {
499     s = find_session (sh, session_id, &m->peer);
500     if (s == NULL)
501     {
502       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ATS tries to use outdated session `%s'\n", GNUNET_i2s(&m->peer));
503       //GNUNET_break (0);
504       return;
505     }
506   }
507   address.peer = m->peer;
508   address.address = plugin_address;
509   address.address_length = plugin_address_length;
510   address.transport_name = plugin_name;
511   sh->suggest_cb (sh->suggest_cb_cls, &address, s, m->bandwidth_out,
512                   m->bandwidth_in, atsi, ats_count);
513
514
515
516
517   GNUNET_CLIENT_receive (sh->client, &process_ats_message, sh,
518                          GNUNET_TIME_UNIT_FOREVER_REL);
519   if (GNUNET_YES == sh->reconnect)
520     force_reconnect (sh);
521 }
522
523
524 /**
525  * Re-establish the connection to the ATS service.
526  *
527  * @param sh handle to use to re-connect.
528  */
529 static void
530 reconnect (struct GNUNET_ATS_SchedulingHandle *sh)
531 {
532   struct PendingMessage *p;
533   struct ClientStartMessage *init;
534
535   GNUNET_assert (NULL == sh->client);
536   sh->client = GNUNET_CLIENT_connect ("ats", sh->cfg);
537   GNUNET_assert (NULL != sh->client);
538   if ((NULL == (p = sh->pending_head)) || (GNUNET_YES != p->is_init))
539   {
540     p = GNUNET_malloc (sizeof (struct PendingMessage) +
541                        sizeof (struct ClientStartMessage));
542     p->size = sizeof (struct ClientStartMessage);
543     p->is_init = GNUNET_YES;
544     init = (struct ClientStartMessage *) &p[1];
545     init->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_START);
546     init->header.size = htons (sizeof (struct ClientStartMessage));
547     init->start_flag = htonl (START_FLAG_SCHEDULING);
548     GNUNET_CONTAINER_DLL_insert (sh->pending_head, sh->pending_tail, p);
549   }
550   do_transmit (sh);
551 }
552
553
554 /**
555  * Initialize the ATS subsystem.
556  *
557  * @param cfg configuration to use
558  * @param suggest_cb notification to call whenever the suggestation changed
559  * @param suggest_cb_cls closure for 'suggest_cb'
560  * @return ats context
561  */
562 struct GNUNET_ATS_SchedulingHandle *
563 GNUNET_ATS_scheduling_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
564                             GNUNET_ATS_AddressSuggestionCallback suggest_cb,
565                             void *suggest_cb_cls)
566 {
567   struct GNUNET_ATS_SchedulingHandle *sh;
568
569   sh = GNUNET_malloc (sizeof (struct GNUNET_ATS_SchedulingHandle));
570   sh->cfg = cfg;
571   sh->suggest_cb = suggest_cb;
572   sh->suggest_cb_cls = suggest_cb_cls;
573   GNUNET_array_grow (sh->session_array, sh->session_array_size, 4);
574   reconnect (sh);
575   return sh;
576 }
577
578
579 /**
580  * Client is done with ATS scheduling, release resources.
581  *
582  * @param sh handle to release
583  */
584 void
585 GNUNET_ATS_scheduling_done (struct GNUNET_ATS_SchedulingHandle *sh)
586 {
587   struct PendingMessage *p;
588
589   while (NULL != (p = sh->pending_head))
590   {
591     GNUNET_CONTAINER_DLL_remove (sh->pending_head, sh->pending_tail, p);
592     GNUNET_free (p);
593   }
594   if (NULL != sh->client)
595   {
596     GNUNET_CLIENT_disconnect (sh->client, GNUNET_NO);
597     sh->client = NULL;
598   }
599   if (GNUNET_SCHEDULER_NO_TASK != sh->task)
600   {
601     GNUNET_SCHEDULER_cancel (sh->task);
602     sh->task = GNUNET_SCHEDULER_NO_TASK;
603   }
604   GNUNET_array_grow (sh->session_array, sh->session_array_size, 0);
605   GNUNET_free (sh);
606 }
607
608
609 /**
610  * We would like to establish a new connection with a peer.  ATS
611  * should suggest a good address to begin with.
612  *
613  * @param sh handle
614  * @param peer identity of the peer we need an address for
615  */
616 void
617 GNUNET_ATS_suggest_address (struct GNUNET_ATS_SchedulingHandle *sh,
618                             const struct GNUNET_PeerIdentity *peer)
619 {
620   struct PendingMessage *p;
621   struct RequestAddressMessage *m;
622
623   p = GNUNET_malloc (sizeof (struct PendingMessage) +
624                      sizeof (struct RequestAddressMessage));
625   p->size = sizeof (struct RequestAddressMessage);
626   p->is_init = GNUNET_NO;
627   m = (struct RequestAddressMessage *) &p[1];
628   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_REQUEST_ADDRESS);
629   m->header.size = htons (sizeof (struct RequestAddressMessage));
630   m->reserved = htonl (0);
631   m->peer = *peer;
632   GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head, sh->pending_tail, p);
633   do_transmit (sh);
634 }
635
636
637 /**
638  * We would like to stop receiving address updates for this peer
639  *
640  * @param sh handle
641  * @param peer identity of the peer
642  */
643 void
644 GNUNET_ATS_suggest_address_cancel (struct GNUNET_ATS_SchedulingHandle *sh,
645                                    const struct GNUNET_PeerIdentity *peer)
646 {
647   struct PendingMessage *p;
648   struct RequestAddressMessage *m;
649
650   p = GNUNET_malloc (sizeof (struct PendingMessage) +
651                      sizeof (struct RequestAddressMessage));
652   p->size = sizeof (struct RequestAddressMessage);
653   p->is_init = GNUNET_NO;
654   m = (struct RequestAddressMessage *) &p[1];
655   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_REQUEST_ADDRESS_CANCEL);
656   m->header.size = htons (sizeof (struct RequestAddressMessage));
657   m->reserved = htonl (0);
658   m->peer = *peer;
659   GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head, sh->pending_tail, p);
660   do_transmit (sh);
661 }
662
663 /**
664  * We have updated performance statistics for a given address.  Note
665  * that this function can be called for addresses that are currently
666  * in use as well as addresses that are valid but not actively in use.
667  * Furthermore, the peer may not even be connected to us right now (in
668  * which case the call may be ignored or the information may be stored
669  * for later use).  Update bandwidth assignments.
670  *
671  * @param sh handle
672  * @param address the address
673  * @param session session handle (if available)
674  * @param ats performance data for the address
675  * @param ats_count number of performance records in 'ats'
676  */
677 void
678 GNUNET_ATS_address_update (struct GNUNET_ATS_SchedulingHandle *sh,
679                            const struct GNUNET_HELLO_Address *address,
680                            struct Session *session,
681                            const struct GNUNET_ATS_Information *ats,
682                            uint32_t ats_count)
683 {
684   struct PendingMessage *p;
685   struct AddressUpdateMessage *m;
686   struct GNUNET_ATS_Information *am;
687   char *pm;
688   size_t namelen;
689   size_t msize;
690
691   namelen = (address->transport_name == NULL) ? 0 : strlen (address->transport_name) + 1;
692   msize =
693       sizeof (struct AddressUpdateMessage) + address->address_length +
694       ats_count * sizeof (struct GNUNET_ATS_Information) + namelen;
695   if ((msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
696       (address->address_length >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
697       (namelen >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
698       (ats_count >=
699        GNUNET_SERVER_MAX_MESSAGE_SIZE / sizeof (struct GNUNET_ATS_Information)))
700   {
701     GNUNET_break (0);
702     return;
703   }
704
705   p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
706   p->size = msize;
707   p->is_init = GNUNET_NO;
708   m = (struct AddressUpdateMessage *) &p[1];
709   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESS_UPDATE);
710   m->header.size = htons (msize);
711   m->ats_count = htonl (ats_count);
712   m->peer = address->peer;
713   m->address_length = htons (address->address_length);
714   m->plugin_name_length = htons (namelen);
715   m->session_id = htonl (get_session_id (sh, session, &address->peer));
716   am = (struct GNUNET_ATS_Information *) &m[1];
717   memcpy (am, ats, ats_count * sizeof (struct GNUNET_ATS_Information));
718   pm = (char *) &am[ats_count];
719   memcpy (pm, address->address, address->address_length);
720   memcpy (&pm[address->address_length], address->transport_name, namelen);
721   GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head, sh->pending_tail, p);
722   do_transmit (sh);
723 }
724
725
726 /**
727  * An address is now in use or not used any more.
728  *
729  * @param sh handle
730  * @param address the address
731  * @param session session handle
732  * @param in_use GNUNET_YES if this address is now used, GNUNET_NO
733  * if address is not used any more
734  */
735 void
736 GNUNET_ATS_address_in_use (struct GNUNET_ATS_SchedulingHandle *sh,
737                            const struct GNUNET_HELLO_Address *address,
738                            struct Session *session,
739                            int in_use)
740 {
741   struct PendingMessage *p;
742   struct AddressUseMessage *m;
743   char *pm;
744   size_t namelen;
745   size_t msize;
746
747   GNUNET_assert (NULL != address);
748   namelen = (address->transport_name == NULL) ? 0 : strlen (address->transport_name) + 1;
749   msize = sizeof (struct AddressUseMessage) + address->address_length + namelen;
750   if ((msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
751       (address->address_length >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
752       (namelen >= GNUNET_SERVER_MAX_MESSAGE_SIZE))
753   {
754     GNUNET_break (0);
755     return;
756   }
757
758   p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
759   p->size = msize;
760   p->is_init = GNUNET_NO;
761   m = (struct AddressUseMessage *) &p[1];
762   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESS_IN_USE);
763   m->header.size = htons (msize);
764   m->peer = address->peer;
765   m->in_use = htons (in_use);
766   m->address_length = htons (address->address_length);
767   m->plugin_name_length = htons (namelen);
768   m->session_id = htonl (get_session_id (sh, session, &address->peer));
769   pm = (char *) &m[1];
770   memcpy (pm, address->address, address->address_length);
771   memcpy (&pm[address->address_length], address->transport_name, namelen);
772   GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head, sh->pending_tail, p);
773
774   do_transmit (sh);
775 }
776
777 /**
778  * A session got destroyed, stop including it as a valid address.
779  *
780  * @param sh handle
781  * @param address the address
782  * @param session session handle that is no longer valid
783  */
784 void
785 GNUNET_ATS_address_destroyed (struct GNUNET_ATS_SchedulingHandle *sh,
786                               const struct GNUNET_HELLO_Address *address,
787                               struct Session *session)
788 {
789   struct PendingMessage *p;
790   struct AddressDestroyedMessage *m;
791   char *pm;
792   size_t namelen;
793   size_t msize;
794   uint32_t session_id;
795
796   namelen = (address->transport_name == NULL) ? 0 : strlen (address->transport_name) + 1;
797   msize = sizeof (struct AddressDestroyedMessage) + address->address_length + namelen;
798   if ((msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
799       (address->address_length >= GNUNET_SERVER_MAX_MESSAGE_SIZE) ||
800       (namelen >= GNUNET_SERVER_MAX_MESSAGE_SIZE))
801   {
802     GNUNET_break (0);
803     return;
804   }
805
806
807   p = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
808   p->size = msize;
809   p->is_init = GNUNET_NO;
810   m = (struct AddressDestroyedMessage *) &p[1];
811   m->header.type = htons (GNUNET_MESSAGE_TYPE_ATS_ADDRESS_DESTROYED);
812   m->header.size = htons (msize);
813   m->reserved = htonl (0);
814   m->peer = address->peer;
815   m->address_length = htons (address->address_length);
816   m->plugin_name_length = htons (namelen);
817   session_id = get_session_id (sh, session, &address->peer);
818   m->session_id = htonl (session_id);
819   pm = (char *) &m[1];
820   memcpy (pm, address->address, address->address_length);
821   memcpy (&pm[address->address_length], address->transport_name, namelen);
822   GNUNET_CONTAINER_DLL_insert_tail (sh->pending_head, sh->pending_tail, p);
823   do_transmit (sh);
824   remove_session (sh, session_id, &address->peer);
825 }
826
827 /* end of ats_api_scheduling.c */