social cli
[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     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   }
813
814   tmit_msg = psyc_transmit_queue_message (&hst->plc, NULL, ntohs (pmsg->size),
815                                           pmsg, ptype, ptype, tmit_msg);
816
817   switch (ptype)
818   {
819   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD:
820     GNUNET_CONTAINER_multihashmap_put (hst->relay_msgs, &nym_pub_hash, tmit_msg,
821                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
822     break;
823   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
824   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
825     GNUNET_CONTAINER_multihashmap_remove (hst->relay_msgs, &nym_pub_hash, tmit_msg);
826     break;
827   }
828 }
829
830
831 /**
832  * Received a method to be relayed from a guest.
833  */
834 static void
835 place_recv_relay_method (void *cls,
836                          const struct GNUNET_PSYC_MessageHeader *msg,
837                          const struct GNUNET_PSYC_MessageMethod *meth,
838                          uint64_t message_id,
839                          const char *method_name)
840 {
841   struct Place *plc = cls;
842
843   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
844       && GNUNET_YES == plc->is_host);
845   {
846     struct Host *hst = cls;
847     host_relay_message_part (hst, &meth->header, &msg->slave_pub_key);
848   }
849 }
850
851
852 /**
853  * Received a modifier to be relayed from a guest.
854  */
855 static void
856 place_recv_relay_modifier (void *cls,
857                            const struct GNUNET_PSYC_MessageHeader *msg,
858                            const struct GNUNET_MessageHeader *pmsg,
859                            uint64_t message_id,
860                            enum GNUNET_PSYC_Operator oper,
861                            const char *name,
862                            const void *value,
863                            uint16_t value_size,
864                            uint16_t full_value_size)
865 {
866   struct Place *plc = cls;
867
868   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
869       && GNUNET_YES == plc->is_host);
870   {
871     struct Host *hst = cls;
872     host_relay_message_part (hst, pmsg, &msg->slave_pub_key);
873   }
874 }
875
876 /**
877  * Received a data fragment to be relayed from a guest.
878  */
879 static void
880 place_recv_relay_data (void *cls,
881                        const struct GNUNET_PSYC_MessageHeader *msg,
882                        const struct GNUNET_MessageHeader *pmsg,
883                        uint64_t message_id,
884                        const void *data,
885                        uint16_t data_size)
886 {
887   struct Place *plc = cls;
888
889   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
890       && GNUNET_YES == plc->is_host);
891   {
892     struct Host *hst = cls;
893     host_relay_message_part (hst, pmsg, &msg->slave_pub_key);
894   }
895 }
896
897
898 /**
899  * Received end of message to be relayed from a guest.
900  */
901 static void
902 place_recv_relay_eom (void *cls,
903                       const struct GNUNET_PSYC_MessageHeader *msg,
904                       const struct GNUNET_MessageHeader *pmsg,
905                       uint64_t message_id,
906                       uint8_t is_cancelled)
907 {
908   struct Place *plc = cls;
909
910   if (GNUNET_PSYC_MESSAGE_REQUEST & ntohs (msg->flags)
911       && GNUNET_YES == plc->is_host);
912   {
913     struct Host *hst = cls;
914     host_relay_message_part (hst, pmsg, &msg->slave_pub_key);
915   }
916 }
917
918
919 /**
920  * Received a method to be saved to disk.
921  *
922  * Create a new file for writing the data part of the message into,
923  * if the file does not yet exist.
924  */
925 static void
926 place_recv_save_method (void *cls,
927                         const struct GNUNET_PSYC_MessageHeader *msg,
928                         const struct GNUNET_PSYC_MessageMethod *meth,
929                         uint64_t message_id,
930                         const char *method_name)
931 {
932   struct Place *plc = cls;
933   plc->file_offset = 0;
934   plc->file_save = GNUNET_NO;
935
936   struct GNUNET_CRYPTO_HashAsciiEncoded place_pub_hash_ascii;
937   memcpy (&place_pub_hash_ascii.encoding,
938           GNUNET_h2s_full (&plc->pub_key_hash), sizeof (place_pub_hash_ascii));
939
940   char *filename = NULL;
941   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%" PRIu64 ".part",
942                    dir_social, DIR_SEPARATOR,
943                    "files", DIR_SEPARATOR,
944                    place_pub_hash_ascii.encoding, DIR_SEPARATOR,
945                    GNUNET_ntohll (msg->message_id));
946
947   /* save if does not already exist */
948   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
949   {
950     if (0 == GNUNET_DISK_fn_write (filename, NULL, 0,
951                                    GNUNET_DISK_PERM_USER_READ
952                                    | GNUNET_DISK_PERM_USER_WRITE))
953     {
954       plc->file_save = GNUNET_YES;
955     }
956     else
957     {
958       GNUNET_break (0);
959     }
960   }
961   GNUNET_free (filename);
962 }
963
964
965 /**
966  * Received a data fragment to be saved to disk.
967  *
968  * Append data fragment to the file.
969  */
970 static void
971 place_recv_save_data (void *cls,
972                       const struct GNUNET_PSYC_MessageHeader *msg,
973                       const struct GNUNET_MessageHeader *pmsg,
974                       uint64_t message_id,
975                       const void *data,
976                       uint16_t data_size)
977 {
978   struct Place *plc = cls;
979   if (GNUNET_YES != plc->file_save)
980     return;
981
982   struct GNUNET_CRYPTO_HashAsciiEncoded place_pub_hash_ascii;
983   memcpy (&place_pub_hash_ascii.encoding,
984           GNUNET_h2s_full (&plc->pub_key_hash), sizeof (place_pub_hash_ascii));
985
986   char *filename = NULL;
987   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%" PRIu64 ".part",
988                    dir_social, DIR_SEPARATOR,
989                    "files", DIR_SEPARATOR,
990                    place_pub_hash_ascii.encoding, DIR_SEPARATOR,
991                    GNUNET_ntohll (msg->message_id));
992   GNUNET_DISK_directory_create_for_file (filename);
993   struct GNUNET_DISK_FileHandle *
994     fh = GNUNET_DISK_file_open (filename, GNUNET_DISK_OPEN_WRITE,
995                                 GNUNET_DISK_PERM_NONE);
996   GNUNET_free (filename);
997
998   if (NULL != fh)
999   {
1000     GNUNET_DISK_file_seek (fh, plc->file_offset, GNUNET_DISK_SEEK_SET);
1001     GNUNET_DISK_file_write (fh, data, data_size);
1002     GNUNET_DISK_file_close (fh);
1003   }
1004   else
1005   {
1006     GNUNET_break (0);
1007   }
1008
1009   plc->file_offset += data_size;
1010 }
1011
1012
1013 /**
1014  * Received end of message to be saved to disk.
1015  *
1016  * Remove .part ending from the filename.
1017  */
1018 static void
1019 place_recv_save_eom (void *cls,
1020                      const struct GNUNET_PSYC_MessageHeader *msg,
1021                      const struct GNUNET_MessageHeader *pmsg,
1022                      uint64_t message_id,
1023                      uint8_t is_cancelled)
1024 {
1025   struct Place *plc = cls;
1026   if (GNUNET_YES != plc->file_save)
1027     return;
1028
1029   struct GNUNET_CRYPTO_HashAsciiEncoded place_pub_hash_ascii;
1030   memcpy (&place_pub_hash_ascii.encoding,
1031           GNUNET_h2s_full (&plc->pub_key_hash), sizeof (place_pub_hash_ascii));
1032
1033   char *fn = NULL;
1034   GNUNET_asprintf (&fn, "%s%c%s%c%s%c%" PRIu64,
1035                    dir_social, DIR_SEPARATOR,
1036                    "files", DIR_SEPARATOR,
1037                    place_pub_hash_ascii.encoding, DIR_SEPARATOR,
1038                    GNUNET_ntohll (msg->message_id));
1039   char *fn_part = NULL;
1040   GNUNET_asprintf (&fn_part, "%s.part", fn);
1041
1042   rename (fn_part, fn);
1043
1044   GNUNET_free (fn);
1045   GNUNET_free (fn_part);
1046 }
1047
1048
1049 /**
1050  * Initialize place data structure.
1051  */
1052 static void
1053 place_init (struct Place *plc)
1054 {
1055   plc->slicer = GNUNET_PSYC_slicer_create ();
1056 }
1057
1058
1059 /**
1060  * Add a place to the @e places hash map.
1061  *
1062  * @param ereq
1063  *        Entry request.
1064  *
1065  * @return #GNUNET_OK if the place was added
1066  *         #GNUNET_NO if the place already exists in the hash map
1067  *         #GNUNET_SYSERR on error
1068  */
1069 static int
1070 place_add (const struct PlaceEnterRequest *ereq)
1071 {
1072   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1073               "Adding place to hashmap:\n");
1074
1075   struct EgoPlacePublicKey ego_place_pub_key = {
1076     .ego_pub_key = ereq->ego_pub_key,
1077     .place_pub_key = ereq->place_pub_key,
1078   };
1079   struct GNUNET_HashCode ego_place_pub_hash;
1080   GNUNET_CRYPTO_hash (&ego_place_pub_key, sizeof (ego_place_pub_key), &ego_place_pub_hash);
1081
1082   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1083               "  ego_place_pub_hash = %s\n", GNUNET_h2s (&ego_place_pub_hash));
1084
1085   struct GNUNET_MessageHeader *
1086     place_msg = GNUNET_CONTAINER_multihashmap_get (places, &ego_place_pub_hash);
1087   if (NULL != place_msg)
1088     return GNUNET_NO;
1089
1090   place_msg = GNUNET_copy_message (&ereq->header);
1091   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (places, &ego_place_pub_hash, place_msg,
1092                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1093   {
1094     GNUNET_break (0);
1095     GNUNET_free (place_msg);
1096     return GNUNET_SYSERR;
1097   }
1098
1099   return GNUNET_OK;
1100 }
1101
1102 /**
1103  * Add a place to the @e app_places hash map.
1104  *
1105  * @param app_id
1106  *        Application ID.
1107  * @param msg
1108  *        Entry message.
1109  *
1110  * @return #GNUNET_OK if the place was added
1111  *         #GNUNET_NO if the place already exists in the hash map
1112  *         #GNUNET_SYSERR on error
1113  */
1114 static int
1115 app_place_add (const char *app_id,
1116                const struct PlaceEnterRequest *ereq)
1117 {
1118   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1119               "Adding app place to hashmap:\n");
1120   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1121               "  app_id = %s\n", app_id);
1122
1123   struct GNUNET_HashCode app_id_hash;
1124   GNUNET_CRYPTO_hash (app_id, strlen (app_id) + 1, &app_id_hash);
1125
1126   struct EgoPlacePublicKey ego_place_pub_key = {
1127     .ego_pub_key = ereq->ego_pub_key,
1128     .place_pub_key = ereq->place_pub_key,
1129   };
1130   struct GNUNET_HashCode ego_place_pub_hash;
1131   GNUNET_CRYPTO_hash (&ego_place_pub_key, sizeof (ego_place_pub_key), &ego_place_pub_hash);
1132
1133   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1134               "  ego_place_pub_hash = %s\n", GNUNET_h2s (&ego_place_pub_hash));
1135
1136   struct GNUNET_CONTAINER_MultiHashMap *
1137     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
1138   if (NULL == app_places)
1139   {
1140     app_places = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1141     GNUNET_CONTAINER_multihashmap_put (apps_places, &app_id_hash, app_places,
1142                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1143   }
1144
1145   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains (app_places, &ego_place_pub_hash))
1146     return GNUNET_NO;
1147
1148   if (GNUNET_SYSERR == place_add (ereq))
1149     return GNUNET_SYSERR;
1150
1151   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (app_places, &ego_place_pub_hash, NULL,
1152                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1153   {
1154     GNUNET_break (0);
1155     return GNUNET_SYSERR;
1156   }
1157
1158   struct GNUNET_HashCode place_pub_hash;
1159   GNUNET_CRYPTO_hash (&ereq->place_pub_key, sizeof (ereq->place_pub_key), &place_pub_hash);
1160
1161   struct GNUNET_CONTAINER_MultiHashMap *
1162     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &place_pub_hash);
1163   if (NULL == place_apps)
1164   {
1165     place_apps = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1166     if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (places_apps, &place_pub_hash, place_apps,
1167                                                         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1168     {
1169       GNUNET_break (0);
1170     }
1171   }
1172
1173   size_t app_id_size = strlen (app_id) + 1;
1174   void *app_id_value = GNUNET_malloc (app_id_size);
1175   memcpy (app_id_value, app_id, app_id_size);
1176
1177   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (place_apps, &app_id_hash, app_id_value,
1178                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1179   {
1180     GNUNET_break (0);
1181   }
1182
1183   return GNUNET_OK;
1184 }
1185
1186
1187 /**
1188  * Save place entry message to disk.
1189  *
1190  * @param app_id
1191  *        Application ID.
1192  * @param msg
1193  *        Entry message.
1194  */
1195 static int
1196 app_place_save (const char *app_id,
1197                 const struct PlaceEnterRequest *ereq)
1198 {
1199   app_place_add (app_id, ereq);
1200
1201   if (NULL == dir_places)
1202     return GNUNET_SYSERR;
1203
1204   struct GNUNET_HashCode ego_pub_hash;
1205   struct GNUNET_HashCode place_pub_hash;
1206   GNUNET_CRYPTO_hash (&ereq->ego_pub_key, sizeof (ereq->ego_pub_key),
1207                       &ego_pub_hash);
1208   GNUNET_CRYPTO_hash (&ereq->place_pub_key, sizeof (ereq->place_pub_key),
1209                       &place_pub_hash);
1210
1211   struct GNUNET_CRYPTO_HashAsciiEncoded ego_pub_hash_ascii;
1212   struct GNUNET_CRYPTO_HashAsciiEncoded place_pub_hash_ascii;
1213   memcpy (&ego_pub_hash_ascii.encoding,
1214           GNUNET_h2s_full (&ego_pub_hash), sizeof (ego_pub_hash_ascii));
1215   memcpy (&place_pub_hash_ascii.encoding,
1216           GNUNET_h2s_full (&place_pub_hash), sizeof (place_pub_hash_ascii));
1217
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_hash_ascii.encoding, DIR_SEPARATOR,
1223                    place_pub_hash_ascii.encoding);
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_hash_ascii.encoding, DIR_SEPARATOR,
1242                      place_pub_hash_ascii.encoding);
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   return ret;
1255 }
1256
1257
1258 int
1259 app_place_remove (const char *app_id,
1260                   const struct GNUNET_CRYPTO_EcdsaPublicKey *ego_pub_key,
1261                   const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key)
1262 {
1263   struct GNUNET_HashCode ego_pub_hash;
1264   struct GNUNET_HashCode place_pub_hash;
1265   GNUNET_CRYPTO_hash (ego_pub_key, sizeof (*ego_pub_key), &ego_pub_hash);
1266   GNUNET_CRYPTO_hash (place_pub_key, sizeof (*place_pub_key), &place_pub_hash);
1267
1268   struct GNUNET_CRYPTO_HashAsciiEncoded ego_pub_hash_ascii;
1269   struct GNUNET_CRYPTO_HashAsciiEncoded place_pub_hash_ascii;
1270   memcpy (&ego_pub_hash_ascii.encoding,
1271           GNUNET_h2s_full (&ego_pub_hash), sizeof (ego_pub_hash_ascii));
1272   memcpy (&place_pub_hash_ascii.encoding,
1273           GNUNET_h2s_full (&place_pub_hash), sizeof (place_pub_hash_ascii));
1274
1275   char *app_place_filename = NULL;
1276   GNUNET_asprintf (&app_place_filename,
1277                    "%s%c" "%s%c" "%s%c" "%s%c" "%s",
1278                    dir_social, DIR_SEPARATOR,
1279                    "apps", DIR_SEPARATOR,
1280                    app_id, DIR_SEPARATOR,
1281                    ego_pub_hash_ascii.encoding, DIR_SEPARATOR,
1282                    place_pub_hash_ascii.encoding);
1283
1284   struct GNUNET_HashCode app_id_hash;
1285   GNUNET_CRYPTO_hash (app_id, strlen (app_id) + 1, &app_id_hash);
1286
1287   struct GNUNET_CONTAINER_MultiHashMap *
1288     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
1289
1290   if (NULL != app_places)
1291     GNUNET_CONTAINER_multihashmap_remove (app_places, &place_pub_hash, NULL);
1292
1293   struct GNUNET_CONTAINER_MultiHashMap *
1294     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &place_pub_hash);
1295   if (NULL != place_apps)
1296   {
1297     void *app_id_value = GNUNET_CONTAINER_multihashmap_get (place_apps, &app_id_hash);
1298     if (NULL != app_id_value)
1299     {
1300       GNUNET_CONTAINER_multihashmap_remove (place_apps, &app_id_hash, app_id_value);
1301       GNUNET_free (app_id_value);
1302     }
1303   }
1304
1305   int ret = GNUNET_OK;
1306
1307   if (0 != unlink (app_place_filename))
1308   {
1309     GNUNET_break (0);
1310     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1311                 "Error removing app place file: %s: %s\n",
1312                 app_place_filename, strerror (errno), errno);
1313     ret = GNUNET_SYSERR;
1314   }
1315   GNUNET_free (app_place_filename);
1316
1317   return ret;
1318 }
1319
1320
1321 /**
1322  * Enter place as host.
1323  *
1324  * @param req
1325  *        Entry request.
1326  * @param[out] ret_hst
1327  *        Returned Host struct.
1328  *
1329  * @return #GNUNET_YES if the host entered the place just now,
1330  *         #GNUNET_NO  if the place is already entered,
1331  *         #GNUNET_SYSERR if place_pub_key was set
1332  *                        but its private key was not found
1333  */
1334 static int
1335 host_enter (const struct HostEnterRequest *hreq, struct Host **ret_hst)
1336 {
1337   int ret = GNUNET_NO;
1338   struct GNUNET_HashCode place_pub_hash;
1339   GNUNET_CRYPTO_hash (&hreq->place_pub_key, sizeof (hreq->place_pub_key),
1340                       &place_pub_hash);
1341   struct Host *hst = GNUNET_CONTAINER_multihashmap_get (hosts, &place_pub_hash);
1342
1343   if (NULL == hst)
1344   {
1345     hst = GNUNET_new (struct Host);
1346     hst->policy = hreq->policy;
1347     hst->join_reqs = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1348     hst->relay_msgs = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1349
1350     struct Place *plc = &hst->plc;
1351     place_init (plc);
1352     plc->is_host = GNUNET_YES;
1353     plc->pub_key = hreq->place_pub_key;
1354     plc->pub_key_hash = place_pub_hash;
1355
1356     GNUNET_CONTAINER_multihashmap_put (hosts, &plc->pub_key_hash, plc,
1357                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1358     hst->master = GNUNET_PSYC_master_start (cfg, &hreq->place_key, hst->policy,
1359                                             &psyc_master_started,
1360                                             &psyc_recv_join_request,
1361                                             &psyc_recv_message, NULL, hst);
1362     plc->channel = GNUNET_PSYC_master_get_channel (hst->master);
1363     ret = GNUNET_YES;
1364   }
1365
1366   if (NULL != ret_hst)
1367     *ret_hst = hst;
1368   return ret;
1369 }
1370
1371
1372 const struct MsgProcRequest *
1373 msg_proc_parse (const struct GNUNET_MessageHeader *msg,
1374                 uint32_t *flags,
1375                 const char **method_prefix,
1376                 struct GNUNET_HashCode *method_hash)
1377 {
1378   const struct MsgProcRequest *mpreq = (const struct MsgProcRequest *) msg;
1379   uint8_t method_size = ntohs (mpreq->header.size) - sizeof (*mpreq);
1380   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &mpreq[1],
1381                                                     method_size, 1, method_prefix);
1382
1383   if (0 == offset || offset != method_size || *method_prefix == NULL)
1384   {
1385     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1386                 "offset = %u, method_size = %u, method_name = %s\n",
1387                 offset, method_size, *method_prefix);
1388     return NULL;
1389   }
1390
1391   GNUNET_CRYPTO_hash (*method_prefix, method_size, method_hash);
1392   *flags = ntohl (mpreq->flags);
1393   return mpreq;
1394 }
1395
1396
1397 /**
1398  * Handle a client setting message proccesing flags for a method prefix.
1399  */
1400 static void
1401 client_recv_msg_proc_set (void *cls, struct GNUNET_SERVER_Client *client,
1402                           const struct GNUNET_MessageHeader *msg)
1403 {
1404   struct Client *
1405     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
1406   GNUNET_assert (NULL != ctx);
1407   struct Place *plc = ctx->plc;
1408
1409   const char *method_prefix = NULL;
1410   uint32_t flags = 0;
1411   struct GNUNET_HashCode method_hash;
1412   const struct MsgProcRequest *
1413     mpreq = msg_proc_parse (msg, &flags, &method_prefix, &method_hash);
1414
1415   if (NULL == mpreq) {
1416     GNUNET_break (0);
1417     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1418     return;
1419   }
1420 #if 0
1421   GNUNET_PSYC_slicer_method_remove (plc->slicer, method_prefix,
1422                                     place_recv_relay_method,
1423                                     place_recv_relay_modifier,
1424                                     place_recv_relay_data,
1425                                     place_recv_relay_eom);
1426   GNUNET_PSYC_slicer_method_remove (plc->slicer, method_prefix,
1427                                     place_recv_save_method,
1428                                     NULL,
1429                                     place_recv_save_data,
1430                                     place_recv_save_eom);
1431 #endif
1432   if (flags & GNUNET_SOCIAL_MSG_PROC_RELAY)
1433   {
1434     GNUNET_PSYC_slicer_method_add (plc->slicer, method_prefix, NULL,
1435                                    place_recv_relay_method,
1436                                    place_recv_relay_modifier,
1437                                    place_recv_relay_data,
1438                                    place_recv_relay_eom,
1439                                    plc);
1440   }
1441   if (flags & GNUNET_SOCIAL_MSG_PROC_SAVE)
1442   {
1443     GNUNET_PSYC_slicer_method_add (plc->slicer, method_prefix, NULL,
1444                                    place_recv_save_method,
1445                                    NULL,
1446                                    place_recv_save_data,
1447                                    place_recv_save_eom,
1448                                    plc);
1449   }
1450
1451   /** @todo Save flags to be able to resume relaying/saving after restart */
1452
1453   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1454 }
1455
1456
1457 /**
1458  * Handle a connecting client requesting to clear all relay rules.
1459  */
1460 static void
1461 client_recv_msg_proc_clear (void *cls, struct GNUNET_SERVER_Client *client,
1462                             const struct GNUNET_MessageHeader *msg)
1463 {
1464   struct Client *
1465     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
1466   GNUNET_assert (NULL != ctx);
1467   struct Place *plc = ctx->plc;
1468   if (GNUNET_YES != plc->is_host) {
1469     GNUNET_break (0);
1470     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1471     return;
1472   }
1473   struct Host *hst = (struct Host *) plc;
1474
1475   GNUNET_PSYC_slicer_clear (plc->slicer);
1476
1477   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1478 }
1479
1480
1481 /**
1482  * Handle a connecting client entering a place as host.
1483  */
1484 static void
1485 client_recv_host_enter (void *cls, struct GNUNET_SERVER_Client *client,
1486                         const struct GNUNET_MessageHeader *msg)
1487 {
1488   struct HostEnterRequest *hreq
1489     = (struct HostEnterRequest *) GNUNET_copy_message (msg);
1490
1491   uint8_t app_id_size = ntohs (hreq->header.size) - sizeof (*hreq);
1492   const char *app_id = NULL;
1493   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &hreq[1],
1494                                                     app_id_size, 1, &app_id);
1495   if (0 == offset || offset != app_id_size || app_id == NULL)
1496   {
1497     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1498                 "offset = %u, app_id_size = %u, app_id = %s\n",
1499                 offset, app_id_size, app_id);
1500     GNUNET_break (0);
1501     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1502     return;
1503   }
1504
1505   struct Host *hst = NULL;
1506   struct Place *plc = NULL;
1507   int ret = GNUNET_OK;
1508
1509   struct GNUNET_CRYPTO_EddsaPublicKey empty_pub_key;
1510   memset (&empty_pub_key, 0, sizeof (empty_pub_key));
1511
1512   if (0 == memcmp (&hreq->place_pub_key, &empty_pub_key, sizeof (empty_pub_key)))
1513   { // no public key set: create new private key & save the place
1514     struct GNUNET_CRYPTO_EddsaPrivateKey *
1515       place_key = GNUNET_CRYPTO_eddsa_key_create ();
1516     hreq->place_key = *place_key;
1517     GNUNET_CRYPTO_eddsa_key_get_public (place_key, &hreq->place_pub_key);
1518     GNUNET_CRYPTO_eddsa_key_clear (place_key);
1519     GNUNET_free (place_key);
1520
1521     app_place_save (app_id, (const struct PlaceEnterRequest *) hreq);
1522   }
1523
1524   switch (host_enter (hreq, &hst))
1525   {
1526   case GNUNET_YES:
1527     plc = &hst->plc;
1528     break;
1529
1530   case GNUNET_NO:
1531   {
1532     plc = &hst->plc;
1533     client_send_host_enter_ack (client, hst, GNUNET_OK);
1534     break;
1535   }
1536   case GNUNET_SYSERR:
1537     ret = GNUNET_SYSERR;
1538   }
1539
1540   if (ret != GNUNET_SYSERR)
1541   {
1542
1543     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1544                 "%p Client connected as host to place %s.\n",
1545                 hst, GNUNET_h2s (&plc->pub_key_hash));
1546
1547     struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
1548     cli->client = client;
1549     GNUNET_CONTAINER_DLL_insert (plc->clients_head, plc->clients_tail, cli);
1550
1551     struct Client *ctx = GNUNET_new (struct Client);
1552     ctx->plc = plc;
1553     GNUNET_SERVER_client_set_user_context (client, ctx);
1554   }
1555
1556   GNUNET_CRYPTO_eddsa_key_clear (&hreq->place_key);
1557   GNUNET_free (hreq);
1558   GNUNET_SERVER_receive_done (client, ret);
1559 }
1560
1561
1562 /**
1563  * Enter place as guest.
1564  *
1565  * @param req
1566  *        Entry request.
1567  * @param[out] ret_gst
1568  *        Returned Guest struct.
1569  *
1570  * @return #GNUNET_YES if the guest entered the place just now,
1571  *         #GNUNET_NO  if the place is already entered,
1572  *         #GNUNET_SYSERR on error.
1573  */
1574 static int
1575 guest_enter (const struct GuestEnterRequest *greq, struct Guest **ret_gst)
1576 {
1577   int ret = GNUNET_NO;
1578   uint16_t greq_size = ntohs (greq->header.size);
1579
1580   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key = greq->ego_pub_key;
1581   struct GNUNET_HashCode ego_pub_hash;
1582   GNUNET_CRYPTO_hash (&ego_pub_key, sizeof (ego_pub_key), &ego_pub_hash);
1583   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
1584
1585   if (NULL == ego)
1586     return GNUNET_SYSERR;
1587
1588   struct GNUNET_HashCode place_pub_hash;
1589   GNUNET_CRYPTO_hash (&greq->place_pub_key, sizeof (greq->place_pub_key),
1590                       &place_pub_hash);
1591
1592   struct GNUNET_CONTAINER_MultiHashMap *
1593     plc_gst = GNUNET_CONTAINER_multihashmap_get (place_guests, &place_pub_hash);
1594   struct Guest *gst = NULL;
1595
1596   if (NULL != plc_gst)
1597     gst = GNUNET_CONTAINER_multihashmap_get (plc_gst, &ego_pub_hash);
1598
1599   if (NULL == gst || NULL == gst->slave)
1600   {
1601     gst = GNUNET_new (struct Guest);
1602     gst->origin = greq->origin;
1603     gst->relay_count = ntohl (greq->relay_count);
1604
1605     uint16_t len;
1606     uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1607     const char *app_id = (const char *) &greq[1];
1608     const char *p = app_id;
1609
1610     len = strnlen (app_id, remaining);
1611     if (len == remaining)
1612     {
1613       GNUNET_break (0);
1614       return GNUNET_SYSERR;
1615     }
1616     p += len + 1;
1617     remaining -= len + 1;
1618
1619     const struct GNUNET_PeerIdentity *relays = NULL;
1620     uint16_t relay_size = gst->relay_count * sizeof (*relays);
1621     if (remaining < relay_size)
1622     {
1623       GNUNET_break (0);
1624       return GNUNET_SYSERR;
1625     }
1626     if (0 < relay_size)
1627       relays = (const struct GNUNET_PeerIdentity *) p;
1628     p += relay_size;
1629     remaining -= relay_size;
1630
1631     struct GNUNET_PSYC_Message *join_msg = NULL;
1632     uint16_t join_msg_size = 0;
1633
1634     if (sizeof (struct GNUNET_MessageHeader) <= remaining)
1635     {
1636       join_msg = (struct GNUNET_PSYC_Message *) p;
1637       join_msg_size = ntohs (join_msg->header.size);
1638       p += join_msg_size;
1639       remaining -= join_msg_size;
1640     }
1641     if (0 != remaining)
1642     {
1643       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1644                   "%u + %u + %u != %u\n",
1645                   sizeof (*greq), relay_size, join_msg_size, greq_size);
1646       GNUNET_break (0);
1647       GNUNET_free (gst);
1648       return GNUNET_SYSERR;
1649     }
1650     if (0 < relay_size)
1651     {
1652       gst->relays = GNUNET_malloc (relay_size);
1653       memcpy (gst->relays, relays, relay_size);
1654     }
1655
1656     gst->join_flags = ntohl (greq->flags);
1657
1658     struct Place *plc = &gst->plc;
1659     place_init (plc);
1660     plc->is_host = GNUNET_NO;
1661     plc->pub_key = greq->place_pub_key;
1662     plc->pub_key_hash = place_pub_hash;
1663     plc->ego_pub_key = ego_pub_key;
1664     plc->ego_pub_hash = ego_pub_hash;
1665     plc->ego_key = ego->key;
1666
1667     if (NULL == plc_gst)
1668     {
1669       plc_gst = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
1670       (void) GNUNET_CONTAINER_multihashmap_put (place_guests, &plc->pub_key_hash, plc_gst,
1671                                                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1672     }
1673     (void) GNUNET_CONTAINER_multihashmap_put (plc_gst, &plc->ego_pub_hash, gst,
1674                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1675     (void) GNUNET_CONTAINER_multihashmap_put (guests, &plc->pub_key_hash, gst,
1676                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1677     gst->slave
1678       = GNUNET_PSYC_slave_join (cfg, &plc->pub_key, &plc->ego_key,
1679                                 gst->join_flags, &gst->origin,
1680                                 gst->relay_count, gst->relays,
1681                                 &psyc_recv_message, NULL,
1682                                 &psyc_slave_connected,
1683                                 &psyc_recv_join_dcsn,
1684                                 gst, join_msg);
1685     plc->channel = GNUNET_PSYC_slave_get_channel (gst->slave);
1686     ret = GNUNET_YES;
1687   }
1688
1689   if (NULL != ret_gst)
1690     *ret_gst = gst;
1691   return ret;
1692 }
1693
1694
1695 /**
1696  * Handle a connecting client entering a place as guest.
1697  */
1698 static void
1699 client_recv_guest_enter (void *cls, struct GNUNET_SERVER_Client *client,
1700                          const struct GNUNET_MessageHeader *msg)
1701 {
1702   const struct GuestEnterRequest *
1703     greq = (const struct GuestEnterRequest *) msg;
1704
1705   uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1706   const char *app_id = NULL;
1707   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &greq[1],
1708                                                     remaining, 1, &app_id);
1709   if (0 == offset)
1710   {
1711     GNUNET_break (0);
1712     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1713     return;
1714   }
1715
1716   struct Guest *gst = NULL;
1717   struct Place *plc = NULL;
1718
1719   switch (guest_enter (greq, &gst))
1720   {
1721   case GNUNET_YES:
1722     plc = &gst->plc;
1723     app_place_save (app_id, (const struct PlaceEnterRequest *) greq);
1724     break;
1725
1726   case GNUNET_NO:
1727   {
1728     plc = &gst->plc;
1729
1730     struct GNUNET_PSYC_CountersResultMessage res;
1731     res.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK);
1732     res.header.size = htons (sizeof (res));
1733     res.result_code = htonl (GNUNET_OK);
1734     res.max_message_id = GNUNET_htonll (plc->max_message_id);
1735
1736     client_send_msg (client, &res.header);
1737     if (NULL != gst->join_dcsn)
1738       client_send_msg (client, &gst->join_dcsn->header);
1739
1740     break;
1741   }
1742   case GNUNET_SYSERR:
1743     GNUNET_break (0);
1744     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1745     return;
1746   }
1747
1748   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1749               "%p Client connected as guest to place %s.\n",
1750               gst, GNUNET_h2s (&plc->pub_key_hash));
1751
1752   struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
1753   cli->client = client;
1754   GNUNET_CONTAINER_DLL_insert (plc->clients_head, plc->clients_tail, cli);
1755
1756   struct Client *ctx = GNUNET_new (struct Client);
1757   ctx->plc = plc;
1758   GNUNET_SERVER_client_set_user_context (client, ctx);
1759   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1760 }
1761
1762
1763 struct GuestEnterByNameClosure
1764 {
1765   struct GNUNET_SERVER_Client *client;
1766   char *app_id;
1767   char *password;
1768   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
1769   struct GNUNET_MessageHeader *join_msg;
1770 };
1771
1772
1773 /**
1774  * Result of a GNS name lookup for entering a place.
1775  *
1776  * @see GNUNET_SOCIAL_guest_enter_by_name
1777  */
1778 static void
1779 gns_result_guest_enter (void *cls, uint32_t rd_count,
1780                         const struct GNUNET_GNSRECORD_Data *rd)
1781 {
1782   struct GuestEnterByNameClosure *gcls = cls;
1783   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1784               "%p GNS result: %u records.\n", gcls->client, rd_count);
1785
1786   const struct GNUNET_GNSRECORD_PlaceData *
1787     rec = (const struct GNUNET_GNSRECORD_PlaceData *) rd->data;
1788
1789   if (0 == rd_count || rd->data_size < sizeof (*rec))
1790   {
1791     GNUNET_break (0);
1792     GNUNET_SERVER_receive_done (gcls->client, GNUNET_SYSERR);
1793     return;
1794   }
1795
1796   uint16_t relay_count = ntohl (rec->relay_count);
1797   struct GNUNET_PeerIdentity *relays = NULL;
1798
1799   if (0 < relay_count)
1800   {
1801     if (rd->data_size == sizeof (*rec) + relay_count * sizeof (struct GNUNET_PeerIdentity))
1802     {
1803       relays = (struct GNUNET_PeerIdentity *) &rec[1];
1804     }
1805     else
1806     {
1807       relay_count = 0;
1808       GNUNET_break_op (0);
1809     }
1810   }
1811
1812   uint16_t app_id_size = strlen (gcls->app_id) + 1;
1813   uint16_t relay_size = relay_count * sizeof (*relays);
1814   uint16_t join_msg_size = 0;
1815   if (NULL != gcls->join_msg)
1816     join_msg_size = ntohs (gcls->join_msg->size);
1817   uint16_t greq_size = sizeof (struct GuestEnterRequest)
1818     + app_id_size + relay_size + join_msg_size;
1819   struct GuestEnterRequest *greq = GNUNET_malloc (greq_size);
1820   greq->header.size = htons (greq_size);
1821   greq->header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1822   greq->ego_pub_key = gcls->ego_pub_key;
1823   greq->place_pub_key = rec->place_pub_key;
1824   greq->origin = rec->origin;
1825   greq->relay_count = rec->relay_count;
1826
1827   void *p = &greq[1];
1828   memcpy (p, gcls->app_id, app_id_size);
1829   p += app_id_size;
1830   memcpy (p, relays, relay_size);
1831   p += relay_size;
1832   memcpy (p, gcls->join_msg, join_msg_size);
1833
1834   client_recv_guest_enter (NULL, gcls->client, &greq->header);
1835
1836   GNUNET_free (gcls->app_id);
1837   if (NULL != gcls->password)
1838     GNUNET_free (gcls->password);
1839   if (NULL != gcls->join_msg)
1840     GNUNET_free (gcls->join_msg);
1841   GNUNET_free (gcls);
1842   GNUNET_free (greq);
1843 }
1844
1845
1846 /**
1847  * Handle a connecting client entering a place as guest using a GNS address.
1848  *
1849  * Look up GNS address and generate a GuestEnterRequest from that.
1850  */
1851 static void
1852 client_recv_guest_enter_by_name (void *cls, struct GNUNET_SERVER_Client *client,
1853                                  const struct GNUNET_MessageHeader *msg)
1854 {
1855   const struct GuestEnterByNameRequest *
1856     greq = (const struct GuestEnterByNameRequest *) msg;
1857
1858   struct GuestEnterByNameClosure *gcls = GNUNET_malloc (sizeof (*gcls));
1859   gcls->client = client;
1860   gcls->ego_pub_key = greq->ego_pub_key;
1861
1862   const char *p = (const char *) &greq[1];
1863   const char *app_id = NULL, *password = NULL, *gns_name = NULL;
1864   uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1865   uint16_t offset = GNUNET_STRINGS_buffer_tokenize (p, remaining, 3,
1866                                                     &app_id,
1867                                                     &gns_name,
1868                                                     &password);
1869   p += offset;
1870   remaining -= offset;
1871
1872   if (0 != offset && sizeof (*gcls->join_msg) <= remaining)
1873   {
1874     gcls->join_msg = GNUNET_copy_message ((struct GNUNET_MessageHeader *) p);
1875     remaining -= ntohs (gcls->join_msg->size);
1876   }
1877
1878   if (0 == offset || 0 != remaining)
1879   {
1880     if (NULL != gcls->join_msg)
1881       GNUNET_free (gcls->join_msg);
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   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     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   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   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     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     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     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 tmit_msg
2618  *        Next item in message transmission queue.
2619  * @param[out] pmeth
2620  *        The malloc'd message method is returned here.
2621  *
2622  * @return #GNUNET_OK on success
2623  *         #GNUNET_NO if there are no more messages in queue.
2624  *         #GNUNET_SYSERR if the next message is malformed.
2625  */
2626 static struct GNUNET_PSYC_MessageMethod *
2627 psyc_transmit_queue_next_method (struct Place *plc)
2628 {
2629   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2630   if (NULL == tmit_msg)
2631     return GNUNET_NO;
2632
2633   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2634   if (NULL == tmit_frag)
2635   {
2636     GNUNET_break (0);
2637     return GNUNET_NO;
2638   }
2639
2640   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2641   if (NULL == pmsg
2642       || GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD != ntohs (pmsg->type))
2643   {
2644     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2645                 "%p psyc_transmit_queue_next_method: unexpected message part of type %u.\n",
2646                 plc, NULL != pmsg ? ntohs (pmsg->type) : 0);
2647     GNUNET_break (0);
2648     return NULL;
2649   }
2650
2651   uint16_t psize = ntohs (pmsg->size);
2652   struct GNUNET_PSYC_MessageMethod *
2653     pmeth = (struct GNUNET_PSYC_MessageMethod *) GNUNET_copy_message (pmsg);
2654
2655   if (psize < sizeof (*pmeth) + 1 || '\0' != *((char *) pmeth + psize - 1))
2656   {
2657     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2658                 "%p psyc_transmit_queue_next_method: invalid method name.\n",
2659                 plc, ntohs (pmsg->type));
2660     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2661                 "%u <= %u || NUL != %u\n",
2662                 sizeof (*pmeth), psize, *((char *) pmeth + psize - 1));
2663     GNUNET_break (0);
2664     GNUNET_free (pmeth);
2665     return NULL;
2666   }
2667
2668   psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2669   return pmeth;
2670 }
2671
2672
2673 /**
2674  * Transmit the next message in queue from the host to the PSYC channel.
2675  */
2676 static int
2677 psyc_master_transmit_message (struct Host *hst)
2678 {
2679   struct Place *plc = &hst->plc;
2680
2681   if (NULL == hst->tmit_handle)
2682   {
2683     struct GNUNET_PSYC_MessageMethod *
2684       pmeth = psyc_transmit_queue_next_method (plc);
2685     if (NULL == pmeth)
2686       return GNUNET_SYSERR;
2687
2688     hst->tmit_handle
2689       = GNUNET_PSYC_master_transmit (hst->master, (const char *) &pmeth[1],
2690                                      &host_transmit_notify_mod,
2691                                      &host_transmit_notify_data, hst,
2692                                      pmeth->flags);
2693     GNUNET_free (pmeth);
2694   }
2695   else
2696   {
2697     GNUNET_PSYC_master_transmit_resume (hst->tmit_handle);
2698   }
2699   return GNUNET_OK;
2700 }
2701
2702
2703 /**
2704  * Transmit the next message in queue from a guest to the PSYC channel.
2705  */
2706 static int
2707 psyc_slave_transmit_message (struct Guest *gst)
2708 {
2709   struct Place *plc = &gst->plc;
2710
2711   if (NULL == gst->tmit_handle)
2712   {
2713     struct GNUNET_PSYC_MessageMethod *
2714       pmeth = psyc_transmit_queue_next_method (plc);
2715     if (NULL == pmeth)
2716       return GNUNET_SYSERR;
2717
2718     gst->tmit_handle
2719       = GNUNET_PSYC_slave_transmit (gst->slave, (const char *) &pmeth[1],
2720                                     &guest_transmit_notify_mod,
2721                                     &guest_transmit_notify_data, gst,
2722                                     pmeth->flags);
2723     GNUNET_free (pmeth);
2724   }
2725   else
2726   {
2727     GNUNET_PSYC_slave_transmit_resume (gst->tmit_handle);
2728   }
2729   return GNUNET_OK;
2730 }
2731
2732
2733 /**
2734  * Transmit a message to PSYC.
2735  */
2736 static int
2737 psyc_transmit_message (struct Place *plc)
2738 {
2739   return
2740     (plc->is_host)
2741     ? psyc_master_transmit_message ((struct Host *) plc)
2742     : psyc_slave_transmit_message ((struct Guest *) plc);
2743 }
2744
2745
2746 /**
2747  * Queue message parts for sending to PSYC.
2748  *
2749  * @param plc          Place to send to.
2750  * @param client       Client the message originates from.
2751  * @param data_size    Size of @a data.
2752  * @param data         Concatenated message parts.
2753  * @param first_ptype  First message part type in @a data.
2754  * @param last_ptype   Last message part type in @a data.
2755  */
2756 static struct MessageTransmitQueue *
2757 psyc_transmit_queue_message (struct Place *plc,
2758                              struct GNUNET_SERVER_Client *client,
2759                              size_t data_size,
2760                              const void *data,
2761                              uint16_t first_ptype, uint16_t last_ptype,
2762                              struct MessageTransmitQueue *tmit_msg)
2763 {
2764   if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD == first_ptype)
2765   {
2766     tmit_msg = GNUNET_malloc (sizeof (*tmit_msg));
2767     GNUNET_CONTAINER_DLL_insert_tail (plc->tmit_msgs_head, plc->tmit_msgs_tail, tmit_msg);
2768   }
2769   else if (NULL == tmit_msg)
2770   {
2771     return NULL;
2772   }
2773
2774   struct FragmentTransmitQueue *
2775     tmit_frag = GNUNET_malloc (sizeof (*tmit_frag) + data_size);
2776   memcpy (&tmit_frag[1], data, data_size);
2777   tmit_frag->next_part = (struct GNUNET_MessageHeader *) &tmit_frag[1];
2778   tmit_frag->client = client;
2779   tmit_frag->size = data_size;
2780
2781   GNUNET_CONTAINER_DLL_insert_tail (tmit_msg->frags_head, tmit_msg->frags_tail, tmit_frag);
2782   tmit_msg->client = client;
2783   return tmit_msg;
2784 }
2785
2786
2787 /**
2788  * Cancel transmission of current message to PSYC.
2789  *
2790  * @param plc     Place to send to.
2791  * @param client  Client the message originates from.
2792  */
2793 static void
2794 psyc_transmit_cancel (struct Place *plc, struct GNUNET_SERVER_Client *client)
2795 {
2796   uint16_t type = GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL;
2797
2798   struct GNUNET_MessageHeader msg;
2799   msg.size = htons (sizeof (msg));
2800   msg.type = htons (type);
2801
2802   psyc_transmit_queue_message (plc, client, sizeof (msg), &msg, type, type, NULL);
2803   psyc_transmit_message (plc);
2804
2805   /* FIXME: cleanup */
2806 }
2807
2808
2809 /**
2810  * Handle an incoming message from a client, to be transmitted to the place.
2811  */
2812 static void
2813 client_recv_psyc_message (void *cls, struct GNUNET_SERVER_Client *client,
2814                           const struct GNUNET_MessageHeader *msg)
2815 {
2816   struct Client *
2817     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2818   GNUNET_assert (NULL != ctx);
2819   struct Place *plc = ctx->plc;
2820   int ret = GNUNET_SYSERR;
2821
2822   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2823               "%p Received message from client.\n", plc);
2824   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, msg);
2825
2826   if (GNUNET_YES != plc->is_ready)
2827   {
2828     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2829                 "%p Place is not ready yet, disconnecting client.\n", plc);
2830     GNUNET_break (0);
2831     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2832     return;
2833   }
2834
2835   uint16_t size = ntohs (msg->size);
2836   uint16_t psize = size - sizeof (*msg);
2837   if (psize < sizeof (struct GNUNET_MessageHeader)
2838       || GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD < psize)
2839   {
2840     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2841                 "%p Received message with invalid payload size (%u) from client.\n",
2842                 plc, psize);
2843     GNUNET_break (0);
2844     psyc_transmit_cancel (plc, client);
2845     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2846     return;
2847   }
2848
2849   uint16_t first_ptype = 0, last_ptype = 0;
2850   if (GNUNET_SYSERR
2851       == GNUNET_PSYC_receive_check_parts (psize, (const char *) &msg[1],
2852                                           &first_ptype, &last_ptype))
2853   {
2854     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2855                 "%p Received invalid message part from client.\n", plc);
2856     GNUNET_break (0);
2857     psyc_transmit_cancel (plc, client);
2858     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2859     return;
2860   }
2861   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2862               "%p Received message with first part type %u and last part type %u.\n",
2863               plc, first_ptype, last_ptype);
2864
2865   ctx->tmit_msg
2866     = psyc_transmit_queue_message (plc, client, psize, &msg[1],
2867                                    first_ptype, last_ptype, ctx->tmit_msg);
2868   if (NULL != ctx->tmit_msg)
2869   {
2870     if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= last_ptype)
2871       ctx->tmit_msg = NULL;
2872     ret = psyc_transmit_message (plc);
2873   }
2874
2875   if (GNUNET_OK != ret)
2876   {
2877     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2878                 "%p Received invalid message part from client.\n", plc);
2879     GNUNET_break (0);
2880     psyc_transmit_cancel (plc, client);
2881     ret = GNUNET_SYSERR;
2882   }
2883   GNUNET_SERVER_receive_done (client, ret);
2884 }
2885
2886
2887 /**
2888  * A historic message arrived from PSYC.
2889  */
2890 static void
2891 psyc_recv_history_message (void *cls, const struct GNUNET_PSYC_MessageHeader *msg)
2892 {
2893   struct OperationClosure *opcls = cls;
2894   struct Place *plc = opcls->plc;
2895
2896   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2897               "%p Received historic message #%" PRId64 " (flags: %x)\n",
2898               plc, GNUNET_ntohll (msg->message_id), ntohl (msg->flags));
2899
2900   uint16_t size = ntohs (msg->header.size);
2901
2902   struct GNUNET_OperationResultMessage *
2903     res = GNUNET_malloc (sizeof (*res) + size);
2904   res->header.size = htons (sizeof (*res) + size);
2905   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT);
2906   res->op_id = opcls->op_id;
2907   res->result_code = GNUNET_htonll (GNUNET_OK);
2908
2909   memcpy (&res[1], msg, size);
2910
2911   /** @todo FIXME: send only to requesting client */
2912   place_send_msg (plc, &res->header);
2913 }
2914
2915
2916 /**
2917  * Result of message history replay from PSYC.
2918  */
2919 static void
2920 psyc_recv_history_result (void *cls, int64_t result,
2921                           const void *err_msg, uint16_t err_msg_size)
2922 {
2923   struct OperationClosure *opcls = cls;
2924   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2925               "%p History replay #%" PRIu64 ": "
2926               "PSYCstore returned %" PRId64 " (%.*s)\n",
2927               opcls->plc, GNUNET_ntohll (opcls->op_id), result, err_msg_size, err_msg);
2928
2929   // FIXME: place might have been destroyed
2930   client_send_result (opcls->client, opcls->op_id, result, err_msg, err_msg_size);
2931 }
2932
2933
2934 /**
2935  * Client requests channel history.
2936  */
2937 static void
2938 client_recv_history_replay (void *cls, struct GNUNET_SERVER_Client *client,
2939                             const struct GNUNET_MessageHeader *msg)
2940 {
2941   struct Client *
2942     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2943   GNUNET_assert (NULL != ctx);
2944   struct Place *plc = ctx->plc;
2945
2946   const struct GNUNET_PSYC_HistoryRequestMessage *
2947     req = (const struct GNUNET_PSYC_HistoryRequestMessage *) msg;
2948   uint16_t size = ntohs (msg->size);
2949   const char *method_prefix = (const char *) &req[1];
2950
2951   if (size < sizeof (*req) + 1
2952       || '\0' != method_prefix[size - sizeof (*req) - 1])
2953   {
2954     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2955                 "%p History replay #%" PRIu64 ": "
2956                 "invalid method prefix. size: %u < %u?\n",
2957                 plc, GNUNET_ntohll (req->op_id), size, sizeof (*req) + 1);
2958     GNUNET_break (0);
2959     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2960     return;
2961   }
2962
2963   struct OperationClosure *opcls = GNUNET_malloc (sizeof (*opcls));
2964   opcls->client = client;
2965   opcls->plc = plc;
2966   opcls->op_id = req->op_id;
2967   opcls->flags = ntohl (req->flags);
2968
2969   if (0 == req->message_limit)
2970     GNUNET_PSYC_channel_history_replay (plc->channel,
2971                                         GNUNET_ntohll (req->start_message_id),
2972                                         GNUNET_ntohll (req->end_message_id),
2973                                         method_prefix, opcls->flags,
2974                                         psyc_recv_history_message, NULL,
2975                                         psyc_recv_history_result, opcls);
2976   else
2977     GNUNET_PSYC_channel_history_replay_latest (plc->channel,
2978                                                GNUNET_ntohll (req->message_limit),
2979                                                method_prefix, opcls->flags,
2980                                                psyc_recv_history_message, NULL,
2981                                                psyc_recv_history_result, opcls);
2982
2983   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2984 }
2985
2986
2987 /**
2988  * A state variable part arrived from PSYC.
2989  */
2990 void
2991 psyc_recv_state_var (void *cls,
2992                      const struct GNUNET_MessageHeader *mod,
2993                      const char *name,
2994                      const void *value,
2995                      uint32_t value_size,
2996                      uint32_t full_value_size)
2997 {
2998   struct OperationClosure *opcls = cls;
2999   struct Place *plc = opcls->plc;
3000
3001   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3002               "%p Received state variable %s from PSYC\n",
3003               plc, name);
3004
3005   uint16_t size = ntohs (mod->size);
3006
3007   struct GNUNET_OperationResultMessage *
3008     res = GNUNET_malloc (sizeof (*res) + size);
3009   res->header.size = htons (sizeof (*res) + size);
3010   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT);
3011   res->op_id = opcls->op_id;
3012   res->result_code = GNUNET_htonll (GNUNET_OK);
3013
3014   memcpy (&res[1], mod, size);
3015
3016   /** @todo FIXME: send only to requesting client */
3017   place_send_msg (plc, &res->header);
3018 }
3019
3020
3021 /**
3022  * Result of retrieving state variable from PSYC.
3023  */
3024 static void
3025 psyc_recv_state_result (void *cls, int64_t result,
3026                         const void *err_msg, uint16_t err_msg_size)
3027 {
3028   struct OperationClosure *opcls = cls;
3029   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3030               "%p State get #%" PRIu64 ": "
3031               "PSYCstore returned %" PRId64 " (%.*s)\n",
3032               opcls->plc, GNUNET_ntohll (opcls->op_id), result, err_msg_size, err_msg);
3033
3034   // FIXME: place might have been destroyed
3035   client_send_result (opcls->client, opcls->op_id, result, err_msg, err_msg_size);
3036 }
3037
3038
3039 /**
3040  * Client requests channel history.
3041  */
3042 static void
3043 client_recv_state_get (void *cls, struct GNUNET_SERVER_Client *client,
3044                        const struct GNUNET_MessageHeader *msg)
3045 {
3046   struct Client *
3047     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
3048   GNUNET_assert (NULL != ctx);
3049   struct Place *plc = ctx->plc;
3050
3051   const struct GNUNET_PSYC_StateRequestMessage *
3052     req = (const struct GNUNET_PSYC_StateRequestMessage *) msg;
3053   uint16_t size = ntohs (msg->size);
3054   const char *name = (const char *) &req[1];
3055
3056   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3057               "%p State get #%" PRIu64 ": %s\n",
3058               plc, GNUNET_ntohll (req->op_id), name);
3059
3060   if (size < sizeof (*req) + 1
3061       || '\0' != name[size - sizeof (*req) - 1])
3062   {
3063     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3064                 "%p State get #%" PRIu64 ": "
3065                 "invalid name. size: %u < %u?\n",
3066                 plc, GNUNET_ntohll (req->op_id), size, sizeof (*req) + 1);
3067     GNUNET_break (0);
3068     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3069     return;
3070   }
3071
3072   struct OperationClosure *opcls = GNUNET_malloc (sizeof (*opcls));
3073   opcls->client = client;
3074   opcls->plc = plc;
3075   opcls->op_id = req->op_id;
3076
3077   switch (ntohs (msg->type))
3078   {
3079   case GNUNET_MESSAGE_TYPE_PSYC_STATE_GET:
3080       GNUNET_PSYC_channel_state_get (plc->channel, name,
3081                                      psyc_recv_state_var,
3082                                      psyc_recv_state_result, opcls);
3083       break;
3084
3085   case GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX:
3086       GNUNET_PSYC_channel_state_get_prefix (plc->channel, name,
3087                                             psyc_recv_state_var,
3088                                             psyc_recv_state_result, opcls);
3089       break;
3090
3091   default:
3092       GNUNET_assert (0);
3093   }
3094
3095   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3096 }
3097
3098
3099 static void
3100 namestore_recv_records_store_result (void *cls, int32_t result,
3101                                      const char *err_msg)
3102 {
3103   struct OperationClosure *ocls = cls;
3104   client_send_result (ocls->client, ocls->op_id, result, err_msg,
3105                       (NULL != err_msg) ? strlen (err_msg) : 0);
3106   GNUNET_free (ocls);
3107 }
3108
3109
3110 /**
3111  * Handle request to add PLACE record to GNS zone.
3112  */
3113 static void
3114 client_recv_zone_add_place (void *cls, struct GNUNET_SERVER_Client *client,
3115                              const struct GNUNET_MessageHeader *msg)
3116 {
3117   const struct ZoneAddPlaceRequest *preq
3118     = (const struct ZoneAddPlaceRequest *) msg;
3119
3120   uint16_t remaining = ntohs (preq->header.size) - sizeof (*preq);
3121   const char *p = (const char *) &preq[1];
3122   const char *name = NULL, *password = NULL;
3123   uint16_t offset = GNUNET_STRINGS_buffer_tokenize (p, remaining, 2,
3124                                                     &name, &password);
3125   remaining -= offset;
3126   p += offset;
3127   const struct GNUNET_PeerIdentity *
3128     relays = (const struct GNUNET_PeerIdentity *) p;
3129   uint16_t relay_size = ntohl (preq->relay_count) * sizeof (*relays);
3130
3131   if (0 == offset || remaining != relay_size)
3132   {
3133     GNUNET_break (0);
3134     client_send_result (client, preq->op_id, GNUNET_SYSERR, NULL, 0);
3135     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3136     return;
3137   }
3138
3139   struct GNUNET_GNSRECORD_Data rd = { };
3140   rd.record_type = GNUNET_GNSRECORD_TYPE_PLACE;
3141   rd.flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
3142   rd.expiration_time = GNUNET_ntohll (preq->expiration_time);
3143
3144   struct GNUNET_GNSRECORD_PlaceData *
3145     rec = GNUNET_malloc (sizeof (*rec) + relay_size);
3146   rec->place_pub_key = preq->place_pub_key;
3147   rec->origin = this_peer;
3148   rec->relay_count = preq->relay_count;
3149   memcpy (&rec[1], relays, relay_size);
3150
3151   rd.data = rec;
3152   rd.data_size = sizeof (*rec) + relay_size;
3153
3154   struct GNUNET_HashCode ego_pub_hash;
3155   GNUNET_CRYPTO_hash (&preq->ego_pub_key, sizeof (preq->ego_pub_key), &ego_pub_hash);
3156   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3157   if (NULL == ego)
3158   {
3159     client_send_result (client, preq->op_id, GNUNET_SYSERR, NULL, 0);
3160   }
3161   else
3162   {
3163     struct OperationClosure *ocls = GNUNET_malloc (sizeof (*ocls));
3164     ocls->client = client;
3165     ocls->op_id = preq->op_id;
3166     GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3167                                     name, 1, &rd,
3168                                     namestore_recv_records_store_result, ocls);
3169     /** @todo refresh stored records later */
3170   }
3171   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3172 }
3173
3174
3175 /**
3176  * Handle request to add PLACE record to GNS zone.
3177  */
3178 static void
3179 client_recv_zone_add_nym (void *cls, struct GNUNET_SERVER_Client *client,
3180                           const struct GNUNET_MessageHeader *msg)
3181 {
3182   const struct ZoneAddNymRequest *nreq
3183     = (const struct ZoneAddNymRequest *) msg;
3184
3185   uint16_t name_size = ntohs (nreq->header.size) - sizeof (*nreq);
3186   const char *name = NULL;
3187   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &nreq[1],
3188                                                     name_size, 1, &name);
3189   if (0 == offset || offset != name_size)
3190   {
3191     GNUNET_break (0);
3192     client_send_result (client, nreq->op_id, GNUNET_SYSERR, NULL, 0);
3193     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3194     return;
3195   }
3196
3197   struct GNUNET_GNSRECORD_Data rd = { };
3198   rd.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
3199   rd.flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
3200   rd.expiration_time = GNUNET_ntohll (nreq->expiration_time);
3201   rd.data = &nreq->nym_pub_key;
3202   rd.data_size = sizeof (nreq->nym_pub_key);
3203
3204   struct GNUNET_HashCode ego_pub_hash;
3205   GNUNET_CRYPTO_hash (&nreq->ego_pub_key, sizeof (nreq->ego_pub_key), &ego_pub_hash);
3206   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3207   if (NULL == ego)
3208   {
3209     client_send_result (client, nreq->op_id, GNUNET_SYSERR, NULL, 0);
3210   }
3211   else
3212   {
3213     struct OperationClosure *ocls = GNUNET_malloc (sizeof (*ocls));
3214     ocls->client = client;
3215     ocls->op_id = nreq->op_id;
3216     GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3217                                     name, 1, &rd,
3218                                     namestore_recv_records_store_result, ocls);
3219     /** @todo refresh stored records later */
3220   }
3221   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3222 }
3223
3224
3225 static const struct GNUNET_SERVER_MessageHandler handlers[] = {
3226   { client_recv_host_enter, NULL,
3227     GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER, 0 },
3228
3229   { client_recv_guest_enter, NULL,
3230     GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER, 0 },
3231
3232   { client_recv_guest_enter_by_name, NULL,
3233     GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_BY_NAME, 0 },
3234
3235   { client_recv_join_decision, NULL,
3236     GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION, 0 },
3237
3238   { client_recv_psyc_message, NULL,
3239     GNUNET_MESSAGE_TYPE_PSYC_MESSAGE, 0 },
3240
3241   { client_recv_history_replay, NULL,
3242     GNUNET_MESSAGE_TYPE_PSYC_HISTORY_REPLAY, 0 },
3243
3244   { client_recv_state_get, NULL,
3245     GNUNET_MESSAGE_TYPE_PSYC_STATE_GET, 0 },
3246
3247   { client_recv_state_get, NULL,
3248     GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX, 0 },
3249
3250   { client_recv_zone_add_place, NULL,
3251     GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_PLACE, 0 },
3252
3253   { client_recv_zone_add_nym, NULL,
3254     GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_NYM, 0 },
3255
3256   { client_recv_app_connect, NULL,
3257     GNUNET_MESSAGE_TYPE_SOCIAL_APP_CONNECT, 0 },
3258
3259   { client_recv_app_detach, NULL,
3260     GNUNET_MESSAGE_TYPE_SOCIAL_APP_DETACH, 0 },
3261
3262   { client_recv_place_leave, NULL,
3263     GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE, 0 },
3264
3265   { client_recv_msg_proc_set, NULL,
3266     GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_SET, 0 },
3267
3268   { client_recv_msg_proc_clear, NULL,
3269     GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_CLEAR, 0 },
3270
3271   { NULL, NULL, 0, 0 }
3272 };
3273
3274
3275 const char *
3276 path_basename (const char *path)
3277 {
3278   const char *basename = strrchr (path, DIR_SEPARATOR);
3279   if (NULL != basename)
3280     basename++;
3281
3282   if (NULL == basename || '\0' == basename)
3283     return NULL;
3284
3285   return basename;
3286 }
3287
3288
3289 struct PlaceLoadClosure
3290 {
3291   const char *app_id;
3292   const char *ego_pub_hash_str;
3293 };
3294
3295
3296 /** Load a place file */
3297 int
3298 file_place_load (void *cls, const char *filename)
3299 {
3300   char *app_id = cls;
3301   uint64_t file_size = 0;
3302   if (GNUNET_OK !=
3303       GNUNET_DISK_file_size (filename, &file_size, GNUNET_YES, GNUNET_YES)
3304       || file_size < sizeof (struct HostEnterRequest))
3305     return GNUNET_OK;
3306
3307   struct PlaceEnterRequest *ereq = GNUNET_malloc (file_size);
3308   ssize_t read_size = GNUNET_DISK_fn_read (filename, ereq, file_size);
3309   if (read_size < 0 || read_size < sizeof (*ereq))
3310     return GNUNET_OK;
3311
3312   uint16_t ereq_size = ntohs (ereq->header.size);
3313   if (read_size != ereq_size)
3314     return GNUNET_OK;
3315
3316   switch (ntohs (ereq->header.type))
3317   {
3318   case GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER:
3319     if (ereq_size < sizeof (struct HostEnterRequest))
3320       return GNUNET_OK;
3321     struct HostEnterRequest *hreq = (struct HostEnterRequest *) ereq;
3322     host_enter (hreq, NULL);
3323     break;
3324
3325   case GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER:
3326     if (ereq_size < sizeof (struct GuestEnterRequest))
3327       return GNUNET_OK;
3328     struct GuestEnterRequest *greq = (struct GuestEnterRequest *) ereq;
3329     guest_enter (greq, NULL);
3330     break;
3331
3332   default:
3333     return GNUNET_OK;
3334   }
3335
3336   app_place_add (app_id, ereq);
3337   return GNUNET_OK;
3338 }
3339
3340
3341 /** Load an ego place file */
3342 int
3343 file_ego_place_load (void *cls, const char *place_filename)
3344 {
3345   struct PlaceLoadClosure *plcls = cls;
3346
3347   const char *place_pub_hash_str = path_basename (place_filename);
3348   if (NULL == place_pub_hash_str)
3349   {
3350     GNUNET_break (0);
3351     return GNUNET_OK;
3352   }
3353
3354   char *filename = NULL;
3355   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s",
3356                    dir_social, DIR_SEPARATOR,
3357                    "places", DIR_SEPARATOR,
3358                    plcls->ego_pub_hash_str, DIR_SEPARATOR,
3359                    place_pub_hash_str);
3360
3361   struct PlaceEnterRequest ereq[GNUNET_SERVER_MAX_MESSAGE_SIZE];
3362
3363   int read_size = GNUNET_DISK_fn_read (filename, &ereq,
3364                                        GNUNET_SERVER_MAX_MESSAGE_SIZE);
3365   GNUNET_free (filename);
3366
3367   if (read_size < (ssize_t) sizeof (ereq))
3368     return GNUNET_OK;
3369
3370   app_place_add (plcls->app_id, ereq);
3371   return GNUNET_OK;
3372 }
3373
3374
3375 /**
3376  * Read @e place_pub_hash_str entries in @a dir_ego
3377  *
3378  * @param dir_ego
3379  *        Data directory of an application ego.
3380  *        $GNUNET_DATA_HOME/social/apps/$app_id/$ego_pub_hash_str/
3381  */
3382 int
3383 scan_app_ego_dir (void *cls, const char *dir_ego)
3384 {
3385   struct PlaceLoadClosure *plcls = cls;
3386   plcls->ego_pub_hash_str = path_basename (dir_ego);
3387
3388   if (NULL != plcls->ego_pub_hash_str)
3389     GNUNET_DISK_directory_scan (dir_ego, file_ego_place_load, plcls);
3390
3391   return GNUNET_OK;
3392 }
3393
3394 /**
3395  * Read @e ego_pub_hash_str entries in @a dir_app
3396  *
3397  * @param dir_app
3398  *        Data directory of an application.
3399  *        $GNUNET_DATA_HOME/social/apps/$app_id/
3400  */
3401 int
3402 scan_app_dir (void *cls, const char *dir_app)
3403 {
3404   if (GNUNET_YES != GNUNET_DISK_directory_test (dir_app, GNUNET_YES))
3405     return GNUNET_OK;
3406
3407   struct PlaceLoadClosure plcls;
3408   plcls.app_id = path_basename (dir_app);
3409
3410   if (NULL != plcls.app_id)
3411     GNUNET_DISK_directory_scan (dir_app, scan_app_ego_dir, &plcls);
3412
3413   return GNUNET_OK;
3414 }
3415
3416
3417 static void
3418 identity_recv_ego (void *cls, struct GNUNET_IDENTITY_Ego *id_ego,
3419                    void **ctx, const char *name)
3420 {
3421   if (NULL == id_ego) // end of initial list of egos
3422     return;
3423
3424   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
3425   GNUNET_IDENTITY_ego_get_public_key (id_ego, &ego_pub_key);
3426
3427   struct GNUNET_HashCode ego_pub_hash;
3428   GNUNET_CRYPTO_hash (&ego_pub_key, sizeof (ego_pub_key), &ego_pub_hash);
3429
3430   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3431   if (NULL != ego)
3432   {
3433     GNUNET_free (ego->name);
3434     if (NULL == name) // deleted
3435     {
3436       GNUNET_CONTAINER_multihashmap_remove (egos, &ego_pub_hash, ego);
3437       GNUNET_free (ego);
3438       ego = NULL;
3439     }
3440   }
3441   else
3442   {
3443     ego = GNUNET_malloc (sizeof (*ego));
3444   }
3445   if (NULL != ego)
3446   {
3447     ego->key = *(GNUNET_IDENTITY_ego_get_private_key (id_ego));
3448     size_t name_size = strlen (name) + 1;
3449     ego->name = GNUNET_malloc (name_size);
3450     memcpy (ego->name, name, name_size);
3451
3452     GNUNET_CONTAINER_multihashmap_put (egos, &ego_pub_hash, ego,
3453                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
3454   }
3455
3456   // FIXME: notify clients about changed ego
3457 }
3458
3459
3460 /**
3461  * Connected to core service.
3462  */
3463 static void
3464 core_connected (void *cls, const struct GNUNET_PeerIdentity *my_identity)
3465 {
3466   this_peer = *my_identity;
3467 }
3468
3469
3470 /**
3471  * Initialize the PSYC service.
3472  *
3473  * @param cls Closure.
3474  * @param server The initialized server.
3475  * @param c Configuration to use.
3476  */
3477 static void
3478 run (void *cls, struct GNUNET_SERVER_Handle *server,
3479      const struct GNUNET_CONFIGURATION_Handle *c)
3480 {
3481   cfg = c;
3482
3483   hosts = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
3484   guests = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
3485   place_guests = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3486
3487   egos = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3488   apps = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3489   places = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3490   apps_places = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3491   places_apps = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3492
3493   core = GNUNET_CORE_connect (cfg, NULL, core_connected, NULL, NULL,
3494                               NULL, GNUNET_NO, NULL, GNUNET_NO, NULL);
3495   id = GNUNET_IDENTITY_connect (cfg, &identity_recv_ego, NULL);
3496   gns = GNUNET_GNS_connect (cfg);
3497   namestore = GNUNET_NAMESTORE_connect (cfg);
3498   stats = GNUNET_STATISTICS_create ("social", cfg);
3499
3500   if (GNUNET_OK !=
3501       GNUNET_CONFIGURATION_get_value_filename (cfg, "social", "DATA_HOME",
3502                                                &dir_social))
3503   {
3504     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
3505                                "social", "DATA_HOME");
3506     GNUNET_break (0);
3507     return;
3508   }
3509   GNUNET_asprintf (&dir_places, "%s%c%s",
3510                    dir_social, DIR_SEPARATOR, "places");
3511   GNUNET_asprintf (&dir_apps, "%s%c%s",
3512                    dir_social, DIR_SEPARATOR, "apps");
3513
3514   GNUNET_DISK_directory_scan (dir_apps, scan_app_dir, NULL);
3515
3516   nc = GNUNET_SERVER_notification_context_create (server, 1);
3517   GNUNET_SERVER_add_handlers (server, handlers);
3518   GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
3519   GNUNET_SCHEDULER_add_shutdown (&shutdown_task, NULL);
3520 }
3521
3522
3523 /**
3524  * The main function for the service.
3525  *
3526  * @param argc number of arguments from the command line
3527  * @param argv command line arguments
3528  * @return 0 ok, 1 on error
3529  */
3530 int
3531 main (int argc, char *const *argv)
3532 {
3533   return (GNUNET_OK ==
3534           GNUNET_SERVICE_run (argc, argv, "social",
3535                               GNUNET_SERVICE_OPTION_NONE,
3536                               &run, NULL)) ? 0 : 1;
3537 }
3538
3539 /* end of gnunet-service-social.c */