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