-misc fixes
[oweals/gnunet.git] / src / transport / gnunet-service-transport_clients.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010-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 transport/gnunet-service-transport_clients.c
23  * @brief plugin management API
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet-service-transport_blacklist.h"
28 #include "gnunet-service-transport_clients.h"
29 #include "gnunet-service-transport_hello.h"
30 #include "gnunet-service-transport_neighbours.h"
31 #include "gnunet-service-transport_plugins.h"
32 #include "gnunet-service-transport_validation.h"
33 #include "gnunet-service-transport_manipulation.h"
34 #include "gnunet-service-transport.h"
35 #include "transport.h"
36
37
38 /**
39  * How many messages can we have pending for a given client process
40  * before we start to drop incoming messages?  We typically should
41  * have only one client and so this would be the primary buffer for
42   * messages, so the number should be chosen rather generously.
43  *
44  * The expectation here is that most of the time the queue is large
45  * enough so that a drop is virtually never required.  Note that
46  * this value must be about as large as 'TOTAL_MSGS' in the
47  * 'test_transport_api_reliability.c', otherwise that testcase may
48  * fail.
49  */
50 #define MAX_PENDING (128 * 1024)
51
52
53 /**
54  * Linked list of messages to be transmitted to the client.  Each
55  * entry is followed by the actual message.
56  */
57 struct ClientMessageQueueEntry
58 {
59   /**
60    * This is a doubly-linked list.
61    */
62   struct ClientMessageQueueEntry *next;
63
64   /**
65    * This is a doubly-linked list.
66    */
67   struct ClientMessageQueueEntry *prev;
68 };
69
70
71 /**
72  * Client connected to the transport service.
73  */
74 struct TransportClient
75 {
76
77   /**
78    * This is a doubly-linked list.
79    */
80   struct TransportClient *next;
81
82   /**
83    * This is a doubly-linked list.
84    */
85   struct TransportClient *prev;
86
87   /**
88    * Handle to the client.
89    */
90   struct GNUNET_SERVER_Client *client;
91
92   /**
93    * Linked list of messages yet to be transmitted to
94    * the client.
95    */
96   struct ClientMessageQueueEntry *message_queue_head;
97
98   /**
99    * Tail of linked list of messages yet to be transmitted to the
100    * client.
101    */
102   struct ClientMessageQueueEntry *message_queue_tail;
103
104   /**
105    * Current transmit request handle.
106    */
107   struct GNUNET_SERVER_TransmitHandle *th;
108
109   /**
110    * Length of the list of messages pending for this client.
111    */
112   unsigned int message_count;
113
114   /**
115    * Is this client interested in payload messages?
116    */
117   int send_payload;
118 };
119
120 /**
121  * Context for address to string operations
122  */
123 struct AddressToStringContext
124 {
125   /**
126    * This is a doubly-linked list.
127    */
128   struct AddressToStringContext *next;
129
130   /**
131    * This is a doubly-linked list.
132    */
133   struct AddressToStringContext *prev;
134
135   /**
136    * Transmission context
137    */
138   struct GNUNET_SERVER_TransmitContext* tc;
139 };
140
141 /**
142  * Client monitoring changes of active addresses of our neighbours.
143  */
144 struct MonitoringClient
145 {
146   /**
147    * This is a doubly-linked list.
148    */
149   struct MonitoringClient *next;
150
151   /**
152    * This is a doubly-linked list.
153    */
154   struct MonitoringClient *prev;
155
156   /**
157    * Handle to the client.
158    */
159   struct GNUNET_SERVER_Client *client;
160
161   /**
162    * Peer identity to monitor the addresses of.
163    * Zero to monitor all neighrours.
164    */
165   struct GNUNET_PeerIdentity peer;
166
167 };
168
169
170 /**
171  * Head of linked list of all clients to this service.
172  */
173 static struct TransportClient *clients_head;
174
175 /**
176  * Tail of linked list of all clients to this service.
177  */
178 static struct TransportClient *clients_tail;
179
180 /**
181  * Head of linked list of all pending address iterations
182  */
183 struct AddressToStringContext *a2s_head;
184
185 /**
186  * Tail of linked list of all pending address iterations
187  */
188 struct AddressToStringContext *a2s_tail;
189
190 /**
191  * Head of linked list of monitoring clients.
192  */
193 static struct MonitoringClient *peer_monitoring_clients_head;
194
195 /**
196  * Tail of linked list of monitoring clients.
197  */
198 static struct MonitoringClient *peer_monitoring_clients_tail;
199
200 /**
201  * Head of linked list of validation monitoring clients.
202  */
203 static struct MonitoringClient *val_monitoring_clients_head;
204
205 /**
206  * Tail of linked list of validation monitoring clients.
207  */
208 static struct MonitoringClient *val_monitoring_clients_tail;
209
210 /**
211  * Notification context, to send updates on changes to active addresses
212  * of our neighbours.
213  */
214 static struct GNUNET_SERVER_NotificationContext *peer_nc;
215
216 /**
217  * Notification context, to send updates on changes to active addresses
218  * of our neighbours.
219  */
220 static struct GNUNET_SERVER_NotificationContext *val_nc;
221
222 /**
223  * Find the internal handle associated with the given client handle
224  *
225  * @param client server's client handle to look up
226  * @return internal client handle
227  */
228 static struct TransportClient *
229 lookup_client (struct GNUNET_SERVER_Client *client)
230 {
231   struct TransportClient *tc;
232
233   for (tc = clients_head; NULL != tc; tc = tc->next)
234     if (tc->client == client)
235       return tc;
236   return NULL;
237 }
238
239
240 /**
241  * Create the internal handle for the given server client handle
242  *
243  * @param client server's client handle to create our internal handle for
244  * @return fresh internal client handle
245  */
246 static struct TransportClient *
247 setup_client (struct GNUNET_SERVER_Client *client)
248 {
249   struct TransportClient *tc;
250
251   GNUNET_assert (NULL == lookup_client (client));
252   tc = GNUNET_new (struct TransportClient);
253   tc->client = client;
254   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
255               "Client %p connected\n",
256               tc);
257   return tc;
258 }
259
260
261 /**
262  * Find the handle to the monitoring client associated with the given
263  * client handle
264  *
265  * @param head the head of the client queue to look in
266  * @param client server's client handle to look up
267  * @return handle to the monitoring client
268  */
269 static struct MonitoringClient *
270 lookup_monitoring_client (struct MonitoringClient *head,
271                           struct GNUNET_SERVER_Client *client)
272 {
273   struct MonitoringClient *mc;
274
275   for (mc = head; NULL != mc; mc = mc->next)
276     if (mc->client == client)
277       return mc;
278   return NULL;
279 }
280
281
282 /**
283  * Setup a new monitoring client using the given server client handle and
284  * the peer identity.
285  *
286  * @param client server's client handle to create our internal handle for
287  * @param peer identity of the peer to monitor the addresses of,
288  *             zero to monitor all neighrours.
289  * @return handle to the new monitoring client
290  */
291 static struct MonitoringClient *
292 setup_peer_monitoring_client (struct GNUNET_SERVER_Client *client,
293                               struct GNUNET_PeerIdentity *peer)
294 {
295   struct MonitoringClient *mc;
296   static struct GNUNET_PeerIdentity all_zeros;
297
298   GNUNET_assert (lookup_monitoring_client (peer_monitoring_clients_head, client) == NULL);
299   mc = GNUNET_new (struct MonitoringClient);
300   mc->client = client;
301   mc->peer = *peer;
302   GNUNET_CONTAINER_DLL_insert (peer_monitoring_clients_head, peer_monitoring_clients_tail, mc);
303   GNUNET_SERVER_notification_context_add (peer_nc, client);
304
305   if (0 != memcmp (peer, &all_zeros, sizeof (struct GNUNET_PeerIdentity)))
306     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
307                 "Client %p started monitoring of the peer `%s'\n",
308                 mc, GNUNET_i2s (peer));
309   else
310     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
311               "Client %p started monitoring all peers\n", mc);
312   return mc;
313 }
314
315
316 /**
317  * Setup a new monitoring client using the given server client handle and
318  * the peer identity.
319  *
320  * @param client server's client handle to create our internal handle for
321  * @param peer identity of the peer to monitor the addresses of,
322  *             zero to monitor all neighrours.
323  * @return handle to the new monitoring client
324  */
325 static struct MonitoringClient *
326 setup_val_monitoring_client (struct GNUNET_SERVER_Client *client,
327                              struct GNUNET_PeerIdentity *peer)
328 {
329   struct MonitoringClient *mc;
330   static struct GNUNET_PeerIdentity all_zeros;
331
332   GNUNET_assert (lookup_monitoring_client (val_monitoring_clients_head, client) == NULL);
333   mc = GNUNET_new (struct MonitoringClient);
334   mc->client = client;
335   mc->peer = *peer;
336   GNUNET_CONTAINER_DLL_insert (val_monitoring_clients_head, val_monitoring_clients_tail, mc);
337   GNUNET_SERVER_notification_context_add (val_nc, client);
338
339   if (0 != memcmp (peer, &all_zeros, sizeof (struct GNUNET_PeerIdentity)))
340     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
341                 "Client %p started monitoring of the peer `%s'\n",
342                 mc, GNUNET_i2s (peer));
343   else
344     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
345               "Client %p started monitoring all peers\n", mc);
346   return mc;
347 }
348
349
350 /**
351  * Function called to notify a client about the socket being ready to
352  * queue more data.  "buf" will be NULL and "size" zero if the socket
353  * was closed for writing in the meantime.
354  *
355  * @param cls closure
356  * @param size number of bytes available in @a buf
357  * @param buf where the callee should write the message
358  * @return number of bytes written to @a buf
359  */
360 static size_t
361 transmit_to_client_callback (void *cls,
362                              size_t size,
363                              void *buf)
364 {
365   struct TransportClient *tc = cls;
366   struct ClientMessageQueueEntry *q;
367   const struct GNUNET_MessageHeader *msg;
368   char *cbuf;
369   uint16_t msize;
370   size_t tsize;
371
372   tc->th = NULL;
373   if (NULL == buf)
374   {
375     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
376                 "Transmission to client failed, closing connection.\n");
377     return 0;
378   }
379   cbuf = buf;
380   tsize = 0;
381   while (NULL != (q = tc->message_queue_head))
382   {
383     msg = (const struct GNUNET_MessageHeader *) &q[1];
384     msize = ntohs (msg->size);
385     if (msize + tsize > size)
386       break;
387     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
388                 "Transmitting message of type %u to client %p.\n",
389                 ntohs (msg->type), tc);
390     GNUNET_CONTAINER_DLL_remove (tc->message_queue_head,
391                                  tc->message_queue_tail,
392                                  q);
393     tc->message_count--;
394     memcpy (&cbuf[tsize], msg, msize);
395     GNUNET_free (q);
396     tsize += msize;
397   }
398   if (NULL != q)
399   {
400     GNUNET_assert (msize >= sizeof (struct GNUNET_MessageHeader));
401     tc->th =
402         GNUNET_SERVER_notify_transmit_ready (tc->client, msize,
403                                              GNUNET_TIME_UNIT_FOREVER_REL,
404                                              &transmit_to_client_callback, tc);
405     GNUNET_assert (NULL != tc->th);
406   }
407   return tsize;
408 }
409
410
411 /**
412  * Queue the given message for transmission to the given client
413  *
414  * @param tc target of the message
415  * @param msg message to transmit
416  * @param may_drop #GNUNET_YES if the message can be dropped
417  */
418 static void
419 unicast (struct TransportClient *tc,
420          const struct GNUNET_MessageHeader *msg,
421          int may_drop)
422 {
423   struct ClientMessageQueueEntry *q;
424   uint16_t msize;
425
426   if (NULL == msg)
427   {
428     GNUNET_break (0);
429     return;
430   }
431
432   if ((tc->message_count >= MAX_PENDING) && (GNUNET_YES == may_drop))
433   {
434     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
435                 _("Dropping message of type %u and size %u, have %u/%u messages pending\n"),
436                 ntohs (msg->type),
437                 ntohs (msg->size),
438                 tc->message_count,
439                 MAX_PENDING);
440     GNUNET_STATISTICS_update (GST_stats,
441                               gettext_noop
442                               ("# messages dropped due to slow client"), 1,
443                               GNUNET_NO);
444     return;
445   }
446   msize = ntohs (msg->size);
447   GNUNET_assert (msize >= sizeof (struct GNUNET_MessageHeader));
448   q = GNUNET_malloc (sizeof (struct ClientMessageQueueEntry) + msize);
449   memcpy (&q[1], msg, msize);
450   GNUNET_CONTAINER_DLL_insert_tail (tc->message_queue_head,
451                                     tc->message_queue_tail, q);
452   tc->message_count++;
453   if (NULL != tc->th)
454     return;
455   tc->th =
456       GNUNET_SERVER_notify_transmit_ready (tc->client, msize,
457                                            GNUNET_TIME_UNIT_FOREVER_REL,
458                                            &transmit_to_client_callback, tc);
459   GNUNET_assert (NULL != tc->th);
460 }
461
462
463 /**
464  * Called whenever a client is disconnected.  Frees our
465  * resources associated with that client.
466  *
467  * @param cls closure
468  * @param client identification of the client
469  */
470 static void
471 client_disconnect_notification (void *cls,
472                                 struct GNUNET_SERVER_Client *client)
473 {
474   struct TransportClient *tc;
475   struct MonitoringClient *mc;
476   struct ClientMessageQueueEntry *mqe;
477
478   if (client == NULL)
479     return;
480   mc = lookup_monitoring_client (peer_monitoring_clients_head, client);
481   if (mc != NULL)
482   {
483     GNUNET_CONTAINER_DLL_remove (peer_monitoring_clients_head,
484                                  peer_monitoring_clients_tail,
485                                  mc);
486     GNUNET_free (mc);
487   }
488   mc = lookup_monitoring_client (val_monitoring_clients_head, client);
489   if (mc != NULL)
490   {
491     GNUNET_CONTAINER_DLL_remove (val_monitoring_clients_head,
492                                  val_monitoring_clients_tail,
493                                  mc);
494     GNUNET_free (mc);
495   }
496   tc = lookup_client (client);
497   if (tc == NULL)
498     return;
499   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
500               "Client %p disconnected, cleaning up.\n", tc);
501   while (NULL != (mqe = tc->message_queue_head))
502   {
503     GNUNET_CONTAINER_DLL_remove (tc->message_queue_head, tc->message_queue_tail,
504                                  mqe);
505     tc->message_count--;
506     GNUNET_free (mqe);
507   }
508   GNUNET_CONTAINER_DLL_remove (clients_head, clients_tail, tc);
509   if (tc->th != NULL)
510   {
511     GNUNET_SERVER_notify_transmit_ready_cancel (tc->th);
512     tc->th = NULL;
513   }
514   GNUNET_break (0 == tc->message_count);
515   GNUNET_free (tc);
516 }
517
518
519 /**
520  * Function called for each of our connected neighbours.  Notify the
521  * client about the existing neighbour.
522  *
523  * @param cls the `struct TransportClient *` to notify
524  * @param peer identity of the neighbour
525  * @param address the address
526  * @param state the current state of the peer
527  * @param state_timeout the time out for the state
528  * @param bandwidth_in inbound bandwidth in NBO
529  * @param bandwidth_out outbound bandwidth in NBO
530  */
531 static void
532 notify_client_about_neighbour (void *cls,
533                                const struct GNUNET_PeerIdentity *peer,
534                                const struct GNUNET_HELLO_Address *address,
535                                enum GNUNET_TRANSPORT_PeerState state,
536                                struct GNUNET_TIME_Absolute state_timeout,
537                                struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
538                                struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
539 {
540   struct TransportClient *tc = cls;
541   struct ConnectInfoMessage *cim;
542   size_t size = sizeof (struct ConnectInfoMessage);
543   char buf[size] GNUNET_ALIGN;
544
545   if (GNUNET_NO == GST_neighbours_test_connected (peer))
546     return;
547
548   GNUNET_assert (size < GNUNET_SERVER_MAX_MESSAGE_SIZE);
549   cim = (struct ConnectInfoMessage *) buf;
550   cim->header.size = htons (size);
551   cim->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
552   cim->id = *peer;
553   cim->quota_in = bandwidth_in;
554   cim->quota_out = bandwidth_out;
555   unicast (tc, &cim->header, GNUNET_NO);
556 }
557
558
559 /**
560  * Initialize a normal client.  We got a start message from this
561  * client, add him to the list of clients for broadcasting of inbound
562  * messages.
563  *
564  * @param cls unused
565  * @param client the client
566  * @param message the start message that was sent
567  */
568 static void
569 clients_handle_start (void *cls,
570                       struct GNUNET_SERVER_Client *client,
571                       const struct GNUNET_MessageHeader *message)
572 {
573   const struct StartMessage *start;
574   struct TransportClient *tc;
575   uint32_t options;
576
577   tc = lookup_client (client);
578
579   GNUNET_log (GNUNET_ERROR_TYPE_INFO | GNUNET_ERROR_TYPE_BULK,
580               "Client %p sent START\n", tc);
581   if (tc != NULL)
582   {
583     /* got 'start' twice from the same client, not allowed */
584     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
585                 "TransportClient %p ServerClient %p sent multiple START messages\n",
586                 tc, tc->client);
587     GNUNET_break (0);
588     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
589     return;
590   }
591   start = (const struct StartMessage *) message;
592   options = ntohl (start->options);
593   if ((0 != (1 & options)) &&
594       (0 !=
595        memcmp (&start->self, &GST_my_identity,
596                sizeof (struct GNUNET_PeerIdentity))))
597   {
598     /* client thinks this is a different peer, reject */
599     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
600                 _
601                 ("Rejecting control connection from peer `%s', which is not me!\n"),
602                 GNUNET_i2s (&start->self));
603     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
604     return;
605   }
606   tc = setup_client (client);
607   tc->send_payload = (0 != (2 & options));
608   unicast (tc, GST_hello_get (), GNUNET_NO);
609   GST_neighbours_iterate (&notify_client_about_neighbour, tc);
610   GNUNET_CONTAINER_DLL_insert (clients_head, clients_tail, tc);
611   GNUNET_SERVER_receive_done (client, GNUNET_OK);
612 }
613
614
615 /**
616  * Client sent us a HELLO.  Process the request.
617  *
618  * @param cls unused
619  * @param client the client
620  * @param message the HELLO message
621  */
622 static void
623 clients_handle_hello (void *cls, struct GNUNET_SERVER_Client *client,
624                       const struct GNUNET_MessageHeader *message)
625 {
626   GST_validation_handle_hello (message);
627   GNUNET_SERVER_receive_done (client, GNUNET_OK);
628 }
629
630
631 /**
632  * Closure for 'handle_send_transmit_continuation'
633  */
634 struct SendTransmitContinuationContext
635 {
636   /**
637    * Client that made the request.
638    */
639   struct GNUNET_SERVER_Client *client;
640
641   /**
642    * Peer that was the target.
643    */
644   struct GNUNET_PeerIdentity target;
645 };
646
647
648 /**
649  * Function called after the transmission is done.  Notify the client that it is
650  * OK to send the next message.
651  *
652  * @param cls closure
653  * @param success #GNUNET_OK on success, #GNUNET_NO on failure, #GNUNET_SYSERR if we're not connected
654  * @param bytes_payload bytes payload sent
655  * @param bytes_on_wire bytes sent on wire
656  */
657 static void
658 handle_send_transmit_continuation (void *cls, int success,
659                                    size_t bytes_payload,
660                                    size_t bytes_on_wire)
661 {
662   struct SendTransmitContinuationContext *stcc = cls;
663   struct SendOkMessage send_ok_msg;
664
665   if (GNUNET_OK == success)
666     GST_neighbours_notify_payload_sent (&stcc->target, bytes_payload);
667
668   send_ok_msg.header.size = htons (sizeof (send_ok_msg));
669   send_ok_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_SEND_OK);
670   send_ok_msg.bytes_msg = htonl (bytes_payload);
671   send_ok_msg.bytes_physical = htonl (bytes_on_wire);
672   send_ok_msg.success = htonl (success);
673   send_ok_msg.latency =
674       GNUNET_TIME_relative_hton (GNUNET_TIME_UNIT_FOREVER_REL);
675   send_ok_msg.peer = stcc->target;
676   GST_clients_unicast (stcc->client, &send_ok_msg.header, GNUNET_NO);
677   GNUNET_SERVER_client_drop (stcc->client);
678   GNUNET_free (stcc);
679 }
680
681
682 /**
683  * Client asked for transmission to a peer.  Process the request.
684  *
685  * @param cls unused
686  * @param client the client
687  * @param message the send message that was sent
688  */
689 static void
690 clients_handle_send (void *cls,
691                      struct GNUNET_SERVER_Client *client,
692                      const struct GNUNET_MessageHeader *message)
693 {
694   const struct OutboundMessage *obm;
695   const struct GNUNET_MessageHeader *obmm;
696   struct SendTransmitContinuationContext *stcc;
697   uint16_t size;
698   uint16_t msize;
699   struct TransportClient *tc;
700
701   tc = lookup_client (client);
702   if (NULL == tc)
703   {
704     /* client asked for transmission before 'START' */
705     GNUNET_break (0);
706     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
707     return;
708   }
709
710   size = ntohs (message->size);
711   if (size <
712       sizeof (struct OutboundMessage) + sizeof (struct GNUNET_MessageHeader))
713   {
714     GNUNET_break (0);
715     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
716     return;
717   }
718   obm = (const struct OutboundMessage *) message;
719   obmm = (const struct GNUNET_MessageHeader *) &obm[1];
720   msize = size - sizeof (struct OutboundMessage);
721   if (msize < sizeof (struct GNUNET_MessageHeader))
722   {
723     GNUNET_break (0);
724     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
725     return;
726   }
727
728   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
729               "Received `%s' request from client with target `%4s' and first message of type %u and total size %u\n",
730               "SEND",
731               GNUNET_i2s (&obm->peer),
732               ntohs (obmm->type),
733               msize);
734   if (GNUNET_NO == GST_neighbours_test_connected (&obm->peer))
735   {
736     /* not connected, not allowed to send; can happen due to asynchronous operations */
737     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
738                 "Could not send message to peer `%s': not connected\n",
739                 GNUNET_i2s (&obm->peer));
740     GNUNET_STATISTICS_update (GST_stats,
741                               gettext_noop
742                               ("# bytes payload dropped (other peer was not connected)"),
743                               msize, GNUNET_NO);
744     GNUNET_SERVER_receive_done (client, GNUNET_OK);
745     return;
746   }
747   GNUNET_SERVER_receive_done (client, GNUNET_OK);
748   stcc = GNUNET_new (struct SendTransmitContinuationContext);
749   stcc->target = obm->peer;
750   stcc->client = client;
751   GNUNET_SERVER_client_keep (client);
752   GST_manipulation_send (&obm->peer, obmm, msize,
753                        GNUNET_TIME_relative_ntoh (obm->timeout),
754                        &handle_send_transmit_continuation, stcc);
755 }
756
757
758 /**
759  * Try to initiate a connection to the given peer if the blacklist
760  * allowed it.
761  *
762  * @param cls closure (unused, NULL)
763  * @param peer identity of peer that was tested
764  * @param result #GNUNET_OK if the connection is allowed,
765  *               #GNUNET_NO if not
766  */
767 static void
768 try_connect_if_allowed (void *cls,
769                         const struct GNUNET_PeerIdentity *peer,
770                         int result)
771 {
772   if (GNUNET_OK != result)
773   {
774     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
775                 _("Blacklist refuses connection attempt to peer `%s'\n"),
776                 GNUNET_i2s (peer));
777     return;                     /* not allowed */
778   }
779
780   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
781               _("Blacklist allows connection attempt to peer `%s'\n"),
782               GNUNET_i2s (peer));
783
784   GST_neighbours_try_connect (peer);
785 }
786
787
788 /**
789  * Handle request connect message
790  *
791  * @param cls closure (always NULL)
792  * @param client identification of the client
793  * @param message the actual message
794  */
795 static void
796 clients_handle_request_connect (void *cls,
797                                 struct GNUNET_SERVER_Client *client,
798                                 const struct GNUNET_MessageHeader *message)
799 {
800   const struct TransportRequestConnectMessage *trcm =
801       (const struct TransportRequestConnectMessage *) message;
802
803   if (GNUNET_YES == ntohl (trcm->connect))
804   {
805     GNUNET_STATISTICS_update (GST_stats,
806                               gettext_noop
807                               ("# REQUEST CONNECT messages received"), 1,
808                               GNUNET_NO);
809
810     if (0 == memcmp (&trcm->peer, &GST_my_identity,
811                   sizeof (struct GNUNET_PeerIdentity)))
812     {
813       GNUNET_break_op (0);
814       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
815                   "Received a request connect message myself `%s'\n",
816                   GNUNET_i2s (&trcm->peer));
817     }
818     else
819     {
820       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
821                   _("Received a request connect message for peer `%s'\n"),
822                   GNUNET_i2s (&trcm->peer));
823
824       (void) GST_blacklist_test_allowed (&trcm->peer, NULL, &try_connect_if_allowed,
825                                        NULL);
826     }
827   }
828   else if (GNUNET_NO == ntohl (trcm->connect))
829   {
830     GNUNET_STATISTICS_update (GST_stats,
831                               gettext_noop
832                               ("# REQUEST DISCONNECT messages received"), 1,
833                               GNUNET_NO);
834
835     if (0 == memcmp (&trcm->peer, &GST_my_identity,
836                   sizeof (struct GNUNET_PeerIdentity)))
837     {
838       GNUNET_break_op (0);
839       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
840                   "Received a request disconnect message myself `%s'\n",
841                   GNUNET_i2s (&trcm->peer));
842     }
843     else
844     {
845       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
846                   _("Received a request disconnect message for peer `%s'\n"),
847                   GNUNET_i2s (&trcm->peer));
848       (void) GST_neighbours_force_disconnect (&trcm->peer);
849     }
850   }
851   else
852   {
853     GNUNET_break_op (0);
854     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
855     return;
856   }
857   GNUNET_SERVER_receive_done (client, GNUNET_OK);
858 }
859
860
861 /**
862  * Take the given address and append it to the set of results sent back to
863  * the client.  This function may be called serveral times for a single
864  * conversion.   The last invocation will be with a @a address of
865  * NULL and a @a res of #GNUNET_OK.  Thus, to indicate conversion
866  * errors, the callback might be called first with @a address NULL and
867  * @a res being #GNUNET_SYSERR.  In that case, there will still be a
868  * subsequent call later with @a address NULL and @a res #GNUNET_OK.
869  *
870  * @param cls the transmission context used (`struct GNUNET_SERVER_TransmitContext *`)
871  * @param buf text to transmit (contains the human-readable address, or NULL)
872  * @param res #GNUNET_OK if conversion was successful, #GNUNET_SYSERR on error,
873  *            never #GNUNET_NO
874  */
875 static void
876 transmit_address_to_client (void *cls,
877                             const char *buf,
878                             int res)
879 {
880   struct AddressToStringContext *actx = cls;
881   struct AddressToStringResultMessage *atsm;
882   size_t len;
883   size_t slen;
884
885   fprintf (stderr,
886            "TATC: %p: %p/%d\n",
887            actx,
888            buf,
889            res);
890   GNUNET_assert ( (GNUNET_OK == res) ||
891                   (GNUNET_SYSERR == res) );
892   if (NULL == buf)
893   {
894     len = sizeof (struct AddressToStringResultMessage);
895     atsm = GNUNET_malloc (len);
896     atsm->header.size = ntohs (len);
897     atsm->header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
898     if (GNUNET_OK == res)
899     {
900       /* this was the last call, transmit */
901       atsm->res = htonl (GNUNET_OK);
902       atsm->addr_len = htonl (0);
903       GNUNET_SERVER_transmit_context_append_message (actx->tc,
904                                                      (const struct GNUNET_MessageHeader *) atsm);
905       GNUNET_SERVER_transmit_context_run (actx->tc,
906                                           GNUNET_TIME_UNIT_FOREVER_REL);
907       GNUNET_CONTAINER_DLL_remove (a2s_head,
908                                    a2s_tail,
909                                    actx);
910       GNUNET_free (actx);
911       return;
912     }
913     if (GNUNET_SYSERR == res)
914     {
915       /* address conversion failed, but there will be more callbacks */
916       atsm->res = htonl (GNUNET_SYSERR);
917       atsm->addr_len = htonl (0);
918       GNUNET_SERVER_transmit_context_append_message (actx->tc,
919                                                      (const struct GNUNET_MessageHeader *) atsm);
920       GNUNET_free (atsm);
921       return;
922     }
923   }
924   GNUNET_assert (GNUNET_OK == res);
925   /* succesful conversion, append*/
926   slen = strlen (buf) + 1;
927   len = sizeof (struct AddressToStringResultMessage) + slen;
928   atsm = GNUNET_malloc (len);
929   atsm->header.size = ntohs (len);
930   atsm->header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
931   atsm->res = htonl (GNUNET_YES);
932   atsm->addr_len = htonl (slen);
933   memcpy (&atsm[1],
934           buf,
935           slen);
936   GNUNET_SERVER_transmit_context_append_message (actx->tc,
937                                                  (const struct GNUNET_MessageHeader *) atsm);
938   GNUNET_free (atsm);
939 }
940
941
942 /**
943  * Client asked to resolve an address.  Process the request.
944  *
945  * @param cls unused
946  * @param client the client
947  * @param message the resolution request
948  */
949 static void
950 clients_handle_address_to_string (void *cls,
951                                   struct GNUNET_SERVER_Client *client,
952                                   const struct GNUNET_MessageHeader *message)
953 {
954   const struct AddressLookupMessage *alum;
955   struct GNUNET_TRANSPORT_PluginFunctions *papi;
956   const char *plugin_name;
957   const char *address;
958   uint32_t address_len;
959   uint16_t size;
960   struct GNUNET_SERVER_TransmitContext *tc;
961   struct AddressToStringContext *actx;
962   struct AddressToStringResultMessage atsm;
963   struct GNUNET_TIME_Relative rtimeout;
964   int32_t numeric;
965
966   size = ntohs (message->size);
967   if (size < sizeof (struct AddressLookupMessage))
968   {
969     GNUNET_break (0);
970     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
971     return;
972   }
973   alum = (const struct AddressLookupMessage *) message;
974   address_len = ntohs (alum->addrlen);
975   if (size <= sizeof (struct AddressLookupMessage) + address_len)
976   {
977     GNUNET_break (0);
978     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
979     return;
980   }
981   address = (const char *) &alum[1];
982   plugin_name = (const char *) &address[address_len];
983   if ('\0' != plugin_name[size - sizeof (struct AddressLookupMessage) - address_len - 1])
984   {
985     GNUNET_break (0);
986     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
987     return;
988   }
989   rtimeout = GNUNET_TIME_relative_ntoh (alum->timeout);
990   numeric = ntohs (alum->numeric_only);
991   tc = GNUNET_SERVER_transmit_context_create (client);
992   papi = GST_plugins_printer_find (plugin_name);
993   if (NULL == papi)
994   {
995     fprintf (stderr,
996              "DEAD: %s\n",
997              plugin_name);
998     atsm.header.size = ntohs (sizeof (struct AddressToStringResultMessage));
999     atsm.header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
1000     atsm.res = htonl (GNUNET_SYSERR);
1001     atsm.addr_len = htonl (0);
1002     GNUNET_SERVER_transmit_context_append_message (tc,
1003                                                    &atsm.header);
1004     atsm.header.size = ntohs (sizeof (struct AddressToStringResultMessage));
1005     atsm.header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
1006     atsm.res = htonl (GNUNET_OK);
1007     atsm.addr_len = htonl (0);
1008     GNUNET_SERVER_transmit_context_append_message (tc,
1009                                                    &atsm.header);
1010     GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
1011     return;
1012   }
1013   actx = GNUNET_new (struct AddressToStringContext);
1014   fprintf (stderr,
1015            "AAAA: %p - %s\n",
1016            actx,
1017            plugin_name);
1018
1019   actx->tc = tc;
1020   GNUNET_CONTAINER_DLL_insert (a2s_head, a2s_tail, actx);
1021   GNUNET_SERVER_disable_receive_done_warning (client);
1022   papi->address_pretty_printer (papi->cls,
1023                                 plugin_name,
1024                                 address, address_len,
1025                                 numeric,
1026                                 rtimeout,
1027                                 &transmit_address_to_client,
1028                                 actx);
1029 }
1030
1031
1032 /**
1033  * Compose #PeerIterateResponseMessage using the given peer and address.
1034  *
1035  * @param peer identity of the peer
1036  * @param address the address, NULL on disconnect
1037  * @return composed message
1038  */
1039 static struct PeerIterateResponseMessage *
1040 compose_address_iterate_response_message (const struct GNUNET_PeerIdentity *peer,
1041                                           const struct GNUNET_HELLO_Address *address)
1042 {
1043   struct PeerIterateResponseMessage *msg;
1044   size_t size;
1045   size_t tlen;
1046   size_t alen;
1047   char *addr;
1048
1049   GNUNET_assert (NULL != peer);
1050   if (NULL != address)
1051   {
1052     tlen = strlen (address->transport_name) + 1;
1053     alen = address->address_length;
1054   }
1055   else
1056     tlen = alen = 0;
1057   size = (sizeof (struct PeerIterateResponseMessage) + alen + tlen);
1058   msg = GNUNET_malloc (size);
1059   msg->header.size = htons (size);
1060   msg->header.type =
1061       htons (GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_RESPONSE);
1062   msg->reserved = htonl (0);
1063   msg->peer = *peer;
1064   msg->addrlen = htonl (alen);
1065   msg->pluginlen = htonl (tlen);
1066
1067   if (NULL != address)
1068   {
1069     msg->local_address_info = htonl((uint32_t) address->local_info);
1070     addr = (char *) &msg[1];
1071     memcpy (addr, address->address, alen);
1072     memcpy (&addr[alen], address->transport_name, tlen);
1073   }
1074   return msg;
1075 }
1076
1077 /**
1078  * Compose #PeerIterateResponseMessage using the given peer and address.
1079  *
1080  * @param peer identity of the peer
1081  * @param address the address, NULL on disconnect
1082  * @return composed message
1083  */
1084 static struct ValidationIterateResponseMessage *
1085 compose_validation_iterate_response_message (const struct GNUNET_PeerIdentity *peer,
1086                                           const struct GNUNET_HELLO_Address *address)
1087 {
1088   struct ValidationIterateResponseMessage *msg;
1089   size_t size;
1090   size_t tlen;
1091   size_t alen;
1092   char *addr;
1093
1094   GNUNET_assert (NULL != peer);
1095   if (NULL != address)
1096   {
1097     tlen = strlen (address->transport_name) + 1;
1098     alen = address->address_length;
1099   }
1100   else
1101     tlen = alen = 0;
1102   size = (sizeof (struct ValidationIterateResponseMessage) + alen + tlen);
1103   msg = GNUNET_malloc (size);
1104   msg->header.size = htons (size);
1105   msg->header.type =
1106       htons (GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE);
1107   msg->reserved = htonl (0);
1108   msg->peer = *peer;
1109   msg->addrlen = htonl (alen);
1110   msg->pluginlen = htonl (tlen);
1111
1112   if (NULL != address)
1113   {
1114     msg->local_address_info = htonl((uint32_t) address->local_info);
1115     addr = (char *) &msg[1];
1116     memcpy (addr, address->address, alen);
1117     memcpy (&addr[alen], address->transport_name, tlen);
1118   }
1119   return msg;
1120 }
1121
1122 struct IterationContext
1123 {
1124   struct GNUNET_SERVER_TransmitContext *tc;
1125
1126   struct GNUNET_PeerIdentity id;
1127
1128   int all;
1129 };
1130
1131 /**
1132  * Output information of validation entries to the given client.
1133  *
1134  * @param cls the 'struct IterationContext'
1135  * @param peer identity of the neighbour
1136  * @param address the address
1137  * @param last_validation point in time when last validation was performed
1138  * @param valid_until point in time how long address is valid
1139  * @param next_validation point in time when next validation will be performed
1140  * @param state state of validation notification
1141  */
1142 static void
1143 send_validation_information (void *cls,
1144     const struct GNUNET_PeerIdentity *peer,
1145     const struct GNUNET_HELLO_Address *address,
1146     struct GNUNET_TIME_Absolute last_validation,
1147     struct GNUNET_TIME_Absolute valid_until,
1148     struct GNUNET_TIME_Absolute next_validation,
1149     enum GNUNET_TRANSPORT_ValidationState state)
1150 {
1151   struct IterationContext *pc = cls;
1152   struct ValidationIterateResponseMessage *msg;
1153
1154   if ( (GNUNET_YES == pc->all) ||
1155        (0 == memcmp (peer, &pc->id, sizeof (pc->id))) )
1156   {
1157     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1158         "Sending information about for validation entry for peer `%s' using address `%s'\n",
1159         GNUNET_i2s(peer), (address != NULL) ? GST_plugins_a2s (address) : "<none>");
1160     msg = compose_validation_iterate_response_message (peer, address);
1161     msg->last_validation = GNUNET_TIME_absolute_hton(last_validation);
1162     msg->valid_until = GNUNET_TIME_absolute_hton(valid_until);
1163     msg->next_validation = GNUNET_TIME_absolute_hton(next_validation);
1164     msg->state = htonl ((uint32_t) state);
1165     GNUNET_SERVER_transmit_context_append_message (pc->tc, &msg->header);
1166     GNUNET_free (msg);
1167   }
1168 }
1169
1170
1171 /**
1172  * Output information of neighbours to the given client.
1173  *
1174  * @param cls the 'struct PeerIterationContext'
1175  * @param peer identity of the neighbour
1176  * @param address the address
1177  * @param state current state this peer is in
1178  * @param state_timeout timeout for the current state of the peer
1179  * @param bandwidth_in inbound quota in NBO
1180  * @param bandwidth_out outbound quota in NBO
1181  */
1182 static void
1183 send_peer_information (void *cls,
1184     const struct GNUNET_PeerIdentity *peer,
1185     const struct GNUNET_HELLO_Address *address,
1186     enum GNUNET_TRANSPORT_PeerState state,
1187     struct GNUNET_TIME_Absolute state_timeout,
1188     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
1189     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
1190 {
1191   struct IterationContext *pc = cls;
1192   struct PeerIterateResponseMessage *msg;
1193
1194   if ( (GNUNET_YES == pc->all) ||
1195        (0 == memcmp (peer, &pc->id, sizeof (pc->id))) )
1196   {
1197     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1198         "Sending information about `%s' using address `%s' in state `%s'\n",
1199         GNUNET_i2s(peer),
1200         (address != NULL) ? GST_plugins_a2s (address) : "<none>",
1201         GNUNET_TRANSPORT_ps2s (state));
1202     msg = compose_address_iterate_response_message (peer, address);
1203     msg->state = htonl (state);
1204     msg->state_timeout = GNUNET_TIME_absolute_hton(state_timeout);
1205     GNUNET_SERVER_transmit_context_append_message (pc->tc, &msg->header);
1206     GNUNET_free (msg);
1207   }
1208 }
1209
1210
1211
1212 /**
1213  * Client asked to obtain information about a specific or all peers
1214  * Process the request.
1215  *
1216  * @param cls unused
1217  * @param client the client
1218  * @param message the peer address information request
1219  */
1220 static void
1221 clients_handle_monitor_peers (void *cls, struct GNUNET_SERVER_Client *client,
1222                                 const struct GNUNET_MessageHeader *message)
1223 {
1224   static struct GNUNET_PeerIdentity all_zeros;
1225   struct GNUNET_SERVER_TransmitContext *tc;
1226   struct PeerMonitorMessage *msg;
1227   struct IterationContext pc;
1228
1229   if (ntohs (message->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_REQUEST)
1230   {
1231     GNUNET_break (0);
1232     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1233     return;
1234   }
1235   if (ntohs (message->size) != sizeof (struct PeerMonitorMessage))
1236   {
1237     GNUNET_break (0);
1238     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1239     return;
1240   }
1241   msg = (struct PeerMonitorMessage *) message;
1242   if ( (GNUNET_YES != ntohl (msg->one_shot)) &&
1243        (NULL != lookup_monitoring_client (peer_monitoring_clients_head, client)) )
1244   {
1245     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
1246                 "ServerClient %p tried to start monitoring twice\n",
1247                 client);
1248     GNUNET_break (0);
1249     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1250     return;
1251   }
1252   GNUNET_SERVER_disable_receive_done_warning (client);
1253   pc.tc = tc = GNUNET_SERVER_transmit_context_create (client);
1254
1255   /* Send initial list */
1256   if (0 == memcmp (&msg->peer, &all_zeros, sizeof (struct GNUNET_PeerIdentity)))
1257   {
1258     /* iterate over all neighbours */
1259     pc.all = GNUNET_YES;
1260     pc.id = msg->peer;
1261   }
1262   else
1263   {
1264     /* just return one neighbour */
1265     pc.all = GNUNET_NO;
1266     pc.id = msg->peer;
1267   }
1268   GST_neighbours_iterate (&send_peer_information, &pc);
1269
1270   if (GNUNET_YES != ntohl (msg->one_shot))
1271   {
1272     setup_peer_monitoring_client (client, &msg->peer);
1273   }
1274   else
1275   {
1276     GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
1277         GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_RESPONSE);
1278   }
1279
1280   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
1281 }
1282
1283
1284 /**
1285  * Client asked to obtain information about a specific or all validation
1286  * processes
1287  *
1288  * @param cls unused
1289  * @param client the client
1290  * @param message the peer address information request
1291  */
1292 static void
1293 clients_handle_monitor_validation (void *cls, struct GNUNET_SERVER_Client *client,
1294                                 const struct GNUNET_MessageHeader *message)
1295 {
1296   static struct GNUNET_PeerIdentity all_zeros;
1297   struct GNUNET_SERVER_TransmitContext *tc;
1298   struct PeerMonitorMessage *msg;
1299   struct IterationContext pc;
1300
1301   if (ntohs (message->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST)
1302   {
1303     GNUNET_break (0);
1304     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1305     return;
1306   }
1307   if (ntohs (message->size) != sizeof (struct ValidationMonitorMessage))
1308   {
1309     GNUNET_break (0);
1310     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1311     return;
1312   }
1313   msg = (struct PeerMonitorMessage *) message;
1314   if ( (GNUNET_YES != ntohl (msg->one_shot)) &&
1315        (NULL != lookup_monitoring_client (val_monitoring_clients_head, client)) )
1316   {
1317     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
1318                 "ServerClient %p tried to start monitoring twice\n",
1319                 client);
1320     GNUNET_break (0);
1321     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1322     return;
1323   }
1324   GNUNET_SERVER_disable_receive_done_warning (client);
1325   pc.tc = tc = GNUNET_SERVER_transmit_context_create (client);
1326
1327   /* Send initial list */
1328   if (0 == memcmp (&msg->peer, &all_zeros, sizeof (struct GNUNET_PeerIdentity)))
1329   {
1330     /* iterate over all neighbours */
1331     pc.all = GNUNET_YES;
1332     pc.id = msg->peer;
1333   }
1334   else
1335   {
1336     /* just return one neighbour */
1337     pc.all = GNUNET_NO;
1338     pc.id = msg->peer;
1339   }
1340
1341   GST_validation_iterate (&send_validation_information, &pc);
1342
1343   if (GNUNET_YES != ntohl (msg->one_shot))
1344   {
1345     setup_val_monitoring_client (client, &msg->peer);
1346   }
1347   else
1348   {
1349     GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
1350         GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE);
1351   }
1352   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
1353 }
1354
1355 /**
1356  * Start handling requests from clients.
1357  *
1358  * @param server server used to accept clients from.
1359  */
1360 void
1361 GST_clients_start (struct GNUNET_SERVER_Handle *server)
1362 {
1363   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1364     {&clients_handle_start, NULL,
1365      GNUNET_MESSAGE_TYPE_TRANSPORT_START, sizeof (struct StartMessage)},
1366     {&clients_handle_hello, NULL,
1367      GNUNET_MESSAGE_TYPE_HELLO, 0},
1368     {&clients_handle_send, NULL,
1369      GNUNET_MESSAGE_TYPE_TRANSPORT_SEND, 0},
1370     {&clients_handle_request_connect, NULL,
1371      GNUNET_MESSAGE_TYPE_TRANSPORT_REQUEST_CONNECT,
1372      sizeof (struct TransportRequestConnectMessage)},
1373     {&clients_handle_address_to_string, NULL,
1374      GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING, 0},
1375     {&clients_handle_monitor_peers, NULL,
1376      GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_REQUEST,
1377      sizeof (struct PeerMonitorMessage)},
1378     {&clients_handle_monitor_validation, NULL,
1379      GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST,
1380      sizeof (struct ValidationMonitorMessage)},
1381     {&GST_blacklist_handle_init, NULL,
1382      GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_INIT,
1383      sizeof (struct GNUNET_MessageHeader)},
1384     {&GST_blacklist_handle_reply, NULL,
1385      GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_REPLY,
1386      sizeof (struct BlacklistMessage)},
1387     {&GST_manipulation_set_metric, NULL,
1388      GNUNET_MESSAGE_TYPE_TRANSPORT_TRAFFIC_METRIC, 0},
1389     {NULL, NULL, 0, 0}
1390   };
1391   peer_nc = GNUNET_SERVER_notification_context_create (server, 0);
1392   val_nc = GNUNET_SERVER_notification_context_create (server, 0);
1393   GNUNET_SERVER_add_handlers (server, handlers);
1394   GNUNET_SERVER_disconnect_notify (server, &client_disconnect_notification,
1395                                    NULL);
1396 }
1397
1398
1399 /**
1400  * Stop processing clients.
1401  */
1402 void
1403 GST_clients_stop ()
1404 {
1405   struct AddressToStringContext *cur;
1406
1407   while (NULL != (cur = a2s_head))
1408   {
1409     GNUNET_SERVER_transmit_context_destroy (cur->tc, GNUNET_NO);
1410     GNUNET_CONTAINER_DLL_remove (a2s_head, a2s_tail, cur);
1411     GNUNET_free (cur);
1412   }
1413   if (NULL != peer_nc)
1414   {
1415     GNUNET_SERVER_notification_context_destroy (peer_nc);
1416     peer_nc = NULL;
1417   }
1418   if (NULL != val_nc)
1419   {
1420     GNUNET_SERVER_notification_context_destroy (val_nc);
1421     val_nc = NULL;
1422   }
1423 }
1424
1425
1426 /**
1427  * Broadcast the given message to all of our clients.
1428  *
1429  * @param msg message to broadcast
1430  * @param may_drop #GNUNET_YES if the message can be dropped / is payload
1431  */
1432 void
1433 GST_clients_broadcast (const struct GNUNET_MessageHeader *msg, int may_drop)
1434 {
1435   struct TransportClient *tc;
1436
1437   for (tc = clients_head; NULL != tc; tc = tc->next)
1438   {
1439     if ((GNUNET_YES == may_drop) && (GNUNET_YES != tc->send_payload))
1440       continue;                 /* skip, this client does not care about payload */
1441     unicast (tc, msg, may_drop);
1442   }
1443 }
1444
1445
1446 /**
1447  * Send the given message to a particular client
1448  *
1449  * @param client target of the message
1450  * @param msg message to transmit
1451  * @param may_drop #GNUNET_YES if the message can be dropped
1452  */
1453 void
1454 GST_clients_unicast (struct GNUNET_SERVER_Client *client,
1455                      const struct GNUNET_MessageHeader *msg, int may_drop)
1456 {
1457   struct TransportClient *tc;
1458
1459   tc = lookup_client (client);
1460   if (NULL == tc)
1461     return;                     /* client got disconnected in the meantime, drop message */
1462   unicast (tc, msg, may_drop);
1463 }
1464
1465
1466 /**
1467  * Broadcast the new active address to all clients monitoring the peer.
1468  *
1469  * @param peer peer this update is about (never NULL)
1470  * @param address address, NULL on disconnect
1471  * @param state the current state of the peer
1472  * @param state_timeout the time out for the state
1473  */
1474 void
1475 GST_clients_broadcast_peer_notification (const struct GNUNET_PeerIdentity *peer,
1476     const struct GNUNET_HELLO_Address *address,
1477     enum GNUNET_TRANSPORT_PeerState state,
1478     struct GNUNET_TIME_Absolute state_timeout)
1479 {
1480   struct PeerIterateResponseMessage *msg;
1481   struct MonitoringClient *mc;
1482   static struct GNUNET_PeerIdentity all_zeros;
1483   msg = compose_address_iterate_response_message (peer, address);
1484   msg->state = htonl (state);
1485   msg->state_timeout = GNUNET_TIME_absolute_hton (state_timeout);
1486   mc = peer_monitoring_clients_head;
1487   while (mc != NULL)
1488   {
1489     if ((0 == memcmp (&mc->peer, &all_zeros,
1490                       sizeof (struct GNUNET_PeerIdentity))) ||
1491         (0 == memcmp (&mc->peer, peer,
1492                       sizeof (struct GNUNET_PeerIdentity))))
1493     {
1494       GNUNET_SERVER_notification_context_unicast (peer_nc, mc->client,
1495                                                   &msg->header, GNUNET_NO);
1496     }
1497
1498     mc = mc->next;
1499   }
1500   GNUNET_free (msg);
1501 }
1502
1503 /**
1504  * Broadcast the new validation changes to all clients monitoring the peer.
1505  *
1506  * @param peer peer this update is about (never NULL)
1507  * @param address address, NULL on disconnect
1508  * @param last_validation point in time when last validation was performed
1509  * @param valid_until point in time how long address is valid
1510  * @param next_validation point in time when next validation will be performed
1511  * @param state state of validation notification
1512  */
1513 void
1514 GST_clients_broadcast_validation_notification (
1515     const struct GNUNET_PeerIdentity *peer,
1516     const struct GNUNET_HELLO_Address *address,
1517     struct GNUNET_TIME_Absolute last_validation,
1518     struct GNUNET_TIME_Absolute valid_until,
1519     struct GNUNET_TIME_Absolute next_validation,
1520     enum GNUNET_TRANSPORT_ValidationState state)
1521 {
1522   struct ValidationIterateResponseMessage *msg;
1523   struct MonitoringClient *mc;
1524   static struct GNUNET_PeerIdentity all_zeros;
1525
1526   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1527       "Sending information about for validation entry for peer `%s' using address `%s'\n",
1528       GNUNET_i2s(peer), (address != NULL) ? GST_plugins_a2s (address) : "<none>");
1529
1530   msg = compose_validation_iterate_response_message (peer, address);
1531   msg->last_validation = GNUNET_TIME_absolute_hton(last_validation);
1532   msg->valid_until = GNUNET_TIME_absolute_hton(valid_until);
1533   msg->next_validation = GNUNET_TIME_absolute_hton(next_validation);
1534   msg->state = htonl ((uint32_t) state);
1535   mc = val_monitoring_clients_head;
1536   while (mc != NULL)
1537   {
1538     if ((0 == memcmp (&mc->peer, &all_zeros,
1539                       sizeof (struct GNUNET_PeerIdentity))) ||
1540         (0 == memcmp (&mc->peer, peer,
1541                       sizeof (struct GNUNET_PeerIdentity))))
1542     {
1543       GNUNET_SERVER_notification_context_unicast (val_nc, mc->client,
1544                                                   &msg->header, GNUNET_NO);
1545
1546     }
1547     mc = mc->next;
1548   }
1549   GNUNET_free (msg);
1550 }
1551
1552
1553 /* end of file gnunet-service-transport_clients.c */