social: crashing free() removed.. was it redundant?
[oweals/gnunet.git] / src / social / gnunet-service-social.c
1 /*
2  * This file is part of GNUnet
3  * Copyright (C) 2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * @file social/gnunet-service-social.c
23  * @brief Social service
24  * @author Gabor X Toth
25  */
26
27 #include <inttypes.h>
28 #include <strings.h>
29
30 #include "platform.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_constants.h"
33 #include "gnunet_protocols.h"
34 #include "gnunet_core_service.h"
35 #include "gnunet_identity_service.h"
36 #include "gnunet_namestore_service.h"
37 #include "gnunet_gns_service.h"
38 #include "gnunet_statistics_service.h"
39 #include "gnunet_psyc_service.h"
40 #include "gnunet_psyc_util_lib.h"
41 #include "gnunet_social_service.h"
42 #include "social.h"
43
44
45 /**
46  * Handle to our current configuration.
47  */
48 static const struct GNUNET_CONFIGURATION_Handle *cfg;
49
50 /* Handles to other services */
51 static struct GNUNET_CORE_Handle *core;
52 static struct GNUNET_IDENTITY_Handle *id;
53 static struct GNUNET_GNS_Handle *gns;
54 static struct GNUNET_NAMESTORE_Handle *namestore;
55 static struct GNUNET_STATISTICS_Handle *stats;
56
57 /**
58  * ID of this peer.
59  */
60 static struct GNUNET_PeerIdentity this_peer;
61
62 /**
63  * Notification context, simplifies client broadcasts.
64  */
65 static struct GNUNET_SERVER_NotificationContext *nc;
66
67 /**
68  * All connected hosts.
69  * H(place_pub_key) -> struct Host
70  */
71 static struct GNUNET_CONTAINER_MultiHashMap *hosts;
72
73 /**
74  * All connected guests.
75  * H(place_pub_key) -> struct Guest
76  */
77 static struct GNUNET_CONTAINER_MultiHashMap *guests;
78
79 /**
80  * Connected guests per place.
81  * H(place_pub_key) -> ego_pub_key -> struct Guest
82  */
83 static struct GNUNET_CONTAINER_MultiHashMap *place_guests;
84
85 /**
86  * Places entered as host or guest.
87  * H(place_pub_key) -> struct HostEnterRequest OR struct GuestEnterRequest
88  */
89 static struct GNUNET_CONTAINER_MultiHashMap *places;
90
91 /**
92  * Places entered per application.
93  * H(app_id) -> H(place_pub_key) -> NULL
94  */
95 static struct GNUNET_CONTAINER_MultiHashMap *apps_places;
96
97 /**
98  * Application subscriptions per place.
99  * H(place_pub_key) -> H(app_id)
100  */
101 static struct GNUNET_CONTAINER_MultiHashMap *places_apps;
102
103 /**
104  * Connected applications.
105  * H(app_id) -> struct Application
106  */
107 static struct GNUNET_CONTAINER_MultiHashMap *apps;
108
109 /**
110  * All egos.
111  * H(ego_pub_key) -> struct Ego
112  */
113 static struct GNUNET_CONTAINER_MultiHashMap *egos;
114
115 /**
116  * Directory for storing social data.
117  * Default: $GNUNET_DATA_HOME/social
118  */
119 static char *dir_social;
120
121 /**
122  * Directory for storing place data.
123  * $dir_social/places
124  */
125 static char *dir_places;
126
127 /**
128  * Directory for storing app data.
129  * $dir_social/apps
130  */
131 static char *dir_apps;
132
133
134 /**
135  * Message fragment transmission queue.
136  */
137 struct FragmentTransmitQueue
138 {
139   struct FragmentTransmitQueue *prev;
140   struct FragmentTransmitQueue *next;
141
142   struct GNUNET_SERVER_Client *client;
143
144   /**
145    * Pointer to the next message part inside the data after this struct.
146    */
147   struct GNUNET_MessageHeader *next_part;
148
149   /**
150    * Size of message.
151    */
152   uint16_t size;
153
154   /**
155    * @see enum GNUNET_PSYC_MessageState
156    */
157   uint8_t state;
158
159   /* Followed by one or more message parts. */
160 };
161
162
163 /**
164  * Message transmission queue.
165  */
166 struct MessageTransmitQueue
167 {
168   struct MessageTransmitQueue *prev;
169   struct MessageTransmitQueue *next;
170
171   struct FragmentTransmitQueue *frags_head;
172   struct FragmentTransmitQueue *frags_tail;
173
174   struct GNUNET_SERVER_Client *client;
175 };
176
177 /**
178  * List of connected clients.
179  */
180 struct ClientListItem
181 {
182   struct ClientListItem *prev;
183   struct ClientListItem *next;
184
185   struct GNUNET_SERVER_Client *client;
186 };
187
188
189 /**
190  * Common part of the client context for both a host and guest.
191  */
192 struct Place
193 {
194   struct ClientListItem *clients_head;
195   struct ClientListItem *clients_tail;
196
197   struct MessageTransmitQueue *tmit_msgs_head;
198   struct MessageTransmitQueue *tmit_msgs_tail;
199
200   struct GNUNET_PSYC_Channel *channel;
201
202   /**
203    * Private key of home in case of a host.
204    */
205   struct GNUNET_CRYPTO_EddsaPublicKey key;
206
207   /**
208    * Public key of place.
209    */
210   struct GNUNET_CRYPTO_EddsaPublicKey pub_key;
211
212   /**
213    * Hash of @a pub_key.
214    */
215   struct GNUNET_HashCode pub_key_hash;
216
217   /**
218    * Private key of ego.
219    */
220   struct GNUNET_CRYPTO_EcdsaPrivateKey ego_key;
221
222   /**
223    * Public key of ego.
224    */
225   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
226
227   /**
228    * Hash of @a ego_pub_key.
229    */
230   struct GNUNET_HashCode ego_pub_hash;
231
232   /**
233    * Slicer for processing incoming messages.
234    */
235   struct GNUNET_PSYC_Slicer *slicer;
236
237   /**
238    * Last message ID received for the place.
239    * 0 if there is no such message.
240    */
241   uint64_t max_message_id;
242
243   /**
244    * Offset where the file is currently being written.
245    */
246   uint64_t file_offset;
247
248   /**
249    * Whether or not to save the file (#GNUNET_YES or #GNUNET_NO)
250    */
251   uint8_t file_save;
252
253   /**
254    * Is this a host (#GNUNET_YES), or guest (#GNUNET_NO)?
255    */
256   uint8_t is_host;
257
258   /**
259    * Is this place ready to receive messages from client?
260    * #GNUNET_YES or #GNUNET_NO
261    */
262   uint8_t is_ready;
263
264   /**
265    * Is the client disconnected?
266    * #GNUNET_YES or #GNUNET_NO
267    */
268   uint8_t is_disconnected;
269 };
270
271
272 /**
273  * Client context for a host.
274  */
275 struct Host
276 {
277   /**
278    * Place struct common for Host and Guest
279    */
280   struct Place plc;
281
282   /**
283    * Handle for the multicast origin.
284    */
285   struct GNUNET_PSYC_Master *master;
286
287   /**
288    * Transmit handle for multicast.
289    */
290   struct GNUNET_PSYC_MasterTransmitHandle *tmit_handle;
291
292   /**
293    * Incoming join requests.
294    * guest_key -> struct GNUNET_PSYC_JoinHandle *
295    */
296   struct GNUNET_CONTAINER_MultiHashMap *join_reqs;
297
298   /**
299    * Messages being relayed.
300    */
301   struct GNUNET_CONTAINER_MultiHashMap *relay_msgs;
302
303   /**
304    * @see enum GNUNET_PSYC_Policy
305    */
306   enum GNUNET_PSYC_Policy policy;
307 };
308
309
310 /**
311  * Client context for a guest.
312  */
313 struct Guest
314 {
315   /**
316    * Place struct common for Host and Guest.
317    */
318   struct Place plc;
319
320   /**
321    * Handle for the PSYC slave.
322    */
323   struct GNUNET_PSYC_Slave *slave;
324
325   /**
326    * Transmit handle for multicast.
327    */
328   struct GNUNET_PSYC_SlaveTransmitHandle *tmit_handle;
329
330   /**
331    * Peer identity of the origin.
332    */
333   struct GNUNET_PeerIdentity origin;
334
335   /**
336    * Number of items in @a relays.
337    */
338   uint32_t relay_count;
339
340   /**
341    * Relays that multicast can use to connect.
342    */
343   struct GNUNET_PeerIdentity *relays;
344
345   /**
346    * Join request to be transmitted to the master on join.
347    */
348   struct GNUNET_MessageHeader *join_req;
349
350   /**
351    * Join decision received from PSYC.
352    */
353   struct GNUNET_PSYC_JoinDecisionMessage *join_dcsn;
354
355   /**
356    * Join flags for the PSYC service.
357    */
358   enum GNUNET_PSYC_SlaveJoinFlags join_flags;
359 };
360
361
362 /**
363  * Context for a client.
364  */
365 struct Client
366 {
367   /**
368    * Place where the client entered.
369    */
370   struct Place *plc;
371
372   /**
373    * Message queue for the message currently being transmitted
374    * by this client.
375    */
376   struct MessageTransmitQueue *tmit_msg;
377
378   /**
379    * ID for application clients.
380    */
381   char *app_id;
382 };
383
384
385 struct Application
386 {
387   struct ClientListItem *clients_head;
388   struct ClientListItem *clients_tail;
389 };
390
391
392 struct Ego {
393   struct GNUNET_CRYPTO_EcdsaPrivateKey key;
394   char *name;
395 };
396
397
398 struct OperationClosure
399 {
400   struct GNUNET_SERVER_Client *client;
401   struct Place *plc;
402   uint64_t op_id;
403   uint32_t flags;
404 };
405
406
407 static int
408 psyc_transmit_message (struct Place *plc);
409
410
411 /**
412  * Clean up place data structures after a client disconnected.
413  *
414  * @param cls the `struct Place` to clean up
415  */
416 static void
417 cleanup_place (void *cls);
418
419
420 static struct MessageTransmitQueue *
421 psyc_transmit_queue_message (struct Place *plc,
422                              struct GNUNET_SERVER_Client *client,
423                              size_t data_size,
424                              const void *data,
425                              uint16_t first_ptype, uint16_t last_ptype,
426                              struct MessageTransmitQueue *tmit_msg);
427
428
429 static int
430 place_entry_cleanup (void *cls,
431                      const struct GNUNET_HashCode *key,
432                      void *value)
433 {
434   struct Place *plc = value;
435
436   cleanup_place (plc);
437   return GNUNET_YES;
438 }
439
440
441 /**
442  * Task run during shutdown.
443  *
444  * @param cls unused
445  */
446 static void
447 shutdown_task (void *cls)
448 {
449   GNUNET_CONTAINER_multihashmap_iterate (hosts, place_entry_cleanup, NULL);
450   GNUNET_CONTAINER_multihashmap_iterate (guests, place_entry_cleanup, NULL);
451
452   if (NULL != nc)
453   {
454     GNUNET_SERVER_notification_context_destroy (nc);
455     nc = NULL;
456   }
457   if (NULL != core)
458   {
459     GNUNET_CORE_disconnect (core);
460     core = NULL;
461   }
462   if (NULL != id)
463   {
464     GNUNET_IDENTITY_disconnect (id);
465     id = NULL;
466   }
467   if (NULL != namestore)
468   {
469     GNUNET_NAMESTORE_disconnect (namestore);
470     namestore = NULL;
471   }
472   if (NULL != gns)
473   {
474     GNUNET_GNS_disconnect (gns);
475     gns = NULL;
476   }
477   if (NULL != stats)
478   {
479     GNUNET_STATISTICS_destroy (stats, GNUNET_YES);
480     stats = NULL;
481   }
482 }
483
484
485 /**
486  * Clean up host data structures after a client disconnected.
487  */
488 static void
489 cleanup_host (struct Host *hst)
490 {
491   struct Place *plc = &hst->plc;
492
493   if (NULL != hst->master)
494     GNUNET_PSYC_master_stop (hst->master, GNUNET_NO, NULL, NULL); // FIXME
495   GNUNET_CONTAINER_multihashmap_destroy (hst->join_reqs);
496   GNUNET_CONTAINER_multihashmap_destroy (hst->relay_msgs);
497   GNUNET_CONTAINER_multihashmap_remove (hosts, &plc->pub_key_hash, plc);
498 }
499
500
501 /**
502  * Clean up guest data structures after a client disconnected.
503  */
504 static void
505 cleanup_guest (struct Guest *gst)
506 {
507   struct Place *plc = &gst->plc;
508   struct GNUNET_CONTAINER_MultiHashMap *
509     plc_gst = GNUNET_CONTAINER_multihashmap_get (place_guests,
510                                                 &plc->pub_key_hash);
511   GNUNET_assert (NULL != plc_gst); // FIXME
512   GNUNET_CONTAINER_multihashmap_remove (plc_gst, &plc->ego_pub_hash, gst);
513
514   if (0 == GNUNET_CONTAINER_multihashmap_size (plc_gst))
515   {
516     GNUNET_CONTAINER_multihashmap_remove (place_guests, &plc->pub_key_hash,
517                                           plc_gst);
518     GNUNET_CONTAINER_multihashmap_destroy (plc_gst);
519   }
520   GNUNET_CONTAINER_multihashmap_remove (guests, &plc->pub_key_hash, gst);
521
522   if (NULL != gst->join_req)
523     GNUNET_free (gst->join_req);
524   if (NULL != gst->relays)
525     GNUNET_free (gst->relays);
526   if (NULL != gst->slave)
527     GNUNET_PSYC_slave_part (gst->slave, GNUNET_NO, NULL, NULL); // FIXME
528   GNUNET_CONTAINER_multihashmap_remove (guests, &plc->pub_key_hash, plc);
529 }
530
531
532 /**
533  * Clean up place data structures after a client disconnected.
534  *
535  * @param cls the `struct Place` to clean up
536  */
537 static void
538 cleanup_place (void *cls)
539 {
540   struct Place *plc = cls;
541
542   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
543               "%p Cleaning up place %s\n",
544               plc, GNUNET_h2s (&plc->pub_key_hash));
545
546   (GNUNET_YES == plc->is_host)
547     ? cleanup_host ((struct Host *) plc)
548     : cleanup_guest ((struct Guest *) plc);
549
550   GNUNET_PSYC_slicer_destroy (plc->slicer);
551   GNUNET_free (plc);
552 }
553
554
555 /**
556  * Called whenever a client is disconnected.
557  * Frees our resources associated with that client.
558  *
559  * @param cls Closure.
560  * @param client Identification of the client.
561  */
562 static void
563 client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
564 {
565   if (NULL == client)
566     return;
567
568   struct Client *
569     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
570   if (NULL == ctx)
571   {
572     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
573                 "%p User context is NULL in client_disconnect()\n", ctx);
574     return;
575   }
576
577   struct Place *plc = ctx->plc;
578
579   if (NULL != ctx->app_id)
580     GNUNET_free (ctx->app_id);
581
582   GNUNET_free (ctx);
583
584   if (NULL == plc)
585     return; // application client, nothing to do
586
587   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
588               "%p Client (%s) disconnected from place %s\n",
589               plc, (GNUNET_YES == plc->is_host) ? "host" : "guest",
590               GNUNET_h2s (&plc->pub_key_hash));
591
592   struct ClientListItem *cli = plc->clients_head;
593   while (NULL != cli)
594   {
595     if (cli->client == client)
596     {
597       GNUNET_CONTAINER_DLL_remove (plc->clients_head, plc->clients_tail, cli);
598       GNUNET_free (cli);
599       break;
600     }
601     cli = cli->next;
602   }
603 }
604
605
606 /**
607  * Send message to a client.
608  */
609 static inline void
610 client_send_msg (struct GNUNET_SERVER_Client *client,
611                  const struct GNUNET_MessageHeader *msg)
612 {
613   GNUNET_SERVER_notification_context_add (nc, client);
614   GNUNET_SERVER_notification_context_unicast (nc, client, msg, GNUNET_NO);
615 }
616
617
618 /**
619  * Send message to all clients connected to a place.
620  */
621 static void
622 place_send_msg (const struct Place *plc,
623                  const struct GNUNET_MessageHeader *msg)
624 {
625   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
626               "%p Sending message to clients of place.\n", plc);
627
628   struct ClientListItem *cli = plc->clients_head;
629   while (NULL != cli)
630   {
631     client_send_msg (cli->client, msg);
632     cli = cli->next;
633   }
634 }
635
636
637 /**
638  * Send a result code back to the client.
639  *
640  * @param client
641  *        Client that should receive the result code.
642  * @param result_code
643  *        Code to transmit.
644  * @param op_id
645  *        Operation ID in network byte order.
646  * @param data
647  *        Data payload or NULL.
648  * @param data_size
649  *        Size of @a data.
650  */
651 static void
652 client_send_result (struct GNUNET_SERVER_Client *client, uint64_t op_id,
653                     int64_t result_code, const void *data, uint16_t data_size)
654 {
655   struct GNUNET_OperationResultMessage *res;
656
657   res = GNUNET_malloc (sizeof (*res) + data_size);
658   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE);
659   res->header.size = htons (sizeof (*res) + data_size);
660   res->result_code = GNUNET_htonll (result_code);
661   res->op_id = op_id;
662   if (0 < data_size)
663     GNUNET_memcpy (&res[1], data, data_size);
664
665   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
666               "%p Sending result to client for operation #%" PRIu64 ": "
667               "%" PRId64 " (size: %u)\n",
668               client, GNUNET_ntohll (op_id), result_code, data_size);
669
670   client_send_msg (client, &res->header);
671   GNUNET_free (res);
672 }
673
674
675 static void
676 client_send_host_enter_ack (struct GNUNET_SERVER_Client *client,
677                             struct Host *hst, uint32_t result)
678 {
679   struct Place *plc = &hst->plc;
680
681   struct HostEnterAck hack;
682   hack.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER_ACK);
683   hack.header.size = htons (sizeof (hack));
684   hack.result_code = htonl (result);
685   hack.max_message_id = GNUNET_htonll (plc->max_message_id);
686   hack.place_pub_key = plc->pub_key;
687
688   if (NULL != client)
689     client_send_msg (client, &hack.header);
690   else
691     place_send_msg (plc, &hack.header);
692 }
693
694
695 /**
696  * Called after a PSYC master is started.
697  */
698 static void
699 psyc_master_started (void *cls, int result, uint64_t max_message_id)
700 {
701   struct Host *hst = cls;
702   struct Place *plc = &hst->plc;
703   plc->max_message_id = max_message_id;
704   plc->is_ready = GNUNET_YES;
705
706   client_send_host_enter_ack (NULL, hst, result);
707 }
708
709
710 /**
711  * Called when a PSYC master receives a join request.
712  */
713 static void
714 psyc_recv_join_request (void *cls,
715                         const struct GNUNET_PSYC_JoinRequestMessage *req,
716                         const struct GNUNET_CRYPTO_EcdsaPublicKey *slave_key,
717                         const struct GNUNET_PSYC_Message *join_msg,
718                         struct GNUNET_PSYC_JoinHandle *jh)
719 {
720   struct Host *hst = cls;
721   struct GNUNET_HashCode slave_key_hash;
722   GNUNET_CRYPTO_hash (slave_key, sizeof (*slave_key), &slave_key_hash);
723   GNUNET_CONTAINER_multihashmap_put (hst->join_reqs, &slave_key_hash, jh,
724                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
725   place_send_msg (&hst->plc, &req->header);
726 }
727
728
729 /**
730  * Called after a PSYC slave is connected.
731  */
732 static void
733 psyc_slave_connected (void *cls, int result, uint64_t max_message_id)
734 {
735   struct Guest *gst = cls;
736   struct Place *plc = &gst->plc;
737   plc->max_message_id = max_message_id;
738   plc->is_ready = GNUNET_YES;
739
740   struct GNUNET_PSYC_CountersResultMessage res;
741   res.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK);
742   res.header.size = htons (sizeof (res));
743   res.result_code = htonl (result);
744   res.max_message_id = GNUNET_htonll (plc->max_message_id);
745
746   place_send_msg (plc, &res.header);
747 }
748
749
750 /**
751  * Called when a PSYC slave receives a join decision.
752  */
753 static void
754 psyc_recv_join_dcsn (void *cls,
755                      const struct GNUNET_PSYC_JoinDecisionMessage *dcsn,
756                      int is_admitted,
757                      const struct GNUNET_PSYC_Message *join_msg)
758 {
759   struct Guest *gst = cls;
760   place_send_msg (&gst->plc, &dcsn->header);
761 }
762
763
764 /**
765  * Called when a PSYC master or slave receives a message.
766  */
767 static void
768 psyc_recv_message (void *cls,
769                    const struct GNUNET_PSYC_MessageHeader *msg)
770 {
771   struct Place *plc = cls;
772
773   char *str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&msg->slave_pub_key);
774   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
775               "%p Received PSYC message of size %u from %s.\n",
776               plc, ntohs (msg->header.size), str);
777   GNUNET_free (str);
778
779   GNUNET_PSYC_slicer_message (plc->slicer, msg);
780
781   place_send_msg (plc, &msg->header);
782 }
783
784
785 /**
786  * Relay a message part received from a guest to the the place.
787  *
788  * @param hst
789  *        Host.
790  * @param pmsg
791  *        Message part.
792  * @param nym_pub_key
793  *        Nym the message is received from.
794  */
795 static void
796 host_relay_message_part (struct Host *hst,
797                          const struct GNUNET_MessageHeader *pmsg,
798                          const struct GNUNET_CRYPTO_EcdsaPublicKey *nym_pub_key)
799 {
800   /* separate queue per nym */
801   struct GNUNET_HashCode nym_pub_hash;
802   GNUNET_CRYPTO_hash (nym_pub_key, sizeof (*nym_pub_key), &nym_pub_hash);
803
804   struct MessageTransmitQueue *
805     tmit_msg = GNUNET_CONTAINER_multihashmap_get (hst->relay_msgs, &nym_pub_hash);
806
807   uint16_t ptype = ntohs (pmsg->type);
808
809   if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD == ptype)
810   {
811     /* FIXME: last message was unfinished, cancel & remove from queue */
812     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
813                 "FIXME: last message was unfinished.\n");
814   }
815
816   tmit_msg = psyc_transmit_queue_message (&hst->plc, NULL, ntohs (pmsg->size),
817                                           pmsg, ptype, ptype, tmit_msg);
818
819   switch (ptype)
820   {
821   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD:
822     GNUNET_assert (GNUNET_YES == GNUNET_CONTAINER_multihashmap_put
823                                       (hst->relay_msgs, &nym_pub_hash, tmit_msg,
824                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
825     break;
826   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
827   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
828     GNUNET_assert (GNUNET_YES == GNUNET_CONTAINER_multihashmap_remove
829                                      (hst->relay_msgs, &nym_pub_hash, tmit_msg));
830     break;
831   }
832 }
833
834
835 /**
836  * Received a method to be relayed from a guest.
837  */
838 static void
839 place_recv_relay_method (void *cls,
840                          const struct GNUNET_PSYC_MessageHeader *msg,
841                          const struct GNUNET_PSYC_MessageMethod *meth,
842                          uint64_t message_id,
843                          const char *method_name)
844 {
845   struct Place *plc = cls;
846
847   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
848       && GNUNET_YES == plc->is_host)
849   {
850     struct Host *hst = cls;
851     host_relay_message_part (hst, &meth->header, &msg->slave_pub_key);
852   }
853 }
854
855
856 /**
857  * Received a modifier to be relayed from a guest.
858  */
859 static void
860 place_recv_relay_modifier (void *cls,
861                            const struct GNUNET_PSYC_MessageHeader *msg,
862                            const struct GNUNET_MessageHeader *pmsg,
863                            uint64_t message_id,
864                            enum GNUNET_PSYC_Operator oper,
865                            const char *name,
866                            const void *value,
867                            uint16_t value_size,
868                            uint16_t full_value_size)
869 {
870   struct Place *plc = cls;
871
872   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
873       && GNUNET_YES == plc->is_host)
874   {
875     struct Host *hst = cls;
876     host_relay_message_part (hst, pmsg, &msg->slave_pub_key);
877   }
878 }
879
880 /**
881  * Received a data fragment to be relayed from a guest.
882  */
883 static void
884 place_recv_relay_data (void *cls,
885                        const struct GNUNET_PSYC_MessageHeader *msg,
886                        const struct GNUNET_MessageHeader *pmsg,
887                        uint64_t message_id,
888                        const void *data,
889                        uint16_t data_size)
890 {
891   struct Place *plc = cls;
892
893   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
894       && GNUNET_YES == plc->is_host)
895   {
896     struct Host *hst = cls;
897     host_relay_message_part (hst, pmsg, &msg->slave_pub_key);
898   }
899 }
900
901
902 /**
903  * Received end of message to be relayed from a guest.
904  */
905 static void
906 place_recv_relay_eom (void *cls,
907                       const struct GNUNET_PSYC_MessageHeader *msg,
908                       const struct GNUNET_MessageHeader *pmsg,
909                       uint64_t message_id,
910                       uint8_t is_cancelled)
911 {
912   struct Place *plc = cls;
913
914   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
915       && GNUNET_YES == plc->is_host)
916   {
917     struct Host *hst = cls;
918     host_relay_message_part (hst, pmsg, &msg->slave_pub_key);
919   }
920 }
921
922
923 /**
924  * Received a method to be saved to disk.
925  *
926  * Create a new file for writing the data part of the message into,
927  * if the file does not yet exist.
928  */
929 static void
930 place_recv_save_method (void *cls,
931                         const struct GNUNET_PSYC_MessageHeader *msg,
932                         const struct GNUNET_PSYC_MessageMethod *meth,
933                         uint64_t message_id,
934                         const char *method_name)
935 {
936   struct Place *plc = cls;
937   plc->file_offset = 0;
938   plc->file_save = GNUNET_NO;
939
940   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&plc->pub_key);
941   char *filename = NULL;
942   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%" PRIu64 ".part",
943                    dir_social, DIR_SEPARATOR,
944                    "files", DIR_SEPARATOR,
945                    place_pub_str, DIR_SEPARATOR,
946                    GNUNET_ntohll (msg->message_id));
947   GNUNET_free (place_pub_str);
948
949   /* save if does not already exist */
950   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
951   {
952     if (0 == GNUNET_DISK_fn_write (filename, NULL, 0,
953                                    GNUNET_DISK_PERM_USER_READ
954                                    | GNUNET_DISK_PERM_USER_WRITE))
955     {
956       plc->file_save = GNUNET_YES;
957     }
958     else
959     {
960       GNUNET_break (0);
961     }
962   }
963   GNUNET_free (filename);
964 }
965
966
967 /**
968  * Received a data fragment to be saved to disk.
969  *
970  * Append data fragment to the file.
971  */
972 static void
973 place_recv_save_data (void *cls,
974                       const struct GNUNET_PSYC_MessageHeader *msg,
975                       const struct GNUNET_MessageHeader *pmsg,
976                       uint64_t message_id,
977                       const void *data,
978                       uint16_t data_size)
979 {
980   struct Place *plc = cls;
981   if (GNUNET_YES != plc->file_save)
982     return;
983
984   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&plc->pub_key);
985   char *filename = NULL;
986   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%" PRIu64 ".part",
987                    dir_social, DIR_SEPARATOR,
988                    "files", DIR_SEPARATOR,
989                    place_pub_str, DIR_SEPARATOR,
990                    GNUNET_ntohll (msg->message_id));
991   GNUNET_free (place_pub_str);
992   if (GNUNET_SYSERR == GNUNET_DISK_directory_create_for_file (filename))
993   {
994     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "create", filename);
995     GNUNET_free (filename);
996     return;
997   }
998
999   struct GNUNET_DISK_FileHandle *
1000     fh = GNUNET_DISK_file_open (filename, GNUNET_DISK_OPEN_WRITE,
1001                                 GNUNET_DISK_PERM_NONE);
1002   if (NULL != fh)
1003   {
1004     if (plc->file_offset != GNUNET_DISK_file_seek
1005                             (fh, plc->file_offset, GNUNET_DISK_SEEK_SET)) {
1006       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "seek", filename);
1007       GNUNET_free (filename);
1008       return;
1009     }
1010     GNUNET_DISK_file_write (fh, data, data_size);
1011     GNUNET_DISK_file_close (fh);
1012     GNUNET_free (filename);
1013   }
1014   else
1015   {
1016     GNUNET_free (filename);
1017     GNUNET_break (0);
1018   }
1019   plc->file_offset += data_size;
1020 }
1021
1022
1023 /**
1024  * Received end of message to be saved to disk.
1025  *
1026  * Remove .part ending from the filename.
1027  */
1028 static void
1029 place_recv_save_eom (void *cls,
1030                      const struct GNUNET_PSYC_MessageHeader *msg,
1031                      const struct GNUNET_MessageHeader *pmsg,
1032                      uint64_t message_id,
1033                      uint8_t is_cancelled)
1034 {
1035   struct Place *plc = cls;
1036   if (GNUNET_YES != plc->file_save)
1037     return;
1038
1039   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&plc->pub_key);
1040   char *fn = NULL;
1041   GNUNET_asprintf (&fn, "%s%c%s%c%s%c%" PRIu64,
1042                    dir_social, DIR_SEPARATOR,
1043                    "files", DIR_SEPARATOR,
1044                    place_pub_str, DIR_SEPARATOR,
1045                    GNUNET_ntohll (msg->message_id));
1046   GNUNET_free (place_pub_str);
1047   char *fn_part = NULL;
1048   GNUNET_asprintf (&fn_part, "%s.part", fn);
1049
1050   if (rename (fn_part, fn)) {
1051       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1052                   "Failed to rename %s into %s: %s (%d)\n",
1053                   fn_part, fn, strerror (errno), errno);
1054   }
1055
1056   GNUNET_free (fn);
1057   GNUNET_free (fn_part);
1058 }
1059
1060
1061 /**
1062  * Initialize place data structure.
1063  */
1064 static void
1065 place_init (struct Place *plc)
1066 {
1067   plc->slicer = GNUNET_PSYC_slicer_create ();
1068 }
1069
1070
1071 /**
1072  * Add a place to the @e places hash map.
1073  *
1074  * @param ereq
1075  *        Entry request.
1076  *
1077  * @return #GNUNET_OK if the place was added
1078  *         #GNUNET_NO if the place already exists in the hash map
1079  *         #GNUNET_SYSERR on error
1080  */
1081 static int
1082 place_add (const struct PlaceEnterRequest *ereq)
1083 {
1084   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1085               "Adding place to hashmap:\n");
1086
1087   struct EgoPlacePublicKey ego_place_pub_key = {
1088     .ego_pub_key = ereq->ego_pub_key,
1089     .place_pub_key = ereq->place_pub_key,
1090   };
1091   struct GNUNET_HashCode ego_place_pub_hash;
1092   GNUNET_CRYPTO_hash (&ego_place_pub_key, sizeof (ego_place_pub_key), &ego_place_pub_hash);
1093
1094   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1095               "  ego_place_pub_hash = %s\n", GNUNET_h2s (&ego_place_pub_hash));
1096
1097   struct GNUNET_MessageHeader *
1098     place_msg = GNUNET_CONTAINER_multihashmap_get (places, &ego_place_pub_hash);
1099   if (NULL != place_msg)
1100     return GNUNET_NO;
1101
1102   place_msg = GNUNET_copy_message (&ereq->header);
1103   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (places, &ego_place_pub_hash, place_msg,
1104                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1105   {
1106     GNUNET_break (0);
1107     GNUNET_free (place_msg);
1108     return GNUNET_SYSERR;
1109   }
1110
1111   return GNUNET_OK;
1112 }
1113
1114 /**
1115  * Add a place to the @e app_places hash map.
1116  *
1117  * @param app_id
1118  *        Application ID.
1119  * @param ereq
1120  *        Entry request.
1121  *
1122  * @return #GNUNET_OK if the place was added
1123  *         #GNUNET_NO if the place already exists in the hash map
1124  *         #GNUNET_SYSERR on error
1125  */
1126 static int
1127 app_place_add (const char *app_id,
1128                const struct PlaceEnterRequest *ereq)
1129 {
1130   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1131               "Adding app place to hashmap:\n");
1132   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1133               "  app_id = %s\n", app_id);
1134
1135   struct GNUNET_HashCode app_id_hash;
1136   GNUNET_CRYPTO_hash (app_id, strlen (app_id) + 1, &app_id_hash);
1137
1138   struct EgoPlacePublicKey ego_place_pub_key = {
1139     .ego_pub_key = ereq->ego_pub_key,
1140     .place_pub_key = ereq->place_pub_key,
1141   };
1142   struct GNUNET_HashCode ego_place_pub_hash;
1143   GNUNET_CRYPTO_hash (&ego_place_pub_key, sizeof (ego_place_pub_key), &ego_place_pub_hash);
1144
1145   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1146               "  ego_place_pub_hash = %s\n", GNUNET_h2s (&ego_place_pub_hash));
1147
1148   struct GNUNET_CONTAINER_MultiHashMap *
1149     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
1150   if (NULL == app_places)
1151   {
1152     app_places = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1153     GNUNET_CONTAINER_multihashmap_put (apps_places, &app_id_hash, app_places,
1154                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1155   }
1156
1157   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains (app_places, &ego_place_pub_hash))
1158     return GNUNET_NO;
1159
1160   if (GNUNET_SYSERR == place_add (ereq))
1161     return GNUNET_SYSERR;
1162
1163   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (app_places, &ego_place_pub_hash, NULL,
1164                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1165   {
1166     GNUNET_break (0);
1167     return GNUNET_SYSERR;
1168   }
1169
1170   struct GNUNET_HashCode place_pub_hash;
1171   GNUNET_CRYPTO_hash (&ereq->place_pub_key, sizeof (ereq->place_pub_key), &place_pub_hash);
1172
1173   struct GNUNET_CONTAINER_MultiHashMap *
1174     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &place_pub_hash);
1175   if (NULL == place_apps)
1176   {
1177     place_apps = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1178     if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (places_apps, &place_pub_hash, place_apps,
1179                                                         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1180     {
1181       GNUNET_break (0);
1182     }
1183   }
1184
1185   size_t app_id_size = strlen (app_id) + 1;
1186   void *app_id_value = GNUNET_malloc (app_id_size);
1187   GNUNET_memcpy (app_id_value, app_id, app_id_size);
1188
1189   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (place_apps, &app_id_hash, app_id_value,
1190                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1191   {
1192     GNUNET_break (0);
1193   }
1194
1195   return GNUNET_OK;
1196 }
1197
1198
1199 /**
1200  * Save place entry message to disk.
1201  *
1202  * @param app_id
1203  *        Application ID.
1204  * @param ereq
1205  *        Entry request message.
1206  */
1207 static int
1208 app_place_save (const char *app_id,
1209                 const struct PlaceEnterRequest *ereq)
1210 {
1211   app_place_add (app_id, ereq);
1212
1213   if (NULL == dir_places)
1214     return GNUNET_SYSERR;
1215
1216   char *ego_pub_str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&ereq->ego_pub_key);
1217   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&ereq->place_pub_key);
1218   char *filename = NULL;
1219   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s",
1220                    dir_social, DIR_SEPARATOR,
1221                    "places", DIR_SEPARATOR,
1222                    ego_pub_str, DIR_SEPARATOR,
1223                    place_pub_str);
1224   int ret = GNUNET_DISK_directory_create_for_file (filename);
1225   if (GNUNET_OK != ret
1226       || 0 > GNUNET_DISK_fn_write (filename, ereq, ntohs (ereq->header.size),
1227                                    GNUNET_DISK_PERM_USER_READ
1228                                    | GNUNET_DISK_PERM_USER_WRITE))
1229   {
1230     GNUNET_break (0);
1231     ret = GNUNET_SYSERR;
1232   }
1233   GNUNET_free (filename);
1234
1235   if (ret == GNUNET_OK)
1236   {
1237     GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s%c" "%s",
1238                      dir_social, DIR_SEPARATOR,
1239                      "apps", DIR_SEPARATOR,
1240                      app_id, DIR_SEPARATOR,
1241                      ego_pub_str, DIR_SEPARATOR,
1242                      place_pub_str);
1243     ret = GNUNET_DISK_directory_create_for_file (filename);
1244     if (GNUNET_OK != ret
1245         || 0 > GNUNET_DISK_fn_write (filename, "", 0,
1246                                      GNUNET_DISK_PERM_USER_READ
1247                                      | GNUNET_DISK_PERM_USER_WRITE))
1248     {
1249       GNUNET_break (0);
1250       ret = GNUNET_SYSERR;
1251     }
1252     GNUNET_free (filename);
1253   }
1254   GNUNET_free (ego_pub_str);
1255   GNUNET_free (place_pub_str);
1256   return ret;
1257 }
1258
1259
1260 int
1261 app_place_remove (const char *app_id,
1262                   const struct GNUNET_CRYPTO_EcdsaPublicKey *ego_pub_key,
1263                   const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key)
1264 {
1265   struct GNUNET_HashCode ego_pub_hash;
1266   struct GNUNET_HashCode place_pub_hash;
1267   GNUNET_CRYPTO_hash (ego_pub_key, sizeof (*ego_pub_key), &ego_pub_hash);
1268   GNUNET_CRYPTO_hash (place_pub_key, sizeof (*place_pub_key), &place_pub_hash);
1269
1270   char *ego_pub_str = GNUNET_CRYPTO_ecdsa_public_key_to_string (ego_pub_key);
1271   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (place_pub_key);
1272   char *app_place_filename = NULL;
1273   GNUNET_asprintf (&app_place_filename,
1274                    "%s%c" "%s%c" "%s%c" "%s%c" "%s",
1275                    dir_social, DIR_SEPARATOR,
1276                    "apps", DIR_SEPARATOR,
1277                    app_id, DIR_SEPARATOR,
1278                    ego_pub_str, DIR_SEPARATOR,
1279                    place_pub_str);
1280   GNUNET_free (ego_pub_str);
1281   GNUNET_free (place_pub_str);
1282
1283   struct GNUNET_HashCode app_id_hash;
1284   GNUNET_CRYPTO_hash (app_id, strlen (app_id) + 1, &app_id_hash);
1285
1286   struct GNUNET_CONTAINER_MultiHashMap *
1287     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
1288
1289   if (NULL != app_places)
1290     GNUNET_CONTAINER_multihashmap_remove (app_places, &place_pub_hash, NULL);
1291
1292   struct GNUNET_CONTAINER_MultiHashMap *
1293     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &place_pub_hash);
1294   if (NULL != place_apps)
1295   {
1296     void *app_id_value = GNUNET_CONTAINER_multihashmap_get (place_apps, &app_id_hash);
1297     if (NULL != app_id_value)
1298     {
1299       GNUNET_CONTAINER_multihashmap_remove (place_apps, &app_id_hash, app_id_value);
1300       GNUNET_free (app_id_value);
1301     }
1302   }
1303
1304   int ret = GNUNET_OK;
1305
1306   if (0 != unlink (app_place_filename))
1307   {
1308     GNUNET_break (0);
1309     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1310                 "Error removing app place file: %s: %s (%d)\n",
1311                 app_place_filename, strerror (errno), errno);
1312     ret = GNUNET_SYSERR;
1313   }
1314   GNUNET_free (app_place_filename);
1315
1316   return ret;
1317 }
1318
1319
1320 /**
1321  * Enter place as host.
1322  *
1323  * @param hreq
1324  *        Host entry request.
1325  * @param[out] ret_hst
1326  *        Returned Host struct.
1327  *
1328  * @return #GNUNET_YES if the host entered the place just now,
1329  *         #GNUNET_NO  if the place is already entered,
1330  *         #GNUNET_SYSERR if place_pub_key was set
1331  *                        but its private key was not found
1332  */
1333 static int
1334 host_enter (const struct HostEnterRequest *hreq, struct Host **ret_hst)
1335 {
1336   int ret = GNUNET_NO;
1337   struct GNUNET_HashCode place_pub_hash;
1338   GNUNET_CRYPTO_hash (&hreq->place_pub_key, sizeof (hreq->place_pub_key),
1339                       &place_pub_hash);
1340   struct Host *hst = GNUNET_CONTAINER_multihashmap_get (hosts, &place_pub_hash);
1341
1342   if (NULL == hst)
1343   {
1344     hst = GNUNET_new (struct Host);
1345     hst->policy = hreq->policy;
1346     hst->join_reqs = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1347     hst->relay_msgs = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1348
1349     struct Place *plc = &hst->plc;
1350     place_init (plc);
1351     plc->is_host = GNUNET_YES;
1352     plc->pub_key = hreq->place_pub_key;
1353     plc->pub_key_hash = place_pub_hash;
1354
1355     GNUNET_CONTAINER_multihashmap_put (hosts, &plc->pub_key_hash, plc,
1356                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1357     hst->master = GNUNET_PSYC_master_start (cfg, &hreq->place_key, hst->policy,
1358                                             &psyc_master_started,
1359                                             &psyc_recv_join_request,
1360                                             &psyc_recv_message, NULL, hst);
1361     plc->channel = GNUNET_PSYC_master_get_channel (hst->master);
1362     ret = GNUNET_YES;
1363   }
1364
1365   if (NULL != ret_hst)
1366     *ret_hst = hst;
1367   return ret;
1368 }
1369
1370
1371 const struct MsgProcRequest *
1372 msg_proc_parse (const struct GNUNET_MessageHeader *msg,
1373                 uint32_t *flags,
1374                 const char **method_prefix,
1375                 struct GNUNET_HashCode *method_hash)
1376 {
1377   const struct MsgProcRequest *mpreq = (const struct MsgProcRequest *) msg;
1378   uint8_t method_size = ntohs (mpreq->header.size) - sizeof (*mpreq);
1379   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &mpreq[1],
1380                                                     method_size, 1, method_prefix);
1381
1382   if (0 == offset || offset != method_size || *method_prefix == NULL)
1383   {
1384     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1385                 "offset = %u, method_size = %u, method_name = %s\n",
1386                 offset, method_size, *method_prefix);
1387     return NULL;
1388   }
1389
1390   GNUNET_CRYPTO_hash (*method_prefix, method_size, method_hash);
1391   *flags = ntohl (mpreq->flags);
1392   return mpreq;
1393 }
1394
1395
1396 /**
1397  * Handle a client setting message proccesing flags for a method prefix.
1398  */
1399 static void
1400 client_recv_msg_proc_set (void *cls, struct GNUNET_SERVER_Client *client,
1401                           const struct GNUNET_MessageHeader *msg)
1402 {
1403   struct Client *
1404     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
1405   GNUNET_assert (NULL != ctx);
1406   struct Place *plc = ctx->plc;
1407
1408   const char *method_prefix = NULL;
1409   uint32_t flags = 0;
1410   struct GNUNET_HashCode method_hash;
1411   const struct MsgProcRequest *
1412     mpreq = msg_proc_parse (msg, &flags, &method_prefix, &method_hash);
1413
1414   if (NULL == mpreq) {
1415     GNUNET_break (0);
1416     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1417     return;
1418   }
1419 #if 0
1420   GNUNET_PSYC_slicer_method_remove (plc->slicer, method_prefix,
1421                                     place_recv_relay_method,
1422                                     place_recv_relay_modifier,
1423                                     place_recv_relay_data,
1424                                     place_recv_relay_eom);
1425   GNUNET_PSYC_slicer_method_remove (plc->slicer, method_prefix,
1426                                     place_recv_save_method,
1427                                     NULL,
1428                                     place_recv_save_data,
1429                                     place_recv_save_eom);
1430 #endif
1431   if (flags & GNUNET_SOCIAL_MSG_PROC_RELAY)
1432   {
1433     GNUNET_PSYC_slicer_method_add (plc->slicer, method_prefix, NULL,
1434                                    place_recv_relay_method,
1435                                    place_recv_relay_modifier,
1436                                    place_recv_relay_data,
1437                                    place_recv_relay_eom,
1438                                    plc);
1439   }
1440   if (flags & GNUNET_SOCIAL_MSG_PROC_SAVE)
1441   {
1442     GNUNET_PSYC_slicer_method_add (plc->slicer, method_prefix, NULL,
1443                                    place_recv_save_method,
1444                                    NULL,
1445                                    place_recv_save_data,
1446                                    place_recv_save_eom,
1447                                    plc);
1448   }
1449
1450   /** @todo Save flags to be able to resume relaying/saving after restart */
1451
1452   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1453 }
1454
1455
1456 /**
1457  * Handle a connecting client requesting to clear all relay rules.
1458  */
1459 static void
1460 client_recv_msg_proc_clear (void *cls, struct GNUNET_SERVER_Client *client,
1461                             const struct GNUNET_MessageHeader *msg)
1462 {
1463   struct Client *
1464     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
1465   GNUNET_assert (NULL != ctx);
1466   struct Place *plc = ctx->plc;
1467   if (GNUNET_YES != plc->is_host) {
1468     GNUNET_break (0);
1469     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1470     return;
1471   }
1472   GNUNET_PSYC_slicer_clear (plc->slicer);
1473
1474   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1475 }
1476
1477
1478 /**
1479  * Handle a connecting client entering a place as host.
1480  */
1481 static void
1482 client_recv_host_enter (void *cls, struct GNUNET_SERVER_Client *client,
1483                         const struct GNUNET_MessageHeader *msg)
1484 {
1485   struct HostEnterRequest *hreq
1486     = (struct HostEnterRequest *) GNUNET_copy_message (msg);
1487
1488   uint8_t app_id_size = ntohs (hreq->header.size) - sizeof (*hreq);
1489   const char *app_id = NULL;
1490   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &hreq[1],
1491                                                     app_id_size, 1, &app_id);
1492   if (0 == offset || offset != app_id_size || app_id == NULL)
1493   {
1494     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1495                 "offset = %u, app_id_size = %u, app_id = %s\n",
1496                 offset, app_id_size, app_id);
1497     GNUNET_break (0);
1498     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1499     return;
1500   }
1501
1502   struct Host *hst = NULL;
1503   struct Place *plc = NULL;
1504   int ret = GNUNET_OK;
1505
1506   struct GNUNET_CRYPTO_EddsaPublicKey empty_pub_key;
1507   memset (&empty_pub_key, 0, sizeof (empty_pub_key));
1508
1509   if (0 == memcmp (&hreq->place_pub_key, &empty_pub_key, sizeof (empty_pub_key)))
1510   { // no public key set: create new private key & save the place
1511     struct GNUNET_CRYPTO_EddsaPrivateKey *
1512       place_key = GNUNET_CRYPTO_eddsa_key_create ();
1513     hreq->place_key = *place_key;
1514     GNUNET_CRYPTO_eddsa_key_get_public (place_key, &hreq->place_pub_key);
1515     GNUNET_CRYPTO_eddsa_key_clear (place_key);
1516     GNUNET_free (place_key);
1517
1518     app_place_save (app_id, (const struct PlaceEnterRequest *) hreq);
1519   }
1520
1521   switch (host_enter (hreq, &hst))
1522   {
1523   case GNUNET_YES:
1524     plc = &hst->plc;
1525     break;
1526
1527   case GNUNET_NO:
1528   {
1529     plc = &hst->plc;
1530     client_send_host_enter_ack (client, hst, GNUNET_OK);
1531     break;
1532   }
1533   case GNUNET_SYSERR:
1534     ret = GNUNET_SYSERR;
1535   }
1536
1537   if (ret != GNUNET_SYSERR)
1538   {
1539
1540     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1541                 "%p Client connected as host to place %s.\n",
1542                 hst, GNUNET_h2s (&plc->pub_key_hash));
1543
1544     struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
1545     cli->client = client;
1546     GNUNET_CONTAINER_DLL_insert (plc->clients_head, plc->clients_tail, cli);
1547
1548     struct Client *ctx = GNUNET_new (struct Client);
1549     ctx->plc = plc;
1550     GNUNET_SERVER_client_set_user_context (client, ctx);
1551   }
1552
1553   GNUNET_CRYPTO_eddsa_key_clear (&hreq->place_key);
1554   GNUNET_free (hreq);
1555   GNUNET_SERVER_receive_done (client, ret);
1556 }
1557
1558
1559 /**
1560  * Enter place as guest.
1561  *
1562  * @param greq
1563  *        Guest entry request.
1564  * @param[out] ret_gst
1565  *        Returned Guest struct.
1566  *
1567  * @return #GNUNET_YES if the guest entered the place just now,
1568  *         #GNUNET_NO  if the place is already entered,
1569  *         #GNUNET_SYSERR on error.
1570  */
1571 static int
1572 guest_enter (const struct GuestEnterRequest *greq, struct Guest **ret_gst)
1573 {
1574   int ret = GNUNET_NO;
1575   uint16_t greq_size = ntohs (greq->header.size);
1576
1577   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key = greq->ego_pub_key;
1578   struct GNUNET_HashCode ego_pub_hash;
1579   GNUNET_CRYPTO_hash (&ego_pub_key, sizeof (ego_pub_key), &ego_pub_hash);
1580   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
1581
1582   if (NULL == ego)
1583     return GNUNET_SYSERR;
1584
1585   struct GNUNET_HashCode place_pub_hash;
1586   GNUNET_CRYPTO_hash (&greq->place_pub_key, sizeof (greq->place_pub_key),
1587                       &place_pub_hash);
1588
1589   struct GNUNET_CONTAINER_MultiHashMap *
1590     plc_gst = GNUNET_CONTAINER_multihashmap_get (place_guests, &place_pub_hash);
1591   struct Guest *gst = NULL;
1592
1593   if (NULL != plc_gst)
1594     gst = GNUNET_CONTAINER_multihashmap_get (plc_gst, &ego_pub_hash);
1595
1596   if (NULL == gst || NULL == gst->slave)
1597   {
1598     gst = GNUNET_new (struct Guest);
1599     gst->origin = greq->origin;
1600     gst->relay_count = ntohl (greq->relay_count);
1601
1602     uint16_t len;
1603     uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1604     const char *app_id = (const char *) &greq[1];
1605     const char *p = app_id;
1606
1607     len = strnlen (app_id, remaining);
1608     if (len == remaining)
1609     {
1610       GNUNET_free (gst);
1611       GNUNET_break (0);
1612       return GNUNET_SYSERR;
1613     }
1614     p += len + 1;
1615     remaining -= len + 1;
1616
1617     const struct GNUNET_PeerIdentity *relays = NULL;
1618     uint16_t relay_size = gst->relay_count * sizeof (*relays);
1619     if (remaining < relay_size)
1620     {
1621       GNUNET_free (gst);
1622       GNUNET_break (0);
1623       return GNUNET_SYSERR;
1624     }
1625     if (0 < relay_size)
1626       relays = (const struct GNUNET_PeerIdentity *) p;
1627     p += relay_size;
1628     remaining -= relay_size;
1629
1630     struct GNUNET_PSYC_Message *join_msg = NULL;
1631     uint16_t join_msg_size = 0;
1632
1633     if (sizeof (struct GNUNET_MessageHeader) <= remaining)
1634     {
1635       join_msg = (struct GNUNET_PSYC_Message *) p;
1636       join_msg_size = ntohs (join_msg->header.size);
1637       p += join_msg_size;
1638       remaining -= join_msg_size;
1639     }
1640     if (0 != remaining)
1641     {
1642       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1643                   "%zu + %u + %u != %u\n",
1644                   sizeof (*greq), relay_size, join_msg_size, greq_size);
1645       GNUNET_free (gst);
1646       GNUNET_break (0);
1647       return GNUNET_SYSERR;
1648     }
1649     if (0 < relay_size)
1650     {
1651       gst->relays = GNUNET_malloc (relay_size);
1652       GNUNET_memcpy (gst->relays, relays, relay_size);
1653     }
1654
1655     gst->join_flags = ntohl (greq->flags);
1656
1657     struct Place *plc = &gst->plc;
1658     place_init (plc);
1659     plc->is_host = GNUNET_NO;
1660     plc->pub_key = greq->place_pub_key;
1661     plc->pub_key_hash = place_pub_hash;
1662     plc->ego_pub_key = ego_pub_key;
1663     plc->ego_pub_hash = ego_pub_hash;
1664     plc->ego_key = ego->key;
1665
1666     if (NULL == plc_gst)
1667     {
1668       plc_gst = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
1669       (void) GNUNET_CONTAINER_multihashmap_put (place_guests, &plc->pub_key_hash, plc_gst,
1670                                                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1671     }
1672     (void) GNUNET_CONTAINER_multihashmap_put (plc_gst, &plc->ego_pub_hash, gst,
1673                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1674     (void) GNUNET_CONTAINER_multihashmap_put (guests, &plc->pub_key_hash, gst,
1675                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1676     gst->slave
1677       = GNUNET_PSYC_slave_join (cfg, &plc->pub_key, &plc->ego_key,
1678                                 gst->join_flags, &gst->origin,
1679                                 gst->relay_count, gst->relays,
1680                                 &psyc_recv_message, NULL,
1681                                 &psyc_slave_connected,
1682                                 &psyc_recv_join_dcsn,
1683                                 gst, join_msg);
1684     plc->channel = GNUNET_PSYC_slave_get_channel (gst->slave);
1685     ret = GNUNET_YES;
1686   }
1687
1688   if (NULL != ret_gst)
1689     *ret_gst = gst;
1690   return ret;
1691 }
1692
1693
1694 /**
1695  * Handle a connecting client entering a place as guest.
1696  */
1697 static void
1698 client_recv_guest_enter (void *cls, struct GNUNET_SERVER_Client *client,
1699                          const struct GNUNET_MessageHeader *msg)
1700 {
1701   const struct GuestEnterRequest *
1702     greq = (const struct GuestEnterRequest *) msg;
1703
1704   uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1705   const char *app_id = NULL;
1706   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &greq[1],
1707                                                     remaining, 1, &app_id);
1708   if (0 == offset)
1709   {
1710     GNUNET_break (0);
1711     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1712     return;
1713   }
1714
1715   struct Guest *gst = NULL;
1716   struct Place *plc = NULL;
1717
1718   switch (guest_enter (greq, &gst))
1719   {
1720   case GNUNET_YES:
1721     plc = &gst->plc;
1722     app_place_save (app_id, (const struct PlaceEnterRequest *) greq);
1723     break;
1724
1725   case GNUNET_NO:
1726   {
1727     plc = &gst->plc;
1728
1729     struct GNUNET_PSYC_CountersResultMessage res;
1730     res.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK);
1731     res.header.size = htons (sizeof (res));
1732     res.result_code = htonl (GNUNET_OK);
1733     res.max_message_id = GNUNET_htonll (plc->max_message_id);
1734
1735     client_send_msg (client, &res.header);
1736     if (NULL != gst->join_dcsn)
1737       client_send_msg (client, &gst->join_dcsn->header);
1738
1739     break;
1740   }
1741   case GNUNET_SYSERR:
1742     GNUNET_break (0);
1743     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1744     return;
1745   }
1746
1747   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1748               "%p Client connected as guest to place %s.\n",
1749               gst, GNUNET_h2s (&plc->pub_key_hash));
1750
1751   struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
1752   cli->client = client;
1753   GNUNET_CONTAINER_DLL_insert (plc->clients_head, plc->clients_tail, cli);
1754
1755   struct Client *ctx = GNUNET_new (struct Client);
1756   ctx->plc = plc;
1757   GNUNET_SERVER_client_set_user_context (client, ctx);
1758   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1759 }
1760
1761
1762 struct GuestEnterByNameClosure
1763 {
1764   struct GNUNET_SERVER_Client *client;
1765   char *app_id;
1766   char *password;
1767   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
1768   struct GNUNET_MessageHeader *join_msg;
1769 };
1770
1771
1772 /**
1773  * Result of a GNS name lookup for entering a place.
1774  *
1775  * @see GNUNET_SOCIAL_guest_enter_by_name
1776  */
1777 static void
1778 gns_result_guest_enter (void *cls, uint32_t rd_count,
1779                         const struct GNUNET_GNSRECORD_Data *rd)
1780 {
1781   struct GuestEnterByNameClosure *gcls = cls;
1782   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1783               "%p GNS result: %u records.\n", gcls->client, rd_count);
1784
1785   const struct GNUNET_GNSRECORD_PlaceData *
1786     rec = (const struct GNUNET_GNSRECORD_PlaceData *) rd->data;
1787
1788   if (0 == rd_count || rd->data_size < sizeof (*rec))
1789   {
1790     GNUNET_break (0);
1791     GNUNET_SERVER_receive_done (gcls->client, GNUNET_SYSERR);
1792     return;
1793   }
1794
1795   uint16_t relay_count = ntohl (rec->relay_count);
1796   struct GNUNET_PeerIdentity *relays = NULL;
1797
1798   if (0 < relay_count)
1799   {
1800     if (rd->data_size == sizeof (*rec) + relay_count * sizeof (struct GNUNET_PeerIdentity))
1801     {
1802       relays = (struct GNUNET_PeerIdentity *) &rec[1];
1803     }
1804     else
1805     {
1806       relay_count = 0;
1807       GNUNET_break_op (0);
1808     }
1809   }
1810
1811   uint16_t app_id_size = strlen (gcls->app_id) + 1;
1812   uint16_t relay_size = relay_count * sizeof (*relays);
1813   uint16_t join_msg_size = 0;
1814   if (NULL != gcls->join_msg)
1815     join_msg_size = ntohs (gcls->join_msg->size);
1816   uint16_t greq_size = sizeof (struct GuestEnterRequest)
1817     + app_id_size + relay_size + join_msg_size;
1818   struct GuestEnterRequest *greq = GNUNET_malloc (greq_size);
1819   greq->header.size = htons (greq_size);
1820   greq->header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1821   greq->ego_pub_key = gcls->ego_pub_key;
1822   greq->place_pub_key = rec->place_pub_key;
1823   greq->origin = rec->origin;
1824   greq->relay_count = rec->relay_count;
1825
1826   void *p = &greq[1];
1827   GNUNET_memcpy (p, gcls->app_id, app_id_size);
1828   p += app_id_size;
1829   GNUNET_memcpy (p, relays, relay_size);
1830   p += relay_size;
1831   GNUNET_memcpy (p, gcls->join_msg, join_msg_size);
1832
1833   client_recv_guest_enter (NULL, gcls->client, &greq->header);
1834
1835   GNUNET_free (gcls->app_id);
1836   if (NULL != gcls->password)
1837     GNUNET_free (gcls->password);
1838   if (NULL != gcls->join_msg)
1839     GNUNET_free (gcls->join_msg);
1840   GNUNET_free (gcls);
1841   GNUNET_free (greq);
1842 }
1843
1844
1845 /**
1846  * Handle a connecting client entering a place as guest using a GNS address.
1847  *
1848  * Look up GNS address and generate a GuestEnterRequest from that.
1849  */
1850 static void
1851 client_recv_guest_enter_by_name (void *cls, struct GNUNET_SERVER_Client *client,
1852                                  const struct GNUNET_MessageHeader *msg)
1853 {
1854   const struct GuestEnterByNameRequest *
1855     greq = (const struct GuestEnterByNameRequest *) msg;
1856
1857   struct GuestEnterByNameClosure *gcls = GNUNET_malloc (sizeof (*gcls));
1858   gcls->client = client;
1859   gcls->ego_pub_key = greq->ego_pub_key;
1860
1861   const char *p = (const char *) &greq[1];
1862   const char *app_id = NULL, *password = NULL, *gns_name = NULL;
1863   uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1864   uint16_t offset = GNUNET_STRINGS_buffer_tokenize (p, remaining, 3,
1865                                                     &app_id,
1866                                                     &gns_name,
1867                                                     &password);
1868   p += offset;
1869   remaining -= offset;
1870
1871   if (0 != offset && sizeof (*gcls->join_msg) <= remaining)
1872   {
1873     gcls->join_msg = GNUNET_copy_message ((struct GNUNET_MessageHeader *) p);
1874     remaining -= ntohs (gcls->join_msg->size);
1875   }
1876
1877   if (0 == offset || 0 != remaining)
1878   {
1879     if (NULL != gcls->join_msg)
1880       GNUNET_free (gcls->join_msg);
1881     GNUNET_free (gcls);
1882     GNUNET_break (0);
1883     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1884     return;
1885   }
1886
1887   uint16_t app_id_size = strlen (app_id) + 1;
1888   gcls->app_id = GNUNET_malloc (app_id_size);
1889   GNUNET_memcpy (gcls->app_id, app_id, app_id_size);
1890
1891   uint16_t password_size = strlen (password);
1892   if (0 < password_size++)
1893   {
1894     gcls->password = GNUNET_malloc (password_size);
1895     GNUNET_memcpy (gcls->password, password, password_size);
1896   }
1897
1898   GNUNET_GNS_lookup (gns, gns_name, &greq->ego_pub_key,
1899                      GNUNET_GNSRECORD_TYPE_PLACE, GNUNET_GNS_LO_DEFAULT,
1900                      NULL, gns_result_guest_enter, gcls);
1901 }
1902
1903
1904 void
1905 app_notify_place (struct GNUNET_MessageHeader *msg,
1906                   struct GNUNET_SERVER_Client *client)
1907 {
1908   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1909               "%p Sending place notification of type %u to client.\n",
1910               client, ntohs (msg->type));
1911
1912   uint16_t msg_size = ntohs (msg->size);
1913   struct AppPlaceMessage amsg;
1914   amsg.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE);
1915   amsg.header.size = htons (sizeof (amsg));
1916   // FIXME: also notify about not entered places
1917   amsg.place_state = GNUNET_SOCIAL_PLACE_STATE_ENTERED;
1918
1919   switch (ntohs (msg->type))
1920   {
1921   case GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER:
1922     if (msg_size < sizeof (struct HostEnterRequest))
1923       return;
1924     struct HostEnterRequest *hreq = (struct HostEnterRequest *) msg;
1925     amsg.is_host = GNUNET_YES;
1926     amsg.ego_pub_key = hreq->ego_pub_key;
1927     amsg.place_pub_key = hreq->place_pub_key;
1928     break;
1929
1930   case GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER:
1931     if (msg_size < sizeof (struct GuestEnterRequest))
1932       return;
1933     struct GuestEnterRequest *greq = (struct GuestEnterRequest *) msg;
1934     amsg.is_host = GNUNET_NO;
1935     amsg.ego_pub_key = greq->ego_pub_key;
1936     amsg.place_pub_key = greq->place_pub_key;
1937     break;
1938
1939   default:
1940     return;
1941   }
1942
1943   client_send_msg (client, &amsg.header);
1944 }
1945
1946
1947 void
1948 app_notify_place_end (struct GNUNET_SERVER_Client *client)
1949 {
1950   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1951               "%p Sending end of place list notification to client\n",
1952               client);
1953
1954   struct GNUNET_MessageHeader msg;
1955   msg.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE_END);
1956   msg.size = htons (sizeof (msg));
1957
1958   client_send_msg (client, &msg);
1959 }
1960
1961
1962 void
1963 app_notify_ego (struct Ego *ego, struct GNUNET_SERVER_Client *client)
1964 {
1965   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1966               "%p Sending ego notification to client: %s\n",
1967               client, ego->name);
1968
1969   size_t name_size = strlen (ego->name) + 1;
1970   struct AppEgoMessage *emsg = GNUNET_malloc (sizeof (*emsg) + name_size);
1971   emsg->header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO);
1972   emsg->header.size = htons (sizeof (*emsg) + name_size);
1973
1974   GNUNET_CRYPTO_ecdsa_key_get_public (&ego->key, &emsg->ego_pub_key);
1975   GNUNET_memcpy (&emsg[1], ego->name, name_size);
1976
1977   client_send_msg (client, &emsg->header);
1978   GNUNET_free (emsg);
1979 }
1980
1981
1982 void
1983 app_notify_ego_end (struct GNUNET_SERVER_Client *client)
1984 {
1985   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1986               "%p Sending end of ego list notification to client\n",
1987               client);
1988
1989   struct GNUNET_MessageHeader msg;
1990   msg.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO_END);
1991   msg.size = htons (sizeof (msg));
1992
1993   client_send_msg (client, &msg);
1994 }
1995
1996
1997 int
1998 app_place_entry_notify (void *cls, const struct GNUNET_HashCode *key, void *value)
1999 {
2000   struct GNUNET_MessageHeader *
2001     msg = GNUNET_CONTAINER_multihashmap_get (places, key);
2002   if (NULL != msg)
2003     app_notify_place (msg, cls);
2004   return GNUNET_YES;
2005 }
2006
2007
2008 int
2009 ego_entry (void *cls, const struct GNUNET_HashCode *key, void *value)
2010 {
2011   app_notify_ego (value, cls);
2012   return GNUNET_YES;
2013 }
2014
2015
2016 /**
2017  * Handle application connection.
2018  */
2019 static void
2020 client_recv_app_connect (void *cls, struct GNUNET_SERVER_Client *client,
2021                          const struct GNUNET_MessageHeader *msg)
2022 {
2023   const struct AppConnectRequest *creq
2024     = (const struct AppConnectRequest *) msg;
2025
2026   uint8_t app_id_size = ntohs (creq->header.size) - sizeof (*creq);
2027   const char *app_id = NULL;
2028   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &creq[1],
2029                                                     app_id_size, 1, &app_id);
2030   if (0 == offset || offset != app_id_size)
2031   {
2032     GNUNET_break (0);
2033     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2034     return;
2035   }
2036
2037   struct GNUNET_HashCode app_id_hash;
2038   GNUNET_CRYPTO_hash (app_id, app_id_size, &app_id_hash);
2039
2040   GNUNET_CONTAINER_multihashmap_iterate (egos, ego_entry, client);
2041   app_notify_ego_end (client);
2042
2043   struct GNUNET_CONTAINER_MultiHashMap *
2044     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
2045   if (NULL != app_places)
2046     GNUNET_CONTAINER_multihashmap_iterate (app_places, app_place_entry_notify, client);
2047   app_notify_place_end (client);
2048
2049   struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
2050   cli->client = client;
2051   struct Application *app = GNUNET_CONTAINER_multihashmap_get (apps,
2052                                                                &app_id_hash);
2053   if (NULL == app) {
2054     app = GNUNET_malloc (sizeof (*app));
2055     (void) GNUNET_CONTAINER_multihashmap_put (apps, &app_id_hash, app,
2056                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
2057   }
2058   GNUNET_CONTAINER_DLL_insert (app->clients_head, app->clients_tail, cli);
2059
2060   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2061               "%p Application %s connected.\n", app, app_id);
2062
2063   struct Client *ctx = GNUNET_new (struct Client);
2064   ctx->app_id = GNUNET_malloc (app_id_size);
2065   GNUNET_memcpy (ctx->app_id, app_id, app_id_size);
2066
2067   GNUNET_SERVER_client_set_user_context (client, ctx);
2068   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2069 }
2070
2071
2072 /**
2073  * Handle application detach request.
2074  */
2075 static void
2076 client_recv_app_detach (void *cls, struct GNUNET_SERVER_Client *client,
2077                         const struct GNUNET_MessageHeader *msg)
2078 {
2079   struct Client *
2080     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2081   GNUNET_assert (NULL != ctx);
2082
2083   struct Place *plc = ctx->plc;
2084
2085   const struct AppDetachRequest *req
2086     = (const struct AppDetachRequest *) msg;
2087
2088   int ret = app_place_remove (ctx->app_id, &plc->ego_pub_key, &req->place_pub_key);
2089   client_send_result (client, req->op_id, ret, NULL, 0);
2090
2091   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2092 }
2093
2094
2095 int
2096 app_places_entry_remove (void *cls, const struct GNUNET_HashCode *key, void *value)
2097 {
2098   struct Place *plc = cls;
2099   const char *app_id = value;
2100   app_place_remove (app_id, &plc->ego_pub_key, &plc->pub_key);
2101   return GNUNET_YES;
2102 }
2103
2104
2105 /**
2106  * Handle application detach request.
2107  */
2108 static void
2109 client_recv_place_leave (void *cls, struct GNUNET_SERVER_Client *client,
2110                          const struct GNUNET_MessageHeader *msg)
2111 {
2112   struct Client *
2113     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2114   GNUNET_assert (NULL != ctx);
2115   struct Place *plc = ctx->plc;
2116
2117   /* FIXME: remove all app subscriptions and leave this place  */
2118
2119   struct GNUNET_CONTAINER_MultiHashMap *
2120     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &plc->pub_key_hash);
2121   if (NULL != place_apps)
2122   {
2123     GNUNET_CONTAINER_multihashmap_iterate (place_apps, app_places_entry_remove, plc);
2124   }
2125
2126   /* FIXME: disconnect from the network, but keep local connection for history access */
2127
2128   /* Disconnect all clients connected to the place */
2129   struct ClientListItem *cli = plc->clients_head, *next;
2130   while (NULL != cli)
2131   {
2132     GNUNET_CONTAINER_DLL_remove (plc->clients_head, plc->clients_tail, cli);
2133     GNUNET_SERVER_client_disconnect (cli->client);
2134     next = cli->next;
2135     GNUNET_free (cli);
2136     cli = next;
2137   }
2138
2139   if (GNUNET_YES != plc->is_disconnected)
2140   {
2141     plc->is_disconnected = GNUNET_YES;
2142     if (NULL != plc->tmit_msgs_head)
2143     { /* Send pending messages to PSYC before cleanup. */
2144       psyc_transmit_message (plc);
2145     }
2146     else
2147     {
2148       cleanup_place (plc);
2149     }
2150   }
2151 }
2152
2153
2154 struct JoinDecisionClosure
2155 {
2156   int32_t is_admitted;
2157   struct GNUNET_PSYC_Message *msg;
2158 };
2159
2160
2161 /**
2162  * Iterator callback for responding to join requests.
2163  */
2164 static int
2165 psyc_send_join_decision (void *cls, const struct GNUNET_HashCode *pub_key_hash,
2166                          void *value)
2167 {
2168   struct JoinDecisionClosure *jcls = cls;
2169   struct GNUNET_PSYC_JoinHandle *jh = value;
2170   // FIXME: add relays
2171   GNUNET_PSYC_join_decision (jh, jcls->is_admitted, 0, NULL, jcls->msg);
2172   return GNUNET_YES;
2173 }
2174
2175
2176 /**
2177  * Handle an entry decision from a host client.
2178  */
2179 static void
2180 client_recv_join_decision (void *cls, struct GNUNET_SERVER_Client *client,
2181                            const struct GNUNET_MessageHeader *msg)
2182 {
2183   struct Client *
2184     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2185   GNUNET_assert (NULL != ctx);
2186   struct Place *plc = ctx->plc;
2187   if (GNUNET_YES != plc->is_host) {
2188     GNUNET_break (0);
2189     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2190     return;
2191   }
2192   struct Host *hst = (struct Host *) plc;
2193
2194   struct GNUNET_PSYC_JoinDecisionMessage *
2195     dcsn = (struct GNUNET_PSYC_JoinDecisionMessage *) msg;
2196   struct JoinDecisionClosure jcls;
2197   jcls.is_admitted = ntohl (dcsn->is_admitted);
2198   jcls.msg
2199     = (sizeof (*dcsn) + sizeof (*jcls.msg) <= ntohs (msg->size))
2200     ? (struct GNUNET_PSYC_Message *) &dcsn[1]
2201     : NULL;
2202
2203   struct GNUNET_HashCode slave_pub_hash;
2204   GNUNET_CRYPTO_hash (&dcsn->slave_pub_key, sizeof (dcsn->slave_pub_key),
2205                       &slave_pub_hash);
2206
2207   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2208               "%p Got join decision (%d) from client for place %s..\n",
2209               hst, jcls.is_admitted, GNUNET_h2s (&plc->pub_key_hash));
2210   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2211               "%p ..and slave %s.\n",
2212               hst, GNUNET_h2s (&slave_pub_hash));
2213
2214   GNUNET_CONTAINER_multihashmap_get_multiple (hst->join_reqs, &slave_pub_hash,
2215                                               &psyc_send_join_decision, &jcls);
2216   GNUNET_CONTAINER_multihashmap_remove_all (hst->join_reqs, &slave_pub_hash);
2217   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2218 }
2219
2220
2221 /**
2222  * Send acknowledgement to a client.
2223  *
2224  * Sent after a message fragment has been passed on to multicast.
2225  *
2226  * @param plc The place struct for the client.
2227  */
2228 static void
2229 send_message_ack (struct Place *plc, struct GNUNET_SERVER_Client *client)
2230 {
2231   struct GNUNET_MessageHeader res;
2232   res.size = htons (sizeof (res));
2233   res.type = htons (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK);
2234   client_send_msg (client, &res);
2235 }
2236
2237
2238 /**
2239  * Proceed to the next message part in the transmission queue.
2240  *
2241  * @param plc
2242  *        Place where the transmission is going on.
2243  * @param tmit_msg
2244  *        Currently transmitted message.
2245  * @param tmit_frag
2246  *        Currently transmitted message fragment.
2247  *
2248  * @return @a tmit_frag, or NULL if reached the end of fragment.
2249  */
2250 static struct FragmentTransmitQueue *
2251 psyc_transmit_queue_next_part (struct Place *plc,
2252                                struct MessageTransmitQueue *tmit_msg,
2253                                struct FragmentTransmitQueue *tmit_frag)
2254 {
2255   uint16_t psize = ntohs (tmit_frag->next_part->size);
2256   if ((char *) tmit_frag->next_part + psize - ((char *) &tmit_frag[1])
2257       < tmit_frag->size)
2258   {
2259     tmit_frag->next_part
2260       = (struct GNUNET_MessageHeader *) ((char *) tmit_frag->next_part + psize);
2261   }
2262   else /* Reached end of current fragment. */
2263   {
2264     if (NULL != tmit_frag->client)
2265       send_message_ack (plc, tmit_frag->client);
2266     GNUNET_CONTAINER_DLL_remove (tmit_msg->frags_head, tmit_msg->frags_tail, tmit_frag);
2267     GNUNET_free (tmit_frag);
2268     tmit_frag = NULL;
2269   }
2270   return tmit_frag;
2271 }
2272
2273
2274 /**
2275  * Proceed to next message in transmission queue.
2276  *
2277  * @param plc
2278  *        Place where the transmission is going on.
2279  * @param tmit_msg
2280  *        Currently transmitted message.
2281  *
2282  * @return The next message in queue, or NULL if queue is empty.
2283  */
2284 static struct MessageTransmitQueue *
2285 psyc_transmit_queue_next_msg (struct Place *plc,
2286                               struct MessageTransmitQueue *tmit_msg)
2287 {
2288   GNUNET_CONTAINER_DLL_remove (plc->tmit_msgs_head, plc->tmit_msgs_tail, tmit_msg);
2289   GNUNET_free (tmit_msg);
2290   return plc->tmit_msgs_head;
2291 }
2292
2293
2294 /**
2295  * Callback for data transmission to PSYC.
2296  */
2297 static int
2298 psyc_transmit_notify_data (void *cls, uint16_t *data_size, void *data)
2299 {
2300   struct Place *plc = cls;
2301   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2302   GNUNET_assert (NULL != tmit_msg);
2303   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2304   if (NULL == tmit_frag)
2305   { /* Rest of the message have not arrived yet, pause transmission */
2306     *data_size = 0;
2307     return GNUNET_NO;
2308   }
2309   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2310   if (NULL == pmsg)
2311   {
2312     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2313                 "%p psyc_transmit_notify_data: nothing to send.\n", plc);
2314     *data_size = 0;
2315     return GNUNET_NO;
2316   }
2317
2318   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2319               "%p psyc_transmit_notify_data()\n", plc);
2320   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, pmsg);
2321
2322   uint16_t ptype = ntohs (pmsg->type);
2323   uint16_t pdata_size = ntohs (pmsg->size) - sizeof (*pmsg);
2324   int ret;
2325
2326   switch (ptype)
2327   {
2328   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_DATA:
2329     if (*data_size < pdata_size)
2330     {
2331       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2332                 "%p psyc_transmit_notify_data: buffer size too small for data.\n", plc);
2333       *data_size = 0;
2334       return GNUNET_NO;
2335     }
2336     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2337                 "%p psyc_transmit_notify_data: sending %u bytes.\n",
2338                 plc, pdata_size);
2339
2340     *data_size = pdata_size;
2341     GNUNET_memcpy (data, &pmsg[1], *data_size);
2342     ret = GNUNET_NO;
2343     break;
2344
2345   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2346     *data_size = 0;
2347     ret = GNUNET_YES;
2348     break;
2349
2350   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2351     *data_size = 0;
2352     ret = GNUNET_SYSERR;
2353     break;
2354
2355   default:
2356     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2357                 "%p psyc_transmit_notify_data: unexpected message part of type %u.\n",
2358                 plc, ptype);
2359     ret = GNUNET_SYSERR;
2360   }
2361
2362   if (GNUNET_SYSERR == ret && GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL != ptype)
2363   {
2364     *data_size = 0;
2365     tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2366     plc->is_disconnected = GNUNET_YES;
2367     GNUNET_SERVER_client_disconnect (tmit_frag->client);
2368     GNUNET_SCHEDULER_add_now (&cleanup_place, plc);
2369     return ret;
2370   }
2371   else
2372   {
2373     tmit_frag = psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2374     if (NULL != tmit_frag)
2375     {
2376       struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2377       ptype = ntohs (pmsg->type);
2378       switch (ptype)
2379       {
2380       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2381         ret = GNUNET_YES;
2382         break;
2383       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2384         ret = GNUNET_SYSERR;
2385         break;
2386       }
2387       switch (ptype)
2388       {
2389       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2390       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2391         tmit_frag = psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2392       }
2393     }
2394
2395     if (NULL == tmit_msg->frags_head
2396         && GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= ptype)
2397     { /* Reached end of current message. */
2398       tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2399     }
2400   }
2401
2402   if (ret != GNUNET_NO)
2403   {
2404     if (NULL != tmit_msg)
2405     {
2406       psyc_transmit_message (plc);
2407     }
2408     else if (GNUNET_YES == plc->is_disconnected)
2409     {
2410       /* FIXME: handle partial message (when still in_transmit) */
2411       cleanup_place (plc);
2412     }
2413   }
2414   return ret;
2415 }
2416
2417
2418 /**
2419  * Callback for modifier transmission to PSYC.
2420  */
2421 static int
2422 psyc_transmit_notify_mod (void *cls, uint16_t *data_size, void *data,
2423                           uint8_t *oper, uint32_t *full_value_size)
2424 {
2425   struct Place *plc = cls;
2426   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2427   GNUNET_assert (NULL != tmit_msg);
2428   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2429   if (NULL == tmit_frag)
2430   { /* Rest of the message have not arrived yet, pause transmission */
2431     *data_size = 0;
2432     return GNUNET_NO;
2433   }
2434   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2435   if (NULL == pmsg)
2436   {
2437     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2438                 "%p psyc_transmit_notify_mod: nothing to send.\n", plc);
2439     *data_size = 0;
2440     return GNUNET_NO;
2441   }
2442
2443   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2444               "%p psyc_transmit_notify_mod()\n", plc);
2445   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, pmsg);
2446
2447   uint16_t ptype = ntohs (pmsg->type);
2448   int ret;
2449
2450   switch (ptype)
2451   {
2452   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER:
2453   {
2454     if (NULL == oper)
2455     {
2456       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2457                   "%p psyc_transmit_notify_mod: oper is NULL.\n", plc);
2458       ret = GNUNET_SYSERR;
2459       break;
2460     }
2461     struct GNUNET_PSYC_MessageModifier *
2462       pmod = (struct GNUNET_PSYC_MessageModifier *) tmit_frag->next_part;
2463     uint16_t mod_size = ntohs (pmod->header.size) - sizeof (*pmod);
2464
2465     if (*data_size < mod_size)
2466     {
2467       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2468                 "%p psyc_transmit_notify_mod: buffer size too small for data.\n", plc);
2469       *data_size = 0;
2470       return GNUNET_NO;
2471     }
2472
2473     *full_value_size = ntohl (pmod->value_size);
2474     *oper = pmod->oper;
2475     *data_size = mod_size;
2476     GNUNET_memcpy (data, &pmod[1], mod_size);
2477     ret = GNUNET_NO;
2478     break;
2479   }
2480
2481   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MOD_CONT:
2482   {
2483     if (NULL != oper)
2484     {
2485       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2486                   "%p psyc_transmit_notify_mod: oper is not NULL.\n", plc);
2487       ret = GNUNET_SYSERR;
2488       break;
2489     }
2490     uint16_t mod_size = ntohs (pmsg->size) - sizeof (*pmsg);
2491     if (*data_size < mod_size)
2492     {
2493       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2494                 "%p psyc_transmit_notify_mod: buffer size too small for data.\n", plc);
2495       *data_size = 0;
2496       return GNUNET_NO;
2497     }
2498     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2499                 "%p psyc_transmit_notify_mod: sending %u bytes.\n", plc, mod_size);
2500
2501     *data_size = mod_size;
2502     GNUNET_memcpy (data, &pmsg[1], *data_size);
2503     ret = GNUNET_NO;
2504     break;
2505   }
2506
2507   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_DATA:
2508   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2509   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2510     *data_size = 0;
2511     ret = GNUNET_YES;
2512     break;
2513
2514   default:
2515     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2516                 "%p psyc_transmit_notify_mod: unexpected message part of type %u.\n",
2517                 plc, ptype);
2518     ret = GNUNET_SYSERR;
2519   }
2520
2521   if (GNUNET_SYSERR == ret)
2522   {
2523     *data_size = 0;
2524     ret = GNUNET_SYSERR;
2525     tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2526     plc->is_disconnected = GNUNET_YES;
2527     GNUNET_SERVER_client_disconnect (tmit_frag->client);
2528     GNUNET_SCHEDULER_add_now (&cleanup_place, plc);
2529   }
2530   else
2531   {
2532     if (GNUNET_YES != ret)
2533       psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2534
2535     if (NULL == tmit_msg->frags_head
2536         && GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= ptype)
2537     { /* Reached end of current message. */
2538       tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2539     }
2540   }
2541   return ret;
2542 }
2543
2544 /**
2545  * Callback for data transmission from a host to PSYC.
2546  */
2547 static int
2548 host_transmit_notify_data (void *cls, uint16_t *data_size, void *data)
2549 {
2550   int ret = psyc_transmit_notify_data (cls, data_size, data);
2551
2552   if (GNUNET_NO != ret)
2553   {
2554     struct Host *hst = cls;
2555     hst->tmit_handle = NULL;
2556   }
2557   return ret;
2558 }
2559
2560
2561 /**
2562  * Callback for the transmit functions of multicast.
2563  */
2564 static int
2565 guest_transmit_notify_data (void *cls, uint16_t *data_size, void *data)
2566 {
2567   int ret = psyc_transmit_notify_data (cls, data_size, data);
2568
2569   if (GNUNET_NO != ret)
2570   {
2571     struct Guest *gst = cls;
2572     gst->tmit_handle = NULL;
2573   }
2574   return ret;
2575 }
2576
2577
2578 /**
2579  * Callback for modifier transmission from a host to PSYC.
2580  */
2581 static int
2582 host_transmit_notify_mod (void *cls, uint16_t *data_size, void *data,
2583                           uint8_t *oper, uint32_t *full_value_size)
2584 {
2585   int ret = psyc_transmit_notify_mod (cls, data_size, data,
2586                                       oper, full_value_size);
2587   if (GNUNET_SYSERR == ret)
2588   {
2589     struct Host *hst = cls;
2590     hst->tmit_handle = NULL;
2591   }
2592   return ret;
2593 }
2594
2595
2596 /**
2597  * Callback for modifier transmission from a guest to PSYC.
2598  */
2599 static int
2600 guest_transmit_notify_mod (void *cls, uint16_t *data_size, void *data,
2601                            uint8_t *oper, uint32_t *full_value_size)
2602 {
2603   int ret = psyc_transmit_notify_mod (cls, data_size, data,
2604                                       oper, full_value_size);
2605   if (GNUNET_SYSERR == ret)
2606   {
2607     struct Guest *gst = cls;
2608     gst->tmit_handle = NULL;
2609   }
2610   return ret;
2611 }
2612
2613
2614 /**
2615  * Get method part of next message from transmission queue.
2616  *
2617  * @param plc
2618  *        Place
2619  *
2620  * @return #GNUNET_OK on success
2621  *         #GNUNET_NO if there are no more messages in queue.
2622  *         #GNUNET_SYSERR if the next message is malformed.
2623  */
2624 static struct GNUNET_PSYC_MessageMethod *
2625 psyc_transmit_queue_next_method (struct Place *plc)
2626 {
2627   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2628   if (NULL == tmit_msg)
2629     return GNUNET_NO;
2630
2631   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2632   if (NULL == tmit_frag)
2633   {
2634     GNUNET_break (0);
2635     return GNUNET_NO;
2636   }
2637
2638   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2639   if (NULL == pmsg
2640       || GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD != ntohs (pmsg->type))
2641   {
2642     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2643                 "%p psyc_transmit_queue_next_method: unexpected message part of type %u.\n",
2644                 plc, NULL != pmsg ? ntohs (pmsg->type) : 0);
2645     GNUNET_break (0);
2646     return NULL;
2647   }
2648
2649   uint16_t psize = ntohs (pmsg->size);
2650   struct GNUNET_PSYC_MessageMethod *
2651     pmeth = (struct GNUNET_PSYC_MessageMethod *) GNUNET_copy_message (pmsg);
2652
2653   if (psize < sizeof (*pmeth) + 1 || '\0' != *((char *) pmeth + psize - 1))
2654   {
2655     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2656                 "%p psyc_transmit_queue_next_method: invalid method name.\n",
2657                 plc);
2658     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2659                 "%zu <= %u || NUL != %u\n",
2660                 sizeof (*pmeth), psize, *((char *) pmeth + psize - 1));
2661     GNUNET_break (0);
2662     GNUNET_free (pmeth);
2663     return NULL;
2664   }
2665
2666   psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2667   return pmeth;
2668 }
2669
2670
2671 /**
2672  * Transmit the next message in queue from the host to the PSYC channel.
2673  */
2674 static int
2675 psyc_master_transmit_message (struct Host *hst)
2676 {
2677   struct Place *plc = &hst->plc;
2678
2679   if (NULL == hst->tmit_handle)
2680   {
2681     struct GNUNET_PSYC_MessageMethod *
2682       pmeth = psyc_transmit_queue_next_method (plc);
2683     if (NULL == pmeth)
2684       return GNUNET_SYSERR;
2685
2686     hst->tmit_handle = (void *) &hst->tmit_handle;
2687     struct GNUNET_PSYC_MasterTransmitHandle *
2688       tmit_handle = GNUNET_PSYC_master_transmit (hst->master, (const char *) &pmeth[1],
2689                                                  &host_transmit_notify_mod,
2690                                                  &host_transmit_notify_data, hst,
2691                                                  pmeth->flags);
2692     if (NULL != hst->tmit_handle)
2693       hst->tmit_handle = tmit_handle;
2694     GNUNET_free (pmeth);
2695   }
2696   else
2697   {
2698     GNUNET_PSYC_master_transmit_resume (hst->tmit_handle);
2699   }
2700   return GNUNET_OK;
2701 }
2702
2703
2704 /**
2705  * Transmit the next message in queue from a guest to the PSYC channel.
2706  */
2707 static int
2708 psyc_slave_transmit_message (struct Guest *gst)
2709 {
2710   struct Place *plc = &gst->plc;
2711
2712   if (NULL == gst->tmit_handle)
2713   {
2714     struct GNUNET_PSYC_MessageMethod *
2715       pmeth = psyc_transmit_queue_next_method (plc);
2716     if (NULL == pmeth)
2717       return GNUNET_SYSERR;
2718
2719     gst->tmit_handle = (void *) &gst->tmit_handle;
2720     struct GNUNET_PSYC_SlaveTransmitHandle *
2721       tmit_handle = GNUNET_PSYC_slave_transmit (gst->slave, (const char *) &pmeth[1],
2722                                                  &guest_transmit_notify_mod,
2723                                                  &guest_transmit_notify_data, gst,
2724                                                  pmeth->flags);
2725     if (NULL != gst->tmit_handle)
2726       gst->tmit_handle = tmit_handle;
2727     GNUNET_free (pmeth);
2728   }
2729   else
2730   {
2731     GNUNET_PSYC_slave_transmit_resume (gst->tmit_handle);
2732   }
2733   return GNUNET_OK;
2734 }
2735
2736
2737 /**
2738  * Transmit a message to PSYC.
2739  */
2740 static int
2741 psyc_transmit_message (struct Place *plc)
2742 {
2743   return
2744     (plc->is_host)
2745     ? psyc_master_transmit_message ((struct Host *) plc)
2746     : psyc_slave_transmit_message ((struct Guest *) plc);
2747 }
2748
2749
2750 /**
2751  * Queue message parts for sending to PSYC.
2752  *
2753  * @param plc          Place to send to.
2754  * @param client       Client the message originates from.
2755  * @param data_size    Size of @a data.
2756  * @param data         Concatenated message parts.
2757  * @param first_ptype  First message part type in @a data.
2758  * @param last_ptype   Last message part type in @a data.
2759  */
2760 static struct MessageTransmitQueue *
2761 psyc_transmit_queue_message (struct Place *plc,
2762                              struct GNUNET_SERVER_Client *client,
2763                              size_t data_size,
2764                              const void *data,
2765                              uint16_t first_ptype, uint16_t last_ptype,
2766                              struct MessageTransmitQueue *tmit_msg)
2767 {
2768   if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD == first_ptype)
2769   {
2770     tmit_msg = GNUNET_malloc (sizeof (*tmit_msg));
2771     GNUNET_CONTAINER_DLL_insert_tail (plc->tmit_msgs_head, plc->tmit_msgs_tail, tmit_msg);
2772   }
2773   else if (NULL == tmit_msg)
2774   {
2775     return NULL;
2776   }
2777
2778   struct FragmentTransmitQueue *
2779     tmit_frag = GNUNET_malloc (sizeof (*tmit_frag) + data_size);
2780   GNUNET_memcpy (&tmit_frag[1], data, data_size);
2781   tmit_frag->next_part = (struct GNUNET_MessageHeader *) &tmit_frag[1];
2782   tmit_frag->client = client;
2783   tmit_frag->size = data_size;
2784
2785   GNUNET_CONTAINER_DLL_insert_tail (tmit_msg->frags_head, tmit_msg->frags_tail, tmit_frag);
2786   tmit_msg->client = client;
2787   return tmit_msg;
2788 }
2789
2790
2791 /**
2792  * Cancel transmission of current message to PSYC.
2793  *
2794  * @param plc     Place to send to.
2795  * @param client  Client the message originates from.
2796  */
2797 static void
2798 psyc_transmit_cancel (struct Place *plc, struct GNUNET_SERVER_Client *client)
2799 {
2800   uint16_t type = GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL;
2801
2802   struct GNUNET_MessageHeader msg;
2803   msg.size = htons (sizeof (msg));
2804   msg.type = htons (type);
2805
2806   psyc_transmit_queue_message (plc, client, sizeof (msg), &msg, type, type, NULL);
2807   psyc_transmit_message (plc);
2808
2809   /* FIXME: cleanup */
2810 }
2811
2812
2813 /**
2814  * Handle an incoming message from a client, to be transmitted to the place.
2815  */
2816 static void
2817 client_recv_psyc_message (void *cls, struct GNUNET_SERVER_Client *client,
2818                           const struct GNUNET_MessageHeader *msg)
2819 {
2820   struct Client *
2821     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2822   GNUNET_assert (NULL != ctx);
2823   struct Place *plc = ctx->plc;
2824   int ret = GNUNET_SYSERR;
2825
2826   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2827               "%p Received message from client.\n", plc);
2828   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, msg);
2829
2830   if (GNUNET_YES != plc->is_ready)
2831   {
2832     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2833                 "%p Place is not ready yet, disconnecting client.\n", plc);
2834     GNUNET_break (0);
2835     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2836     return;
2837   }
2838
2839   uint16_t size = ntohs (msg->size);
2840   uint16_t psize = size - sizeof (*msg);
2841   if (psize < sizeof (struct GNUNET_MessageHeader)
2842       || GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD < psize)
2843   {
2844     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2845                 "%p Received message with invalid payload size (%u) from client.\n",
2846                 plc, psize);
2847     GNUNET_break (0);
2848     psyc_transmit_cancel (plc, client);
2849     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2850     return;
2851   }
2852
2853   uint16_t first_ptype = 0, last_ptype = 0;
2854   if (GNUNET_SYSERR
2855       == GNUNET_PSYC_receive_check_parts (psize, (const char *) &msg[1],
2856                                           &first_ptype, &last_ptype))
2857   {
2858     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2859                 "%p Received invalid message part from client.\n", plc);
2860     GNUNET_break (0);
2861     psyc_transmit_cancel (plc, client);
2862     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2863     return;
2864   }
2865   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2866               "%p Received message with first part type %u and last part type %u.\n",
2867               plc, first_ptype, last_ptype);
2868
2869   ctx->tmit_msg
2870     = psyc_transmit_queue_message (plc, client, psize, &msg[1],
2871                                    first_ptype, last_ptype, ctx->tmit_msg);
2872   if (NULL != ctx->tmit_msg)
2873   {
2874     if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= last_ptype)
2875       ctx->tmit_msg = NULL;
2876     ret = psyc_transmit_message (plc);
2877   }
2878
2879   if (GNUNET_OK != ret)
2880   {
2881     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2882                 "%p Received invalid message part from client.\n", plc);
2883     GNUNET_break (0);
2884     psyc_transmit_cancel (plc, client);
2885     ret = GNUNET_SYSERR;
2886   }
2887   GNUNET_SERVER_receive_done (client, ret);
2888 }
2889
2890
2891 /**
2892  * A historic message arrived from PSYC.
2893  */
2894 static void
2895 psyc_recv_history_message (void *cls, const struct GNUNET_PSYC_MessageHeader *msg)
2896 {
2897   struct OperationClosure *opcls = cls;
2898   struct Place *plc = opcls->plc;
2899
2900   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2901               "%p Received historic message #%" PRId64 " (flags: %x)\n",
2902               plc, GNUNET_ntohll (msg->message_id), ntohl (msg->flags));
2903
2904   uint16_t size = ntohs (msg->header.size);
2905
2906   struct GNUNET_OperationResultMessage *
2907     res = GNUNET_malloc (sizeof (*res) + size);
2908   res->header.size = htons (sizeof (*res) + size);
2909   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT);
2910   res->op_id = opcls->op_id;
2911   res->result_code = GNUNET_htonll (GNUNET_OK);
2912
2913   GNUNET_memcpy (&res[1], msg, size);
2914
2915   /** @todo FIXME: send only to requesting client */
2916   place_send_msg (plc, &res->header);
2917
2918   GNUNET_free (res);
2919 }
2920
2921
2922 /**
2923  * Result of message history replay from PSYC.
2924  */
2925 static void
2926 psyc_recv_history_result (void *cls, int64_t result,
2927                           const void *err_msg, uint16_t err_msg_size)
2928 {
2929   struct OperationClosure *opcls = cls;
2930   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2931               "%p History replay #%" PRIu64 ": "
2932               "PSYCstore returned %" PRId64 " (%.*s)\n",
2933               opcls->plc, GNUNET_ntohll (opcls->op_id), result,
2934               err_msg_size, (const char *) err_msg);
2935
2936   // FIXME: place might have been destroyed
2937   client_send_result (opcls->client, opcls->op_id, result, err_msg, err_msg_size);
2938 }
2939
2940
2941 /**
2942  * Client requests channel history.
2943  */
2944 static void
2945 client_recv_history_replay (void *cls, struct GNUNET_SERVER_Client *client,
2946                             const struct GNUNET_MessageHeader *msg)
2947 {
2948   struct Client *
2949     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2950   GNUNET_assert (NULL != ctx);
2951   struct Place *plc = ctx->plc;
2952
2953   const struct GNUNET_PSYC_HistoryRequestMessage *
2954     req = (const struct GNUNET_PSYC_HistoryRequestMessage *) msg;
2955   uint16_t size = ntohs (msg->size);
2956   const char *method_prefix = (const char *) &req[1];
2957
2958   if (size < sizeof (*req) + 1
2959       || '\0' != method_prefix[size - sizeof (*req) - 1])
2960   {
2961     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2962                 "%p History replay #%" PRIu64 ": "
2963                 "invalid method prefix. size: %u < %zu?\n",
2964                 plc, GNUNET_ntohll (req->op_id), size, sizeof (*req) + 1);
2965     GNUNET_break (0);
2966     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2967     return;
2968   }
2969
2970   struct OperationClosure *opcls = GNUNET_malloc (sizeof (*opcls));
2971   opcls->client = client;
2972   opcls->plc = plc;
2973   opcls->op_id = req->op_id;
2974   opcls->flags = ntohl (req->flags);
2975
2976   if (0 == req->message_limit)
2977     GNUNET_PSYC_channel_history_replay (plc->channel,
2978                                         GNUNET_ntohll (req->start_message_id),
2979                                         GNUNET_ntohll (req->end_message_id),
2980                                         method_prefix, opcls->flags,
2981                                         psyc_recv_history_message, NULL,
2982                                         psyc_recv_history_result, opcls);
2983   else
2984     GNUNET_PSYC_channel_history_replay_latest (plc->channel,
2985                                                GNUNET_ntohll (req->message_limit),
2986                                                method_prefix, opcls->flags,
2987                                                psyc_recv_history_message, NULL,
2988                                                psyc_recv_history_result, opcls);
2989
2990   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2991 }
2992
2993
2994 /**
2995  * A state variable part arrived from PSYC.
2996  */
2997 void
2998 psyc_recv_state_var (void *cls,
2999                      const struct GNUNET_MessageHeader *mod,
3000                      const char *name,
3001                      const void *value,
3002                      uint32_t value_size,
3003                      uint32_t full_value_size)
3004 {
3005   struct OperationClosure *opcls = cls;
3006   struct Place *plc = opcls->plc;
3007
3008   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3009               "%p Received state variable %s from PSYC\n",
3010               plc, name);
3011
3012   uint16_t size = ntohs (mod->size);
3013
3014   struct GNUNET_OperationResultMessage *
3015     res = GNUNET_malloc (sizeof (*res) + size);
3016   res->header.size = htons (sizeof (*res) + size);
3017   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT);
3018   res->op_id = opcls->op_id;
3019   res->result_code = GNUNET_htonll (GNUNET_OK);
3020
3021   GNUNET_memcpy (&res[1], mod, size);
3022
3023   /** @todo FIXME: send only to requesting client */
3024   place_send_msg (plc, &res->header);
3025
3026   GNUNET_free (res);
3027 }
3028
3029
3030 /**
3031  * Result of retrieving state variable from PSYC.
3032  */
3033 static void
3034 psyc_recv_state_result (void *cls, int64_t result,
3035                         const void *err_msg, uint16_t err_msg_size)
3036 {
3037   struct OperationClosure *opcls = cls;
3038   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3039               "%p State get #%" PRIu64 ": "
3040               "PSYCstore returned %" PRId64 " (%.*s)\n",
3041               opcls->plc, GNUNET_ntohll (opcls->op_id), result,
3042               err_msg_size, (const char *) err_msg);
3043
3044   // FIXME: place might have been destroyed
3045   client_send_result (opcls->client, opcls->op_id, result, err_msg, err_msg_size);
3046 }
3047
3048
3049 /**
3050  * Client requests channel history.
3051  */
3052 static void
3053 client_recv_state_get (void *cls, struct GNUNET_SERVER_Client *client,
3054                        const struct GNUNET_MessageHeader *msg)
3055 {
3056   struct Client *
3057     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
3058   GNUNET_assert (NULL != ctx);
3059   struct Place *plc = ctx->plc;
3060
3061   const struct GNUNET_PSYC_StateRequestMessage *
3062     req = (const struct GNUNET_PSYC_StateRequestMessage *) msg;
3063   uint16_t size = ntohs (msg->size);
3064   const char *name = (const char *) &req[1];
3065
3066   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3067               "%p State get #%" PRIu64 ": %s\n",
3068               plc, GNUNET_ntohll (req->op_id), name);
3069
3070   if (size < sizeof (*req) + 1
3071       || '\0' != name[size - sizeof (*req) - 1])
3072   {
3073     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3074                 "%p State get #%" PRIu64 ": "
3075                 "invalid name. size: %u < %zu?\n",
3076                 plc, GNUNET_ntohll (req->op_id), size, sizeof (*req) + 1);
3077     GNUNET_break (0);
3078     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3079     return;
3080   }
3081
3082   struct OperationClosure *opcls = GNUNET_malloc (sizeof (*opcls));
3083   opcls->client = client;
3084   opcls->plc = plc;
3085   opcls->op_id = req->op_id;
3086
3087   switch (ntohs (msg->type))
3088   {
3089   case GNUNET_MESSAGE_TYPE_PSYC_STATE_GET:
3090       GNUNET_PSYC_channel_state_get (plc->channel, name,
3091                                      psyc_recv_state_var,
3092                                      psyc_recv_state_result, opcls);
3093       break;
3094
3095   case GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX:
3096       GNUNET_PSYC_channel_state_get_prefix (plc->channel, name,
3097                                             psyc_recv_state_var,
3098                                             psyc_recv_state_result, opcls);
3099       break;
3100
3101   default:
3102       GNUNET_assert (0);
3103   }
3104
3105   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3106 }
3107
3108
3109 static void
3110 namestore_recv_records_store_result (void *cls, int32_t result,
3111                                      const char *err_msg)
3112 {
3113   struct OperationClosure *ocls = cls;
3114   client_send_result (ocls->client, ocls->op_id, result, err_msg,
3115                       (NULL != err_msg) ? strlen (err_msg) : 0);
3116   GNUNET_free (ocls);
3117 }
3118
3119
3120 /**
3121  * Handle request to add PLACE record to GNS zone.
3122  */
3123 static void
3124 client_recv_zone_add_place (void *cls, struct GNUNET_SERVER_Client *client,
3125                              const struct GNUNET_MessageHeader *msg)
3126 {
3127   const struct ZoneAddPlaceRequest *preq
3128     = (const struct ZoneAddPlaceRequest *) msg;
3129
3130   uint16_t remaining = ntohs (preq->header.size) - sizeof (*preq);
3131   const char *p = (const char *) &preq[1];
3132   const char *name = NULL, *password = NULL;
3133   uint16_t offset = GNUNET_STRINGS_buffer_tokenize (p, remaining, 2,
3134                                                     &name, &password);
3135   remaining -= offset;
3136   p += offset;
3137   const struct GNUNET_PeerIdentity *
3138     relays = (const struct GNUNET_PeerIdentity *) p;
3139   uint16_t relay_size = ntohl (preq->relay_count) * sizeof (*relays);
3140
3141   if (0 == offset || remaining != relay_size)
3142   {
3143     GNUNET_break (0);
3144     client_send_result (client, preq->op_id, GNUNET_SYSERR, NULL, 0);
3145     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3146     return;
3147   }
3148
3149   struct GNUNET_GNSRECORD_Data rd = { };
3150   rd.record_type = GNUNET_GNSRECORD_TYPE_PLACE;
3151   rd.flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
3152   rd.expiration_time = GNUNET_ntohll (preq->expiration_time);
3153
3154   struct GNUNET_GNSRECORD_PlaceData *
3155     rec = GNUNET_malloc (sizeof (*rec) + relay_size);
3156   rec->place_pub_key = preq->place_pub_key;
3157   rec->origin = this_peer;
3158   rec->relay_count = preq->relay_count;
3159   GNUNET_memcpy (&rec[1], relays, relay_size);
3160
3161   rd.data = rec;
3162   rd.data_size = sizeof (*rec) + relay_size;
3163
3164   struct GNUNET_HashCode ego_pub_hash;
3165   GNUNET_CRYPTO_hash (&preq->ego_pub_key, sizeof (preq->ego_pub_key), &ego_pub_hash);
3166   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3167   if (NULL == ego)
3168   {
3169     client_send_result (client, preq->op_id, GNUNET_SYSERR, NULL, 0);
3170   }
3171   else
3172   {
3173     struct OperationClosure *ocls = GNUNET_malloc (sizeof (*ocls));
3174     ocls->client = client;
3175     ocls->op_id = preq->op_id;
3176     GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3177                                     name, 1, &rd,
3178                                     namestore_recv_records_store_result, ocls);
3179     /** @todo refresh stored records later */
3180   }
3181   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3182 }
3183
3184
3185 /**
3186  * Handle request to add PLACE record to GNS zone.
3187  */
3188 static void
3189 client_recv_zone_add_nym (void *cls, struct GNUNET_SERVER_Client *client,
3190                           const struct GNUNET_MessageHeader *msg)
3191 {
3192   const struct ZoneAddNymRequest *nreq
3193     = (const struct ZoneAddNymRequest *) msg;
3194
3195   uint16_t name_size = ntohs (nreq->header.size) - sizeof (*nreq);
3196   const char *name = NULL;
3197   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &nreq[1],
3198                                                     name_size, 1, &name);
3199   if (0 == offset || offset != name_size)
3200   {
3201     GNUNET_break (0);
3202     client_send_result (client, nreq->op_id, GNUNET_SYSERR, NULL, 0);
3203     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3204     return;
3205   }
3206
3207   struct GNUNET_GNSRECORD_Data rd = { };
3208   rd.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
3209   rd.flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
3210   rd.expiration_time = GNUNET_ntohll (nreq->expiration_time);
3211   rd.data = &nreq->nym_pub_key;
3212   rd.data_size = sizeof (nreq->nym_pub_key);
3213
3214   struct GNUNET_HashCode ego_pub_hash;
3215   GNUNET_CRYPTO_hash (&nreq->ego_pub_key, sizeof (nreq->ego_pub_key), &ego_pub_hash);
3216   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3217   if (NULL == ego)
3218   {
3219     client_send_result (client, nreq->op_id, GNUNET_SYSERR, NULL, 0);
3220   }
3221   else
3222   {
3223     struct OperationClosure *ocls = GNUNET_malloc (sizeof (*ocls));
3224     ocls->client = client;
3225     ocls->op_id = nreq->op_id;
3226     GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3227                                     name, 1, &rd,
3228                                     namestore_recv_records_store_result, ocls);
3229     /** @todo refresh stored records later */
3230   }
3231   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3232 }
3233
3234
3235 static const struct GNUNET_SERVER_MessageHandler handlers[] = {
3236   { client_recv_host_enter, NULL,
3237     GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER, 0 },
3238
3239   { client_recv_guest_enter, NULL,
3240     GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER, 0 },
3241
3242   { client_recv_guest_enter_by_name, NULL,
3243     GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_BY_NAME, 0 },
3244
3245   { client_recv_join_decision, NULL,
3246     GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION, 0 },
3247
3248   { client_recv_psyc_message, NULL,
3249     GNUNET_MESSAGE_TYPE_PSYC_MESSAGE, 0 },
3250
3251   { client_recv_history_replay, NULL,
3252     GNUNET_MESSAGE_TYPE_PSYC_HISTORY_REPLAY, 0 },
3253
3254   { client_recv_state_get, NULL,
3255     GNUNET_MESSAGE_TYPE_PSYC_STATE_GET, 0 },
3256
3257   { client_recv_state_get, NULL,
3258     GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX, 0 },
3259
3260   { client_recv_zone_add_place, NULL,
3261     GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_PLACE, 0 },
3262
3263   { client_recv_zone_add_nym, NULL,
3264     GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_NYM, 0 },
3265
3266   { client_recv_app_connect, NULL,
3267     GNUNET_MESSAGE_TYPE_SOCIAL_APP_CONNECT, 0 },
3268
3269   { client_recv_app_detach, NULL,
3270     GNUNET_MESSAGE_TYPE_SOCIAL_APP_DETACH, 0 },
3271
3272   { client_recv_place_leave, NULL,
3273     GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE, 0 },
3274
3275   { client_recv_msg_proc_set, NULL,
3276     GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_SET, 0 },
3277
3278   { client_recv_msg_proc_clear, NULL,
3279     GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_CLEAR, 0 },
3280
3281   { NULL, NULL, 0, 0 }
3282 };
3283
3284
3285 const char *
3286 path_basename (const char *path)
3287 {
3288   const char *basename = strrchr (path, DIR_SEPARATOR);
3289   if (NULL != basename)
3290     basename++;
3291
3292   if (NULL == basename || '\0' == basename)
3293     return NULL;
3294
3295   return basename;
3296 }
3297
3298
3299 struct PlaceLoadClosure
3300 {
3301   const char *app_id;
3302   const char *ego_pub_str;
3303 };
3304
3305
3306 /** Load a place file */
3307 int
3308 file_place_load (void *cls, const char *place_filename)
3309 {
3310   struct PlaceLoadClosure *plcls = cls;
3311
3312   const char *place_pub_str = path_basename (place_filename);
3313   if (NULL == place_pub_str)
3314   {
3315     GNUNET_break (0);
3316     return GNUNET_OK;
3317   }
3318
3319   char *filename = NULL;
3320   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s",
3321                    dir_social, DIR_SEPARATOR,
3322                    "places", DIR_SEPARATOR,
3323                    plcls->ego_pub_str, DIR_SEPARATOR,
3324                    place_pub_str);
3325
3326   uint64_t file_size = 0;
3327   if (GNUNET_OK !=
3328       GNUNET_DISK_file_size (filename, &file_size, GNUNET_YES, GNUNET_YES)
3329       || file_size < sizeof (struct PlaceEnterRequest))
3330   {
3331     GNUNET_free (filename);
3332     return GNUNET_OK;
3333   }
3334
3335   struct PlaceEnterRequest *ereq = GNUNET_malloc (file_size);
3336   ssize_t read_size = GNUNET_DISK_fn_read (filename, ereq, file_size);
3337   GNUNET_free (filename);
3338   if (read_size < 0 || read_size < sizeof (*ereq))
3339   {
3340     GNUNET_free (ereq);
3341     return GNUNET_OK;
3342   }
3343
3344   uint16_t ereq_size = ntohs (ereq->header.size);
3345   if (read_size != ereq_size)
3346   {
3347     GNUNET_free (ereq);
3348     return GNUNET_OK;
3349   }
3350
3351   switch (ntohs (ereq->header.type))
3352   {
3353   case GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER:
3354     if (ereq_size < sizeof (struct HostEnterRequest))
3355     {
3356       GNUNET_free (ereq);
3357       return GNUNET_OK;
3358     }
3359     struct HostEnterRequest *hreq = (struct HostEnterRequest *) ereq;
3360     host_enter (hreq, NULL);
3361     break;
3362
3363   case GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER:
3364     if (ereq_size < sizeof (struct GuestEnterRequest))
3365     {
3366       GNUNET_free (ereq);
3367       return GNUNET_OK;
3368     }
3369     struct GuestEnterRequest *greq = (struct GuestEnterRequest *) ereq;
3370     guest_enter (greq, NULL);
3371     break;
3372
3373   default:
3374     GNUNET_free (ereq);
3375     return GNUNET_OK;
3376   }
3377
3378   app_place_add (plcls->app_id, ereq);
3379   GNUNET_free (ereq);
3380   return GNUNET_OK;
3381 }
3382
3383
3384 /**
3385  * Read @e place_pub_str entries in @a dir_ego
3386  *
3387  * @param dir_ego
3388  *        Data directory of an application ego.
3389  *        $GNUNET_DATA_HOME/social/apps/$app_id/$ego_pub_str/
3390  */
3391 int
3392 scan_app_ego_dir (void *cls, const char *dir_ego)
3393 {
3394   struct PlaceLoadClosure *plcls = cls;
3395   plcls->ego_pub_str = path_basename (dir_ego);
3396
3397   if (NULL != plcls->ego_pub_str)
3398     GNUNET_DISK_directory_scan (dir_ego, file_place_load, plcls);
3399
3400   return GNUNET_OK;
3401 }
3402
3403 /**
3404  * Read @e ego_pub_str entries in @a dir_app
3405  *
3406  * @param dir_app
3407  *        Data directory of an application.
3408  *        $GNUNET_DATA_HOME/social/apps/$app_id/
3409  */
3410 int
3411 scan_app_dir (void *cls, const char *dir_app)
3412 {
3413   if (GNUNET_YES != GNUNET_DISK_directory_test (dir_app, GNUNET_YES))
3414     return GNUNET_OK;
3415
3416   struct PlaceLoadClosure plcls;
3417   plcls.app_id = path_basename (dir_app);
3418
3419   if (NULL != plcls.app_id)
3420     GNUNET_DISK_directory_scan (dir_app, scan_app_ego_dir, &plcls);
3421
3422   return GNUNET_OK;
3423 }
3424
3425
3426 static void
3427 identity_recv_ego (void *cls, struct GNUNET_IDENTITY_Ego *id_ego,
3428                    void **ctx, const char *name)
3429 {
3430   if (NULL == id_ego) // end of initial list of egos
3431     return;
3432
3433   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
3434   GNUNET_IDENTITY_ego_get_public_key (id_ego, &ego_pub_key);
3435
3436   struct GNUNET_HashCode ego_pub_hash;
3437   GNUNET_CRYPTO_hash (&ego_pub_key, sizeof (ego_pub_key), &ego_pub_hash);
3438
3439   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3440   if (NULL != ego)
3441   {
3442     GNUNET_free (ego->name);
3443     if (NULL == name) // deleted
3444     {
3445       GNUNET_CONTAINER_multihashmap_remove (egos, &ego_pub_hash, ego);
3446       GNUNET_free (ego);
3447       ego = NULL;
3448     }
3449   }
3450   else
3451   {
3452     ego = GNUNET_malloc (sizeof (*ego));
3453   }
3454   if (NULL != ego)
3455   {
3456     ego->key = *(GNUNET_IDENTITY_ego_get_private_key (id_ego));
3457     size_t name_size = strlen (name) + 1;
3458     ego->name = GNUNET_malloc (name_size);
3459     GNUNET_memcpy (ego->name, name, name_size);
3460
3461     GNUNET_CONTAINER_multihashmap_put (egos, &ego_pub_hash, ego,
3462                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
3463   }
3464
3465   // FIXME: notify clients about changed ego
3466 }
3467
3468
3469 /**
3470  * Connected to core service.
3471  */
3472 static void
3473 core_connected (void *cls, const struct GNUNET_PeerIdentity *my_identity)
3474 {
3475   this_peer = *my_identity;
3476 }
3477
3478
3479 /**
3480  * Initialize the PSYC service.
3481  *
3482  * @param cls Closure.
3483  * @param server The initialized server.
3484  * @param c Configuration to use.
3485  */
3486 static void
3487 run (void *cls, struct GNUNET_SERVER_Handle *server,
3488      const struct GNUNET_CONFIGURATION_Handle *c)
3489 {
3490   cfg = c;
3491
3492   hosts = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
3493   guests = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
3494   place_guests = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3495
3496   egos = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3497   apps = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3498   places = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3499   apps_places = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3500   places_apps = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3501
3502   core = GNUNET_CORE_connect (cfg, NULL, core_connected, NULL, NULL,
3503                               NULL, GNUNET_NO, NULL, GNUNET_NO, NULL);
3504   id = GNUNET_IDENTITY_connect (cfg, &identity_recv_ego, NULL);
3505   gns = GNUNET_GNS_connect (cfg);
3506   namestore = GNUNET_NAMESTORE_connect (cfg);
3507   stats = GNUNET_STATISTICS_create ("social", cfg);
3508
3509   if (GNUNET_OK !=
3510       GNUNET_CONFIGURATION_get_value_filename (cfg, "social", "DATA_HOME",
3511                                                &dir_social))
3512   {
3513     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
3514                                "social", "DATA_HOME");
3515     GNUNET_break (0);
3516     return;
3517   }
3518   GNUNET_asprintf (&dir_places, "%s%c%s",
3519                    dir_social, DIR_SEPARATOR, "places");
3520   GNUNET_asprintf (&dir_apps, "%s%c%s",
3521                    dir_social, DIR_SEPARATOR, "apps");
3522
3523   GNUNET_DISK_directory_scan (dir_apps, scan_app_dir, NULL);
3524
3525   nc = GNUNET_SERVER_notification_context_create (server, 1);
3526   GNUNET_SERVER_add_handlers (server, handlers);
3527   GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
3528   GNUNET_SCHEDULER_add_shutdown (&shutdown_task, NULL);
3529 }
3530
3531
3532 /**
3533  * The main function for the service.
3534  *
3535  * @param argc number of arguments from the command line
3536  * @param argv command line arguments
3537  * @return 0 ok, 1 on error
3538  */
3539 int
3540 main (int argc, char *const *argv)
3541 {
3542   return (GNUNET_OK ==
3543           GNUNET_SERVICE_run (argc, argv, "social",
3544                               GNUNET_SERVICE_OPTION_NONE,
3545                               &run, NULL)) ? 0 : 1;
3546 }
3547
3548 /* end of gnunet-service-social.c */