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