psyc/social: transmit fix
[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   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&plc->pub_key);
937   char *filename = NULL;
938   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%" PRIu64 ".part",
939                    dir_social, DIR_SEPARATOR,
940                    "files", DIR_SEPARATOR,
941                    place_pub_str, DIR_SEPARATOR,
942                    GNUNET_ntohll (msg->message_id));
943   GNUNET_free (place_pub_str);
944
945   /* save if does not already exist */
946   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
947   {
948     if (0 == GNUNET_DISK_fn_write (filename, NULL, 0,
949                                    GNUNET_DISK_PERM_USER_READ
950                                    | GNUNET_DISK_PERM_USER_WRITE))
951     {
952       plc->file_save = GNUNET_YES;
953     }
954     else
955     {
956       GNUNET_break (0);
957     }
958   }
959   GNUNET_free (filename);
960 }
961
962
963 /**
964  * Received a data fragment to be saved to disk.
965  *
966  * Append data fragment to the file.
967  */
968 static void
969 place_recv_save_data (void *cls,
970                       const struct GNUNET_PSYC_MessageHeader *msg,
971                       const struct GNUNET_MessageHeader *pmsg,
972                       uint64_t message_id,
973                       const void *data,
974                       uint16_t data_size)
975 {
976   struct Place *plc = cls;
977   if (GNUNET_YES != plc->file_save)
978     return;
979
980   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&plc->pub_key);
981   char *filename = NULL;
982   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%" PRIu64 ".part",
983                    dir_social, DIR_SEPARATOR,
984                    "files", DIR_SEPARATOR,
985                    place_pub_str, DIR_SEPARATOR,
986                    GNUNET_ntohll (msg->message_id));
987   GNUNET_free (place_pub_str);
988   GNUNET_DISK_directory_create_for_file (filename);
989   struct GNUNET_DISK_FileHandle *
990     fh = GNUNET_DISK_file_open (filename, GNUNET_DISK_OPEN_WRITE,
991                                 GNUNET_DISK_PERM_NONE);
992   GNUNET_free (filename);
993
994   if (NULL != fh)
995   {
996     GNUNET_DISK_file_seek (fh, plc->file_offset, GNUNET_DISK_SEEK_SET);
997     GNUNET_DISK_file_write (fh, data, data_size);
998     GNUNET_DISK_file_close (fh);
999   }
1000   else
1001   {
1002     GNUNET_break (0);
1003   }
1004
1005   plc->file_offset += data_size;
1006 }
1007
1008
1009 /**
1010  * Received end of message to be saved to disk.
1011  *
1012  * Remove .part ending from the filename.
1013  */
1014 static void
1015 place_recv_save_eom (void *cls,
1016                      const struct GNUNET_PSYC_MessageHeader *msg,
1017                      const struct GNUNET_MessageHeader *pmsg,
1018                      uint64_t message_id,
1019                      uint8_t is_cancelled)
1020 {
1021   struct Place *plc = cls;
1022   if (GNUNET_YES != plc->file_save)
1023     return;
1024
1025   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&plc->pub_key);
1026   char *fn = NULL;
1027   GNUNET_asprintf (&fn, "%s%c%s%c%s%c%" PRIu64,
1028                    dir_social, DIR_SEPARATOR,
1029                    "files", DIR_SEPARATOR,
1030                    place_pub_str, DIR_SEPARATOR,
1031                    GNUNET_ntohll (msg->message_id));
1032   GNUNET_free (place_pub_str);
1033   char *fn_part = NULL;
1034   GNUNET_asprintf (&fn_part, "%s.part", fn);
1035
1036   rename (fn_part, fn);
1037
1038   GNUNET_free (fn);
1039   GNUNET_free (fn_part);
1040 }
1041
1042
1043 /**
1044  * Initialize place data structure.
1045  */
1046 static void
1047 place_init (struct Place *plc)
1048 {
1049   plc->slicer = GNUNET_PSYC_slicer_create ();
1050 }
1051
1052
1053 /**
1054  * Add a place to the @e places hash map.
1055  *
1056  * @param ereq
1057  *        Entry request.
1058  *
1059  * @return #GNUNET_OK if the place was added
1060  *         #GNUNET_NO if the place already exists in the hash map
1061  *         #GNUNET_SYSERR on error
1062  */
1063 static int
1064 place_add (const struct PlaceEnterRequest *ereq)
1065 {
1066   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1067               "Adding place to hashmap:\n");
1068
1069   struct EgoPlacePublicKey ego_place_pub_key = {
1070     .ego_pub_key = ereq->ego_pub_key,
1071     .place_pub_key = ereq->place_pub_key,
1072   };
1073   struct GNUNET_HashCode ego_place_pub_hash;
1074   GNUNET_CRYPTO_hash (&ego_place_pub_key, sizeof (ego_place_pub_key), &ego_place_pub_hash);
1075
1076   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1077               "  ego_place_pub_hash = %s\n", GNUNET_h2s (&ego_place_pub_hash));
1078
1079   struct GNUNET_MessageHeader *
1080     place_msg = GNUNET_CONTAINER_multihashmap_get (places, &ego_place_pub_hash);
1081   if (NULL != place_msg)
1082     return GNUNET_NO;
1083
1084   place_msg = GNUNET_copy_message (&ereq->header);
1085   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (places, &ego_place_pub_hash, place_msg,
1086                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1087   {
1088     GNUNET_break (0);
1089     GNUNET_free (place_msg);
1090     return GNUNET_SYSERR;
1091   }
1092
1093   return GNUNET_OK;
1094 }
1095
1096 /**
1097  * Add a place to the @e app_places hash map.
1098  *
1099  * @param app_id
1100  *        Application ID.
1101  * @param msg
1102  *        Entry message.
1103  *
1104  * @return #GNUNET_OK if the place was added
1105  *         #GNUNET_NO if the place already exists in the hash map
1106  *         #GNUNET_SYSERR on error
1107  */
1108 static int
1109 app_place_add (const char *app_id,
1110                const struct PlaceEnterRequest *ereq)
1111 {
1112   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1113               "Adding app place to hashmap:\n");
1114   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1115               "  app_id = %s\n", app_id);
1116
1117   struct GNUNET_HashCode app_id_hash;
1118   GNUNET_CRYPTO_hash (app_id, strlen (app_id) + 1, &app_id_hash);
1119
1120   struct EgoPlacePublicKey ego_place_pub_key = {
1121     .ego_pub_key = ereq->ego_pub_key,
1122     .place_pub_key = ereq->place_pub_key,
1123   };
1124   struct GNUNET_HashCode ego_place_pub_hash;
1125   GNUNET_CRYPTO_hash (&ego_place_pub_key, sizeof (ego_place_pub_key), &ego_place_pub_hash);
1126
1127   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1128               "  ego_place_pub_hash = %s\n", GNUNET_h2s (&ego_place_pub_hash));
1129
1130   struct GNUNET_CONTAINER_MultiHashMap *
1131     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
1132   if (NULL == app_places)
1133   {
1134     app_places = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1135     GNUNET_CONTAINER_multihashmap_put (apps_places, &app_id_hash, app_places,
1136                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1137   }
1138
1139   if (GNUNET_YES == GNUNET_CONTAINER_multihashmap_contains (app_places, &ego_place_pub_hash))
1140     return GNUNET_NO;
1141
1142   if (GNUNET_SYSERR == place_add (ereq))
1143     return GNUNET_SYSERR;
1144
1145   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (app_places, &ego_place_pub_hash, NULL,
1146                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1147   {
1148     GNUNET_break (0);
1149     return GNUNET_SYSERR;
1150   }
1151
1152   struct GNUNET_HashCode place_pub_hash;
1153   GNUNET_CRYPTO_hash (&ereq->place_pub_key, sizeof (ereq->place_pub_key), &place_pub_hash);
1154
1155   struct GNUNET_CONTAINER_MultiHashMap *
1156     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &place_pub_hash);
1157   if (NULL == place_apps)
1158   {
1159     place_apps = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1160     if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (places_apps, &place_pub_hash, place_apps,
1161                                                         GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST))
1162     {
1163       GNUNET_break (0);
1164     }
1165   }
1166
1167   size_t app_id_size = strlen (app_id) + 1;
1168   void *app_id_value = GNUNET_malloc (app_id_size);
1169   memcpy (app_id_value, app_id, app_id_size);
1170
1171   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (place_apps, &app_id_hash, app_id_value,
1172                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY))
1173   {
1174     GNUNET_break (0);
1175   }
1176
1177   return GNUNET_OK;
1178 }
1179
1180
1181 /**
1182  * Save place entry message to disk.
1183  *
1184  * @param app_id
1185  *        Application ID.
1186  * @param msg
1187  *        Entry message.
1188  */
1189 static int
1190 app_place_save (const char *app_id,
1191                 const struct PlaceEnterRequest *ereq)
1192 {
1193   app_place_add (app_id, ereq);
1194
1195   if (NULL == dir_places)
1196     return GNUNET_SYSERR;
1197
1198   char *ego_pub_str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&ereq->ego_pub_key);
1199   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (&ereq->place_pub_key);
1200   char *filename = NULL;
1201   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s",
1202                    dir_social, DIR_SEPARATOR,
1203                    "places", DIR_SEPARATOR,
1204                    ego_pub_str, DIR_SEPARATOR,
1205                    place_pub_str);
1206   int ret = GNUNET_DISK_directory_create_for_file (filename);
1207   if (GNUNET_OK != ret
1208       || 0 > GNUNET_DISK_fn_write (filename, ereq, ntohs (ereq->header.size),
1209                                    GNUNET_DISK_PERM_USER_READ
1210                                    | GNUNET_DISK_PERM_USER_WRITE))
1211   {
1212     GNUNET_break (0);
1213     ret = GNUNET_SYSERR;
1214   }
1215   GNUNET_free (filename);
1216
1217   if (ret == GNUNET_OK)
1218   {
1219     GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s%c" "%s",
1220                      dir_social, DIR_SEPARATOR,
1221                      "apps", DIR_SEPARATOR,
1222                      app_id, DIR_SEPARATOR,
1223                      ego_pub_str, DIR_SEPARATOR,
1224                      place_pub_str);
1225     ret = GNUNET_DISK_directory_create_for_file (filename);
1226     if (GNUNET_OK != ret
1227         || 0 > GNUNET_DISK_fn_write (filename, "", 0,
1228                                      GNUNET_DISK_PERM_USER_READ
1229                                      | GNUNET_DISK_PERM_USER_WRITE))
1230     {
1231       GNUNET_break (0);
1232       ret = GNUNET_SYSERR;
1233     }
1234     GNUNET_free (filename);
1235   }
1236   GNUNET_free (ego_pub_str);
1237   GNUNET_free (place_pub_str);
1238   return ret;
1239 }
1240
1241
1242 int
1243 app_place_remove (const char *app_id,
1244                   const struct GNUNET_CRYPTO_EcdsaPublicKey *ego_pub_key,
1245                   const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key)
1246 {
1247   struct GNUNET_HashCode ego_pub_hash;
1248   struct GNUNET_HashCode place_pub_hash;
1249   GNUNET_CRYPTO_hash (ego_pub_key, sizeof (*ego_pub_key), &ego_pub_hash);
1250   GNUNET_CRYPTO_hash (place_pub_key, sizeof (*place_pub_key), &place_pub_hash);
1251
1252   char *ego_pub_str = GNUNET_CRYPTO_ecdsa_public_key_to_string (ego_pub_key);
1253   char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (place_pub_key);
1254   char *app_place_filename = NULL;
1255   GNUNET_asprintf (&app_place_filename,
1256                    "%s%c" "%s%c" "%s%c" "%s%c" "%s",
1257                    dir_social, DIR_SEPARATOR,
1258                    "apps", DIR_SEPARATOR,
1259                    app_id, DIR_SEPARATOR,
1260                    ego_pub_str, DIR_SEPARATOR,
1261                    place_pub_str);
1262   GNUNET_free (ego_pub_str);
1263   GNUNET_free (place_pub_str);
1264
1265   struct GNUNET_HashCode app_id_hash;
1266   GNUNET_CRYPTO_hash (app_id, strlen (app_id) + 1, &app_id_hash);
1267
1268   struct GNUNET_CONTAINER_MultiHashMap *
1269     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
1270
1271   if (NULL != app_places)
1272     GNUNET_CONTAINER_multihashmap_remove (app_places, &place_pub_hash, NULL);
1273
1274   struct GNUNET_CONTAINER_MultiHashMap *
1275     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &place_pub_hash);
1276   if (NULL != place_apps)
1277   {
1278     void *app_id_value = GNUNET_CONTAINER_multihashmap_get (place_apps, &app_id_hash);
1279     if (NULL != app_id_value)
1280     {
1281       GNUNET_CONTAINER_multihashmap_remove (place_apps, &app_id_hash, app_id_value);
1282       GNUNET_free (app_id_value);
1283     }
1284   }
1285
1286   int ret = GNUNET_OK;
1287
1288   if (0 != unlink (app_place_filename))
1289   {
1290     GNUNET_break (0);
1291     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1292                 "Error removing app place file: %s: %s (%d)\n",
1293                 app_place_filename, strerror (errno), errno);
1294     ret = GNUNET_SYSERR;
1295   }
1296   GNUNET_free (app_place_filename);
1297
1298   return ret;
1299 }
1300
1301
1302 /**
1303  * Enter place as host.
1304  *
1305  * @param req
1306  *        Entry request.
1307  * @param[out] ret_hst
1308  *        Returned Host struct.
1309  *
1310  * @return #GNUNET_YES if the host entered the place just now,
1311  *         #GNUNET_NO  if the place is already entered,
1312  *         #GNUNET_SYSERR if place_pub_key was set
1313  *                        but its private key was not found
1314  */
1315 static int
1316 host_enter (const struct HostEnterRequest *hreq, struct Host **ret_hst)
1317 {
1318   int ret = GNUNET_NO;
1319   struct GNUNET_HashCode place_pub_hash;
1320   GNUNET_CRYPTO_hash (&hreq->place_pub_key, sizeof (hreq->place_pub_key),
1321                       &place_pub_hash);
1322   struct Host *hst = GNUNET_CONTAINER_multihashmap_get (hosts, &place_pub_hash);
1323
1324   if (NULL == hst)
1325   {
1326     hst = GNUNET_new (struct Host);
1327     hst->policy = hreq->policy;
1328     hst->join_reqs = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1329     hst->relay_msgs = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
1330
1331     struct Place *plc = &hst->plc;
1332     place_init (plc);
1333     plc->is_host = GNUNET_YES;
1334     plc->pub_key = hreq->place_pub_key;
1335     plc->pub_key_hash = place_pub_hash;
1336
1337     GNUNET_CONTAINER_multihashmap_put (hosts, &plc->pub_key_hash, plc,
1338                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1339     hst->master = GNUNET_PSYC_master_start (cfg, &hreq->place_key, hst->policy,
1340                                             &psyc_master_started,
1341                                             &psyc_recv_join_request,
1342                                             &psyc_recv_message, NULL, hst);
1343     plc->channel = GNUNET_PSYC_master_get_channel (hst->master);
1344     ret = GNUNET_YES;
1345   }
1346
1347   if (NULL != ret_hst)
1348     *ret_hst = hst;
1349   return ret;
1350 }
1351
1352
1353 const struct MsgProcRequest *
1354 msg_proc_parse (const struct GNUNET_MessageHeader *msg,
1355                 uint32_t *flags,
1356                 const char **method_prefix,
1357                 struct GNUNET_HashCode *method_hash)
1358 {
1359   const struct MsgProcRequest *mpreq = (const struct MsgProcRequest *) msg;
1360   uint8_t method_size = ntohs (mpreq->header.size) - sizeof (*mpreq);
1361   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &mpreq[1],
1362                                                     method_size, 1, method_prefix);
1363
1364   if (0 == offset || offset != method_size || *method_prefix == NULL)
1365   {
1366     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1367                 "offset = %u, method_size = %u, method_name = %s\n",
1368                 offset, method_size, *method_prefix);
1369     return NULL;
1370   }
1371
1372   GNUNET_CRYPTO_hash (*method_prefix, method_size, method_hash);
1373   *flags = ntohl (mpreq->flags);
1374   return mpreq;
1375 }
1376
1377
1378 /**
1379  * Handle a client setting message proccesing flags for a method prefix.
1380  */
1381 static void
1382 client_recv_msg_proc_set (void *cls, struct GNUNET_SERVER_Client *client,
1383                           const struct GNUNET_MessageHeader *msg)
1384 {
1385   struct Client *
1386     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
1387   GNUNET_assert (NULL != ctx);
1388   struct Place *plc = ctx->plc;
1389
1390   const char *method_prefix = NULL;
1391   uint32_t flags = 0;
1392   struct GNUNET_HashCode method_hash;
1393   const struct MsgProcRequest *
1394     mpreq = msg_proc_parse (msg, &flags, &method_prefix, &method_hash);
1395
1396   if (NULL == mpreq) {
1397     GNUNET_break (0);
1398     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1399     return;
1400   }
1401 #if 0
1402   GNUNET_PSYC_slicer_method_remove (plc->slicer, method_prefix,
1403                                     place_recv_relay_method,
1404                                     place_recv_relay_modifier,
1405                                     place_recv_relay_data,
1406                                     place_recv_relay_eom);
1407   GNUNET_PSYC_slicer_method_remove (plc->slicer, method_prefix,
1408                                     place_recv_save_method,
1409                                     NULL,
1410                                     place_recv_save_data,
1411                                     place_recv_save_eom);
1412 #endif
1413   if (flags & GNUNET_SOCIAL_MSG_PROC_RELAY)
1414   {
1415     GNUNET_PSYC_slicer_method_add (plc->slicer, method_prefix, NULL,
1416                                    place_recv_relay_method,
1417                                    place_recv_relay_modifier,
1418                                    place_recv_relay_data,
1419                                    place_recv_relay_eom,
1420                                    plc);
1421   }
1422   if (flags & GNUNET_SOCIAL_MSG_PROC_SAVE)
1423   {
1424     GNUNET_PSYC_slicer_method_add (plc->slicer, method_prefix, NULL,
1425                                    place_recv_save_method,
1426                                    NULL,
1427                                    place_recv_save_data,
1428                                    place_recv_save_eom,
1429                                    plc);
1430   }
1431
1432   /** @todo Save flags to be able to resume relaying/saving after restart */
1433
1434   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1435 }
1436
1437
1438 /**
1439  * Handle a connecting client requesting to clear all relay rules.
1440  */
1441 static void
1442 client_recv_msg_proc_clear (void *cls, struct GNUNET_SERVER_Client *client,
1443                             const struct GNUNET_MessageHeader *msg)
1444 {
1445   struct Client *
1446     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
1447   GNUNET_assert (NULL != ctx);
1448   struct Place *plc = ctx->plc;
1449   if (GNUNET_YES != plc->is_host) {
1450     GNUNET_break (0);
1451     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1452     return;
1453   }
1454   struct Host *hst = (struct Host *) plc;
1455
1456   GNUNET_PSYC_slicer_clear (plc->slicer);
1457
1458   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1459 }
1460
1461
1462 /**
1463  * Handle a connecting client entering a place as host.
1464  */
1465 static void
1466 client_recv_host_enter (void *cls, struct GNUNET_SERVER_Client *client,
1467                         const struct GNUNET_MessageHeader *msg)
1468 {
1469   struct HostEnterRequest *hreq
1470     = (struct HostEnterRequest *) GNUNET_copy_message (msg);
1471
1472   uint8_t app_id_size = ntohs (hreq->header.size) - sizeof (*hreq);
1473   const char *app_id = NULL;
1474   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &hreq[1],
1475                                                     app_id_size, 1, &app_id);
1476   if (0 == offset || offset != app_id_size || app_id == NULL)
1477   {
1478     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1479                 "offset = %u, app_id_size = %u, app_id = %s\n",
1480                 offset, app_id_size, app_id);
1481     GNUNET_break (0);
1482     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1483     return;
1484   }
1485
1486   struct Host *hst = NULL;
1487   struct Place *plc = NULL;
1488   int ret = GNUNET_OK;
1489
1490   struct GNUNET_CRYPTO_EddsaPublicKey empty_pub_key;
1491   memset (&empty_pub_key, 0, sizeof (empty_pub_key));
1492
1493   if (0 == memcmp (&hreq->place_pub_key, &empty_pub_key, sizeof (empty_pub_key)))
1494   { // no public key set: create new private key & save the place
1495     struct GNUNET_CRYPTO_EddsaPrivateKey *
1496       place_key = GNUNET_CRYPTO_eddsa_key_create ();
1497     hreq->place_key = *place_key;
1498     GNUNET_CRYPTO_eddsa_key_get_public (place_key, &hreq->place_pub_key);
1499     GNUNET_CRYPTO_eddsa_key_clear (place_key);
1500     GNUNET_free (place_key);
1501
1502     app_place_save (app_id, (const struct PlaceEnterRequest *) hreq);
1503   }
1504
1505   switch (host_enter (hreq, &hst))
1506   {
1507   case GNUNET_YES:
1508     plc = &hst->plc;
1509     break;
1510
1511   case GNUNET_NO:
1512   {
1513     plc = &hst->plc;
1514     client_send_host_enter_ack (client, hst, GNUNET_OK);
1515     break;
1516   }
1517   case GNUNET_SYSERR:
1518     ret = GNUNET_SYSERR;
1519   }
1520
1521   if (ret != GNUNET_SYSERR)
1522   {
1523
1524     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1525                 "%p Client connected as host to place %s.\n",
1526                 hst, GNUNET_h2s (&plc->pub_key_hash));
1527
1528     struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
1529     cli->client = client;
1530     GNUNET_CONTAINER_DLL_insert (plc->clients_head, plc->clients_tail, cli);
1531
1532     struct Client *ctx = GNUNET_new (struct Client);
1533     ctx->plc = plc;
1534     GNUNET_SERVER_client_set_user_context (client, ctx);
1535   }
1536
1537   GNUNET_CRYPTO_eddsa_key_clear (&hreq->place_key);
1538   GNUNET_free (hreq);
1539   GNUNET_SERVER_receive_done (client, ret);
1540 }
1541
1542
1543 /**
1544  * Enter place as guest.
1545  *
1546  * @param req
1547  *        Entry request.
1548  * @param[out] ret_gst
1549  *        Returned Guest struct.
1550  *
1551  * @return #GNUNET_YES if the guest entered the place just now,
1552  *         #GNUNET_NO  if the place is already entered,
1553  *         #GNUNET_SYSERR on error.
1554  */
1555 static int
1556 guest_enter (const struct GuestEnterRequest *greq, struct Guest **ret_gst)
1557 {
1558   int ret = GNUNET_NO;
1559   uint16_t greq_size = ntohs (greq->header.size);
1560
1561   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key = greq->ego_pub_key;
1562   struct GNUNET_HashCode ego_pub_hash;
1563   GNUNET_CRYPTO_hash (&ego_pub_key, sizeof (ego_pub_key), &ego_pub_hash);
1564   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
1565
1566   if (NULL == ego)
1567     return GNUNET_SYSERR;
1568
1569   struct GNUNET_HashCode place_pub_hash;
1570   GNUNET_CRYPTO_hash (&greq->place_pub_key, sizeof (greq->place_pub_key),
1571                       &place_pub_hash);
1572
1573   struct GNUNET_CONTAINER_MultiHashMap *
1574     plc_gst = GNUNET_CONTAINER_multihashmap_get (place_guests, &place_pub_hash);
1575   struct Guest *gst = NULL;
1576
1577   if (NULL != plc_gst)
1578     gst = GNUNET_CONTAINER_multihashmap_get (plc_gst, &ego_pub_hash);
1579
1580   if (NULL == gst || NULL == gst->slave)
1581   {
1582     gst = GNUNET_new (struct Guest);
1583     gst->origin = greq->origin;
1584     gst->relay_count = ntohl (greq->relay_count);
1585
1586     uint16_t len;
1587     uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1588     const char *app_id = (const char *) &greq[1];
1589     const char *p = app_id;
1590
1591     len = strnlen (app_id, remaining);
1592     if (len == remaining)
1593     {
1594       GNUNET_break (0);
1595       return GNUNET_SYSERR;
1596     }
1597     p += len + 1;
1598     remaining -= len + 1;
1599
1600     const struct GNUNET_PeerIdentity *relays = NULL;
1601     uint16_t relay_size = gst->relay_count * sizeof (*relays);
1602     if (remaining < relay_size)
1603     {
1604       GNUNET_break (0);
1605       return GNUNET_SYSERR;
1606     }
1607     if (0 < relay_size)
1608       relays = (const struct GNUNET_PeerIdentity *) p;
1609     p += relay_size;
1610     remaining -= relay_size;
1611
1612     struct GNUNET_PSYC_Message *join_msg = NULL;
1613     uint16_t join_msg_size = 0;
1614
1615     if (sizeof (struct GNUNET_MessageHeader) <= remaining)
1616     {
1617       join_msg = (struct GNUNET_PSYC_Message *) p;
1618       join_msg_size = ntohs (join_msg->header.size);
1619       p += join_msg_size;
1620       remaining -= join_msg_size;
1621     }
1622     if (0 != remaining)
1623     {
1624       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1625                   "%zu + %u + %u != %u\n",
1626                   sizeof (*greq), relay_size, join_msg_size, greq_size);
1627       GNUNET_break (0);
1628       GNUNET_free (gst);
1629       return GNUNET_SYSERR;
1630     }
1631     if (0 < relay_size)
1632     {
1633       gst->relays = GNUNET_malloc (relay_size);
1634       memcpy (gst->relays, relays, relay_size);
1635     }
1636
1637     gst->join_flags = ntohl (greq->flags);
1638
1639     struct Place *plc = &gst->plc;
1640     place_init (plc);
1641     plc->is_host = GNUNET_NO;
1642     plc->pub_key = greq->place_pub_key;
1643     plc->pub_key_hash = place_pub_hash;
1644     plc->ego_pub_key = ego_pub_key;
1645     plc->ego_pub_hash = ego_pub_hash;
1646     plc->ego_key = ego->key;
1647
1648     if (NULL == plc_gst)
1649     {
1650       plc_gst = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
1651       (void) GNUNET_CONTAINER_multihashmap_put (place_guests, &plc->pub_key_hash, plc_gst,
1652                                                 GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1653     }
1654     (void) GNUNET_CONTAINER_multihashmap_put (plc_gst, &plc->ego_pub_hash, gst,
1655                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
1656     (void) GNUNET_CONTAINER_multihashmap_put (guests, &plc->pub_key_hash, gst,
1657                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1658     gst->slave
1659       = GNUNET_PSYC_slave_join (cfg, &plc->pub_key, &plc->ego_key,
1660                                 gst->join_flags, &gst->origin,
1661                                 gst->relay_count, gst->relays,
1662                                 &psyc_recv_message, NULL,
1663                                 &psyc_slave_connected,
1664                                 &psyc_recv_join_dcsn,
1665                                 gst, join_msg);
1666     plc->channel = GNUNET_PSYC_slave_get_channel (gst->slave);
1667     ret = GNUNET_YES;
1668   }
1669
1670   if (NULL != ret_gst)
1671     *ret_gst = gst;
1672   return ret;
1673 }
1674
1675
1676 /**
1677  * Handle a connecting client entering a place as guest.
1678  */
1679 static void
1680 client_recv_guest_enter (void *cls, struct GNUNET_SERVER_Client *client,
1681                          const struct GNUNET_MessageHeader *msg)
1682 {
1683   const struct GuestEnterRequest *
1684     greq = (const struct GuestEnterRequest *) msg;
1685
1686   uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1687   const char *app_id = NULL;
1688   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &greq[1],
1689                                                     remaining, 1, &app_id);
1690   if (0 == offset)
1691   {
1692     GNUNET_break (0);
1693     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1694     return;
1695   }
1696
1697   struct Guest *gst = NULL;
1698   struct Place *plc = NULL;
1699
1700   switch (guest_enter (greq, &gst))
1701   {
1702   case GNUNET_YES:
1703     plc = &gst->plc;
1704     app_place_save (app_id, (const struct PlaceEnterRequest *) greq);
1705     break;
1706
1707   case GNUNET_NO:
1708   {
1709     plc = &gst->plc;
1710
1711     struct GNUNET_PSYC_CountersResultMessage res;
1712     res.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK);
1713     res.header.size = htons (sizeof (res));
1714     res.result_code = htonl (GNUNET_OK);
1715     res.max_message_id = GNUNET_htonll (plc->max_message_id);
1716
1717     client_send_msg (client, &res.header);
1718     if (NULL != gst->join_dcsn)
1719       client_send_msg (client, &gst->join_dcsn->header);
1720
1721     break;
1722   }
1723   case GNUNET_SYSERR:
1724     GNUNET_break (0);
1725     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1726     return;
1727   }
1728
1729   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1730               "%p Client connected as guest to place %s.\n",
1731               gst, GNUNET_h2s (&plc->pub_key_hash));
1732
1733   struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
1734   cli->client = client;
1735   GNUNET_CONTAINER_DLL_insert (plc->clients_head, plc->clients_tail, cli);
1736
1737   struct Client *ctx = GNUNET_new (struct Client);
1738   ctx->plc = plc;
1739   GNUNET_SERVER_client_set_user_context (client, ctx);
1740   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1741 }
1742
1743
1744 struct GuestEnterByNameClosure
1745 {
1746   struct GNUNET_SERVER_Client *client;
1747   char *app_id;
1748   char *password;
1749   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
1750   struct GNUNET_MessageHeader *join_msg;
1751 };
1752
1753
1754 /**
1755  * Result of a GNS name lookup for entering a place.
1756  *
1757  * @see GNUNET_SOCIAL_guest_enter_by_name
1758  */
1759 static void
1760 gns_result_guest_enter (void *cls, uint32_t rd_count,
1761                         const struct GNUNET_GNSRECORD_Data *rd)
1762 {
1763   struct GuestEnterByNameClosure *gcls = cls;
1764   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1765               "%p GNS result: %u records.\n", gcls->client, rd_count);
1766
1767   const struct GNUNET_GNSRECORD_PlaceData *
1768     rec = (const struct GNUNET_GNSRECORD_PlaceData *) rd->data;
1769
1770   if (0 == rd_count || rd->data_size < sizeof (*rec))
1771   {
1772     GNUNET_break (0);
1773     GNUNET_SERVER_receive_done (gcls->client, GNUNET_SYSERR);
1774     return;
1775   }
1776
1777   uint16_t relay_count = ntohl (rec->relay_count);
1778   struct GNUNET_PeerIdentity *relays = NULL;
1779
1780   if (0 < relay_count)
1781   {
1782     if (rd->data_size == sizeof (*rec) + relay_count * sizeof (struct GNUNET_PeerIdentity))
1783     {
1784       relays = (struct GNUNET_PeerIdentity *) &rec[1];
1785     }
1786     else
1787     {
1788       relay_count = 0;
1789       GNUNET_break_op (0);
1790     }
1791   }
1792
1793   uint16_t app_id_size = strlen (gcls->app_id) + 1;
1794   uint16_t relay_size = relay_count * sizeof (*relays);
1795   uint16_t join_msg_size = 0;
1796   if (NULL != gcls->join_msg)
1797     join_msg_size = ntohs (gcls->join_msg->size);
1798   uint16_t greq_size = sizeof (struct GuestEnterRequest)
1799     + app_id_size + relay_size + join_msg_size;
1800   struct GuestEnterRequest *greq = GNUNET_malloc (greq_size);
1801   greq->header.size = htons (greq_size);
1802   greq->header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1803   greq->ego_pub_key = gcls->ego_pub_key;
1804   greq->place_pub_key = rec->place_pub_key;
1805   greq->origin = rec->origin;
1806   greq->relay_count = rec->relay_count;
1807
1808   void *p = &greq[1];
1809   memcpy (p, gcls->app_id, app_id_size);
1810   p += app_id_size;
1811   memcpy (p, relays, relay_size);
1812   p += relay_size;
1813   memcpy (p, gcls->join_msg, join_msg_size);
1814
1815   client_recv_guest_enter (NULL, gcls->client, &greq->header);
1816
1817   GNUNET_free (gcls->app_id);
1818   if (NULL != gcls->password)
1819     GNUNET_free (gcls->password);
1820   if (NULL != gcls->join_msg)
1821     GNUNET_free (gcls->join_msg);
1822   GNUNET_free (gcls);
1823   GNUNET_free (greq);
1824 }
1825
1826
1827 /**
1828  * Handle a connecting client entering a place as guest using a GNS address.
1829  *
1830  * Look up GNS address and generate a GuestEnterRequest from that.
1831  */
1832 static void
1833 client_recv_guest_enter_by_name (void *cls, struct GNUNET_SERVER_Client *client,
1834                                  const struct GNUNET_MessageHeader *msg)
1835 {
1836   const struct GuestEnterByNameRequest *
1837     greq = (const struct GuestEnterByNameRequest *) msg;
1838
1839   struct GuestEnterByNameClosure *gcls = GNUNET_malloc (sizeof (*gcls));
1840   gcls->client = client;
1841   gcls->ego_pub_key = greq->ego_pub_key;
1842
1843   const char *p = (const char *) &greq[1];
1844   const char *app_id = NULL, *password = NULL, *gns_name = NULL;
1845   uint16_t remaining = ntohs (greq->header.size) - sizeof (*greq);
1846   uint16_t offset = GNUNET_STRINGS_buffer_tokenize (p, remaining, 3,
1847                                                     &app_id,
1848                                                     &gns_name,
1849                                                     &password);
1850   p += offset;
1851   remaining -= offset;
1852
1853   if (0 != offset && sizeof (*gcls->join_msg) <= remaining)
1854   {
1855     gcls->join_msg = GNUNET_copy_message ((struct GNUNET_MessageHeader *) p);
1856     remaining -= ntohs (gcls->join_msg->size);
1857   }
1858
1859   if (0 == offset || 0 != remaining)
1860   {
1861     if (NULL != gcls->join_msg)
1862       GNUNET_free (gcls->join_msg);
1863     GNUNET_break (0);
1864     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1865     return;
1866   }
1867
1868   uint16_t app_id_size = strlen (app_id) + 1;
1869   gcls->app_id = GNUNET_malloc (app_id_size);
1870   memcpy (gcls->app_id, app_id, app_id_size);
1871
1872   uint16_t password_size = strlen (password);
1873   if (0 < password_size++)
1874   {
1875     gcls->password = GNUNET_malloc (password_size);
1876     memcpy (gcls->password, password, password_size);
1877   }
1878
1879   GNUNET_GNS_lookup (gns, gns_name, &greq->ego_pub_key,
1880                      GNUNET_GNSRECORD_TYPE_PLACE, GNUNET_GNS_LO_DEFAULT,
1881                      NULL, gns_result_guest_enter, gcls);
1882 }
1883
1884
1885 void
1886 app_notify_place (struct GNUNET_MessageHeader *msg,
1887                   struct GNUNET_SERVER_Client *client)
1888 {
1889   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1890               "%p Sending place notification of type %u to client.\n",
1891               client, ntohs (msg->type));
1892
1893   uint16_t msg_size = ntohs (msg->size);
1894   struct AppPlaceMessage amsg;
1895   amsg.header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE);
1896   amsg.header.size = htons (sizeof (amsg));
1897   // FIXME: also notify about not entered places
1898   amsg.place_state = GNUNET_SOCIAL_PLACE_STATE_ENTERED;
1899
1900   switch (ntohs (msg->type))
1901   {
1902   case GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER:
1903     if (msg_size < sizeof (struct HostEnterRequest))
1904       return;
1905     struct HostEnterRequest *hreq = (struct HostEnterRequest *) msg;
1906     amsg.is_host = GNUNET_YES;
1907     amsg.ego_pub_key = hreq->ego_pub_key;
1908     amsg.place_pub_key = hreq->place_pub_key;
1909     break;
1910
1911   case GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER:
1912     if (msg_size < sizeof (struct GuestEnterRequest))
1913       return;
1914     struct GuestEnterRequest *greq = (struct GuestEnterRequest *) msg;
1915     amsg.is_host = GNUNET_NO;
1916     amsg.ego_pub_key = greq->ego_pub_key;
1917     amsg.place_pub_key = greq->place_pub_key;
1918     break;
1919
1920   default:
1921     return;
1922   }
1923
1924   client_send_msg (client, &amsg.header);
1925 }
1926
1927
1928 void
1929 app_notify_place_end (struct GNUNET_SERVER_Client *client)
1930 {
1931   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1932               "%p Sending end of place list notification to client\n",
1933               client);
1934
1935   struct GNUNET_MessageHeader msg;
1936   msg.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE_END);
1937   msg.size = htons (sizeof (msg));
1938
1939   client_send_msg (client, &msg);
1940 }
1941
1942
1943 void
1944 app_notify_ego (struct Ego *ego, struct GNUNET_SERVER_Client *client)
1945 {
1946   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1947               "%p Sending ego notification to client: %s\n",
1948               client, ego->name);
1949
1950   size_t name_size = strlen (ego->name) + 1;
1951   struct AppEgoMessage *emsg = GNUNET_malloc (sizeof (*emsg) + name_size);
1952   emsg->header.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO);
1953   emsg->header.size = htons (sizeof (*emsg) + name_size);
1954
1955   GNUNET_CRYPTO_ecdsa_key_get_public (&ego->key, &emsg->ego_pub_key);
1956   memcpy (&emsg[1], ego->name, name_size);
1957
1958   client_send_msg (client, &emsg->header);
1959   GNUNET_free (emsg);
1960 }
1961
1962
1963 void
1964 app_notify_ego_end (struct GNUNET_SERVER_Client *client)
1965 {
1966   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1967               "%p Sending end of ego list notification to client\n",
1968               client);
1969
1970   struct GNUNET_MessageHeader msg;
1971   msg.type = htons (GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO_END);
1972   msg.size = htons (sizeof (msg));
1973
1974   client_send_msg (client, &msg);
1975 }
1976
1977
1978 int
1979 app_place_entry_notify (void *cls, const struct GNUNET_HashCode *key, void *value)
1980 {
1981   struct GNUNET_MessageHeader *
1982     msg = GNUNET_CONTAINER_multihashmap_get (places, key);
1983   if (NULL != msg)
1984     app_notify_place (msg, cls);
1985   return GNUNET_YES;
1986 }
1987
1988
1989 int
1990 ego_entry (void *cls, const struct GNUNET_HashCode *key, void *value)
1991 {
1992   app_notify_ego (value, cls);
1993   return GNUNET_YES;
1994 }
1995
1996
1997 /**
1998  * Handle application connection.
1999  */
2000 static void
2001 client_recv_app_connect (void *cls, struct GNUNET_SERVER_Client *client,
2002                          const struct GNUNET_MessageHeader *msg)
2003 {
2004   const struct AppConnectRequest *creq
2005     = (const struct AppConnectRequest *) msg;
2006
2007   uint8_t app_id_size = ntohs (creq->header.size) - sizeof (*creq);
2008   const char *app_id = NULL;
2009   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &creq[1],
2010                                                     app_id_size, 1, &app_id);
2011   if (0 == offset || offset != app_id_size)
2012   {
2013     GNUNET_break (0);
2014     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2015     return;
2016   }
2017
2018   struct GNUNET_HashCode app_id_hash;
2019   GNUNET_CRYPTO_hash (app_id, app_id_size, &app_id_hash);
2020
2021   GNUNET_CONTAINER_multihashmap_iterate (egos, ego_entry, client);
2022   app_notify_ego_end (client);
2023
2024   struct GNUNET_CONTAINER_MultiHashMap *
2025     app_places = GNUNET_CONTAINER_multihashmap_get (apps_places, &app_id_hash);
2026   if (NULL != app_places)
2027     GNUNET_CONTAINER_multihashmap_iterate (app_places, app_place_entry_notify, client);
2028   app_notify_place_end (client);
2029
2030   struct ClientListItem *cli = GNUNET_new (struct ClientListItem);
2031   cli->client = client;
2032   struct Application *app = GNUNET_CONTAINER_multihashmap_get (apps,
2033                                                                &app_id_hash);
2034   if (NULL == app) {
2035     app = GNUNET_malloc (sizeof (*app));
2036     (void) GNUNET_CONTAINER_multihashmap_put (apps, &app_id_hash, app,
2037                                               GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
2038   }
2039   GNUNET_CONTAINER_DLL_insert (app->clients_head, app->clients_tail, cli);
2040
2041   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2042               "%p Application %s connected.\n", app, app_id);
2043
2044   struct Client *ctx = GNUNET_new (struct Client);
2045   ctx->app_id = GNUNET_malloc (app_id_size);
2046   memcpy (ctx->app_id, app_id, app_id_size);
2047
2048   GNUNET_SERVER_client_set_user_context (client, ctx);
2049   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2050 }
2051
2052
2053 /**
2054  * Handle application detach request.
2055  */
2056 static void
2057 client_recv_app_detach (void *cls, struct GNUNET_SERVER_Client *client,
2058                         const struct GNUNET_MessageHeader *msg)
2059 {
2060   struct Client *
2061     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2062   GNUNET_assert (NULL != ctx);
2063
2064   struct Place *plc = ctx->plc;
2065
2066   const struct AppDetachRequest *req
2067     = (const struct AppDetachRequest *) msg;
2068
2069   int ret = app_place_remove (ctx->app_id, &plc->ego_pub_key, &req->place_pub_key);
2070   client_send_result (client, req->op_id, ret, NULL, 0);
2071
2072   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2073 }
2074
2075
2076 int
2077 app_places_entry_remove (void *cls, const struct GNUNET_HashCode *key, void *value)
2078 {
2079   struct Place *plc = cls;
2080   const char *app_id = value;
2081   app_place_remove (app_id, &plc->ego_pub_key, &plc->pub_key);
2082   return GNUNET_YES;
2083 }
2084
2085
2086 /**
2087  * Handle application detach request.
2088  */
2089 static void
2090 client_recv_place_leave (void *cls, struct GNUNET_SERVER_Client *client,
2091                          const struct GNUNET_MessageHeader *msg)
2092 {
2093   struct Client *
2094     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2095   GNUNET_assert (NULL != ctx);
2096   struct Place *plc = ctx->plc;
2097
2098   /* FIXME: remove all app subscriptions and leave this place  */
2099
2100   struct GNUNET_CONTAINER_MultiHashMap *
2101     place_apps = GNUNET_CONTAINER_multihashmap_get (places_apps, &plc->pub_key_hash);
2102   if (NULL != place_apps)
2103   {
2104     GNUNET_CONTAINER_multihashmap_iterate (place_apps, app_places_entry_remove, plc);
2105   }
2106
2107   /* FIXME: disconnect from the network, but keep local connection for history access */
2108
2109   /* Disconnect all clients connected to the place */
2110   struct ClientListItem *cli = plc->clients_head, *next;
2111   while (NULL != cli)
2112   {
2113     GNUNET_CONTAINER_DLL_remove (plc->clients_head, plc->clients_tail, cli);
2114     GNUNET_SERVER_client_disconnect (cli->client);
2115     next = cli->next;
2116     GNUNET_free (cli);
2117     cli = next;
2118   }
2119
2120   if (GNUNET_YES != plc->is_disconnected)
2121   {
2122     plc->is_disconnected = GNUNET_YES;
2123     if (NULL != plc->tmit_msgs_head)
2124     { /* Send pending messages to PSYC before cleanup. */
2125       psyc_transmit_message (plc);
2126     }
2127     else
2128     {
2129       cleanup_place (plc);
2130     }
2131   }
2132 }
2133
2134
2135 struct JoinDecisionClosure
2136 {
2137   int32_t is_admitted;
2138   struct GNUNET_PSYC_Message *msg;
2139 };
2140
2141
2142 /**
2143  * Iterator callback for responding to join requests.
2144  */
2145 static int
2146 psyc_send_join_decision (void *cls, const struct GNUNET_HashCode *pub_key_hash,
2147                          void *value)
2148 {
2149   struct JoinDecisionClosure *jcls = cls;
2150   struct GNUNET_PSYC_JoinHandle *jh = value;
2151   // FIXME: add relays
2152   GNUNET_PSYC_join_decision (jh, jcls->is_admitted, 0, NULL, jcls->msg);
2153   return GNUNET_YES;
2154 }
2155
2156
2157 /**
2158  * Handle an entry decision from a host client.
2159  */
2160 static void
2161 client_recv_join_decision (void *cls, struct GNUNET_SERVER_Client *client,
2162                            const struct GNUNET_MessageHeader *msg)
2163 {
2164   struct Client *
2165     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2166   GNUNET_assert (NULL != ctx);
2167   struct Place *plc = ctx->plc;
2168   if (GNUNET_YES != plc->is_host) {
2169     GNUNET_break (0);
2170     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2171     return;
2172   }
2173   struct Host *hst = (struct Host *) plc;
2174
2175   struct GNUNET_PSYC_JoinDecisionMessage *
2176     dcsn = (struct GNUNET_PSYC_JoinDecisionMessage *) msg;
2177   struct JoinDecisionClosure jcls;
2178   jcls.is_admitted = ntohl (dcsn->is_admitted);
2179   jcls.msg
2180     = (sizeof (*dcsn) + sizeof (*jcls.msg) <= ntohs (msg->size))
2181     ? (struct GNUNET_PSYC_Message *) &dcsn[1]
2182     : NULL;
2183
2184   struct GNUNET_HashCode slave_pub_hash;
2185   GNUNET_CRYPTO_hash (&dcsn->slave_pub_key, sizeof (dcsn->slave_pub_key),
2186                       &slave_pub_hash);
2187
2188   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2189               "%p Got join decision (%d) from client for place %s..\n",
2190               hst, jcls.is_admitted, GNUNET_h2s (&plc->pub_key_hash));
2191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2192               "%p ..and slave %s.\n",
2193               hst, GNUNET_h2s (&slave_pub_hash));
2194
2195   GNUNET_CONTAINER_multihashmap_get_multiple (hst->join_reqs, &slave_pub_hash,
2196                                               &psyc_send_join_decision, &jcls);
2197   GNUNET_CONTAINER_multihashmap_remove_all (hst->join_reqs, &slave_pub_hash);
2198   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2199 }
2200
2201
2202 /**
2203  * Send acknowledgement to a client.
2204  *
2205  * Sent after a message fragment has been passed on to multicast.
2206  *
2207  * @param plc The place struct for the client.
2208  */
2209 static void
2210 send_message_ack (struct Place *plc, struct GNUNET_SERVER_Client *client)
2211 {
2212   struct GNUNET_MessageHeader res;
2213   res.size = htons (sizeof (res));
2214   res.type = htons (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK);
2215   client_send_msg (client, &res);
2216 }
2217
2218
2219 /**
2220  * Proceed to the next message part in the transmission queue.
2221  *
2222  * @param plc
2223  *        Place where the transmission is going on.
2224  * @param tmit_msg
2225  *        Currently transmitted message.
2226  * @param tmit_frag
2227  *        Currently transmitted message fragment.
2228  *
2229  * @return @a tmit_frag, or NULL if reached the end of fragment.
2230  */
2231 static struct FragmentTransmitQueue *
2232 psyc_transmit_queue_next_part (struct Place *plc,
2233                                struct MessageTransmitQueue *tmit_msg,
2234                                struct FragmentTransmitQueue *tmit_frag)
2235 {
2236   uint16_t psize = ntohs (tmit_frag->next_part->size);
2237   if ((char *) tmit_frag->next_part + psize - ((char *) &tmit_frag[1])
2238       < tmit_frag->size)
2239   {
2240     tmit_frag->next_part
2241       = (struct GNUNET_MessageHeader *) ((char *) tmit_frag->next_part + psize);
2242   }
2243   else /* Reached end of current fragment. */
2244   {
2245     if (NULL != tmit_frag->client)
2246       send_message_ack (plc, tmit_frag->client);
2247     GNUNET_CONTAINER_DLL_remove (tmit_msg->frags_head, tmit_msg->frags_tail, tmit_frag);
2248     GNUNET_free (tmit_frag);
2249     tmit_frag = NULL;
2250   }
2251   return tmit_frag;
2252 }
2253
2254
2255 /**
2256  * Proceed to next message in transmission queue.
2257  *
2258  * @param plc
2259  *        Place where the transmission is going on.
2260  * @param tmit_msg
2261  *        Currently transmitted message.
2262  *
2263  * @return The next message in queue, or NULL if queue is empty.
2264  */
2265 static struct MessageTransmitQueue *
2266 psyc_transmit_queue_next_msg (struct Place *plc,
2267                               struct MessageTransmitQueue *tmit_msg)
2268 {
2269   GNUNET_CONTAINER_DLL_remove (plc->tmit_msgs_head, plc->tmit_msgs_tail, tmit_msg);
2270   GNUNET_free (tmit_msg);
2271   return plc->tmit_msgs_head;
2272 }
2273
2274
2275 /**
2276  * Callback for data transmission to PSYC.
2277  */
2278 static int
2279 psyc_transmit_notify_data (void *cls, uint16_t *data_size, void *data)
2280 {
2281   struct Place *plc = cls;
2282   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2283   GNUNET_assert (NULL != tmit_msg);
2284   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2285   if (NULL == tmit_frag)
2286   { /* Rest of the message have not arrived yet, pause transmission */
2287     *data_size = 0;
2288     return GNUNET_NO;
2289   }
2290   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2291   if (NULL == pmsg)
2292   {
2293     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2294                 "%p psyc_transmit_notify_data: nothing to send.\n", plc);
2295     *data_size = 0;
2296     return GNUNET_NO;
2297   }
2298
2299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2300               "%p psyc_transmit_notify_data()\n", plc);
2301   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, pmsg);
2302
2303   uint16_t ptype = ntohs (pmsg->type);
2304   uint16_t pdata_size = ntohs (pmsg->size) - sizeof (*pmsg);
2305   int ret;
2306
2307   switch (ptype)
2308   {
2309   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_DATA:
2310     if (*data_size < pdata_size)
2311     {
2312       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2313                 "%p psyc_transmit_notify_data: buffer size too small for data.\n", plc);
2314       *data_size = 0;
2315       return GNUNET_NO;
2316     }
2317     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2318                 "%p psyc_transmit_notify_data: sending %u bytes.\n",
2319                 plc, pdata_size);
2320
2321     *data_size = pdata_size;
2322     memcpy (data, &pmsg[1], *data_size);
2323     ret = GNUNET_NO;
2324     break;
2325
2326   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2327     *data_size = 0;
2328     ret = GNUNET_YES;
2329     break;
2330
2331   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2332     *data_size = 0;
2333     ret = GNUNET_SYSERR;
2334     break;
2335
2336   default:
2337     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2338                 "%p psyc_transmit_notify_data: unexpected message part of type %u.\n",
2339                 plc, ptype);
2340     ret = GNUNET_SYSERR;
2341   }
2342
2343   if (GNUNET_SYSERR == ret && GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL != ptype)
2344   {
2345     *data_size = 0;
2346     tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2347     plc->is_disconnected = GNUNET_YES;
2348     GNUNET_SERVER_client_disconnect (tmit_frag->client);
2349     GNUNET_SCHEDULER_add_now (&cleanup_place, plc);
2350     return ret;
2351   }
2352   else
2353   {
2354     tmit_frag = psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2355     if (NULL != tmit_frag)
2356     {
2357       struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2358       ptype = ntohs (pmsg->type);
2359       switch (ptype)
2360       {
2361       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2362         ret = GNUNET_YES;
2363         break;
2364       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2365         ret = GNUNET_SYSERR;
2366         break;
2367       }
2368       switch (ptype)
2369       {
2370       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2371       case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2372         tmit_frag = psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2373       }
2374     }
2375
2376     if (NULL == tmit_msg->frags_head
2377         && GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= ptype)
2378     { /* Reached end of current message. */
2379       tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2380     }
2381   }
2382
2383   if (ret != GNUNET_NO)
2384   {
2385     if (NULL != tmit_msg)
2386     {
2387       psyc_transmit_message (plc);
2388     }
2389     else if (GNUNET_YES == plc->is_disconnected)
2390     {
2391       /* FIXME: handle partial message (when still in_transmit) */
2392       cleanup_place (plc);
2393     }
2394   }
2395   return ret;
2396 }
2397
2398
2399 /**
2400  * Callback for modifier transmission to PSYC.
2401  */
2402 static int
2403 psyc_transmit_notify_mod (void *cls, uint16_t *data_size, void *data,
2404                           uint8_t *oper, uint32_t *full_value_size)
2405 {
2406   struct Place *plc = cls;
2407   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2408   GNUNET_assert (NULL != tmit_msg);
2409   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2410   if (NULL == tmit_frag)
2411   { /* Rest of the message have not arrived yet, pause transmission */
2412     *data_size = 0;
2413     return GNUNET_NO;
2414   }
2415   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2416   if (NULL == pmsg)
2417   {
2418     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2419                 "%p psyc_transmit_notify_mod: nothing to send.\n", plc);
2420     *data_size = 0;
2421     return GNUNET_NO;
2422   }
2423
2424   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2425               "%p psyc_transmit_notify_mod()\n", plc);
2426   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, pmsg);
2427
2428   uint16_t ptype = ntohs (pmsg->type);
2429   int ret;
2430
2431   switch (ptype)
2432   {
2433   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER:
2434   {
2435     if (NULL == oper)
2436     {
2437       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2438                   "%p psyc_transmit_notify_mod: oper is NULL.\n", plc);
2439       ret = GNUNET_SYSERR;
2440       break;
2441     }
2442     struct GNUNET_PSYC_MessageModifier *
2443       pmod = (struct GNUNET_PSYC_MessageModifier *) tmit_frag->next_part;
2444     uint16_t mod_size = ntohs (pmod->header.size) - sizeof (*pmod);
2445
2446     if (*data_size < mod_size)
2447     {
2448       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2449                 "%p psyc_transmit_notify_mod: buffer size too small for data.\n", plc);
2450       *data_size = 0;
2451       return GNUNET_NO;
2452     }
2453
2454     *full_value_size = ntohl (pmod->value_size);
2455     *oper = pmod->oper;
2456     *data_size = mod_size;
2457     memcpy (data, &pmod[1], mod_size);
2458     ret = GNUNET_NO;
2459     break;
2460   }
2461
2462   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MOD_CONT:
2463   {
2464     if (NULL != oper)
2465     {
2466       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2467                   "%p psyc_transmit_notify_mod: oper is not NULL.\n", plc);
2468       ret = GNUNET_SYSERR;
2469       break;
2470     }
2471     uint16_t mod_size = ntohs (pmsg->size) - sizeof (*pmsg);
2472     if (*data_size < mod_size)
2473     {
2474       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2475                 "%p psyc_transmit_notify_mod: buffer size too small for data.\n", plc);
2476       *data_size = 0;
2477       return GNUNET_NO;
2478     }
2479     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2480                 "%p psyc_transmit_notify_mod: sending %u bytes.\n", plc, mod_size);
2481
2482     *data_size = mod_size;
2483     memcpy (data, &pmsg[1], *data_size);
2484     ret = GNUNET_NO;
2485     break;
2486   }
2487
2488   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_DATA:
2489   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
2490   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL:
2491     *data_size = 0;
2492     ret = GNUNET_YES;
2493     break;
2494
2495   default:
2496     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2497                 "%p psyc_transmit_notify_mod: unexpected message part of type %u.\n",
2498                 plc, ptype);
2499     ret = GNUNET_SYSERR;
2500   }
2501
2502   if (GNUNET_SYSERR == ret)
2503   {
2504     *data_size = 0;
2505     ret = GNUNET_SYSERR;
2506     tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2507     plc->is_disconnected = GNUNET_YES;
2508     GNUNET_SERVER_client_disconnect (tmit_frag->client);
2509     GNUNET_SCHEDULER_add_now (&cleanup_place, plc);
2510   }
2511   else
2512   {
2513     if (GNUNET_YES != ret)
2514       psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2515
2516     if (NULL == tmit_msg->frags_head
2517         && GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= ptype)
2518     { /* Reached end of current message. */
2519       tmit_msg = psyc_transmit_queue_next_msg (plc, tmit_msg);
2520     }
2521   }
2522   return ret;
2523 }
2524
2525 /**
2526  * Callback for data transmission from a host to PSYC.
2527  */
2528 static int
2529 host_transmit_notify_data (void *cls, uint16_t *data_size, void *data)
2530 {
2531   int ret = psyc_transmit_notify_data (cls, data_size, data);
2532
2533   if (GNUNET_NO != ret)
2534   {
2535     struct Host *hst = cls;
2536     hst->tmit_handle = NULL;
2537   }
2538   return ret;
2539 }
2540
2541
2542 /**
2543  * Callback for the transmit functions of multicast.
2544  */
2545 static int
2546 guest_transmit_notify_data (void *cls, uint16_t *data_size, void *data)
2547 {
2548   int ret = psyc_transmit_notify_data (cls, data_size, data);
2549
2550   if (GNUNET_NO != ret)
2551   {
2552     struct Guest *gst = cls;
2553     gst->tmit_handle = NULL;
2554   }
2555   return ret;
2556 }
2557
2558
2559 /**
2560  * Callback for modifier transmission from a host to PSYC.
2561  */
2562 static int
2563 host_transmit_notify_mod (void *cls, uint16_t *data_size, void *data,
2564                           uint8_t *oper, uint32_t *full_value_size)
2565 {
2566   int ret = psyc_transmit_notify_mod (cls, data_size, data,
2567                                       oper, full_value_size);
2568   if (GNUNET_SYSERR == ret)
2569   {
2570     struct Host *hst = cls;
2571     hst->tmit_handle = NULL;
2572   }
2573   return ret;
2574 }
2575
2576
2577 /**
2578  * Callback for modifier transmission from a guest to PSYC.
2579  */
2580 static int
2581 guest_transmit_notify_mod (void *cls, uint16_t *data_size, void *data,
2582                            uint8_t *oper, uint32_t *full_value_size)
2583 {
2584   int ret = psyc_transmit_notify_mod (cls, data_size, data,
2585                                       oper, full_value_size);
2586   if (GNUNET_SYSERR == ret)
2587   {
2588     struct Guest *gst = cls;
2589     gst->tmit_handle = NULL;
2590   }
2591   return ret;
2592 }
2593
2594
2595 /**
2596  * Get method part of next message from transmission queue.
2597  *
2598  * @param tmit_msg
2599  *        Next item in message transmission queue.
2600  * @param[out] pmeth
2601  *        The malloc'd message method is returned here.
2602  *
2603  * @return #GNUNET_OK on success
2604  *         #GNUNET_NO if there are no more messages in queue.
2605  *         #GNUNET_SYSERR if the next message is malformed.
2606  */
2607 static struct GNUNET_PSYC_MessageMethod *
2608 psyc_transmit_queue_next_method (struct Place *plc)
2609 {
2610   struct MessageTransmitQueue *tmit_msg = plc->tmit_msgs_head;
2611   if (NULL == tmit_msg)
2612     return GNUNET_NO;
2613
2614   struct FragmentTransmitQueue *tmit_frag = tmit_msg->frags_head;
2615   if (NULL == tmit_frag)
2616   {
2617     GNUNET_break (0);
2618     return GNUNET_NO;
2619   }
2620
2621   struct GNUNET_MessageHeader *pmsg = tmit_frag->next_part;
2622   if (NULL == pmsg
2623       || GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD != ntohs (pmsg->type))
2624   {
2625     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2626                 "%p psyc_transmit_queue_next_method: unexpected message part of type %u.\n",
2627                 plc, NULL != pmsg ? ntohs (pmsg->type) : 0);
2628     GNUNET_break (0);
2629     return NULL;
2630   }
2631
2632   uint16_t psize = ntohs (pmsg->size);
2633   struct GNUNET_PSYC_MessageMethod *
2634     pmeth = (struct GNUNET_PSYC_MessageMethod *) GNUNET_copy_message (pmsg);
2635
2636   if (psize < sizeof (*pmeth) + 1 || '\0' != *((char *) pmeth + psize - 1))
2637   {
2638     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2639                 "%p psyc_transmit_queue_next_method: invalid method name.\n",
2640                 plc);
2641     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2642                 "%zu <= %u || NUL != %u\n",
2643                 sizeof (*pmeth), psize, *((char *) pmeth + psize - 1));
2644     GNUNET_break (0);
2645     GNUNET_free (pmeth);
2646     return NULL;
2647   }
2648
2649   psyc_transmit_queue_next_part (plc, tmit_msg, tmit_frag);
2650   return pmeth;
2651 }
2652
2653
2654 /**
2655  * Transmit the next message in queue from the host to the PSYC channel.
2656  */
2657 static int
2658 psyc_master_transmit_message (struct Host *hst)
2659 {
2660   struct Place *plc = &hst->plc;
2661
2662   if (NULL == hst->tmit_handle)
2663   {
2664     struct GNUNET_PSYC_MessageMethod *
2665       pmeth = psyc_transmit_queue_next_method (plc);
2666     if (NULL == pmeth)
2667       return GNUNET_SYSERR;
2668
2669     hst->tmit_handle = (void *) &hst->tmit_handle;
2670     struct GNUNET_PSYC_MasterTransmitHandle *
2671       tmit_handle = GNUNET_PSYC_master_transmit (hst->master, (const char *) &pmeth[1],
2672                                                  &host_transmit_notify_mod,
2673                                                  &host_transmit_notify_data, hst,
2674                                                  pmeth->flags);
2675     if (NULL != hst->tmit_handle)
2676       hst->tmit_handle = tmit_handle;
2677     GNUNET_free (pmeth);
2678   }
2679   else
2680   {
2681     GNUNET_PSYC_master_transmit_resume (hst->tmit_handle);
2682   }
2683   return GNUNET_OK;
2684 }
2685
2686
2687 /**
2688  * Transmit the next message in queue from a guest to the PSYC channel.
2689  */
2690 static int
2691 psyc_slave_transmit_message (struct Guest *gst)
2692 {
2693   struct Place *plc = &gst->plc;
2694
2695   if (NULL == gst->tmit_handle)
2696   {
2697     struct GNUNET_PSYC_MessageMethod *
2698       pmeth = psyc_transmit_queue_next_method (plc);
2699     if (NULL == pmeth)
2700       return GNUNET_SYSERR;
2701
2702     gst->tmit_handle = (void *) &gst->tmit_handle;
2703     struct GNUNET_PSYC_SlaveTransmitHandle *
2704       tmit_handle = GNUNET_PSYC_slave_transmit (gst->slave, (const char *) &pmeth[1],
2705                                                  &guest_transmit_notify_mod,
2706                                                  &guest_transmit_notify_data, gst,
2707                                                  pmeth->flags);
2708     if (NULL != gst->tmit_handle)
2709       gst->tmit_handle = tmit_handle;
2710     GNUNET_free (pmeth);
2711   }
2712   else
2713   {
2714     GNUNET_PSYC_slave_transmit_resume (gst->tmit_handle);
2715   }
2716   return GNUNET_OK;
2717 }
2718
2719
2720 /**
2721  * Transmit a message to PSYC.
2722  */
2723 static int
2724 psyc_transmit_message (struct Place *plc)
2725 {
2726   return
2727     (plc->is_host)
2728     ? psyc_master_transmit_message ((struct Host *) plc)
2729     : psyc_slave_transmit_message ((struct Guest *) plc);
2730 }
2731
2732
2733 /**
2734  * Queue message parts for sending to PSYC.
2735  *
2736  * @param plc          Place to send to.
2737  * @param client       Client the message originates from.
2738  * @param data_size    Size of @a data.
2739  * @param data         Concatenated message parts.
2740  * @param first_ptype  First message part type in @a data.
2741  * @param last_ptype   Last message part type in @a data.
2742  */
2743 static struct MessageTransmitQueue *
2744 psyc_transmit_queue_message (struct Place *plc,
2745                              struct GNUNET_SERVER_Client *client,
2746                              size_t data_size,
2747                              const void *data,
2748                              uint16_t first_ptype, uint16_t last_ptype,
2749                              struct MessageTransmitQueue *tmit_msg)
2750 {
2751   if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD == first_ptype)
2752   {
2753     tmit_msg = GNUNET_malloc (sizeof (*tmit_msg));
2754     GNUNET_CONTAINER_DLL_insert_tail (plc->tmit_msgs_head, plc->tmit_msgs_tail, tmit_msg);
2755   }
2756   else if (NULL == tmit_msg)
2757   {
2758     return NULL;
2759   }
2760
2761   struct FragmentTransmitQueue *
2762     tmit_frag = GNUNET_malloc (sizeof (*tmit_frag) + data_size);
2763   memcpy (&tmit_frag[1], data, data_size);
2764   tmit_frag->next_part = (struct GNUNET_MessageHeader *) &tmit_frag[1];
2765   tmit_frag->client = client;
2766   tmit_frag->size = data_size;
2767
2768   GNUNET_CONTAINER_DLL_insert_tail (tmit_msg->frags_head, tmit_msg->frags_tail, tmit_frag);
2769   tmit_msg->client = client;
2770   return tmit_msg;
2771 }
2772
2773
2774 /**
2775  * Cancel transmission of current message to PSYC.
2776  *
2777  * @param plc     Place to send to.
2778  * @param client  Client the message originates from.
2779  */
2780 static void
2781 psyc_transmit_cancel (struct Place *plc, struct GNUNET_SERVER_Client *client)
2782 {
2783   uint16_t type = GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_CANCEL;
2784
2785   struct GNUNET_MessageHeader msg;
2786   msg.size = htons (sizeof (msg));
2787   msg.type = htons (type);
2788
2789   psyc_transmit_queue_message (plc, client, sizeof (msg), &msg, type, type, NULL);
2790   psyc_transmit_message (plc);
2791
2792   /* FIXME: cleanup */
2793 }
2794
2795
2796 /**
2797  * Handle an incoming message from a client, to be transmitted to the place.
2798  */
2799 static void
2800 client_recv_psyc_message (void *cls, struct GNUNET_SERVER_Client *client,
2801                           const struct GNUNET_MessageHeader *msg)
2802 {
2803   struct Client *
2804     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2805   GNUNET_assert (NULL != ctx);
2806   struct Place *plc = ctx->plc;
2807   int ret = GNUNET_SYSERR;
2808
2809   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2810               "%p Received message from client.\n", plc);
2811   GNUNET_PSYC_log_message (GNUNET_ERROR_TYPE_DEBUG, msg);
2812
2813   if (GNUNET_YES != plc->is_ready)
2814   {
2815     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2816                 "%p Place is not ready yet, disconnecting client.\n", plc);
2817     GNUNET_break (0);
2818     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2819     return;
2820   }
2821
2822   uint16_t size = ntohs (msg->size);
2823   uint16_t psize = size - sizeof (*msg);
2824   if (psize < sizeof (struct GNUNET_MessageHeader)
2825       || GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD < psize)
2826   {
2827     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2828                 "%p Received message with invalid payload size (%u) from client.\n",
2829                 plc, psize);
2830     GNUNET_break (0);
2831     psyc_transmit_cancel (plc, client);
2832     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2833     return;
2834   }
2835
2836   uint16_t first_ptype = 0, last_ptype = 0;
2837   if (GNUNET_SYSERR
2838       == GNUNET_PSYC_receive_check_parts (psize, (const char *) &msg[1],
2839                                           &first_ptype, &last_ptype))
2840   {
2841     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2842                 "%p Received invalid message part from client.\n", plc);
2843     GNUNET_break (0);
2844     psyc_transmit_cancel (plc, client);
2845     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2846     return;
2847   }
2848   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2849               "%p Received message with first part type %u and last part type %u.\n",
2850               plc, first_ptype, last_ptype);
2851
2852   ctx->tmit_msg
2853     = psyc_transmit_queue_message (plc, client, psize, &msg[1],
2854                                    first_ptype, last_ptype, ctx->tmit_msg);
2855   if (NULL != ctx->tmit_msg)
2856   {
2857     if (GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END <= last_ptype)
2858       ctx->tmit_msg = NULL;
2859     ret = psyc_transmit_message (plc);
2860   }
2861
2862   if (GNUNET_OK != ret)
2863   {
2864     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2865                 "%p Received invalid message part from client.\n", plc);
2866     GNUNET_break (0);
2867     psyc_transmit_cancel (plc, client);
2868     ret = GNUNET_SYSERR;
2869   }
2870   GNUNET_SERVER_receive_done (client, ret);
2871 }
2872
2873
2874 /**
2875  * A historic message arrived from PSYC.
2876  */
2877 static void
2878 psyc_recv_history_message (void *cls, const struct GNUNET_PSYC_MessageHeader *msg)
2879 {
2880   struct OperationClosure *opcls = cls;
2881   struct Place *plc = opcls->plc;
2882
2883   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2884               "%p Received historic message #%" PRId64 " (flags: %x)\n",
2885               plc, GNUNET_ntohll (msg->message_id), ntohl (msg->flags));
2886
2887   uint16_t size = ntohs (msg->header.size);
2888
2889   struct GNUNET_OperationResultMessage *
2890     res = GNUNET_malloc (sizeof (*res) + size);
2891   res->header.size = htons (sizeof (*res) + size);
2892   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT);
2893   res->op_id = opcls->op_id;
2894   res->result_code = GNUNET_htonll (GNUNET_OK);
2895
2896   memcpy (&res[1], msg, size);
2897
2898   /** @todo FIXME: send only to requesting client */
2899   place_send_msg (plc, &res->header);
2900 }
2901
2902
2903 /**
2904  * Result of message history replay from PSYC.
2905  */
2906 static void
2907 psyc_recv_history_result (void *cls, int64_t result,
2908                           const void *err_msg, uint16_t err_msg_size)
2909 {
2910   struct OperationClosure *opcls = cls;
2911   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2912               "%p History replay #%" PRIu64 ": "
2913               "PSYCstore returned %" PRId64 " (%.*s)\n",
2914               opcls->plc, GNUNET_ntohll (opcls->op_id), result,
2915               err_msg_size, (const char *) err_msg);
2916
2917   // FIXME: place might have been destroyed
2918   client_send_result (opcls->client, opcls->op_id, result, err_msg, err_msg_size);
2919 }
2920
2921
2922 /**
2923  * Client requests channel history.
2924  */
2925 static void
2926 client_recv_history_replay (void *cls, struct GNUNET_SERVER_Client *client,
2927                             const struct GNUNET_MessageHeader *msg)
2928 {
2929   struct Client *
2930     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
2931   GNUNET_assert (NULL != ctx);
2932   struct Place *plc = ctx->plc;
2933
2934   const struct GNUNET_PSYC_HistoryRequestMessage *
2935     req = (const struct GNUNET_PSYC_HistoryRequestMessage *) msg;
2936   uint16_t size = ntohs (msg->size);
2937   const char *method_prefix = (const char *) &req[1];
2938
2939   if (size < sizeof (*req) + 1
2940       || '\0' != method_prefix[size - sizeof (*req) - 1])
2941   {
2942     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2943                 "%p History replay #%" PRIu64 ": "
2944                 "invalid method prefix. size: %u < %zu?\n",
2945                 plc, GNUNET_ntohll (req->op_id), size, sizeof (*req) + 1);
2946     GNUNET_break (0);
2947     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
2948     return;
2949   }
2950
2951   struct OperationClosure *opcls = GNUNET_malloc (sizeof (*opcls));
2952   opcls->client = client;
2953   opcls->plc = plc;
2954   opcls->op_id = req->op_id;
2955   opcls->flags = ntohl (req->flags);
2956
2957   if (0 == req->message_limit)
2958     GNUNET_PSYC_channel_history_replay (plc->channel,
2959                                         GNUNET_ntohll (req->start_message_id),
2960                                         GNUNET_ntohll (req->end_message_id),
2961                                         method_prefix, opcls->flags,
2962                                         psyc_recv_history_message, NULL,
2963                                         psyc_recv_history_result, opcls);
2964   else
2965     GNUNET_PSYC_channel_history_replay_latest (plc->channel,
2966                                                GNUNET_ntohll (req->message_limit),
2967                                                method_prefix, opcls->flags,
2968                                                psyc_recv_history_message, NULL,
2969                                                psyc_recv_history_result, opcls);
2970
2971   GNUNET_SERVER_receive_done (client, GNUNET_OK);
2972 }
2973
2974
2975 /**
2976  * A state variable part arrived from PSYC.
2977  */
2978 void
2979 psyc_recv_state_var (void *cls,
2980                      const struct GNUNET_MessageHeader *mod,
2981                      const char *name,
2982                      const void *value,
2983                      uint32_t value_size,
2984                      uint32_t full_value_size)
2985 {
2986   struct OperationClosure *opcls = cls;
2987   struct Place *plc = opcls->plc;
2988
2989   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2990               "%p Received state variable %s from PSYC\n",
2991               plc, name);
2992
2993   uint16_t size = ntohs (mod->size);
2994
2995   struct GNUNET_OperationResultMessage *
2996     res = GNUNET_malloc (sizeof (*res) + size);
2997   res->header.size = htons (sizeof (*res) + size);
2998   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT);
2999   res->op_id = opcls->op_id;
3000   res->result_code = GNUNET_htonll (GNUNET_OK);
3001
3002   memcpy (&res[1], mod, size);
3003
3004   /** @todo FIXME: send only to requesting client */
3005   place_send_msg (plc, &res->header);
3006 }
3007
3008
3009 /**
3010  * Result of retrieving state variable from PSYC.
3011  */
3012 static void
3013 psyc_recv_state_result (void *cls, int64_t result,
3014                         const void *err_msg, uint16_t err_msg_size)
3015 {
3016   struct OperationClosure *opcls = cls;
3017   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3018               "%p State get #%" PRIu64 ": "
3019               "PSYCstore returned %" PRId64 " (%.*s)\n",
3020               opcls->plc, GNUNET_ntohll (opcls->op_id), result,
3021               err_msg_size, (const char *) err_msg);
3022
3023   // FIXME: place might have been destroyed
3024   client_send_result (opcls->client, opcls->op_id, result, err_msg, err_msg_size);
3025 }
3026
3027
3028 /**
3029  * Client requests channel history.
3030  */
3031 static void
3032 client_recv_state_get (void *cls, struct GNUNET_SERVER_Client *client,
3033                        const struct GNUNET_MessageHeader *msg)
3034 {
3035   struct Client *
3036     ctx = GNUNET_SERVER_client_get_user_context (client, struct Client);
3037   GNUNET_assert (NULL != ctx);
3038   struct Place *plc = ctx->plc;
3039
3040   const struct GNUNET_PSYC_StateRequestMessage *
3041     req = (const struct GNUNET_PSYC_StateRequestMessage *) msg;
3042   uint16_t size = ntohs (msg->size);
3043   const char *name = (const char *) &req[1];
3044
3045   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3046               "%p State get #%" PRIu64 ": %s\n",
3047               plc, GNUNET_ntohll (req->op_id), name);
3048
3049   if (size < sizeof (*req) + 1
3050       || '\0' != name[size - sizeof (*req) - 1])
3051   {
3052     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3053                 "%p State get #%" PRIu64 ": "
3054                 "invalid name. size: %u < %zu?\n",
3055                 plc, GNUNET_ntohll (req->op_id), size, sizeof (*req) + 1);
3056     GNUNET_break (0);
3057     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
3058     return;
3059   }
3060
3061   struct OperationClosure *opcls = GNUNET_malloc (sizeof (*opcls));
3062   opcls->client = client;
3063   opcls->plc = plc;
3064   opcls->op_id = req->op_id;
3065
3066   switch (ntohs (msg->type))
3067   {
3068   case GNUNET_MESSAGE_TYPE_PSYC_STATE_GET:
3069       GNUNET_PSYC_channel_state_get (plc->channel, name,
3070                                      psyc_recv_state_var,
3071                                      psyc_recv_state_result, opcls);
3072       break;
3073
3074   case GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX:
3075       GNUNET_PSYC_channel_state_get_prefix (plc->channel, name,
3076                                             psyc_recv_state_var,
3077                                             psyc_recv_state_result, opcls);
3078       break;
3079
3080   default:
3081       GNUNET_assert (0);
3082   }
3083
3084   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3085 }
3086
3087
3088 static void
3089 namestore_recv_records_store_result (void *cls, int32_t result,
3090                                      const char *err_msg)
3091 {
3092   struct OperationClosure *ocls = cls;
3093   client_send_result (ocls->client, ocls->op_id, result, err_msg,
3094                       (NULL != err_msg) ? strlen (err_msg) : 0);
3095   GNUNET_free (ocls);
3096 }
3097
3098
3099 /**
3100  * Handle request to add PLACE record to GNS zone.
3101  */
3102 static void
3103 client_recv_zone_add_place (void *cls, struct GNUNET_SERVER_Client *client,
3104                              const struct GNUNET_MessageHeader *msg)
3105 {
3106   const struct ZoneAddPlaceRequest *preq
3107     = (const struct ZoneAddPlaceRequest *) msg;
3108
3109   uint16_t remaining = ntohs (preq->header.size) - sizeof (*preq);
3110   const char *p = (const char *) &preq[1];
3111   const char *name = NULL, *password = NULL;
3112   uint16_t offset = GNUNET_STRINGS_buffer_tokenize (p, remaining, 2,
3113                                                     &name, &password);
3114   remaining -= offset;
3115   p += offset;
3116   const struct GNUNET_PeerIdentity *
3117     relays = (const struct GNUNET_PeerIdentity *) p;
3118   uint16_t relay_size = ntohl (preq->relay_count) * sizeof (*relays);
3119
3120   if (0 == offset || remaining != relay_size)
3121   {
3122     GNUNET_break (0);
3123     client_send_result (client, preq->op_id, GNUNET_SYSERR, NULL, 0);
3124     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3125     return;
3126   }
3127
3128   struct GNUNET_GNSRECORD_Data rd = { };
3129   rd.record_type = GNUNET_GNSRECORD_TYPE_PLACE;
3130   rd.flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
3131   rd.expiration_time = GNUNET_ntohll (preq->expiration_time);
3132
3133   struct GNUNET_GNSRECORD_PlaceData *
3134     rec = GNUNET_malloc (sizeof (*rec) + relay_size);
3135   rec->place_pub_key = preq->place_pub_key;
3136   rec->origin = this_peer;
3137   rec->relay_count = preq->relay_count;
3138   memcpy (&rec[1], relays, relay_size);
3139
3140   rd.data = rec;
3141   rd.data_size = sizeof (*rec) + relay_size;
3142
3143   struct GNUNET_HashCode ego_pub_hash;
3144   GNUNET_CRYPTO_hash (&preq->ego_pub_key, sizeof (preq->ego_pub_key), &ego_pub_hash);
3145   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3146   if (NULL == ego)
3147   {
3148     client_send_result (client, preq->op_id, GNUNET_SYSERR, NULL, 0);
3149   }
3150   else
3151   {
3152     struct OperationClosure *ocls = GNUNET_malloc (sizeof (*ocls));
3153     ocls->client = client;
3154     ocls->op_id = preq->op_id;
3155     GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3156                                     name, 1, &rd,
3157                                     namestore_recv_records_store_result, ocls);
3158     /** @todo refresh stored records later */
3159   }
3160   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3161 }
3162
3163
3164 /**
3165  * Handle request to add PLACE record to GNS zone.
3166  */
3167 static void
3168 client_recv_zone_add_nym (void *cls, struct GNUNET_SERVER_Client *client,
3169                           const struct GNUNET_MessageHeader *msg)
3170 {
3171   const struct ZoneAddNymRequest *nreq
3172     = (const struct ZoneAddNymRequest *) msg;
3173
3174   uint16_t name_size = ntohs (nreq->header.size) - sizeof (*nreq);
3175   const char *name = NULL;
3176   uint16_t offset = GNUNET_STRINGS_buffer_tokenize ((const char *) &nreq[1],
3177                                                     name_size, 1, &name);
3178   if (0 == offset || offset != name_size)
3179   {
3180     GNUNET_break (0);
3181     client_send_result (client, nreq->op_id, GNUNET_SYSERR, NULL, 0);
3182     GNUNET_SERVER_receive_done (client, GNUNET_OK);
3183     return;
3184   }
3185
3186   struct GNUNET_GNSRECORD_Data rd = { };
3187   rd.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
3188   rd.flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
3189   rd.expiration_time = GNUNET_ntohll (nreq->expiration_time);
3190   rd.data = &nreq->nym_pub_key;
3191   rd.data_size = sizeof (nreq->nym_pub_key);
3192
3193   struct GNUNET_HashCode ego_pub_hash;
3194   GNUNET_CRYPTO_hash (&nreq->ego_pub_key, sizeof (nreq->ego_pub_key), &ego_pub_hash);
3195   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3196   if (NULL == ego)
3197   {
3198     client_send_result (client, nreq->op_id, GNUNET_SYSERR, NULL, 0);
3199   }
3200   else
3201   {
3202     struct OperationClosure *ocls = GNUNET_malloc (sizeof (*ocls));
3203     ocls->client = client;
3204     ocls->op_id = nreq->op_id;
3205     GNUNET_NAMESTORE_records_store (namestore, &ego->key,
3206                                     name, 1, &rd,
3207                                     namestore_recv_records_store_result, ocls);
3208     /** @todo refresh stored records later */
3209   }
3210   GNUNET_SERVER_receive_done (client, GNUNET_OK);
3211 }
3212
3213
3214 static const struct GNUNET_SERVER_MessageHandler handlers[] = {
3215   { client_recv_host_enter, NULL,
3216     GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER, 0 },
3217
3218   { client_recv_guest_enter, NULL,
3219     GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER, 0 },
3220
3221   { client_recv_guest_enter_by_name, NULL,
3222     GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_BY_NAME, 0 },
3223
3224   { client_recv_join_decision, NULL,
3225     GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION, 0 },
3226
3227   { client_recv_psyc_message, NULL,
3228     GNUNET_MESSAGE_TYPE_PSYC_MESSAGE, 0 },
3229
3230   { client_recv_history_replay, NULL,
3231     GNUNET_MESSAGE_TYPE_PSYC_HISTORY_REPLAY, 0 },
3232
3233   { client_recv_state_get, NULL,
3234     GNUNET_MESSAGE_TYPE_PSYC_STATE_GET, 0 },
3235
3236   { client_recv_state_get, NULL,
3237     GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX, 0 },
3238
3239   { client_recv_zone_add_place, NULL,
3240     GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_PLACE, 0 },
3241
3242   { client_recv_zone_add_nym, NULL,
3243     GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_NYM, 0 },
3244
3245   { client_recv_app_connect, NULL,
3246     GNUNET_MESSAGE_TYPE_SOCIAL_APP_CONNECT, 0 },
3247
3248   { client_recv_app_detach, NULL,
3249     GNUNET_MESSAGE_TYPE_SOCIAL_APP_DETACH, 0 },
3250
3251   { client_recv_place_leave, NULL,
3252     GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE, 0 },
3253
3254   { client_recv_msg_proc_set, NULL,
3255     GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_SET, 0 },
3256
3257   { client_recv_msg_proc_clear, NULL,
3258     GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_CLEAR, 0 },
3259
3260   { NULL, NULL, 0, 0 }
3261 };
3262
3263
3264 const char *
3265 path_basename (const char *path)
3266 {
3267   const char *basename = strrchr (path, DIR_SEPARATOR);
3268   if (NULL != basename)
3269     basename++;
3270
3271   if (NULL == basename || '\0' == basename)
3272     return NULL;
3273
3274   return basename;
3275 }
3276
3277
3278 struct PlaceLoadClosure
3279 {
3280   const char *app_id;
3281   const char *ego_pub_str;
3282 };
3283
3284
3285 /** Load a place file */
3286 int
3287 file_place_load (void *cls, const char *place_filename)
3288 {
3289   struct PlaceLoadClosure *plcls = cls;
3290
3291   const char *place_pub_str = path_basename (place_filename);
3292   if (NULL == place_pub_str)
3293   {
3294     GNUNET_break (0);
3295     return GNUNET_OK;
3296   }
3297
3298   char *filename = NULL;
3299   GNUNET_asprintf (&filename, "%s%c" "%s%c" "%s%c" "%s",
3300                    dir_social, DIR_SEPARATOR,
3301                    "places", DIR_SEPARATOR,
3302                    plcls->ego_pub_str, DIR_SEPARATOR,
3303                    place_pub_str);
3304
3305   uint64_t file_size = 0;
3306   if (GNUNET_OK !=
3307       GNUNET_DISK_file_size (filename, &file_size, GNUNET_YES, GNUNET_YES)
3308       || file_size < sizeof (struct PlaceEnterRequest))
3309     return GNUNET_OK;
3310
3311   struct PlaceEnterRequest *ereq = GNUNET_malloc (file_size);
3312   ssize_t read_size = GNUNET_DISK_fn_read (filename, ereq, file_size);
3313   if (read_size < 0 || read_size < sizeof (*ereq))
3314   {
3315     GNUNET_free (ereq);
3316     return GNUNET_OK;
3317   }
3318
3319   uint16_t ereq_size = ntohs (ereq->header.size);
3320   if (read_size != ereq_size)
3321   {
3322     GNUNET_free (ereq);
3323     return GNUNET_OK;
3324   }
3325
3326   switch (ntohs (ereq->header.type))
3327   {
3328   case GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER:
3329     if (ereq_size < sizeof (struct HostEnterRequest))
3330     {
3331       GNUNET_free (ereq);
3332       return GNUNET_OK;
3333     }
3334     struct HostEnterRequest *hreq = (struct HostEnterRequest *) ereq;
3335     host_enter (hreq, NULL);
3336     break;
3337
3338   case GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER:
3339     if (ereq_size < sizeof (struct GuestEnterRequest))
3340     {
3341       GNUNET_free (ereq);
3342       return GNUNET_OK;
3343     }
3344     struct GuestEnterRequest *greq = (struct GuestEnterRequest *) ereq;
3345     guest_enter (greq, NULL);
3346     break;
3347
3348   default:
3349     GNUNET_free (ereq);
3350     return GNUNET_OK;
3351   }
3352
3353   app_place_add (plcls->app_id, ereq);
3354   GNUNET_free (ereq);
3355   return GNUNET_OK;
3356 }
3357
3358
3359 /**
3360  * Read @e place_pub_str entries in @a dir_ego
3361  *
3362  * @param dir_ego
3363  *        Data directory of an application ego.
3364  *        $GNUNET_DATA_HOME/social/apps/$app_id/$ego_pub_str/
3365  */
3366 int
3367 scan_app_ego_dir (void *cls, const char *dir_ego)
3368 {
3369   struct PlaceLoadClosure *plcls = cls;
3370   plcls->ego_pub_str = path_basename (dir_ego);
3371
3372   if (NULL != plcls->ego_pub_str)
3373     GNUNET_DISK_directory_scan (dir_ego, file_place_load, plcls);
3374
3375   return GNUNET_OK;
3376 }
3377
3378 /**
3379  * Read @e ego_pub_str entries in @a dir_app
3380  *
3381  * @param dir_app
3382  *        Data directory of an application.
3383  *        $GNUNET_DATA_HOME/social/apps/$app_id/
3384  */
3385 int
3386 scan_app_dir (void *cls, const char *dir_app)
3387 {
3388   if (GNUNET_YES != GNUNET_DISK_directory_test (dir_app, GNUNET_YES))
3389     return GNUNET_OK;
3390
3391   struct PlaceLoadClosure plcls;
3392   plcls.app_id = path_basename (dir_app);
3393
3394   if (NULL != plcls.app_id)
3395     GNUNET_DISK_directory_scan (dir_app, scan_app_ego_dir, &plcls);
3396
3397   return GNUNET_OK;
3398 }
3399
3400
3401 static void
3402 identity_recv_ego (void *cls, struct GNUNET_IDENTITY_Ego *id_ego,
3403                    void **ctx, const char *name)
3404 {
3405   if (NULL == id_ego) // end of initial list of egos
3406     return;
3407
3408   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
3409   GNUNET_IDENTITY_ego_get_public_key (id_ego, &ego_pub_key);
3410
3411   struct GNUNET_HashCode ego_pub_hash;
3412   GNUNET_CRYPTO_hash (&ego_pub_key, sizeof (ego_pub_key), &ego_pub_hash);
3413
3414   struct Ego *ego = GNUNET_CONTAINER_multihashmap_get (egos, &ego_pub_hash);
3415   if (NULL != ego)
3416   {
3417     GNUNET_free (ego->name);
3418     if (NULL == name) // deleted
3419     {
3420       GNUNET_CONTAINER_multihashmap_remove (egos, &ego_pub_hash, ego);
3421       GNUNET_free (ego);
3422       ego = NULL;
3423     }
3424   }
3425   else
3426   {
3427     ego = GNUNET_malloc (sizeof (*ego));
3428   }
3429   if (NULL != ego)
3430   {
3431     ego->key = *(GNUNET_IDENTITY_ego_get_private_key (id_ego));
3432     size_t name_size = strlen (name) + 1;
3433     ego->name = GNUNET_malloc (name_size);
3434     memcpy (ego->name, name, name_size);
3435
3436     GNUNET_CONTAINER_multihashmap_put (egos, &ego_pub_hash, ego,
3437                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
3438   }
3439
3440   // FIXME: notify clients about changed ego
3441 }
3442
3443
3444 /**
3445  * Connected to core service.
3446  */
3447 static void
3448 core_connected (void *cls, const struct GNUNET_PeerIdentity *my_identity)
3449 {
3450   this_peer = *my_identity;
3451 }
3452
3453
3454 /**
3455  * Initialize the PSYC service.
3456  *
3457  * @param cls Closure.
3458  * @param server The initialized server.
3459  * @param c Configuration to use.
3460  */
3461 static void
3462 run (void *cls, struct GNUNET_SERVER_Handle *server,
3463      const struct GNUNET_CONFIGURATION_Handle *c)
3464 {
3465   cfg = c;
3466
3467   hosts = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
3468   guests = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
3469   place_guests = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3470
3471   egos = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3472   apps = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
3473   places = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3474   apps_places = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3475   places_apps = GNUNET_CONTAINER_multihashmap_create(1, GNUNET_NO);
3476
3477   core = GNUNET_CORE_connect (cfg, NULL, core_connected, NULL, NULL,
3478                               NULL, GNUNET_NO, NULL, GNUNET_NO, NULL);
3479   id = GNUNET_IDENTITY_connect (cfg, &identity_recv_ego, NULL);
3480   gns = GNUNET_GNS_connect (cfg);
3481   namestore = GNUNET_NAMESTORE_connect (cfg);
3482   stats = GNUNET_STATISTICS_create ("social", cfg);
3483
3484   if (GNUNET_OK !=
3485       GNUNET_CONFIGURATION_get_value_filename (cfg, "social", "DATA_HOME",
3486                                                &dir_social))
3487   {
3488     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
3489                                "social", "DATA_HOME");
3490     GNUNET_break (0);
3491     return;
3492   }
3493   GNUNET_asprintf (&dir_places, "%s%c%s",
3494                    dir_social, DIR_SEPARATOR, "places");
3495   GNUNET_asprintf (&dir_apps, "%s%c%s",
3496                    dir_social, DIR_SEPARATOR, "apps");
3497
3498   GNUNET_DISK_directory_scan (dir_apps, scan_app_dir, NULL);
3499
3500   nc = GNUNET_SERVER_notification_context_create (server, 1);
3501   GNUNET_SERVER_add_handlers (server, handlers);
3502   GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
3503   GNUNET_SCHEDULER_add_shutdown (&shutdown_task, NULL);
3504 }
3505
3506
3507 /**
3508  * The main function for the service.
3509  *
3510  * @param argc number of arguments from the command line
3511  * @param argv command line arguments
3512  * @return 0 ok, 1 on error
3513  */
3514 int
3515 main (int argc, char *const *argv)
3516 {
3517   return (GNUNET_OK ==
3518           GNUNET_SERVICE_run (argc, argv, "social",
3519                               GNUNET_SERVICE_OPTION_NONE,
3520                               &run, NULL)) ? 0 : 1;
3521 }
3522
3523 /* end of gnunet-service-social.c */