info when refuse otherwise debug
[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_DEBUG,
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   GNUNET_assert ( (GNUNET_OK == res) ||
886                   (GNUNET_SYSERR == res) );
887   if (NULL == buf)
888   {
889     len = sizeof (struct AddressToStringResultMessage);
890     atsm = GNUNET_malloc (len);
891     atsm->header.size = ntohs (len);
892     atsm->header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
893     if (GNUNET_OK == res)
894     {
895       /* this was the last call, transmit */
896       atsm->res = htonl (GNUNET_OK);
897       atsm->addr_len = htonl (0);
898       GNUNET_SERVER_transmit_context_append_message (actx->tc,
899                                                      (const struct GNUNET_MessageHeader *) atsm);
900       GNUNET_SERVER_transmit_context_run (actx->tc,
901                                           GNUNET_TIME_UNIT_FOREVER_REL);
902       GNUNET_CONTAINER_DLL_remove (a2s_head,
903                                    a2s_tail,
904                                    actx);
905       GNUNET_free (actx);
906       return;
907     }
908     if (GNUNET_SYSERR == res)
909     {
910       /* address conversion failed, but there will be more callbacks */
911       atsm->res = htonl (GNUNET_SYSERR);
912       atsm->addr_len = htonl (0);
913       GNUNET_SERVER_transmit_context_append_message (actx->tc,
914                                                      (const struct GNUNET_MessageHeader *) atsm);
915       GNUNET_free (atsm);
916       return;
917     }
918   }
919   GNUNET_assert (GNUNET_OK == res);
920   /* succesful conversion, append*/
921   slen = strlen (buf) + 1;
922   len = sizeof (struct AddressToStringResultMessage) + slen;
923   atsm = GNUNET_malloc (len);
924   atsm->header.size = ntohs (len);
925   atsm->header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
926   atsm->res = htonl (GNUNET_YES);
927   atsm->addr_len = htonl (slen);
928   memcpy (&atsm[1],
929           buf,
930           slen);
931   GNUNET_SERVER_transmit_context_append_message (actx->tc,
932                                                  (const struct GNUNET_MessageHeader *) atsm);
933   GNUNET_free (atsm);
934 }
935
936
937 /**
938  * Client asked to resolve an address.  Process the request.
939  *
940  * @param cls unused
941  * @param client the client
942  * @param message the resolution request
943  */
944 static void
945 clients_handle_address_to_string (void *cls,
946                                   struct GNUNET_SERVER_Client *client,
947                                   const struct GNUNET_MessageHeader *message)
948 {
949   const struct AddressLookupMessage *alum;
950   struct GNUNET_TRANSPORT_PluginFunctions *papi;
951   const char *plugin_name;
952   const char *address;
953   uint32_t address_len;
954   uint16_t size;
955   struct GNUNET_SERVER_TransmitContext *tc;
956   struct AddressToStringContext *actx;
957   struct AddressToStringResultMessage atsm;
958   struct GNUNET_TIME_Relative rtimeout;
959   int32_t numeric;
960
961   size = ntohs (message->size);
962   if (size < sizeof (struct AddressLookupMessage))
963   {
964     GNUNET_break (0);
965     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
966     return;
967   }
968   alum = (const struct AddressLookupMessage *) message;
969   address_len = ntohs (alum->addrlen);
970   if (size <= sizeof (struct AddressLookupMessage) + address_len)
971   {
972     GNUNET_break (0);
973     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
974     return;
975   }
976   address = (const char *) &alum[1];
977   plugin_name = (const char *) &address[address_len];
978   if ('\0' != plugin_name[size - sizeof (struct AddressLookupMessage) - address_len - 1])
979   {
980     GNUNET_break (0);
981     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
982     return;
983   }
984   rtimeout = GNUNET_TIME_relative_ntoh (alum->timeout);
985   numeric = ntohs (alum->numeric_only);
986   tc = GNUNET_SERVER_transmit_context_create (client);
987   papi = GST_plugins_printer_find (plugin_name);
988   if (NULL == papi)
989   {
990     atsm.header.size = ntohs (sizeof (struct AddressToStringResultMessage));
991     atsm.header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
992     atsm.res = htonl (GNUNET_SYSERR);
993     atsm.addr_len = htonl (0);
994     GNUNET_SERVER_transmit_context_append_message (tc,
995                                                    &atsm.header);
996     atsm.header.size = ntohs (sizeof (struct AddressToStringResultMessage));
997     atsm.header.type = ntohs (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING_REPLY);
998     atsm.res = htonl (GNUNET_OK);
999     atsm.addr_len = htonl (0);
1000     GNUNET_SERVER_transmit_context_append_message (tc,
1001                                                    &atsm.header);
1002     GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
1003     return;
1004   }
1005   actx = GNUNET_new (struct AddressToStringContext);
1006   actx->tc = tc;
1007   GNUNET_CONTAINER_DLL_insert (a2s_head, a2s_tail, actx);
1008   GNUNET_SERVER_disable_receive_done_warning (client);
1009   papi->address_pretty_printer (papi->cls,
1010                                 plugin_name,
1011                                 address, address_len,
1012                                 numeric,
1013                                 rtimeout,
1014                                 &transmit_address_to_client,
1015                                 actx);
1016 }
1017
1018
1019 /**
1020  * Compose #PeerIterateResponseMessage using the given peer and address.
1021  *
1022  * @param peer identity of the peer
1023  * @param address the address, NULL on disconnect
1024  * @return composed message
1025  */
1026 static struct PeerIterateResponseMessage *
1027 compose_address_iterate_response_message (const struct GNUNET_PeerIdentity *peer,
1028                                           const struct GNUNET_HELLO_Address *address)
1029 {
1030   struct PeerIterateResponseMessage *msg;
1031   size_t size;
1032   size_t tlen;
1033   size_t alen;
1034   char *addr;
1035
1036   GNUNET_assert (NULL != peer);
1037   if (NULL != address)
1038   {
1039     tlen = strlen (address->transport_name) + 1;
1040     alen = address->address_length;
1041   }
1042   else
1043     tlen = alen = 0;
1044   size = (sizeof (struct PeerIterateResponseMessage) + alen + tlen);
1045   msg = GNUNET_malloc (size);
1046   msg->header.size = htons (size);
1047   msg->header.type =
1048       htons (GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_RESPONSE);
1049   msg->reserved = htonl (0);
1050   msg->peer = *peer;
1051   msg->addrlen = htonl (alen);
1052   msg->pluginlen = htonl (tlen);
1053
1054   if (NULL != address)
1055   {
1056     msg->local_address_info = htonl((uint32_t) address->local_info);
1057     addr = (char *) &msg[1];
1058     memcpy (addr, address->address, alen);
1059     memcpy (&addr[alen], address->transport_name, tlen);
1060   }
1061   return msg;
1062 }
1063
1064 /**
1065  * Compose #PeerIterateResponseMessage using the given peer and address.
1066  *
1067  * @param peer identity of the peer
1068  * @param address the address, NULL on disconnect
1069  * @return composed message
1070  */
1071 static struct ValidationIterateResponseMessage *
1072 compose_validation_iterate_response_message (const struct GNUNET_PeerIdentity *peer,
1073                                           const struct GNUNET_HELLO_Address *address)
1074 {
1075   struct ValidationIterateResponseMessage *msg;
1076   size_t size;
1077   size_t tlen;
1078   size_t alen;
1079   char *addr;
1080
1081   GNUNET_assert (NULL != peer);
1082   if (NULL != address)
1083   {
1084     tlen = strlen (address->transport_name) + 1;
1085     alen = address->address_length;
1086   }
1087   else
1088     tlen = alen = 0;
1089   size = (sizeof (struct ValidationIterateResponseMessage) + alen + tlen);
1090   msg = GNUNET_malloc (size);
1091   msg->header.size = htons (size);
1092   msg->header.type =
1093       htons (GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE);
1094   msg->reserved = htonl (0);
1095   msg->peer = *peer;
1096   msg->addrlen = htonl (alen);
1097   msg->pluginlen = htonl (tlen);
1098
1099   if (NULL != address)
1100   {
1101     msg->local_address_info = htonl((uint32_t) address->local_info);
1102     addr = (char *) &msg[1];
1103     memcpy (addr, address->address, alen);
1104     memcpy (&addr[alen], address->transport_name, tlen);
1105   }
1106   return msg;
1107 }
1108
1109 struct IterationContext
1110 {
1111   struct GNUNET_SERVER_TransmitContext *tc;
1112
1113   struct GNUNET_PeerIdentity id;
1114
1115   int all;
1116 };
1117
1118
1119 /**
1120  * Output information of validation entries to the given client.
1121  *
1122  * @param cls the `struct IterationContext *`
1123  * @param peer identity of the neighbour
1124  * @param address the address
1125  * @param last_validation point in time when last validation was performed
1126  * @param valid_until point in time how long address is valid
1127  * @param next_validation point in time when next validation will be performed
1128  * @param state state of validation notification
1129  */
1130 static void
1131 send_validation_information (void *cls,
1132                              const struct GNUNET_PeerIdentity *peer,
1133                              const struct GNUNET_HELLO_Address *address,
1134                              struct GNUNET_TIME_Absolute last_validation,
1135                              struct GNUNET_TIME_Absolute valid_until,
1136                              struct GNUNET_TIME_Absolute next_validation,
1137                              enum GNUNET_TRANSPORT_ValidationState state)
1138 {
1139   struct IterationContext *pc = cls;
1140   struct ValidationIterateResponseMessage *msg;
1141
1142   if ( (GNUNET_YES == pc->all) ||
1143        (0 == memcmp (peer, &pc->id, sizeof (pc->id))) )
1144   {
1145     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1146         "Sending information about for validation entry for peer `%s' using address `%s'\n",
1147         GNUNET_i2s(peer), (address != NULL) ? GST_plugins_a2s (address) : "<none>");
1148     msg = compose_validation_iterate_response_message (peer, address);
1149     msg->last_validation = GNUNET_TIME_absolute_hton(last_validation);
1150     msg->valid_until = GNUNET_TIME_absolute_hton(valid_until);
1151     msg->next_validation = GNUNET_TIME_absolute_hton(next_validation);
1152     msg->state = htonl ((uint32_t) state);
1153     GNUNET_SERVER_transmit_context_append_message (pc->tc, &msg->header);
1154     GNUNET_free (msg);
1155   }
1156 }
1157
1158
1159 /**
1160  * Output information of neighbours to the given client.
1161  *
1162  * @param cls the `struct PeerIterationContext *`
1163  * @param peer identity of the neighbour
1164  * @param address the address
1165  * @param state current state this peer is in
1166  * @param state_timeout timeout for the current state of the peer
1167  * @param bandwidth_in inbound quota in NBO
1168  * @param bandwidth_out outbound quota in NBO
1169  */
1170 static void
1171 send_peer_information (void *cls,
1172                        const struct GNUNET_PeerIdentity *peer,
1173                        const struct GNUNET_HELLO_Address *address,
1174                        enum GNUNET_TRANSPORT_PeerState state,
1175                        struct GNUNET_TIME_Absolute state_timeout,
1176                        struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
1177                        struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
1178 {
1179   struct IterationContext *pc = cls;
1180   struct PeerIterateResponseMessage *msg;
1181
1182   if ( (GNUNET_YES == pc->all) ||
1183        (0 == memcmp (peer, &pc->id, sizeof (pc->id))) )
1184   {
1185     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1186         "Sending information about `%s' using address `%s' in state `%s'\n",
1187         GNUNET_i2s(peer),
1188         (address != NULL) ? GST_plugins_a2s (address) : "<none>",
1189         GNUNET_TRANSPORT_ps2s (state));
1190     msg = compose_address_iterate_response_message (peer, address);
1191     msg->state = htonl (state);
1192     msg->state_timeout = GNUNET_TIME_absolute_hton(state_timeout);
1193     GNUNET_SERVER_transmit_context_append_message (pc->tc, &msg->header);
1194     GNUNET_free (msg);
1195   }
1196 }
1197
1198
1199
1200 /**
1201  * Client asked to obtain information about a specific or all peers
1202  * Process the request.
1203  *
1204  * @param cls unused
1205  * @param client the client
1206  * @param message the peer address information request
1207  */
1208 static void
1209 clients_handle_monitor_peers (void *cls, struct GNUNET_SERVER_Client *client,
1210                                 const struct GNUNET_MessageHeader *message)
1211 {
1212   static struct GNUNET_PeerIdentity all_zeros;
1213   struct GNUNET_SERVER_TransmitContext *tc;
1214   struct PeerMonitorMessage *msg;
1215   struct IterationContext pc;
1216
1217   if (ntohs (message->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_REQUEST)
1218   {
1219     GNUNET_break (0);
1220     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1221     return;
1222   }
1223   if (ntohs (message->size) != sizeof (struct PeerMonitorMessage))
1224   {
1225     GNUNET_break (0);
1226     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1227     return;
1228   }
1229   msg = (struct PeerMonitorMessage *) message;
1230   if ( (GNUNET_YES != ntohl (msg->one_shot)) &&
1231        (NULL != lookup_monitoring_client (peer_monitoring_clients_head, client)) )
1232   {
1233     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
1234                 "ServerClient %p tried to start monitoring twice\n",
1235                 client);
1236     GNUNET_break (0);
1237     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1238     return;
1239   }
1240   GNUNET_SERVER_disable_receive_done_warning (client);
1241   pc.tc = tc = GNUNET_SERVER_transmit_context_create (client);
1242
1243   /* Send initial list */
1244   if (0 == memcmp (&msg->peer, &all_zeros, sizeof (struct GNUNET_PeerIdentity)))
1245   {
1246     /* iterate over all neighbours */
1247     pc.all = GNUNET_YES;
1248     pc.id = msg->peer;
1249   }
1250   else
1251   {
1252     /* just return one neighbour */
1253     pc.all = GNUNET_NO;
1254     pc.id = msg->peer;
1255   }
1256   GST_neighbours_iterate (&send_peer_information, &pc);
1257
1258   if (GNUNET_YES != ntohl (msg->one_shot))
1259   {
1260     setup_peer_monitoring_client (client, &msg->peer);
1261   }
1262   else
1263   {
1264     GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
1265         GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_RESPONSE);
1266   }
1267
1268   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
1269 }
1270
1271
1272 /**
1273  * Client asked to obtain information about a specific or all validation
1274  * processes
1275  *
1276  * @param cls unused
1277  * @param client the client
1278  * @param message the peer address information request
1279  */
1280 static void
1281 clients_handle_monitor_validation (void *cls, struct GNUNET_SERVER_Client *client,
1282                                 const struct GNUNET_MessageHeader *message)
1283 {
1284   static struct GNUNET_PeerIdentity all_zeros;
1285   struct GNUNET_SERVER_TransmitContext *tc;
1286   struct PeerMonitorMessage *msg;
1287   struct IterationContext pc;
1288
1289   if (ntohs (message->type) != GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST)
1290   {
1291     GNUNET_break (0);
1292     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1293     return;
1294   }
1295   if (ntohs (message->size) != sizeof (struct ValidationMonitorMessage))
1296   {
1297     GNUNET_break (0);
1298     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1299     return;
1300   }
1301   msg = (struct PeerMonitorMessage *) message;
1302   if ( (GNUNET_YES != ntohl (msg->one_shot)) &&
1303        (NULL != lookup_monitoring_client (val_monitoring_clients_head, client)) )
1304   {
1305     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
1306                 "ServerClient %p tried to start monitoring twice\n",
1307                 client);
1308     GNUNET_break (0);
1309     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1310     return;
1311   }
1312   GNUNET_SERVER_disable_receive_done_warning (client);
1313   pc.tc = tc = GNUNET_SERVER_transmit_context_create (client);
1314
1315   /* Send initial list */
1316   if (0 == memcmp (&msg->peer, &all_zeros, sizeof (struct GNUNET_PeerIdentity)))
1317   {
1318     /* iterate over all neighbours */
1319     pc.all = GNUNET_YES;
1320     pc.id = msg->peer;
1321   }
1322   else
1323   {
1324     /* just return one neighbour */
1325     pc.all = GNUNET_NO;
1326     pc.id = msg->peer;
1327   }
1328
1329   GST_validation_iterate (&send_validation_information, &pc);
1330
1331   if (GNUNET_YES != ntohl (msg->one_shot))
1332   {
1333     setup_val_monitoring_client (client, &msg->peer);
1334   }
1335   else
1336   {
1337     GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
1338         GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_RESPONSE);
1339   }
1340   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
1341 }
1342
1343 /**
1344  * Start handling requests from clients.
1345  *
1346  * @param server server used to accept clients from.
1347  */
1348 void
1349 GST_clients_start (struct GNUNET_SERVER_Handle *server)
1350 {
1351   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1352     {&clients_handle_start, NULL,
1353      GNUNET_MESSAGE_TYPE_TRANSPORT_START, sizeof (struct StartMessage)},
1354     {&clients_handle_hello, NULL,
1355      GNUNET_MESSAGE_TYPE_HELLO, 0},
1356     {&clients_handle_send, NULL,
1357      GNUNET_MESSAGE_TYPE_TRANSPORT_SEND, 0},
1358     {&clients_handle_request_connect, NULL,
1359      GNUNET_MESSAGE_TYPE_TRANSPORT_REQUEST_CONNECT,
1360      sizeof (struct TransportRequestConnectMessage)},
1361     {&clients_handle_address_to_string, NULL,
1362      GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_TO_STRING, 0},
1363     {&clients_handle_monitor_peers, NULL,
1364      GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_PEER_REQUEST,
1365      sizeof (struct PeerMonitorMessage)},
1366     {&clients_handle_monitor_validation, NULL,
1367      GNUNET_MESSAGE_TYPE_TRANSPORT_MONITOR_VALIDATION_REQUEST,
1368      sizeof (struct ValidationMonitorMessage)},
1369     {&GST_blacklist_handle_init, NULL,
1370      GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_INIT,
1371      sizeof (struct GNUNET_MessageHeader)},
1372     {&GST_blacklist_handle_reply, NULL,
1373      GNUNET_MESSAGE_TYPE_TRANSPORT_BLACKLIST_REPLY,
1374      sizeof (struct BlacklistMessage)},
1375     {&GST_manipulation_set_metric, NULL,
1376      GNUNET_MESSAGE_TYPE_TRANSPORT_TRAFFIC_METRIC, 0},
1377     {NULL, NULL, 0, 0}
1378   };
1379   peer_nc = GNUNET_SERVER_notification_context_create (server, 0);
1380   val_nc = GNUNET_SERVER_notification_context_create (server, 0);
1381   GNUNET_SERVER_add_handlers (server, handlers);
1382   GNUNET_SERVER_disconnect_notify (server, &client_disconnect_notification,
1383                                    NULL);
1384 }
1385
1386
1387 /**
1388  * Stop processing clients.
1389  */
1390 void
1391 GST_clients_stop ()
1392 {
1393   struct AddressToStringContext *cur;
1394
1395   while (NULL != (cur = a2s_head))
1396   {
1397     GNUNET_SERVER_transmit_context_destroy (cur->tc, GNUNET_NO);
1398     GNUNET_CONTAINER_DLL_remove (a2s_head, a2s_tail, cur);
1399     GNUNET_free (cur);
1400   }
1401   if (NULL != peer_nc)
1402   {
1403     GNUNET_SERVER_notification_context_destroy (peer_nc);
1404     peer_nc = NULL;
1405   }
1406   if (NULL != val_nc)
1407   {
1408     GNUNET_SERVER_notification_context_destroy (val_nc);
1409     val_nc = NULL;
1410   }
1411 }
1412
1413
1414 /**
1415  * Broadcast the given message to all of our clients.
1416  *
1417  * @param msg message to broadcast
1418  * @param may_drop #GNUNET_YES if the message can be dropped / is payload
1419  */
1420 void
1421 GST_clients_broadcast (const struct GNUNET_MessageHeader *msg, int may_drop)
1422 {
1423   struct TransportClient *tc;
1424
1425   for (tc = clients_head; NULL != tc; tc = tc->next)
1426   {
1427     if ((GNUNET_YES == may_drop) && (GNUNET_YES != tc->send_payload))
1428       continue;                 /* skip, this client does not care about payload */
1429     unicast (tc, msg, may_drop);
1430   }
1431 }
1432
1433
1434 /**
1435  * Send the given message to a particular client
1436  *
1437  * @param client target of the message
1438  * @param msg message to transmit
1439  * @param may_drop #GNUNET_YES if the message can be dropped
1440  */
1441 void
1442 GST_clients_unicast (struct GNUNET_SERVER_Client *client,
1443                      const struct GNUNET_MessageHeader *msg, int may_drop)
1444 {
1445   struct TransportClient *tc;
1446
1447   tc = lookup_client (client);
1448   if (NULL == tc)
1449     return;                     /* client got disconnected in the meantime, drop message */
1450   unicast (tc, msg, may_drop);
1451 }
1452
1453
1454 /**
1455  * Broadcast the new active address to all clients monitoring the peer.
1456  *
1457  * @param peer peer this update is about (never NULL)
1458  * @param address address, NULL on disconnect
1459  * @param state the current state of the peer
1460  * @param state_timeout the time out for the state
1461  */
1462 void
1463 GST_clients_broadcast_peer_notification (const struct GNUNET_PeerIdentity *peer,
1464     const struct GNUNET_HELLO_Address *address,
1465     enum GNUNET_TRANSPORT_PeerState state,
1466     struct GNUNET_TIME_Absolute state_timeout)
1467 {
1468   struct PeerIterateResponseMessage *msg;
1469   struct MonitoringClient *mc;
1470   static struct GNUNET_PeerIdentity all_zeros;
1471   msg = compose_address_iterate_response_message (peer, address);
1472   msg->state = htonl (state);
1473   msg->state_timeout = GNUNET_TIME_absolute_hton (state_timeout);
1474   mc = peer_monitoring_clients_head;
1475   while (mc != NULL)
1476   {
1477     if ((0 == memcmp (&mc->peer, &all_zeros,
1478                       sizeof (struct GNUNET_PeerIdentity))) ||
1479         (0 == memcmp (&mc->peer, peer,
1480                       sizeof (struct GNUNET_PeerIdentity))))
1481     {
1482       GNUNET_SERVER_notification_context_unicast (peer_nc, mc->client,
1483                                                   &msg->header, GNUNET_NO);
1484     }
1485
1486     mc = mc->next;
1487   }
1488   GNUNET_free (msg);
1489 }
1490
1491 /**
1492  * Broadcast the new validation changes to all clients monitoring the peer.
1493  *
1494  * @param peer peer this update is about (never NULL)
1495  * @param address address, NULL on disconnect
1496  * @param last_validation point in time when last validation was performed
1497  * @param valid_until point in time how long address is valid
1498  * @param next_validation point in time when next validation will be performed
1499  * @param state state of validation notification
1500  */
1501 void
1502 GST_clients_broadcast_validation_notification (const struct GNUNET_PeerIdentity *peer,
1503                                                const struct GNUNET_HELLO_Address *address,
1504                                                struct GNUNET_TIME_Absolute last_validation,
1505                                                struct GNUNET_TIME_Absolute valid_until,
1506                                                struct GNUNET_TIME_Absolute next_validation,
1507                                                enum GNUNET_TRANSPORT_ValidationState state)
1508 {
1509   struct ValidationIterateResponseMessage *msg;
1510   struct MonitoringClient *mc;
1511   static struct GNUNET_PeerIdentity all_zeros;
1512
1513   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1514               "Sending information about for validation entry for peer `%s' using address `%s'\n",
1515               GNUNET_i2s(peer), (address != NULL) ? GST_plugins_a2s (address) : "<none>");
1516
1517   msg = compose_validation_iterate_response_message (peer, address);
1518   msg->last_validation = GNUNET_TIME_absolute_hton(last_validation);
1519   msg->valid_until = GNUNET_TIME_absolute_hton(valid_until);
1520   msg->next_validation = GNUNET_TIME_absolute_hton(next_validation);
1521   msg->state = htonl ((uint32_t) state);
1522   mc = val_monitoring_clients_head;
1523   while (mc != NULL)
1524   {
1525     if ((0 == memcmp (&mc->peer, &all_zeros,
1526                       sizeof (struct GNUNET_PeerIdentity))) ||
1527         (0 == memcmp (&mc->peer, peer,
1528                       sizeof (struct GNUNET_PeerIdentity))))
1529     {
1530       GNUNET_SERVER_notification_context_unicast (val_nc, mc->client,
1531                                                   &msg->header, GNUNET_NO);
1532
1533     }
1534     mc = mc->next;
1535   }
1536   GNUNET_free (msg);
1537 }
1538
1539
1540 /* end of file gnunet-service-transport_clients.c */