incorrect to assert here
[oweals/gnunet.git] / src / core / gnunet-service-core_clients.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file core/gnunet-service-core_clients.c
23  * @brief code for managing interactions with clients of core service
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_statistics_service.h"
29 #include "gnunet_transport_service.h"
30 #include "gnunet-service-core.h"
31 #include "gnunet-service-core_clients.h"
32 #include "gnunet-service-core_sessions.h"
33 #include "gnunet-service-core_typemap.h"
34 #include "core.h"
35
36 #define DEBUG_CONNECTS GNUNET_YES
37
38 /**
39  * How many messages do we queue up at most for optional
40  * notifications to a client?  (this can cause notifications
41  * about outgoing messages to be dropped).
42  */
43 #define MAX_NOTIFY_QUEUE 1024
44
45
46 /**
47  * Data structure for each client connected to the core service.
48  */
49 struct GSC_Client
50 {
51   /**
52    * Clients are kept in a linked list.
53    */
54   struct GSC_Client *next;
55
56   /**
57    * Clients are kept in a linked list.
58    */
59   struct GSC_Client *prev;
60
61   /**
62    * Handle for the client with the server API.
63    */
64   struct GNUNET_SERVER_Client *client_handle;
65
66   /**
67    * Array of the types of messages this peer cares
68    * about (with "tcnt" entries).  Allocated as part
69    * of this client struct, do not free!
70    */
71   const uint16_t *types;
72
73   /**
74    * Map of peer identities to active transmission requests of this
75    * client to the peer (of type 'struct GSC_ClientActiveRequest').
76    */
77   struct GNUNET_CONTAINER_MultiHashMap *requests;
78
79 #if DEBUG_CONNECTS
80   /**
81    * Map containing all peers that this client knows we're connected to.
82    */
83   struct GNUNET_CONTAINER_MultiHashMap *connectmap;
84 #endif
85
86   /**
87    * Options for messages this client cares about,
88    * see GNUNET_CORE_OPTION_ values.
89    */
90   uint32_t options;
91
92   /**
93    * Number of types of incoming messages this client
94    * specifically cares about.  Size of the "types" array.
95    */
96   unsigned int tcnt;
97
98 };
99
100
101 /**
102  * Head of linked list of our clients.
103  */
104 static struct GSC_Client *client_head;
105
106 /**
107  * Tail of linked list of our clients.
108  */
109 static struct GSC_Client *client_tail;
110
111 /**
112  * Context for notifications we need to send to our clients.
113  */
114 static struct GNUNET_SERVER_NotificationContext *notifier;
115
116 /**
117  * Tokenizer for messages received from clients.
118  */
119 static struct GNUNET_SERVER_MessageStreamTokenizer *client_mst;
120
121
122 /**
123  * Lookup our client struct given the server's client handle.
124  *
125  * @param client server client handle to look up
126  * @return our client handle for the client
127  */
128 static struct GSC_Client *
129 find_client (struct GNUNET_SERVER_Client *client)
130 {
131   struct GSC_Client *c;
132
133   c = client_head;
134   while ((c != NULL) && (c->client_handle != client))
135     c = c->next;
136   return c;
137 }
138
139
140 /**
141  * Send a message to one of our clients.
142  *
143  * @param client target for the message
144  * @param msg message to transmit
145  * @param can_drop could this message be dropped if the
146  *        client's queue is getting too large?
147  */
148 static void
149 send_to_client (struct GSC_Client *client, 
150                 const struct GNUNET_MessageHeader *msg,
151                 int can_drop)
152 {
153 #if DEBUG_CORE
154   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
155               "Preparing to send %u bytes of message of type %u to client.\n",
156               (unsigned int) ntohs (msg->size),
157               (unsigned int) ntohs (msg->type));
158 #endif
159   GNUNET_SERVER_notification_context_unicast (notifier, client->client_handle,
160                                               msg, can_drop);
161 }
162
163
164 /**
165  * Send a message to one of our clients.
166  *
167  * @param client target for the message
168  * @param msg message to transmit
169  * @param can_drop could this message be dropped if the
170  *        client's queue is getting too large?
171  */
172 void
173 GSC_CLIENTS_send_to_client (struct GNUNET_SERVER_Client *client,
174                             const struct GNUNET_MessageHeader *msg,
175                             int can_drop)
176 {
177   struct GSC_Client *c;
178
179   c = find_client (client);
180   if (NULL == c)
181   {
182     GNUNET_break (0);
183     return;
184   }
185   send_to_client (c, msg, can_drop);
186 }
187
188
189 /**
190  * Test if the client is interested in messages of the given type.
191  *
192  * @param type message type
193  * @param c client to test
194  * @return GNUNET_YES if 'c' is interested, GNUNET_NO if not.
195  */
196 static int
197 type_match (uint16_t type,
198             struct GSC_Client *c)
199 {
200   unsigned int i;
201
202   if (c->tcnt == 0)
203     return GNUNET_YES; /* peer without handlers matches ALL */
204   for (i=0;i<c->tcnt;i++)
205     if (type == c->types[i])
206       return GNUNET_YES;
207   return GNUNET_NO;
208 }
209
210
211 /**
212  * Send a message to all of our current clients that have the right
213  * options set.
214  *
215  * @param msg message to multicast
216  * @param can_drop can this message be discarded if the queue is too long
217  * @param options mask to use
218  * @param type type of the embedded message, 0 for none
219  */
220 static void
221 send_to_all_clients (const struct GNUNET_PeerIdentity *sender,
222                      const struct GNUNET_MessageHeader *msg, 
223                      int can_drop,
224                      int options,
225                      uint16_t type)
226 {
227   struct GSC_Client *c;
228
229   for (c = client_head; c != NULL; c = c->next)
230   {
231     if ( (0 == (options & GNUNET_CORE_OPTION_SEND_FULL_INBOUND)) &&
232          (GNUNET_YES == type_match (type, c)) )
233       continue; /* not the full message, but we'd like the full one! */
234     if ( (0 == (c->options & options)) &&
235          (GNUNET_YES != type_match (type, c)) )
236       continue; /* neither options nor type match permit the message */
237 #if DEBUG_CORE
238     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
239                 "Sending message to client interested in messages of type %u.\n",
240                 (unsigned int) type);
241 #endif
242 #if DEBUG_CONNECTS
243     GNUNET_assert (GNUNET_YES ==
244                    GNUNET_CONTAINER_multihashmap_contains (c->connectmap,
245                                                            &sender->hashPubKey));
246 #endif
247     send_to_client (c, msg, can_drop);
248   }
249 }
250
251
252 /**
253  * Handle CORE_INIT request.
254  *
255  * @param cls unused
256  * @param client new client that sent INIT
257  * @param message the 'struct InitMessage' (presumably)
258  */
259 static void
260 handle_client_init (void *cls, struct GNUNET_SERVER_Client *client,
261                     const struct GNUNET_MessageHeader *message)
262 {
263   const struct InitMessage *im;
264   struct InitReplyMessage irm;
265   struct GSC_Client *c;
266   uint16_t msize;
267   const uint16_t *types;
268   uint16_t *wtypes;
269   unsigned int i;
270
271   /* check that we don't have an entry already */
272   c = find_client (client);
273   if (NULL != c)
274   {
275     GNUNET_break (0);
276     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
277     return;
278   }
279   msize = ntohs (message->size);
280   if (msize < sizeof (struct InitMessage))
281   {
282     GNUNET_break (0);
283     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
284     return;
285   }
286   GNUNET_SERVER_notification_context_add (notifier, client);
287   im = (const struct InitMessage *) message;
288   types = (const uint16_t *) &im[1];
289   msize -= sizeof (struct InitMessage);
290   c = GNUNET_malloc (sizeof (struct GSC_Client) + msize);
291   c->client_handle = client;
292   c->tcnt = msize / sizeof (uint16_t);
293   c->options = ntohl (im->options);
294   c->types = (const uint16_t *) &c[1];
295 #if DEBUG_CONNECTS
296   c->connectmap = GNUNET_CONTAINER_multihashmap_create (16);
297   GNUNET_assert (GNUNET_YES ==
298                  GNUNET_CONTAINER_multihashmap_put (c->connectmap,
299                                                     &GSC_my_identity.hashPubKey,
300                                                     NULL,
301                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
302 #endif
303
304   wtypes = (uint16_t *) & c[1];
305   for (i = 0; i < c->tcnt; i++)
306     wtypes[i] = ntohs (types[i]);
307   GSC_TYPEMAP_add (wtypes, c->tcnt);
308   GNUNET_CONTAINER_DLL_insert (client_head,
309                                client_tail,
310                                c);
311 #if DEBUG_CORE
312   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
313               "Client connecting to core service is interested in %u message types\n", 
314               (unsigned int) c->tcnt);
315 #endif
316   /* send init reply message */
317   irm.header.size = htons (sizeof (struct InitReplyMessage));
318   irm.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY);
319   irm.reserved = htonl (0);
320   irm.my_identity = GSC_my_identity;
321   send_to_client (c, &irm.header, GNUNET_NO);
322   GSC_SESSIONS_notify_client_about_sessions (c);
323   GNUNET_SERVER_receive_done (client, GNUNET_OK);
324 }
325
326
327 /**
328  * Handle CORE_SEND_REQUEST message.
329  *
330  * @param cls unused
331  * @param client new client that sent CORE_SEND_REQUEST
332  * @param message the 'struct SendMessageRequest' (presumably)
333  */
334 static void
335 handle_client_send_request (void *cls, struct GNUNET_SERVER_Client *client,
336                             const struct GNUNET_MessageHeader *message)
337 {
338   const struct SendMessageRequest *req;
339   struct GSC_Client *c;
340   struct GSC_ClientActiveRequest *car;
341
342   req = (const struct SendMessageRequest *) message;
343   c = find_client (client);
344   if (c == NULL)
345   {
346     /* client did not send INIT first! */
347     GNUNET_break (0);
348     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
349     return;
350   }
351   if (c->requests == NULL)
352     c->requests = GNUNET_CONTAINER_multihashmap_create (16);
353 #if DEBUG_CORE
354   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
355               "Client asked for transmission to `%s'\n",
356               GNUNET_i2s (&req->peer));
357 #endif
358   car = GNUNET_CONTAINER_multihashmap_get (c->requests, &req->peer.hashPubKey);
359   if (car == NULL)
360   {
361     /* create new entry */
362     car = GNUNET_malloc (sizeof (struct GSC_ClientActiveRequest));
363     GNUNET_assert (GNUNET_OK ==
364                    GNUNET_CONTAINER_multihashmap_put (c->requests,
365                                                       &req->peer.hashPubKey,
366                                                       car,
367                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST));
368     car->client_handle = c;
369   }
370   else
371   {
372     GSC_SESSIONS_dequeue_request (car);
373   }
374   car->target = req->peer;
375   car->deadline = GNUNET_TIME_absolute_ntoh (req->deadline);
376   car->priority = ntohl (req->priority);
377   car->msize = ntohs (req->size);
378   car->smr_id = req->smr_id;
379   car->was_solicited = GNUNET_NO;
380   if (0 ==
381       memcmp (&req->peer, &GSC_my_identity, sizeof (struct GNUNET_PeerIdentity)))
382     GSC_CLIENTS_solicit_request (car);
383   else
384     GSC_SESSIONS_queue_request (car);
385   GNUNET_SERVER_receive_done (client, GNUNET_OK);
386 }
387
388
389 /**
390  * Closure for the 'client_tokenizer_callback'.
391  */
392 struct TokenizerContext
393 {
394
395   /**
396    * Active request handle for the message.
397    */ 
398   struct GSC_ClientActiveRequest *car;
399
400   /**
401    * Is corking allowed (set only once we have the real message).
402    */
403   int cork;
404
405 };
406
407
408 /**
409  * Handle CORE_SEND request.
410  *
411  * @param cls unused
412  * @param client the client issuing the request
413  * @param message the "struct SendMessage"
414  */
415 static void
416 handle_client_send (void *cls, struct GNUNET_SERVER_Client *client,
417                     const struct GNUNET_MessageHeader *message)
418 {
419   const struct SendMessage *sm;
420   struct GSC_Client *c;
421   struct TokenizerContext tc;
422   uint16_t msize;
423
424   msize = ntohs (message->size);
425   if (msize <
426       sizeof (struct SendMessage) + sizeof (struct GNUNET_MessageHeader))
427   {
428     GNUNET_break (0);
429     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
430     return;
431   }
432   sm = (const struct SendMessage *) message;
433   msize -= sizeof (struct SendMessage);
434   GNUNET_break (0 == ntohl (sm->reserved));
435   c = find_client (client);
436   if (c == NULL)
437   {
438     /* client did not send INIT first! */
439     GNUNET_break (0);
440     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
441     return;
442   }
443   tc.car = GNUNET_CONTAINER_multihashmap_get (c->requests, &sm->peer.hashPubKey);
444   if (NULL == tc.car)
445   {
446     /* client did not request transmission first! */
447     GNUNET_break (0);
448     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
449     return;
450   }
451   GNUNET_assert (GNUNET_YES ==
452                  GNUNET_CONTAINER_multihashmap_remove (c->requests, 
453                                                        &sm->peer.hashPubKey,
454                                                        tc.car));
455   tc.cork = ntohl (sm->cork);
456 #if DEBUG_CORE
457   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
458               "Client asked for transmission of %u bytes to `%s' %s\n",
459               msize,
460               GNUNET_i2s (&sm->peer),
461               tc.cork ? "now" : "");
462 #endif
463   GNUNET_SERVER_mst_receive (client_mst,
464                              &tc, 
465                              (const char*) &sm[1], msize,
466                              GNUNET_YES,
467                              GNUNET_NO);
468   if (0 !=
469       memcmp (&tc.car->target, &GSC_my_identity, sizeof (struct GNUNET_PeerIdentity)))  
470     GSC_SESSIONS_dequeue_request (tc.car);
471   GNUNET_free (tc.car);  
472   GNUNET_SERVER_receive_done (client, GNUNET_OK);
473 }
474
475
476 /**
477  * Functions with this signature are called whenever a complete
478  * message is received by the tokenizer.  Used by the 'client_mst' for
479  * dispatching messages from clients to either the SESSION subsystem
480  * or other CLIENT (for loopback).
481  *
482  * @param cls closure
483  * @param client reservation request ('struct GSC_ClientActiveRequest')
484  * @param message the actual message
485  */
486 static void
487 client_tokenizer_callback (void *cls, void *client,
488                            const struct GNUNET_MessageHeader *message)
489 {
490   struct TokenizerContext *tc = client;
491   struct GSC_ClientActiveRequest *car = tc->car;
492
493   if (0 ==
494       memcmp (&car->target, &GSC_my_identity, sizeof (struct GNUNET_PeerIdentity)))  
495   {
496 #if DEBUG_CORE
497     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
498                 "Delivering message of type %u to myself\n",
499                 ntohs (message->type));
500 #endif
501     GSC_CLIENTS_deliver_message (&GSC_my_identity, 
502                                  NULL, 0,
503                                  message,
504                                  ntohs (message->size),
505                                  GNUNET_CORE_OPTION_SEND_FULL_INBOUND | GNUNET_CORE_OPTION_SEND_FULL_OUTBOUND);  
506     GSC_CLIENTS_deliver_message (&GSC_my_identity, 
507                                  NULL, 0,
508                                  message,
509                                  sizeof (struct GNUNET_MessageHeader),
510                                  GNUNET_CORE_OPTION_SEND_HDR_INBOUND | GNUNET_CORE_OPTION_SEND_HDR_OUTBOUND);  
511   }
512   else
513   {
514 #if DEBUG_CORE
515     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
516                 "Delivering message of type %u to %s\n",
517                 ntohs (message->type),
518                 GNUNET_i2s (&car->target));
519 #endif
520     GSC_SESSIONS_transmit (car, message, tc->cork);
521   }
522 }
523
524
525 /**
526  * Free client request records.
527  *
528  * @param cls NULL
529  * @param key identity of peer for which this is an active request
530  * @param value the 'struct GSC_ClientActiveRequest' to free
531  * @return GNUNET_YES (continue iteration)
532  */
533 static int
534 destroy_active_client_request (void *cls, const GNUNET_HashCode * key,
535                                void *value)
536 {
537   struct GSC_ClientActiveRequest *car = value;
538
539   GNUNET_assert (GNUNET_YES ==
540                  GNUNET_CONTAINER_multihashmap_remove (car->client_handle->requests,
541                                                        &car->target.hashPubKey,
542                                                        car));
543   GSC_SESSIONS_dequeue_request (car);
544   GNUNET_free (car);
545   return GNUNET_YES;
546 }
547
548
549 /**
550  * A client disconnected, clean up.
551  *
552  * @param cls closure
553  * @param client identification of the client
554  */
555 static void
556 handle_client_disconnect (void *cls,
557                           struct GNUNET_SERVER_Client *client)
558 {
559   struct GSC_Client *c;
560
561   if (client == NULL)
562     return;
563 #if DEBUG_CORE
564   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
565               "Client %p has disconnected from core service.\n", client);
566 #endif
567   c = find_client (client);
568   if (c == NULL)
569     return; /* client never sent INIT */
570   GNUNET_CONTAINER_DLL_remove (client_head,
571                                client_tail,
572                                c);
573   if (c->requests != NULL)
574   {
575     GNUNET_CONTAINER_multihashmap_iterate (c->requests,
576                                            &destroy_active_client_request,
577                                            NULL);
578     GNUNET_CONTAINER_multihashmap_destroy (c->requests);
579   }
580 #if DEBUG_CONNECTS
581   GNUNET_CONTAINER_multihashmap_destroy (c->connectmap);
582 #endif
583   GSC_TYPEMAP_remove (c->types, c->tcnt);
584   GNUNET_free (c);
585 }
586
587
588 /**
589  * Tell a client that we are ready to receive the message.
590  *
591  * @param car request that is now ready; the responsibility
592  *        for the handle remains shared between CLIENTS
593  *        and SESSIONS after this call.
594  */
595 void
596 GSC_CLIENTS_solicit_request (struct GSC_ClientActiveRequest *car)
597 {
598   struct GSC_Client *c;
599   struct SendMessageReady smr;
600
601   c = car->client_handle;
602   smr.header.size = htons (sizeof (struct SendMessageReady));
603   smr.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_SEND_READY);
604   smr.size = htons (car->msize);
605   smr.smr_id = car->smr_id;
606   smr.peer = car->target;
607 #if DEBUG_CONNECTS
608   GNUNET_assert (GNUNET_YES ==
609                  GNUNET_CONTAINER_multihashmap_contains (c->connectmap,
610                                                          &car->target.hashPubKey));
611 #endif
612   send_to_client (c, &smr.header, GNUNET_NO);
613 }
614
615
616 /**
617  * Tell a client that we will never be ready to receive the
618  * given message in time (disconnect or timeout).
619  *
620  * @param car request that now permanently failed; the
621  *        responsibility for the handle is now returned
622  *        to CLIENTS (SESSIONS is done with it).
623  */
624 void
625 GSC_CLIENTS_reject_request (struct GSC_ClientActiveRequest *car)
626 {
627 #if DEBUG_CONNECTS
628   GNUNET_assert (GNUNET_YES ==
629                  GNUNET_CONTAINER_multihashmap_contains (car->client_handle->connectmap,
630                                                          &car->target.hashPubKey));
631 #endif
632   GNUNET_assert (GNUNET_YES ==
633                  GNUNET_CONTAINER_multihashmap_remove (car->client_handle->requests,
634                                                        &car->target.hashPubKey,
635                                                        car));
636   GNUNET_free (car);
637 }
638
639
640 /**
641  * Notify a particular client about a change to existing connection to
642  * one of our neighbours (check if the client is interested).  Called
643  * from 'GSC_SESSIONS_notify_client_about_sessions'.
644  *
645  * @param client client to notify
646  * @param neighbour identity of the neighbour that changed status
647  * @param atsi performance information about neighbour
648  * @param atsi_count number of entries in 'ats' array
649  * @param tmap_old previous type map for the neighbour, NULL for disconnect
650  * @param tmap_new updated type map for the neighbour, NULL for disconnect
651  * @param is_new GNUNET_YES if this is a completely new neighbour
652  */
653 void
654 GSC_CLIENTS_notify_client_about_neighbour (struct GSC_Client *client,
655                                            const struct GNUNET_PeerIdentity *neighbour,
656                                            const struct GNUNET_ATS_Information *atsi,
657                                            unsigned int atsi_count,
658                                            const struct GSC_TypeMap *tmap_old,
659                                            const struct GSC_TypeMap *tmap_new)
660 {
661   struct ConnectNotifyMessage *cnm;
662   size_t size;
663   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE - 1];
664   struct GNUNET_ATS_Information *a;
665   struct DisconnectNotifyMessage dcm;
666   int old_match;
667   int new_match;
668
669   old_match = GSC_TYPEMAP_test_match (tmap_old, client->types, client->tcnt);
670   new_match = GSC_TYPEMAP_test_match (tmap_new, client->types, client->tcnt);
671   if (client->tcnt == 0)
672   {
673     /* empty list matches ALL (if not NULL) */
674     if (tmap_new != NULL)
675       new_match = GNUNET_YES; 
676     if (tmap_old != NULL)
677       old_match = GNUNET_YES;
678   }
679   if (old_match == new_match)
680     return; /* no change */
681   if (old_match == GNUNET_NO)
682   {
683     /* send connect */  
684 #if DEBUG_CONNECTS
685     GNUNET_assert (GNUNET_NO ==
686                    GNUNET_CONTAINER_multihashmap_contains (client->connectmap,
687                                                            &neighbour->hashPubKey));
688     GNUNET_assert (GNUNET_YES ==
689                    GNUNET_CONTAINER_multihashmap_put (client->connectmap,
690                                                       &neighbour->hashPubKey,
691                                                       NULL,
692                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
693 #endif
694     size =
695       sizeof (struct ConnectNotifyMessage) +
696       (atsi_count) * sizeof (struct GNUNET_ATS_Information);
697     if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
698       {
699         GNUNET_break (0);
700         /* recovery strategy: throw away performance data */
701         atsi_count = 0;
702         size = sizeof (struct ConnectNotifyMessage);
703       }
704     cnm = (struct ConnectNotifyMessage *) buf;
705     cnm->header.size = htons (size);
706     cnm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_CONNECT);
707     cnm->ats_count = htonl (atsi_count);
708     a = (struct GNUNET_ATS_Information* ) &cnm[1];
709     memcpy (a, atsi,
710             sizeof (struct GNUNET_ATS_Information) * atsi_count);
711 #if DEBUG_CORE
712     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
713                 "Sending `%s' message to client.\n",
714                 "NOTIFY_CONNECT");
715 #endif
716     cnm->peer = *neighbour;
717     send_to_client (client, &cnm->header, GNUNET_NO);
718   }
719   else
720   {
721     /* send disconnect */
722 #if DEBUG_CONNECTS
723     GNUNET_assert (GNUNET_YES ==
724                    GNUNET_CONTAINER_multihashmap_contains (client->connectmap,
725                                                            &neighbour->hashPubKey));
726     GNUNET_assert (GNUNET_YES ==
727                    GNUNET_CONTAINER_multihashmap_remove (client->connectmap,
728                                                          &neighbour->hashPubKey,
729                                                          NULL));
730 #endif
731     dcm.header.size = htons (sizeof (struct DisconnectNotifyMessage));
732     dcm.header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_DISCONNECT);
733     dcm.reserved = htonl (0);
734     dcm.peer = *neighbour;
735     send_to_client (client, &dcm.header, GNUNET_NO);
736   }
737 }
738
739
740 /**
741  * Notify all clients about a change to existing session.
742  * Called from SESSIONS whenever there is a change in sessions
743  * or types processed by the respective peer.
744  *
745  * @param neighbour identity of the neighbour that changed status
746  * @param atsi performance information about neighbour
747  * @param atsi_count number of entries in 'ats' array
748  * @param tmap_old previous type map for the neighbour, NULL for disconnect
749  * @param tmap_new updated type map for the neighbour, NULL for disconnect
750  */
751 void
752 GSC_CLIENTS_notify_clients_about_neighbour (const struct GNUNET_PeerIdentity *neighbour,
753                                             const struct GNUNET_ATS_Information *atsi,
754                                             unsigned int atsi_count,
755                                             const struct GSC_TypeMap *tmap_old,
756                                             const struct GSC_TypeMap *tmap_new)
757 {
758   struct GSC_Client *c;
759
760   for (c = client_head; c != NULL; c = c->next)
761     GSC_CLIENTS_notify_client_about_neighbour (c, neighbour, atsi,
762                                                atsi_count, 
763                                                tmap_old, tmap_new);
764 }
765
766
767 /**
768  * Deliver P2P message to interested clients.  Caller must have checked
769  * that the sending peer actually lists the given message type as one 
770  * of its types.
771  *
772  * @param sender peer who sent us the message 
773  * @param atsi performance information about neighbour
774  * @param atsi_count number of entries in 'ats' array
775  * @param msg the message
776  * @param msize number of bytes to transmit
777  * @param options options for checking which clients should
778  *        receive the message
779  */
780 void
781 GSC_CLIENTS_deliver_message (const struct GNUNET_PeerIdentity *sender,
782                              const struct GNUNET_ATS_Information *atsi,
783                              unsigned int atsi_count,
784                              const struct GNUNET_MessageHeader *msg,
785                              uint16_t msize,
786                              int options)
787 {
788   size_t size = msize + sizeof (struct NotifyTrafficMessage) +
789       atsi_count * sizeof (struct GNUNET_ATS_Information);
790   char buf[size];
791   struct NotifyTrafficMessage *ntm;
792   struct GNUNET_ATS_Information *a;
793
794   if (0 == options)
795   {
796     GNUNET_snprintf (buf, sizeof (buf),
797                      gettext_noop ("# bytes of messages of type %u received"),
798                      (unsigned int) ntohs (msg->type));
799     GNUNET_STATISTICS_update (GSC_stats, buf, msize, GNUNET_NO);
800   }
801   if (size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
802   {
803     GNUNET_break (0);
804     /* recovery strategy: throw performance data away... */
805     atsi_count = 0;
806     size = msize + sizeof (struct NotifyTrafficMessage);
807   }
808 #if DEBUG_CORE
809   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
810               "Core service passes message from `%4s' of type %u to client.\n",
811               GNUNET_i2s (sender),
812               (unsigned int) ntohs (msg->type));
813 #endif
814   GSC_SESSIONS_add_to_typemap (sender, ntohs (msg->type));
815   ntm = (struct NotifyTrafficMessage *) buf;
816   ntm->header.size = htons (size);
817   ntm->header.type = htons (GNUNET_MESSAGE_TYPE_CORE_NOTIFY_INBOUND);
818   ntm->ats_count = htonl (atsi_count);
819   ntm->peer = *sender;
820   a = &ntm->ats;
821   memcpy (a, atsi,
822           sizeof (struct GNUNET_ATS_Information) * atsi_count);
823   a[atsi_count].type = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
824   a[atsi_count].value = htonl (0);
825   memcpy (&a[atsi_count + 1], msg, msize);
826   send_to_all_clients (sender,
827                        &ntm->header, GNUNET_YES, 
828                        options, ntohs (msg->type));
829 }
830
831
832 /**
833  * Initialize clients subsystem.
834  *
835  * @param server handle to server clients connect to
836  */
837 void
838 GSC_CLIENTS_init (struct GNUNET_SERVER_Handle *server)
839 {
840   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
841     {&handle_client_init, NULL,
842      GNUNET_MESSAGE_TYPE_CORE_INIT, 0},
843     {&GSC_SESSIONS_handle_client_iterate_peers, NULL,
844      GNUNET_MESSAGE_TYPE_CORE_ITERATE_PEERS,
845      sizeof (struct GNUNET_MessageHeader)},
846     {&GSC_SESSIONS_handle_client_have_peer, NULL,
847      GNUNET_MESSAGE_TYPE_CORE_PEER_CONNECTED,
848      sizeof (struct GNUNET_MessageHeader) +
849      sizeof (struct GNUNET_PeerIdentity)},
850     {&handle_client_send_request, NULL,
851      GNUNET_MESSAGE_TYPE_CORE_SEND_REQUEST,
852      sizeof (struct SendMessageRequest)},
853     {&handle_client_send, NULL,
854      GNUNET_MESSAGE_TYPE_CORE_SEND, 0},
855     {NULL, NULL, 0, 0}
856   };
857
858   /* setup notification */
859   client_mst = GNUNET_SERVER_mst_create (&client_tokenizer_callback, NULL);
860   notifier =
861       GNUNET_SERVER_notification_context_create (server, MAX_NOTIFY_QUEUE);
862   GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
863   GNUNET_SERVER_add_handlers (server, handlers);
864 }
865
866
867 /**
868  * Shutdown clients subsystem.
869  */
870 void
871 GSC_CLIENTS_done ()
872 {
873   struct GSC_Client *c;
874
875   while (NULL != (c = client_head))  
876     handle_client_disconnect (NULL, c->client_handle);
877   if (NULL != notifier)
878   {
879     GNUNET_SERVER_notification_context_destroy (notifier);
880     notifier = NULL;
881   }
882   GNUNET_SERVER_mst_destroy (client_mst);
883   client_mst = NULL;
884 }
885
886 /* end of gnunet-service-core_clients.c */