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