-rps service: prevent division by zero
[oweals/gnunet.git] / src / social / social_api.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  * @author Gabor X Toth
23  *
24  * @file
25  * Social service; implements social interactions using the PSYC service.
26  */
27
28 #include <inttypes.h>
29 #include <string.h>
30
31 #include "platform.h"
32 #include "gnunet_util_lib.h"
33 #include "gnunet_psyc_service.h"
34 #include "gnunet_psyc_util_lib.h"
35 #include "gnunet_social_service.h"
36 #include "social.h"
37
38 #define LOG(kind,...) GNUNET_log_from (kind, "social-api",__VA_ARGS__)
39
40 /**
41  * Handle for an ego.
42  */
43 struct GNUNET_SOCIAL_Ego
44 {
45   struct GNUNET_CRYPTO_EcdsaPublicKey pub_key;
46   struct GNUNET_HashCode pub_key_hash;
47   char *name;
48 };
49
50
51 /**
52  * Handle for a pseudonym of another user in the network.
53  */
54 struct GNUNET_SOCIAL_Nym
55 {
56   struct GNUNET_CRYPTO_EcdsaPublicKey pub_key;
57   struct GNUNET_HashCode pub_key_hash;
58 };
59
60
61 /**
62  * Handle for an application.
63  */
64 struct GNUNET_SOCIAL_App
65 {
66   /**
67    * Configuration to use.
68    */
69   const struct GNUNET_CONFIGURATION_Handle *cfg;
70
71   /**
72    * Client connection to the service.
73    */
74   struct GNUNET_MQ_Handle *mq;
75
76   /**
77    * Message to send on connect.
78    */
79   struct GNUNET_MQ_Envelope *connect_env;
80
81   /**
82    * Time to wait until we try to reconnect on failure.
83    */
84   struct GNUNET_TIME_Relative reconnect_delay;
85
86   /**
87    * Task for reconnecting when the listener fails.
88    */
89   struct GNUNET_SCHEDULER_Task *reconnect_task;
90
91   /**
92    * Async operations.
93    */
94   struct GNUNET_OP_Handle *op;
95
96   /**
97    * Function called after disconnected from the service.
98    */
99   GNUNET_ContinuationCallback disconnect_cb;
100
101   /**
102    * Closure for @a disconnect_cb.
103    */
104   void *disconnect_cls;
105
106   /**
107    * Application ID.
108    */
109   char *id;
110
111   /**
112    * Hash map of all egos.
113    * pub_key_hash -> struct GNUNET_SOCIAL_Ego *
114    */
115   struct GNUNET_CONTAINER_MultiHashMap *egos;
116
117   GNUNET_SOCIAL_AppEgoCallback ego_cb;
118   GNUNET_SOCIAL_AppHostPlaceCallback host_cb;
119   GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb;
120   GNUNET_SOCIAL_AppConnectedCallback connected_cb;
121   void *cb_cls;
122 };
123
124
125 struct GNUNET_SOCIAL_HostConnection
126 {
127   struct GNUNET_SOCIAL_App *app;
128
129   struct AppPlaceMessage plc_msg;
130 };
131
132
133 struct GNUNET_SOCIAL_GuestConnection
134 {
135   struct GNUNET_SOCIAL_App *app;
136
137   struct AppPlaceMessage plc_msg;
138 };
139
140
141 /**
142  * Handle for a place where social interactions happen.
143  */
144 struct GNUNET_SOCIAL_Place
145 {
146   /**
147    * Configuration to use.
148    */
149   const struct GNUNET_CONFIGURATION_Handle *cfg;
150
151   /**
152    * Client connection to the service.
153    */
154   struct GNUNET_MQ_Handle *mq;
155
156   /**
157    * Message to send on connect.
158    */
159   struct GNUNET_MQ_Envelope *connect_env;
160
161   /**
162    * Time to wait until we try to reconnect on failure.
163    */
164   struct GNUNET_TIME_Relative reconnect_delay;
165
166   /**
167    * Task for reconnecting when the listener fails.
168    */
169   struct GNUNET_SCHEDULER_Task *reconnect_task;
170
171   /**
172    * Async operations.
173    */
174   struct GNUNET_OP_Handle *op;
175
176   /**
177    * Transmission handle.
178    */
179   struct GNUNET_PSYC_TransmitHandle *tmit;
180
181   /**
182    * Slicer for processing incoming messages.
183    */
184   struct GNUNET_PSYC_Slicer *slicer;
185
186   /**
187    * Function called after disconnected from the service.
188    */
189   GNUNET_ContinuationCallback disconnect_cb;
190
191   /**
192    * Closure for @a disconnect_cb.
193    */
194   void *disconnect_cls;
195
196   /**
197    * Public key of the place.
198    */
199   struct GNUNET_CRYPTO_EddsaPublicKey pub_key;
200
201   /**
202    * Public key of the ego.
203    */
204   struct GNUNET_CRYPTO_EcdsaPublicKey ego_pub_key;
205
206   /**
207    * Does this place belong to a host (#GNUNET_YES) or guest (#GNUNET_NO)?
208    */
209   uint8_t is_host;
210 };
211
212
213 /**
214  * Host handle for a place that we entered.
215  */
216 struct GNUNET_SOCIAL_Host
217 {
218   struct GNUNET_SOCIAL_Place plc;
219
220   /**
221    * Slicer for processing incoming messages from guests.
222    */
223   struct GNUNET_PSYC_Slicer *slicer;
224
225   GNUNET_SOCIAL_HostEnterCallback enter_cb;
226
227   GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb;
228
229   GNUNET_SOCIAL_FarewellCallback farewell_cb;
230
231   /**
232    * Closure for callbacks.
233    */
234   void *cb_cls;
235
236   struct GNUNET_SOCIAL_Nym *notice_place_leave_nym;
237   struct GNUNET_PSYC_Environment *notice_place_leave_env;
238 };
239
240
241 /**
242  * Guest handle for place that we entered.
243  */
244 struct GNUNET_SOCIAL_Guest
245 {
246   struct GNUNET_SOCIAL_Place plc;
247
248   GNUNET_SOCIAL_GuestEnterCallback enter_cb;
249
250   GNUNET_SOCIAL_EntryDecisionCallback entry_dcsn_cb;
251
252   /**
253    * Closure for callbacks.
254    */
255   void *cb_cls;
256 };
257
258
259 /**
260  * Hash map of all nyms.
261  * pub_key_hash -> struct GNUNET_SOCIAL_Nym *
262  */
263 struct GNUNET_CONTAINER_MultiHashMap *nyms;
264
265
266 /**
267  * Handle for an announcement request.
268  */
269 struct GNUNET_SOCIAL_Announcement
270 {
271
272 };
273
274
275 /**
276  * A talk request.
277  */
278 struct GNUNET_SOCIAL_TalkRequest
279 {
280
281 };
282
283
284 /**
285  * A history lesson.
286  */
287 struct GNUNET_SOCIAL_HistoryRequest
288 {
289   /**
290    * Place.
291    */
292   struct GNUNET_SOCIAL_Place *plc;
293
294   /**
295    * Operation ID.
296    */
297   uint64_t op_id;
298
299   /**
300    * Slicer for processing incoming messages.
301    */
302   struct GNUNET_PSYC_Slicer *slicer;
303
304   /**
305    * Function to call when the operation finished.
306    */
307   GNUNET_ResultCallback result_cb;
308
309   /**
310    * Closure for @a result_cb.
311    */
312   void *cls;
313 };
314
315
316 struct GNUNET_SOCIAL_LookHandle
317 {
318   /**
319    * Place.
320    */
321   struct GNUNET_SOCIAL_Place *plc;
322
323   /**
324    * Operation ID.
325    */
326   uint64_t op_id;
327
328   /**
329    * State variable result callback.
330    */
331   GNUNET_PSYC_StateVarCallback var_cb;
332
333   /**
334    * Function to call when the operation finished.
335    */
336   GNUNET_ResultCallback result_cb;
337
338   /**
339    * Name of current modifier being received.
340    */
341   char *mod_name;
342
343   /**
344    * Size of current modifier value being received.
345    */
346   size_t mod_value_size;
347
348   /**
349    * Remaining size of current modifier value still to be received.
350    */
351   size_t mod_value_remaining;
352
353   /**
354    * Closure for @a result_cb.
355    */
356   void *cls;
357 };
358
359
360 struct ZoneAddPlaceHandle
361 {
362   GNUNET_ResultCallback result_cb;
363   void *result_cls;
364 };
365
366
367 struct ZoneAddNymHandle
368 {
369   GNUNET_ResultCallback result_cb;
370   void *result_cls;
371 };
372
373
374 /*** NYM ***/
375
376 static struct GNUNET_SOCIAL_Nym *
377 nym_get_or_create (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub_key)
378 {
379   struct GNUNET_SOCIAL_Nym *nym = NULL;
380   struct GNUNET_HashCode pub_key_hash;
381
382   if (NULL == pub_key)
383     return NULL;
384
385   GNUNET_CRYPTO_hash (pub_key, sizeof (*pub_key), &pub_key_hash);
386
387   if (NULL == nyms)
388     nyms = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_YES);
389   else
390     nym = GNUNET_CONTAINER_multihashmap_get (nyms, &pub_key_hash);
391
392   if (NULL == nym)
393   {
394     nym = GNUNET_new (struct GNUNET_SOCIAL_Nym);
395     nym->pub_key = *pub_key;
396     nym->pub_key_hash = pub_key_hash;
397     GNUNET_CONTAINER_multihashmap_put (nyms, &nym->pub_key_hash, nym,
398                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST);
399   }
400   return nym;
401 }
402
403
404 static void
405 nym_destroy (struct GNUNET_SOCIAL_Nym *nym)
406 {
407   GNUNET_CONTAINER_multihashmap_remove (nyms, &nym->pub_key_hash, nym);
408   GNUNET_free (nym);
409 }
410
411
412 /*** MESSAGE HANDLERS ***/
413
414 /** _notice_place_leave from guests */
415
416 static void
417 host_recv_notice_place_leave_method (void *cls,
418                                      const struct GNUNET_PSYC_MessageHeader *msg,
419                                      const struct GNUNET_PSYC_MessageMethod *meth,
420                                      uint64_t message_id,
421                                      const char *method_name)
422 {
423   struct GNUNET_SOCIAL_Host *hst = cls;
424
425   if (0 == memcmp (&(struct GNUNET_CRYPTO_EcdsaPublicKey) {},
426                    &msg->slave_pub_key, sizeof (msg->slave_pub_key)))
427     return;
428
429   struct GNUNET_SOCIAL_Nym *nym = nym_get_or_create (&msg->slave_pub_key);
430
431   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
432               "Host received method for message ID %" PRIu64 " from nym %s: %s\n",
433               message_id, GNUNET_h2s (&nym->pub_key_hash), method_name);
434
435   hst->notice_place_leave_nym = (struct GNUNET_SOCIAL_Nym *) nym;
436   hst->notice_place_leave_env = GNUNET_PSYC_env_create ();
437
438   char *str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&hst->notice_place_leave_nym->pub_key);
439   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
440               "_notice_place_leave: got method from nym %s (%s).\n",
441               GNUNET_h2s (&hst->notice_place_leave_nym->pub_key_hash), str);
442   GNUNET_free (str);
443 }
444
445
446 static void
447 host_recv_notice_place_leave_modifier (void *cls,
448                                        const struct GNUNET_PSYC_MessageHeader *msg,
449                                        const struct GNUNET_MessageHeader *pmsg,
450                                        uint64_t message_id,
451                                        enum GNUNET_PSYC_Operator oper,
452                                        const char *name,
453                                        const void *value,
454                                        uint16_t value_size,
455                                        uint16_t full_value_size)
456 {
457   struct GNUNET_SOCIAL_Host *hst = cls;
458   if (NULL == hst->notice_place_leave_env)
459     return;
460
461   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
462               "Host received modifier for _notice_place_leave message with ID %" PRIu64 ":\n"
463               "%c%s: %.*s\n",
464               message_id, oper, name, value_size, (const char *) value);
465
466   /* skip _nym, it's added later in eom() */
467   if (0 == memcmp (name, "_nym", sizeof ("_nym"))
468       || 0 == memcmp (name, "_nym_", sizeof ("_nym_") - 1))
469     return;
470
471   GNUNET_PSYC_env_add (hst->notice_place_leave_env,
472                        GNUNET_PSYC_OP_SET, name, value, value_size);
473 }
474
475
476 static void
477 host_recv_notice_place_leave_eom (void *cls,
478                                   const struct GNUNET_PSYC_MessageHeader *msg,
479                                   const struct GNUNET_MessageHeader *pmsg,
480                                   uint64_t message_id,
481                                   uint8_t is_cancelled)
482 {
483   struct GNUNET_SOCIAL_Host *hst = cls;
484   if (NULL == hst->notice_place_leave_env)
485     return;
486
487   char *str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&hst->notice_place_leave_nym->pub_key);
488   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
489               "_notice_place_leave: got EOM from nym %s (%s).\n",
490               GNUNET_h2s (&hst->notice_place_leave_nym->pub_key_hash), str);
491   GNUNET_free (str);
492
493   if (GNUNET_YES != is_cancelled)
494   {
495     if (NULL != hst->farewell_cb)
496       hst->farewell_cb (hst->cb_cls, hst->notice_place_leave_nym,
497                         hst->notice_place_leave_env);
498     /* announce leaving guest to place */
499     GNUNET_PSYC_env_add (hst->notice_place_leave_env, GNUNET_PSYC_OP_SET,
500                          "_nym", hst->notice_place_leave_nym,
501                          sizeof (*hst->notice_place_leave_nym));
502     GNUNET_SOCIAL_host_announce (hst, "_notice_place_leave",
503                                  hst->notice_place_leave_env,
504                                  NULL, NULL, GNUNET_SOCIAL_ANNOUNCE_NONE);
505     nym_destroy (hst->notice_place_leave_nym);
506   }
507   GNUNET_PSYC_env_destroy (hst->notice_place_leave_env);
508   hst->notice_place_leave_env = NULL;
509 }
510
511
512 /*** PLACE ***/
513
514
515 static int
516 check_place_result (void *cls,
517                     const struct GNUNET_OperationResultMessage *res)
518 {
519   uint16_t size = ntohs (res->header.size);
520   if (size < sizeof (*res))
521   { /* Error, message too small. */
522     GNUNET_break (0);
523     return GNUNET_SYSERR;
524   }
525   return GNUNET_OK;
526 }
527
528
529 static void
530 handle_place_result (void *cls,
531                      const struct GNUNET_OperationResultMessage *res)
532 {
533   struct GNUNET_SOCIAL_Place *plc = cls;
534
535   uint16_t size = ntohs (res->header.size);
536   uint16_t data_size = size - sizeof (*res);
537   const char *data = (0 < data_size) ? (const char *) &res[1] : NULL;
538
539   GNUNET_OP_result (plc->op, GNUNET_ntohll (res->op_id),
540                     GNUNET_ntohll (res->result_code),
541                     data, data_size, NULL);
542 }
543
544
545 static int
546 check_app_result (void *cls,
547                   const struct GNUNET_OperationResultMessage *res)
548 {
549   uint16_t size = ntohs (res->header.size);
550   if (size < sizeof (*res))
551   { /* Error, message too small. */
552     GNUNET_break (0);
553     return GNUNET_SYSERR;
554   }
555   return GNUNET_OK;
556 }
557
558
559 static void
560 handle_app_result (void *cls,
561                    const struct GNUNET_OperationResultMessage *res)
562 {
563   struct GNUNET_SOCIAL_App *app = cls;
564
565   uint16_t size = ntohs (res->header.size);
566   uint16_t data_size = size - sizeof (*res);
567   const char *data = (0 < data_size) ? (const char *) &res[1] : NULL;
568
569   GNUNET_OP_result (app->op, GNUNET_ntohll (res->op_id),
570                     GNUNET_ntohll (res->result_code),
571                     data, data_size, NULL);
572 }
573
574
575 static void
576 op_recv_history_result (void *cls, int64_t result,
577                         const void *err_msg, uint16_t err_msg_size)
578 {
579   LOG (GNUNET_ERROR_TYPE_DEBUG,
580        "Received history replay result: %" PRId64 ".\n", result);
581
582   struct GNUNET_SOCIAL_HistoryRequest *hist = cls;
583
584   if (NULL != hist->result_cb)
585     hist->result_cb (hist->cls, result, err_msg, err_msg_size);
586
587   GNUNET_free (hist);
588 }
589
590
591 static void
592 op_recv_state_result (void *cls, int64_t result,
593                       const void *err_msg, uint16_t err_msg_size)
594 {
595   LOG (GNUNET_ERROR_TYPE_DEBUG,
596        "Received state request result: %" PRId64 ".\n", result);
597
598   struct GNUNET_SOCIAL_LookHandle *look = cls;
599
600   if (NULL != look->result_cb)
601     look->result_cb (look->cls, result, err_msg, err_msg_size);
602
603   GNUNET_free (look);
604 }
605
606
607 static int
608 check_place_history_result (void *cls,
609                             const struct GNUNET_OperationResultMessage *res)
610 {
611   struct GNUNET_PSYC_MessageHeader *
612     pmsg = (struct GNUNET_PSYC_MessageHeader *) GNUNET_MQ_extract_nested_mh (res);
613   uint16_t size = ntohs (res->header.size);
614
615   if (NULL == pmsg || size < sizeof (*res) + sizeof (*pmsg))
616   { /* Error, message too small. */
617     GNUNET_break (0);
618     return GNUNET_SYSERR;
619   }
620   return GNUNET_OK;
621 }
622
623
624 static void
625 handle_place_history_result (void *cls,
626                              const struct GNUNET_OperationResultMessage *res)
627 {
628   struct GNUNET_SOCIAL_Place *plc = cls;
629   struct GNUNET_PSYC_MessageHeader *
630     pmsg = (struct GNUNET_PSYC_MessageHeader *) GNUNET_MQ_extract_nested_mh (res);
631
632   LOG (GNUNET_ERROR_TYPE_DEBUG,
633        "%p Received historic fragment for message #%" PRIu64 ".\n",
634        plc, GNUNET_ntohll (pmsg->message_id));
635
636   GNUNET_ResultCallback result_cb = NULL;
637   struct GNUNET_SOCIAL_HistoryRequest *hist = NULL;
638
639   if (GNUNET_YES != GNUNET_OP_get (plc->op,
640                                    GNUNET_ntohll (res->op_id),
641                                    &result_cb, (void *) &hist, NULL))
642   { /* Operation not found. */
643     LOG (GNUNET_ERROR_TYPE_WARNING,
644          "%p Replay operation not found for historic fragment of message #%"
645          PRIu64 ".\n",
646          plc, GNUNET_ntohll (pmsg->message_id));
647     return;
648   }
649
650   GNUNET_PSYC_slicer_message (hist->slicer,
651                               (const struct GNUNET_PSYC_MessageHeader *) pmsg);
652 }
653
654
655 static int
656 check_place_state_result (void *cls,
657                           const struct GNUNET_OperationResultMessage *res)
658 {
659   const struct GNUNET_MessageHeader *mod = GNUNET_MQ_extract_nested_mh (res);
660   uint16_t mod_size = ntohs (mod->size);
661   uint16_t size = ntohs (res->header.size);
662
663   if (NULL == mod || size - sizeof (*res) != mod_size)
664   {
665     GNUNET_break_op (0);
666     LOG (GNUNET_ERROR_TYPE_WARNING,
667          "Invalid modifier size in state result: %u - %u != %u\n",
668          ntohs (res->header.size), sizeof (*res), mod_size);
669     return GNUNET_SYSERR;
670   }
671   return GNUNET_OK;
672 }
673
674
675 static void
676 handle_place_state_result (void *cls,
677                            const struct GNUNET_OperationResultMessage *res)
678 {
679   struct GNUNET_SOCIAL_Place *plc = cls;
680
681   GNUNET_ResultCallback result_cb = NULL;
682   struct GNUNET_SOCIAL_LookHandle *look = NULL;
683
684   if (GNUNET_YES != GNUNET_OP_get (plc->op,
685                                    GNUNET_ntohll (res->op_id),
686                                    &result_cb, (void *) &look, NULL))
687   { /* Operation not found. */
688     return;
689   }
690
691   const struct GNUNET_MessageHeader *mod = GNUNET_MQ_extract_nested_mh (res);
692   uint16_t mod_size = ntohs (mod->size);
693
694   switch (ntohs (mod->type))
695   {
696   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER:
697   {
698     const struct GNUNET_PSYC_MessageModifier *
699       pmod = (const struct GNUNET_PSYC_MessageModifier *) mod;
700
701     const char *name = (const char *) &pmod[1];
702     uint16_t name_size = ntohs (pmod->name_size);
703     if ('\0' != name[name_size - 1])
704     {
705       GNUNET_break_op (0);
706       LOG (GNUNET_ERROR_TYPE_WARNING,
707            "Invalid modifier name in state result\n");
708       return;
709     }
710     look->mod_value_size = ntohs (pmod->value_size);
711     look->var_cb (look->cls, mod, name, name + name_size,
712                   mod_size - sizeof (*mod) - name_size,
713                   look->mod_value_size);
714     if (look->mod_value_size > mod_size - sizeof (*mod) - name_size)
715     {
716         look->mod_value_remaining = look->mod_value_size;
717         look->mod_name = GNUNET_malloc (name_size);
718         GNUNET_memcpy (look->mod_name, name, name_size);
719     }
720     break;
721   }
722
723   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MOD_CONT:
724     look->var_cb (look->cls, mod, look->mod_name, (const char *) &mod[1],
725                   mod_size - sizeof (*mod), look->mod_value_size);
726     look->mod_value_remaining -= mod_size - sizeof (*mod);
727     if (0 == look->mod_value_remaining)
728     {
729         GNUNET_free (look->mod_name);
730     }
731     break;
732   }
733 }
734
735
736 static void
737 handle_place_message_ack (void *cls,
738                           const struct GNUNET_MessageHeader *msg)
739 {
740   struct GNUNET_SOCIAL_Place *plc = cls;
741
742   GNUNET_PSYC_transmit_got_ack (plc->tmit);
743 }
744
745
746 static int
747 check_place_message (void *cls,
748                      const struct GNUNET_PSYC_MessageHeader *pmsg)
749 {
750   return GNUNET_OK;
751 }
752
753
754 static void
755 handle_place_message (void *cls,
756                       const struct GNUNET_PSYC_MessageHeader *pmsg)
757 {
758   struct GNUNET_SOCIAL_Place *plc = cls;
759
760   GNUNET_PSYC_slicer_message (plc->slicer, pmsg);
761 }
762
763
764 static int
765 check_host_message (void *cls,
766                     const struct GNUNET_PSYC_MessageHeader *pmsg)
767 {
768   return GNUNET_OK;
769 }
770
771
772 static void
773 handle_host_message (void *cls,
774                      const struct GNUNET_PSYC_MessageHeader *pmsg)
775 {
776   struct GNUNET_SOCIAL_Host *hst = cls;
777
778   GNUNET_PSYC_slicer_message (hst->slicer, pmsg);
779   GNUNET_PSYC_slicer_message (hst->plc.slicer, pmsg);
780 }
781
782
783 static void
784 handle_host_enter_ack (void *cls,
785                        const struct HostEnterAck *hack)
786 {
787   struct GNUNET_SOCIAL_Host *hst = cls;
788
789   hst->plc.pub_key = hack->place_pub_key;
790
791   int32_t result = ntohl (hack->result_code);
792   if (NULL != hst->enter_cb)
793     hst->enter_cb (hst->cb_cls, result, &hack->place_pub_key,
794                    GNUNET_ntohll (hack->max_message_id));
795 }
796
797
798 static int
799 check_host_enter_request (void *cls,
800                           const struct GNUNET_PSYC_JoinRequestMessage *req)
801 {
802   return GNUNET_OK;
803 }
804
805
806 static void
807 handle_host_enter_request (void *cls,
808                            const struct GNUNET_PSYC_JoinRequestMessage *req)
809 {
810   struct GNUNET_SOCIAL_Host *hst = cls;
811
812   if (NULL == hst->answer_door_cb)
813      return;
814
815   const char *method_name = NULL;
816   struct GNUNET_PSYC_Environment *env = NULL;
817   struct GNUNET_PSYC_MessageHeader *entry_pmsg = NULL;
818   const void *data = NULL;
819   uint16_t data_size = 0;
820   char *str;
821   const struct GNUNET_PSYC_Message *join_msg = NULL;
822
823   do
824   {
825     if (sizeof (*req) + sizeof (*join_msg) <= ntohs (req->header.size))
826     {
827       join_msg = (struct GNUNET_PSYC_Message *) GNUNET_MQ_extract_nested_mh (req);
828       LOG (GNUNET_ERROR_TYPE_DEBUG,
829            "Received join_msg of type %u and size %u.\n",
830            ntohs (join_msg->header.type), ntohs (join_msg->header.size));
831
832       env = GNUNET_PSYC_env_create ();
833       entry_pmsg = GNUNET_PSYC_message_header_create_from_psyc (join_msg);
834       if (GNUNET_OK != GNUNET_PSYC_message_parse (entry_pmsg, &method_name, env,
835                                                   &data, &data_size))
836       {
837         GNUNET_break_op (0);
838         str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&req->slave_pub_key);
839         LOG (GNUNET_ERROR_TYPE_WARNING,
840              "Ignoring invalid entry request from nym %s.\n",
841              str);
842         GNUNET_free (str);
843         break;
844       }
845     }
846
847     struct GNUNET_SOCIAL_Nym *nym = nym_get_or_create (&req->slave_pub_key);
848     hst->answer_door_cb (hst->cb_cls, nym, method_name, env,
849                          data, data_size);
850   } while (0);
851
852   if (NULL != env)
853     GNUNET_PSYC_env_destroy (env);
854   if (NULL != entry_pmsg)
855     GNUNET_free (entry_pmsg);
856 }
857
858
859 static void
860 handle_guest_enter_ack (void *cls,
861                         const struct GNUNET_PSYC_CountersResultMessage *cres)
862 {
863   struct GNUNET_SOCIAL_Guest *gst = cls;
864
865   int32_t result = ntohl (cres->result_code);
866   if (NULL != gst->enter_cb)
867     gst->enter_cb (gst->cb_cls, result, &gst->plc.pub_key,
868                    GNUNET_ntohll (cres->max_message_id));
869 }
870
871
872 static int
873 check_guest_enter_decision (void *cls,
874                             const struct GNUNET_PSYC_JoinDecisionMessage *dcsn)
875 {
876   return GNUNET_OK;
877 }
878
879
880 static void
881 handle_guest_enter_decision (void *cls,
882                              const struct GNUNET_PSYC_JoinDecisionMessage *dcsn)
883 {
884   struct GNUNET_SOCIAL_Guest *gst = cls;
885
886   struct GNUNET_PSYC_Message *pmsg = NULL;
887   if (ntohs (dcsn->header.size) <= sizeof (*dcsn) + sizeof (*pmsg))
888     pmsg = (struct GNUNET_PSYC_Message *) GNUNET_MQ_extract_nested_mh (dcsn);
889
890   if (NULL != gst->entry_dcsn_cb)
891     gst->entry_dcsn_cb (gst->cb_cls, ntohl (dcsn->is_admitted), pmsg);
892 }
893
894
895 static int
896 check_app_ego (void *cls,
897                const struct AppEgoMessage *emsg)
898 {
899   return GNUNET_OK;
900 }
901
902
903 static void
904 handle_app_ego (void *cls,
905                 const struct AppEgoMessage *emsg)
906 {
907   struct GNUNET_SOCIAL_App *app = cls;
908
909   uint16_t name_size = ntohs (emsg->header.size) - sizeof (*emsg);
910
911   struct GNUNET_HashCode ego_pub_hash;
912   GNUNET_CRYPTO_hash (&emsg->ego_pub_key, sizeof (emsg->ego_pub_key),
913                       &ego_pub_hash);
914
915   struct GNUNET_SOCIAL_Ego *
916     ego = GNUNET_CONTAINER_multihashmap_get (app->egos, &ego_pub_hash);
917   if (NULL == ego)
918   {
919     ego = GNUNET_malloc (sizeof (*ego));
920     ego->pub_key = emsg->ego_pub_key;
921     ego->name = GNUNET_malloc (name_size);
922     GNUNET_memcpy (ego->name, &emsg[1], name_size);
923   }
924   else
925   {
926     ego->name = GNUNET_realloc (ego->name, name_size);
927     GNUNET_memcpy (ego->name, &emsg[1], name_size);
928   }
929
930   GNUNET_CONTAINER_multihashmap_put (app->egos, &ego_pub_hash, ego,
931                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
932
933   if (NULL != app->ego_cb)
934     app->ego_cb (app->cb_cls, ego, &ego->pub_key, ego->name);
935 }
936
937
938 static void
939 handle_app_ego_end (void *cls,
940                     const struct GNUNET_MessageHeader *msg)
941 {
942   //struct GNUNET_SOCIAL_App *app = cls;
943 }
944
945
946 static int
947 check_app_place (void *cls,
948                  const struct AppPlaceMessage *pmsg)
949 {
950   return GNUNET_OK;
951 }
952
953
954 static void
955 handle_app_place (void *cls,
956                   const struct AppPlaceMessage *pmsg)
957 {
958   struct GNUNET_SOCIAL_App *app = cls;
959
960   if ((GNUNET_YES == pmsg->is_host && NULL == app->host_cb)
961       || (GNUNET_NO == pmsg->is_host && NULL == app->guest_cb))
962     return;
963
964   struct GNUNET_HashCode ego_pub_hash;
965   GNUNET_CRYPTO_hash (&pmsg->ego_pub_key, sizeof (pmsg->ego_pub_key),
966                       &ego_pub_hash);
967   struct GNUNET_SOCIAL_Ego *
968     ego = GNUNET_CONTAINER_multihashmap_get (app->egos, &ego_pub_hash);
969   if (NULL == ego)
970   {
971     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failure to obtain ego %s.\n",
972                 GNUNET_h2s (&ego_pub_hash));
973     GNUNET_break (0);
974     return;
975   }
976
977   if (GNUNET_YES == pmsg->is_host)
978   {
979     if (NULL != app->host_cb) {
980       struct GNUNET_SOCIAL_HostConnection *hconn = GNUNET_malloc (sizeof (*hconn));
981       hconn->app = app;
982       hconn->plc_msg = *pmsg;
983       app->host_cb (app->cb_cls, hconn, ego, &pmsg->place_pub_key, pmsg->place_state);
984       GNUNET_free (hconn);
985     }
986   }
987   else if (NULL != app->guest_cb)
988   {
989     struct GNUNET_SOCIAL_GuestConnection *gconn = GNUNET_malloc (sizeof (*gconn));
990     gconn->app = app;
991     gconn->plc_msg = *pmsg;
992     app->guest_cb (app->cb_cls, gconn, ego, &pmsg->place_pub_key, pmsg->place_state);
993     GNUNET_free (gconn);
994   }
995 }
996
997
998 static void
999 handle_app_place_end (void *cls,
1000                       const struct GNUNET_MessageHeader *msg)
1001 {
1002   struct GNUNET_SOCIAL_App *app = cls;
1003
1004   if (NULL != app->connected_cb)
1005     app->connected_cb (app->cb_cls);
1006 }
1007
1008
1009 /*** CLEANUP / DISCONNECT ***/
1010
1011
1012 static void
1013 host_cleanup (struct GNUNET_SOCIAL_Host *hst)
1014 {
1015   if (NULL != hst->slicer)
1016   {
1017     GNUNET_PSYC_slicer_destroy (hst->slicer);
1018     hst->slicer = NULL;
1019   }
1020   GNUNET_free (hst);
1021 }
1022
1023
1024 static void
1025 guest_cleanup (struct GNUNET_SOCIAL_Guest *gst)
1026 {
1027   GNUNET_free (gst);
1028 }
1029
1030
1031 static void
1032 place_cleanup (struct GNUNET_SOCIAL_Place *plc)
1033 {
1034   struct GNUNET_HashCode place_pub_hash;
1035   GNUNET_CRYPTO_hash (&plc->pub_key, sizeof (plc->pub_key), &place_pub_hash);
1036   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1037               "%s place cleanup: %s\n",
1038               GNUNET_YES == plc->is_host ? "host" : "guest",
1039               GNUNET_h2s (&place_pub_hash));
1040
1041   if (NULL != plc->tmit)
1042   {
1043     GNUNET_PSYC_transmit_destroy (plc->tmit);
1044     plc->tmit = NULL;
1045   }
1046   if (NULL != plc->connect_env)
1047   {
1048     GNUNET_MQ_discard (plc->connect_env);
1049     plc->connect_env = NULL;
1050   }
1051   if (NULL != plc->mq)
1052   {
1053     GNUNET_MQ_destroy (plc->mq);
1054     plc->mq = NULL;
1055   }
1056   if (NULL != plc->disconnect_cb)
1057   {
1058     plc->disconnect_cb (plc->disconnect_cls);
1059     plc->disconnect_cb = NULL;
1060   }
1061
1062   (GNUNET_YES == plc->is_host)
1063     ? host_cleanup ((struct GNUNET_SOCIAL_Host *) plc)
1064     : guest_cleanup ((struct GNUNET_SOCIAL_Guest *) plc);
1065 }
1066
1067
1068 void
1069 place_disconnect (struct GNUNET_SOCIAL_Place *plc,
1070                   GNUNET_ContinuationCallback cb,
1071                   void *cls)
1072 {
1073   plc->disconnect_cb = cb;
1074   plc->disconnect_cls = cls;
1075
1076   if (NULL != plc->mq)
1077   {
1078     struct GNUNET_MQ_Envelope *env = GNUNET_MQ_get_last_envelope (plc->mq);
1079     if (NULL != env)
1080     {
1081       GNUNET_MQ_notify_sent (env, (GNUNET_MQ_NotifyCallback) place_cleanup, plc);
1082     }
1083     else
1084     {
1085       place_cleanup (plc);
1086     }
1087   }
1088   else
1089   {
1090     place_cleanup (plc);
1091   }
1092 }
1093
1094
1095 void
1096 place_leave (struct GNUNET_SOCIAL_Place *plc)
1097 {
1098   struct GNUNET_MessageHeader *msg;
1099   struct GNUNET_MQ_Envelope *
1100     env = GNUNET_MQ_msg (msg, GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE);
1101
1102   GNUNET_MQ_send (plc->mq, env);
1103 }
1104
1105
1106 /*** HOST ***/
1107
1108
1109 static void
1110 host_connect (struct GNUNET_SOCIAL_Host *hst);
1111
1112
1113 static void
1114 host_reconnect (void *cls)
1115 {
1116   host_connect (cls);
1117 }
1118
1119
1120 /**
1121  * Host client disconnected from service.
1122  *
1123  * Reconnect after backoff period.
1124  */
1125 static void
1126 host_disconnected (void *cls, enum GNUNET_MQ_Error error)
1127 {
1128   struct GNUNET_SOCIAL_Host *hst = cls;
1129   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1130
1131   LOG (GNUNET_ERROR_TYPE_DEBUG,
1132        "Host client disconnected (%d), re-connecting\n",
1133        (int) error);
1134   if (NULL != plc->tmit)
1135   {
1136     GNUNET_PSYC_transmit_destroy (plc->tmit);
1137     plc->tmit = NULL;
1138   }
1139   if (NULL != plc->mq)
1140   {
1141     GNUNET_MQ_destroy (plc->mq);
1142     plc->mq = NULL;
1143   }
1144
1145   plc->reconnect_task = GNUNET_SCHEDULER_add_delayed (plc->reconnect_delay,
1146                                                       host_reconnect,
1147                                                       hst);
1148   plc->reconnect_delay = GNUNET_TIME_STD_BACKOFF (plc->reconnect_delay);
1149 }
1150
1151
1152 static void
1153 host_connect (struct GNUNET_SOCIAL_Host *hst)
1154 {
1155   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1156
1157   struct GNUNET_MQ_MessageHandler handlers[] = {
1158     GNUNET_MQ_hd_fixed_size (host_enter_ack,
1159                              GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER_ACK,
1160                              struct HostEnterAck,
1161                              hst),
1162     GNUNET_MQ_hd_var_size (host_enter_request,
1163                            GNUNET_MESSAGE_TYPE_PSYC_JOIN_REQUEST,
1164                            struct GNUNET_PSYC_JoinRequestMessage,
1165                            hst),
1166     GNUNET_MQ_hd_var_size (host_message,
1167                            GNUNET_MESSAGE_TYPE_PSYC_MESSAGE,
1168                            struct GNUNET_PSYC_MessageHeader,
1169                            hst),
1170     GNUNET_MQ_hd_fixed_size (place_message_ack,
1171                              GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK,
1172                              struct GNUNET_MessageHeader,
1173                              plc),
1174     GNUNET_MQ_hd_var_size (place_history_result,
1175                            GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT,
1176                            struct GNUNET_OperationResultMessage,
1177                            plc),
1178     GNUNET_MQ_hd_var_size (place_state_result,
1179                            GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT,
1180                            struct GNUNET_OperationResultMessage,
1181                            plc),
1182     GNUNET_MQ_hd_var_size (place_result,
1183                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
1184                            struct GNUNET_OperationResultMessage,
1185                            plc),
1186     GNUNET_MQ_handler_end ()
1187   };
1188
1189   plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social",
1190                                    handlers, host_disconnected, hst);
1191   GNUNET_assert (NULL != plc->mq);
1192   plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
1193
1194   GNUNET_MQ_send_copy (plc->mq, plc->connect_env);
1195 }
1196
1197
1198 /**
1199  * Enter a place as host.
1200  *
1201  * A place is created upon first entering, and it is active until permanently
1202  * left using GNUNET_SOCIAL_host_leave().
1203  *
1204  * @param app
1205  *        Application handle.
1206  * @param ego
1207  *        Identity of the host.
1208  * @param policy
1209  *        Policy specifying entry and history restrictions for the place.
1210  * @param slicer
1211  *        Slicer to handle incoming messages.
1212  * @param enter_cb
1213  *        Function called when the place is entered and ready to use.
1214  * @param answer_door_cb
1215  *        Function to handle new nyms that want to enter.
1216  * @param farewell_cb
1217  *        Function to handle departing nyms.
1218  * @param cls
1219  *        Closure for the callbacks.
1220  *
1221  * @return Handle for the host. This handle contains the pubkey.
1222  */
1223 struct GNUNET_SOCIAL_Host *
1224 GNUNET_SOCIAL_host_enter (const struct GNUNET_SOCIAL_App *app,
1225                           const struct GNUNET_SOCIAL_Ego *ego,
1226                           enum GNUNET_PSYC_Policy policy,
1227                           struct GNUNET_PSYC_Slicer *slicer,
1228                           GNUNET_SOCIAL_HostEnterCallback enter_cb,
1229                           GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb,
1230                           GNUNET_SOCIAL_FarewellCallback farewell_cb,
1231                           void *cls)
1232 {
1233   struct GNUNET_SOCIAL_Host *hst = GNUNET_malloc (sizeof (*hst));
1234   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1235
1236   plc->cfg = app->cfg;
1237   plc->is_host = GNUNET_YES;
1238   plc->slicer = slicer;
1239
1240   hst->enter_cb = enter_cb;
1241   hst->answer_door_cb = answer_door_cb;
1242   hst->farewell_cb = farewell_cb;
1243   hst->cb_cls = cls;
1244
1245   plc->op = GNUNET_OP_create ();
1246
1247   hst->slicer = GNUNET_PSYC_slicer_create ();
1248   GNUNET_PSYC_slicer_method_add (hst->slicer, "_notice_place_leave", NULL,
1249                                  host_recv_notice_place_leave_method,
1250                                  host_recv_notice_place_leave_modifier,
1251                                  NULL, host_recv_notice_place_leave_eom, hst);
1252
1253   uint16_t app_id_size = strlen (app->id) + 1;
1254   struct HostEnterRequest *hreq;
1255   plc->connect_env = GNUNET_MQ_msg_extra (hreq, app_id_size,
1256                                           GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER);
1257   hreq->policy = policy;
1258   hreq->ego_pub_key = ego->pub_key;
1259   GNUNET_memcpy (&hreq[1], app->id, app_id_size);
1260
1261   host_connect (hst);
1262   return hst;
1263 }
1264
1265
1266 /**
1267  * Reconnect to an already entered place as host.
1268  *
1269  * @param hconn
1270  *        Host connection handle.
1271  *        @see GNUNET_SOCIAL_app_connect() & GNUNET_SOCIAL_AppHostPlaceCallback()
1272  * @param slicer
1273  *        Slicer to handle incoming messages.
1274  * @param enter_cb
1275  *        Function called when the place is entered and ready to use.
1276  * @param answer_door_cb
1277  *        Function to handle new nyms that want to enter.
1278  * @param farewell_cb
1279  *        Function to handle departing nyms.
1280  * @param cls
1281  *        Closure for the callbacks.
1282  *
1283  * @return Handle for the host.
1284  */
1285  struct GNUNET_SOCIAL_Host *
1286 GNUNET_SOCIAL_host_enter_reconnect (struct GNUNET_SOCIAL_HostConnection *hconn,
1287                                     struct GNUNET_PSYC_Slicer *slicer,
1288                                     GNUNET_SOCIAL_HostEnterCallback enter_cb,
1289                                     GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb,
1290                                     GNUNET_SOCIAL_FarewellCallback farewell_cb,
1291                                     void *cls)
1292 {
1293   struct GNUNET_SOCIAL_Host *hst = GNUNET_malloc (sizeof (*hst));
1294   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1295
1296   hst->enter_cb = enter_cb;
1297   hst->answer_door_cb = answer_door_cb;
1298   hst->farewell_cb = farewell_cb;
1299   hst->cb_cls = cls;
1300
1301   plc->cfg = hconn->app->cfg;
1302   plc->is_host = GNUNET_YES;
1303   plc->slicer = slicer;
1304   plc->pub_key = hconn->plc_msg.place_pub_key;
1305   plc->ego_pub_key = hconn->plc_msg.ego_pub_key;
1306
1307   plc->op = GNUNET_OP_create ();
1308
1309   hst->slicer = GNUNET_PSYC_slicer_create ();
1310   GNUNET_PSYC_slicer_method_add (hst->slicer, "_notice_place_leave", NULL,
1311                                  host_recv_notice_place_leave_method,
1312                                  host_recv_notice_place_leave_modifier,
1313                                  NULL, host_recv_notice_place_leave_eom, hst);
1314
1315   size_t app_id_size = strlen (hconn->app->id) + 1;
1316   struct HostEnterRequest *hreq;
1317   plc->connect_env = GNUNET_MQ_msg_extra (hreq, app_id_size,
1318                                           GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER);
1319   hreq->place_pub_key = hconn->plc_msg.place_pub_key;
1320   hreq->ego_pub_key = hconn->plc_msg.ego_pub_key;
1321   GNUNET_memcpy (&hreq[1], hconn->app->id, app_id_size);
1322
1323   host_connect (hst);
1324   return hst;
1325 }
1326
1327
1328 /**
1329  * Decision whether to admit @a nym into the place or refuse entry.
1330  *
1331  * @param hst
1332  *        Host of the place.
1333  * @param nym
1334  *        Handle for the entity that wanted to enter.
1335  * @param is_admitted
1336  *        #GNUNET_YES    if @a nym is admitted,
1337  *        #GNUNET_NO     if @a nym is refused entry,
1338  *        #GNUNET_SYSERR if we cannot answer the request.
1339  * @param method_name
1340  *        Method name for the rejection message.
1341  * @param env
1342  *        Environment containing variables for the message, or NULL.
1343  * @param data
1344  *        Data for the rejection message to send back.
1345  * @param data_size
1346  *        Number of bytes in @a data for method.
1347  * @return #GNUNET_OK on success,
1348  *         #GNUNET_SYSERR if the message is too large.
1349  */
1350 int
1351 GNUNET_SOCIAL_host_entry_decision (struct GNUNET_SOCIAL_Host *hst,
1352                                    struct GNUNET_SOCIAL_Nym *nym,
1353                                    int is_admitted,
1354                                    const struct GNUNET_PSYC_Message *entry_resp)
1355 {
1356   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1357   struct GNUNET_PSYC_JoinDecisionMessage *dcsn;
1358   uint16_t entry_resp_size
1359     = (NULL != entry_resp) ? ntohs (entry_resp->header.size) : 0;
1360
1361   if (GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD < sizeof (*dcsn) + entry_resp_size)
1362     return GNUNET_SYSERR;
1363
1364   struct GNUNET_MQ_Envelope *
1365     env = GNUNET_MQ_msg_extra (dcsn, entry_resp_size,
1366                                GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION);
1367   dcsn->is_admitted = htonl (is_admitted);
1368   dcsn->slave_pub_key = nym->pub_key;
1369
1370   if (0 < entry_resp_size)
1371     GNUNET_memcpy (&dcsn[1], entry_resp, entry_resp_size);
1372
1373   GNUNET_MQ_send (plc->mq, env);
1374   return GNUNET_OK;
1375 }
1376
1377
1378 /**
1379  * Throw @a nym out of the place.
1380  *
1381  * The @a nym reference will remain valid until the
1382  * #GNUNET_SOCIAL_FarewellCallback is invoked,
1383  * which should be very soon after this call.
1384  *
1385  * @param host
1386  *        Host of the place.
1387  * @param nym
1388  *        Handle for the entity to be ejected.
1389  * @param env
1390  *        Environment for the message or NULL.
1391  */
1392 void
1393 GNUNET_SOCIAL_host_eject (struct GNUNET_SOCIAL_Host *hst,
1394                           const struct GNUNET_SOCIAL_Nym *nym,
1395                           struct GNUNET_PSYC_Environment *e)
1396 {
1397   struct GNUNET_PSYC_Environment *env = e;
1398   if (NULL == env)
1399     env = GNUNET_PSYC_env_create ();
1400   GNUNET_PSYC_env_add (env, GNUNET_PSYC_OP_SET,
1401                        "_nym", &nym->pub_key, sizeof (nym->pub_key));
1402   GNUNET_SOCIAL_host_announce (hst, "_notice_place_leave", env, NULL, NULL,
1403                                GNUNET_SOCIAL_ANNOUNCE_NONE);
1404   if (NULL == e)
1405     GNUNET_PSYC_env_destroy (env);
1406 }
1407
1408
1409 /**
1410  * Get the public key of @a ego.
1411  *
1412  * @param ego
1413  *        Ego.
1414  *
1415  * @return Public key of ego.
1416  */
1417 const struct GNUNET_CRYPTO_EcdsaPublicKey *
1418 GNUNET_SOCIAL_ego_get_pub_key (const struct GNUNET_SOCIAL_Ego *ego)
1419 {
1420   return &ego->pub_key;
1421 }
1422
1423
1424 /**
1425  * Get the hash of the public key of @a ego.
1426  *
1427  * @param ego
1428  *        Ego.
1429  *
1430  * @return Hash of the public key of @a ego.
1431  */
1432 const struct GNUNET_HashCode *
1433 GNUNET_SOCIAL_ego_get_pub_key_hash (const struct GNUNET_SOCIAL_Ego *ego)
1434 {
1435   return &ego->pub_key_hash;
1436 }
1437
1438
1439 /**
1440  * Get the name of @a ego.
1441  *
1442  * @param ego
1443  *        Ego.
1444  *
1445  * @return Public key of @a ego.
1446  */
1447 const char *
1448 GNUNET_SOCIAL_ego_get_name (const struct GNUNET_SOCIAL_Ego *ego)
1449 {
1450   return ego->name;
1451 }
1452
1453
1454 /**
1455  * Get the public key of @a nym.
1456  *
1457  * Suitable, for example, to be used with GNUNET_SOCIAL_zone_add_nym().
1458  *
1459  * @param nym
1460  *        Pseudonym.
1461  *
1462  * @return Public key of @a nym.
1463  */
1464 const struct GNUNET_CRYPTO_EcdsaPublicKey *
1465 GNUNET_SOCIAL_nym_get_pub_key (const struct GNUNET_SOCIAL_Nym *nym)
1466 {
1467   return &nym->pub_key;
1468 }
1469
1470
1471 /**
1472  * Get the hash of the public key of @a nym.
1473  *
1474  * @param nym
1475  *        Pseudonym.
1476  *
1477  * @return Hash of the public key of @a nym.
1478  */
1479 const struct GNUNET_HashCode *
1480 GNUNET_SOCIAL_nym_get_pub_key_hash (const struct GNUNET_SOCIAL_Nym *nym)
1481 {
1482   return &nym->pub_key_hash;
1483 }
1484
1485
1486 /**
1487  * Send a message to all nyms that are present in the place.
1488  *
1489  * This function is restricted to the host.  Nyms can only send requests
1490  * to the host who can decide to relay it to everyone in the place.
1491  *
1492  * @param host  Host of the place.
1493  * @param method_name Method to use for the announcement.
1494  * @param env  Environment containing variables for the message and operations
1495  *          on objects of the place.  Can be NULL.
1496  * @param notify Function to call to get the payload of the announcement.
1497  * @param notify_cls Closure for @a notify.
1498  * @param flags Flags for this announcement.
1499  *
1500  * @return NULL on error (announcement already in progress?).
1501  */
1502 struct GNUNET_SOCIAL_Announcement *
1503 GNUNET_SOCIAL_host_announce (struct GNUNET_SOCIAL_Host *hst,
1504                              const char *method_name,
1505                              const struct GNUNET_PSYC_Environment *env,
1506                              GNUNET_PSYC_TransmitNotifyData notify_data,
1507                              void *notify_data_cls,
1508                              enum GNUNET_SOCIAL_AnnounceFlags flags)
1509 {
1510   if (GNUNET_OK ==
1511       GNUNET_PSYC_transmit_message (hst->plc.tmit, method_name, env,
1512                                     NULL, notify_data, notify_data_cls, flags))
1513     return (struct GNUNET_SOCIAL_Announcement *) hst->plc.tmit;
1514   else
1515     return NULL;
1516 }
1517
1518
1519 /**
1520  * Resume transmitting announcement.
1521  *
1522  * @param a
1523  *        The announcement to resume.
1524  */
1525 void
1526 GNUNET_SOCIAL_host_announce_resume (struct GNUNET_SOCIAL_Announcement *a)
1527 {
1528   GNUNET_PSYC_transmit_resume ((struct GNUNET_PSYC_TransmitHandle *) a);
1529 }
1530
1531
1532 /**
1533  * Cancel announcement.
1534  *
1535  * @param a
1536  *        The announcement to cancel.
1537  */
1538 void
1539 GNUNET_SOCIAL_host_announce_cancel (struct GNUNET_SOCIAL_Announcement *a)
1540 {
1541   GNUNET_PSYC_transmit_cancel ((struct GNUNET_PSYC_TransmitHandle *) a);
1542 }
1543
1544
1545 /**
1546  * Obtain handle for a hosted place.
1547  *
1548  * The returned handle can be used to access the place API.
1549  *
1550  * @param host  Handle for the host.
1551  *
1552  * @return Handle for the hosted place, valid as long as @a host is valid.
1553  */
1554 struct GNUNET_SOCIAL_Place *
1555 GNUNET_SOCIAL_host_get_place (struct GNUNET_SOCIAL_Host *hst)
1556 {
1557   return &hst->plc;
1558 }
1559
1560
1561 /**
1562  * Disconnect from a home.
1563  *
1564  * Invalidates host handle.
1565  *
1566  * @param hst
1567  *        The host to disconnect.
1568  */
1569 void
1570 GNUNET_SOCIAL_host_disconnect (struct GNUNET_SOCIAL_Host *hst,
1571                                GNUNET_ContinuationCallback disconnect_cb,
1572                                void *cls)
1573 {
1574   place_disconnect (&hst->plc, disconnect_cb, cls);
1575 }
1576
1577
1578 /**
1579  * Stop hosting the home.
1580  *
1581  * Sends a _notice_place_closing announcement to the home.
1582  * Invalidates host handle.
1583  *
1584  * @param hst
1585  *        The host leaving.
1586  * @param env
1587  *        Environment for the message or NULL.
1588  *        _nym is set to @e nym regardless whether an @e env is provided.
1589  * @param disconnect_cb
1590  *        Function called after the host left the place
1591  *        and disconnected from the social service.
1592  * @param cls
1593  *        Closure for @a disconnect_cb.
1594  */
1595 void
1596 GNUNET_SOCIAL_host_leave (struct GNUNET_SOCIAL_Host *hst,
1597                           const struct GNUNET_PSYC_Environment *env,
1598                           GNUNET_ContinuationCallback disconnect_cb,
1599                           void *cls)
1600 {
1601   GNUNET_SOCIAL_host_announce (hst, "_notice_place_closing", env, NULL, NULL,
1602                                GNUNET_SOCIAL_ANNOUNCE_NONE);
1603   place_leave (&hst->plc);
1604   GNUNET_SOCIAL_host_disconnect (hst, disconnect_cb, cls);
1605 }
1606
1607
1608 /*** GUEST ***/
1609
1610
1611 static void
1612 guest_connect (struct GNUNET_SOCIAL_Guest *gst);
1613
1614
1615 static void
1616 guest_reconnect (void *cls)
1617 {
1618   guest_connect (cls);
1619 }
1620
1621
1622 /**
1623  * Guest client disconnected from service.
1624  *
1625  * Reconnect after backoff period.
1626  */
1627 static void
1628 guest_disconnected (void *cls, enum GNUNET_MQ_Error error)
1629 {
1630   struct GNUNET_SOCIAL_Guest *gst = cls;
1631   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1632
1633   LOG (GNUNET_ERROR_TYPE_DEBUG,
1634        "Guest client disconnected (%d), re-connecting\n",
1635        (int) error);
1636   if (NULL != plc->tmit)
1637   {
1638     GNUNET_PSYC_transmit_destroy (plc->tmit);
1639     plc->tmit = NULL;
1640   }
1641   if (NULL != plc->mq)
1642   {
1643     GNUNET_MQ_destroy (plc->mq);
1644     plc->mq = NULL;
1645   }
1646
1647   plc->reconnect_task = GNUNET_SCHEDULER_add_delayed (plc->reconnect_delay,
1648                                                       guest_reconnect,
1649                                                       gst);
1650   plc->reconnect_delay = GNUNET_TIME_STD_BACKOFF (plc->reconnect_delay);
1651 }
1652
1653
1654 static void
1655 guest_connect (struct GNUNET_SOCIAL_Guest *gst)
1656 {
1657   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1658
1659   struct GNUNET_MQ_MessageHandler handlers[] = {
1660     GNUNET_MQ_hd_fixed_size (guest_enter_ack,
1661                              GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK,
1662                              struct GNUNET_PSYC_CountersResultMessage,
1663                              gst),
1664     GNUNET_MQ_hd_var_size (guest_enter_decision,
1665                            GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION,
1666                            struct GNUNET_PSYC_JoinDecisionMessage,
1667                            gst),
1668     GNUNET_MQ_hd_var_size (place_message,
1669                            GNUNET_MESSAGE_TYPE_PSYC_MESSAGE,
1670                            struct GNUNET_PSYC_MessageHeader,
1671                            plc),
1672     GNUNET_MQ_hd_fixed_size (place_message_ack,
1673                              GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK,
1674                              struct GNUNET_MessageHeader,
1675                              plc),
1676     GNUNET_MQ_hd_var_size (place_history_result,
1677                            GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT,
1678                            struct GNUNET_OperationResultMessage,
1679                            plc),
1680     GNUNET_MQ_hd_var_size (place_state_result,
1681                            GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT,
1682                            struct GNUNET_OperationResultMessage,
1683                            plc),
1684     GNUNET_MQ_hd_var_size (place_result,
1685                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
1686                            struct GNUNET_OperationResultMessage,
1687                            plc),
1688     GNUNET_MQ_handler_end ()
1689   };
1690
1691   plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social",
1692                                    handlers, guest_disconnected, gst);
1693   GNUNET_assert (NULL != plc->mq);
1694   plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
1695
1696   GNUNET_MQ_send_copy (plc->mq, plc->connect_env);
1697 }
1698
1699
1700 static struct GNUNET_MQ_Envelope *
1701 guest_enter_request_create (const char *app_id,
1702                             const struct GNUNET_CRYPTO_EcdsaPublicKey *ego_pub_key,
1703                             const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
1704                             const struct GNUNET_PeerIdentity *origin,
1705                             size_t relay_count,
1706                             const struct GNUNET_PeerIdentity *relays,
1707                             const struct GNUNET_PSYC_Message *join_msg)
1708 {
1709   uint16_t app_id_size = strlen (app_id) + 1;
1710   uint16_t join_msg_size = ntohs (join_msg->header.size);
1711   uint16_t relay_size = relay_count * sizeof (*relays);
1712
1713   struct GuestEnterRequest *greq;
1714   struct GNUNET_MQ_Envelope *
1715     env = GNUNET_MQ_msg_extra (greq, app_id_size + relay_size + join_msg_size,
1716                                GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1717   greq->place_pub_key = *place_pub_key;
1718   greq->ego_pub_key = *ego_pub_key;
1719   greq->origin = *origin;
1720   greq->relay_count = htonl (relay_count);
1721
1722   char *p = (char *) &greq[1];
1723   GNUNET_memcpy (p, app_id, app_id_size);
1724   p += app_id_size;
1725
1726   if (0 < relay_size)
1727   {
1728     GNUNET_memcpy (p, relays, relay_size);
1729     p += relay_size;
1730   }
1731
1732   GNUNET_memcpy (p, join_msg, join_msg_size);
1733   return env;
1734 }
1735
1736
1737 /**
1738  * Request entry to a place as a guest.
1739  *
1740  * @param app
1741  *        Application handle.
1742  * @param ego
1743  *        Identity of the guest.
1744  * @param place_pub_key
1745  *        Public key of the place to enter.
1746  * @param flags
1747  *        Flags for the entry.
1748  * @param origin
1749  *        Peer identity of the origin of the underlying multicast group.
1750  * @param relay_count
1751  *        Number of elements in the @a relays array.
1752  * @param relays
1753  *        Relays for the underlying multicast group.
1754  * @param method_name
1755  *        Method name for the message.
1756  * @param env
1757  *        Environment containing variables for the message, or NULL.
1758  * @param data
1759  *        Payload for the message to give to the enter callback.
1760  * @param data_size
1761  *        Number of bytes in @a data.
1762  * @param slicer
1763  *        Slicer to use for processing incoming requests from guests.
1764  *
1765  * @return NULL on errors, otherwise handle for the guest.
1766  */
1767 struct GNUNET_SOCIAL_Guest *
1768 GNUNET_SOCIAL_guest_enter (const struct GNUNET_SOCIAL_App *app,
1769                            const struct GNUNET_SOCIAL_Ego *ego,
1770                            const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
1771                            enum GNUNET_PSYC_SlaveJoinFlags flags,
1772                            const struct GNUNET_PeerIdentity *origin,
1773                            uint32_t relay_count,
1774                            const struct GNUNET_PeerIdentity *relays,
1775                            const struct GNUNET_PSYC_Message *entry_msg,
1776                            struct GNUNET_PSYC_Slicer *slicer,
1777                            GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1778                            GNUNET_SOCIAL_EntryDecisionCallback entry_dcsn_cb,
1779                            void *cls)
1780 {
1781   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1782   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1783
1784   plc->ego_pub_key = ego->pub_key;
1785   plc->pub_key = *place_pub_key;
1786   plc->cfg = app->cfg;
1787   plc->is_host = GNUNET_NO;
1788   plc->slicer = slicer;
1789
1790   plc->op = GNUNET_OP_create ();
1791
1792   plc->connect_env
1793     = guest_enter_request_create (app->id, &ego->pub_key, &plc->pub_key,
1794                                   origin, relay_count, relays, entry_msg);
1795
1796   gst->enter_cb = local_enter_cb;
1797   gst->entry_dcsn_cb = entry_dcsn_cb;
1798   gst->cb_cls = cls;
1799
1800   guest_connect (gst);
1801   return gst;
1802 }
1803
1804
1805 /**
1806  * Request entry to a place by name as a guest.
1807  *
1808  * @param app
1809  *        Application handle.
1810  * @param ego
1811  *        Identity of the guest.
1812  * @param gns_name
1813  *        GNS name of the place to enter.  Either in the form of
1814  *        'room.friend.gnu', or 'NYMPUBKEY.zkey'.  This latter case refers to
1815  *        the 'PLACE' record of the empty label ("+") in the GNS zone with the
1816  *        nym's public key 'NYMPUBKEY', and can be used to request entry to a
1817  *        pseudonym's place directly.
1818  * @param password
1819  *        Password to decrypt the record, or NULL for cleartext records.
1820  * @param join_msg
1821  *        Entry request message or NULL.
1822  * @param slicer
1823  *        Slicer to use for processing incoming requests from guests.
1824  * @param local_enter_cb
1825  *        Called upon connection established to the social service.
1826  * @param entry_decision_cb
1827  *        Called upon receiving entry decision.
1828  *
1829  * @return NULL on errors, otherwise handle for the guest.
1830  */
1831 struct GNUNET_SOCIAL_Guest *
1832 GNUNET_SOCIAL_guest_enter_by_name (const struct GNUNET_SOCIAL_App *app,
1833                                    const struct GNUNET_SOCIAL_Ego *ego,
1834                                    const char *gns_name,
1835                                    const char *password,
1836                                    const struct GNUNET_PSYC_Message *join_msg,
1837                                    struct GNUNET_PSYC_Slicer *slicer,
1838                                    GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1839                                    GNUNET_SOCIAL_EntryDecisionCallback entry_decision_cb,
1840                                    void *cls)
1841 {
1842   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1843   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1844
1845   if (NULL == password)
1846     password = "";
1847
1848   uint16_t app_id_size = strlen (app->id) + 1;
1849   uint16_t gns_name_size = strlen (gns_name) + 1;
1850   uint16_t password_size = strlen (password) + 1;
1851
1852   uint16_t join_msg_size = 0;
1853   if (NULL != join_msg)
1854     join_msg_size = ntohs (join_msg->header.size);
1855
1856   struct GuestEnterByNameRequest *greq;
1857   plc->connect_env
1858     = GNUNET_MQ_msg_extra (greq, app_id_size + gns_name_size
1859                            + password_size + join_msg_size,
1860                            GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_BY_NAME);
1861
1862   greq->ego_pub_key = ego->pub_key;
1863
1864   char *p = (char *) &greq[1];
1865   GNUNET_memcpy (p, app->id, app_id_size);
1866   p += app_id_size;
1867   GNUNET_memcpy (p, gns_name, gns_name_size);
1868   p += gns_name_size;
1869   GNUNET_memcpy (p, password, password_size);
1870   p += password_size;
1871   if (NULL != join_msg)
1872     GNUNET_memcpy (p, join_msg, join_msg_size);
1873
1874   plc->ego_pub_key = ego->pub_key;
1875   plc->cfg = app->cfg;
1876   plc->is_host = GNUNET_NO;
1877   plc->slicer = slicer;
1878
1879   plc->op = GNUNET_OP_create ();
1880
1881   gst->enter_cb = local_enter_cb;
1882   gst->entry_dcsn_cb = entry_decision_cb;
1883   gst->cb_cls = cls;
1884
1885   guest_connect (gst);
1886   return gst;
1887 }
1888
1889
1890 /**
1891  * Reconnect to an already entered place as guest.
1892  *
1893  * @param gconn
1894  *        Guest connection handle.
1895  *        @see GNUNET_SOCIAL_app_connect() & GNUNET_SOCIAL_AppGuestPlaceCallback()
1896  * @param flags
1897  *        Flags for the entry.
1898  * @param slicer
1899  *        Slicer to use for processing incoming requests from guests.
1900  * @param local_enter_cb
1901  *        Called upon connection established to the social service.
1902  * @param entry_decision_cb
1903  *        Called upon receiving entry decision.
1904  *
1905  * @return NULL on errors, otherwise handle for the guest.
1906  */
1907 struct GNUNET_SOCIAL_Guest *
1908 GNUNET_SOCIAL_guest_enter_reconnect (struct GNUNET_SOCIAL_GuestConnection *gconn,
1909                                      enum GNUNET_PSYC_SlaveJoinFlags flags,
1910                                      struct GNUNET_PSYC_Slicer *slicer,
1911                                      GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1912                                      void *cls)
1913 {
1914   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1915   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1916
1917   uint16_t app_id_size = strlen (gconn->app->id) + 1;
1918   struct GuestEnterRequest *greq;
1919   plc->connect_env
1920     = GNUNET_MQ_msg_extra (greq, app_id_size,
1921                            GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1922   greq->ego_pub_key = gconn->plc_msg.ego_pub_key;
1923   greq->place_pub_key = gconn->plc_msg.place_pub_key;
1924   greq->flags = htonl (flags);
1925
1926   GNUNET_memcpy (&greq[1], gconn->app->id, app_id_size);
1927
1928   plc->cfg = gconn->app->cfg;
1929   plc->is_host = GNUNET_NO;
1930   plc->slicer = slicer;
1931   plc->pub_key = gconn->plc_msg.place_pub_key;
1932   plc->ego_pub_key = gconn->plc_msg.ego_pub_key;
1933
1934   plc->op = GNUNET_OP_create ();
1935
1936   gst->enter_cb = local_enter_cb;
1937   gst->cb_cls = cls;
1938
1939   guest_connect (gst);
1940   return gst;
1941 }
1942
1943
1944 /**
1945  * Talk to the host of the place.
1946  *
1947  * @param place
1948  *        Place where we want to talk to the host.
1949  * @param method_name
1950  *        Method to invoke on the host.
1951  * @param env
1952  *        Environment containing variables for the message, or NULL.
1953  * @param notify_data
1954  *        Function to use to get the payload for the method.
1955  * @param notify_data_cls
1956  *        Closure for @a notify_data.
1957  * @param flags
1958  *        Flags for the message being sent.
1959  *
1960  * @return NULL if we are already trying to talk to the host,
1961  *         otherwise handle to cancel the request.
1962  */
1963 struct GNUNET_SOCIAL_TalkRequest *
1964 GNUNET_SOCIAL_guest_talk (struct GNUNET_SOCIAL_Guest *gst,
1965                           const char *method_name,
1966                           const struct GNUNET_PSYC_Environment *env,
1967                           GNUNET_PSYC_TransmitNotifyData notify_data,
1968                           void *notify_data_cls,
1969                           enum GNUNET_SOCIAL_TalkFlags flags)
1970 {
1971   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1972   GNUNET_assert (NULL != plc->tmit);
1973
1974   if (GNUNET_OK ==
1975       GNUNET_PSYC_transmit_message (plc->tmit, method_name, env,
1976                                     NULL, notify_data, notify_data_cls, flags))
1977     return (struct GNUNET_SOCIAL_TalkRequest *) plc->tmit;
1978   else
1979     return NULL;
1980 }
1981
1982
1983 /**
1984  * Resume talking to the host of the place.
1985  *
1986  * @param tr
1987  *        Talk request to resume.
1988  */
1989 void
1990 GNUNET_SOCIAL_guest_talk_resume (struct GNUNET_SOCIAL_TalkRequest *tr)
1991 {
1992   GNUNET_PSYC_transmit_resume ((struct GNUNET_PSYC_TransmitHandle *) tr);
1993 }
1994
1995
1996 /**
1997  * Cancel talking to the host of the place.
1998  *
1999  * @param tr
2000  *        Talk request to cancel.
2001  */
2002 void
2003 GNUNET_SOCIAL_guest_talk_cancel (struct GNUNET_SOCIAL_TalkRequest *tr)
2004 {
2005   GNUNET_PSYC_transmit_cancel ( (struct GNUNET_PSYC_TransmitHandle *) tr);
2006 }
2007
2008
2009 /**
2010  * Disconnect from a place.
2011  *
2012  * Invalidates guest handle.
2013  *
2014  * @param gst
2015  *        The guest to disconnect.
2016  */
2017 void
2018 GNUNET_SOCIAL_guest_disconnect (struct GNUNET_SOCIAL_Guest *gst,
2019                                 GNUNET_ContinuationCallback disconnect_cb,
2020                                 void *cls)
2021 {
2022   place_disconnect (&gst->plc, disconnect_cb, cls);
2023 }
2024
2025
2026 /**
2027  * Leave a place temporarily or permanently.
2028  *
2029  * Notifies the owner of the place about leaving, and destroys the place handle.
2030  *
2031  * @param place
2032  *        Place to leave.
2033  * @param keep_active
2034  *        Keep place active after last application disconnected.
2035  *        #GNUNET_YES or #GNUNET_NO
2036  * @param env
2037  *        Optional environment for the leave message if @a keep_active
2038  *        is #GNUNET_NO.  NULL if not needed.
2039  * @param leave_cb
2040  *        Called upon disconnecting from the social service.
2041  */
2042 void
2043 GNUNET_SOCIAL_guest_leave (struct GNUNET_SOCIAL_Guest *gst,
2044                            struct GNUNET_PSYC_Environment *env,
2045                            GNUNET_ContinuationCallback disconnect_cb,
2046                            void *cls)
2047 {
2048   GNUNET_SOCIAL_guest_talk (gst, "_notice_place_leave", env, NULL, NULL,
2049                             GNUNET_SOCIAL_TALK_NONE);
2050   place_leave (&gst->plc);
2051   GNUNET_SOCIAL_guest_disconnect (gst, disconnect_cb, cls);
2052 }
2053
2054
2055 /**
2056  * Obtain handle for a place entered as guest.
2057  *
2058  * The returned handle can be used to access the place API.
2059  *
2060  * @param guest  Handle for the guest.
2061  *
2062  * @return Handle for the place, valid as long as @a guest is valid.
2063  */
2064 struct GNUNET_SOCIAL_Place *
2065 GNUNET_SOCIAL_guest_get_place (struct GNUNET_SOCIAL_Guest *gst)
2066 {
2067   return &gst->plc;
2068 }
2069
2070
2071 /**
2072  * Obtain the public key of a place.
2073  *
2074  * @param plc
2075  *        Place.
2076  *
2077  * @return Public key of the place.
2078  */
2079 const struct GNUNET_CRYPTO_EddsaPublicKey *
2080 GNUNET_SOCIAL_place_get_pub_key (const struct GNUNET_SOCIAL_Place *plc)
2081 {
2082   return &plc->pub_key;
2083 }
2084
2085
2086 /**
2087  * Set message processing @a flags for a @a method_prefix.
2088  *
2089  * @param plc
2090  *        Place.
2091  * @param method_prefix
2092  *        Method prefix @a flags apply to.
2093  * @param flags
2094  *        The flags that apply to a matching @a method_prefix.
2095  */
2096 void
2097 GNUNET_SOCIAL_place_msg_proc_set (struct GNUNET_SOCIAL_Place *plc,
2098                                   const char *method_prefix,
2099                                   enum GNUNET_SOCIAL_MsgProcFlags flags)
2100 {
2101   GNUNET_assert (NULL != method_prefix);
2102   struct MsgProcRequest *mpreq;
2103   uint16_t method_size = strnlen (method_prefix,
2104                                   GNUNET_SERVER_MAX_MESSAGE_SIZE
2105                                   - sizeof (*mpreq)) + 1;
2106   GNUNET_assert ('\0' == method_prefix[method_size - 1]);
2107
2108   struct GNUNET_MQ_Envelope *
2109     env = GNUNET_MQ_msg_extra (mpreq, method_size,
2110                                GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_SET);
2111   mpreq->flags = htonl (flags);
2112   GNUNET_memcpy (&mpreq[1], method_prefix, method_size);
2113
2114   GNUNET_MQ_send (plc->mq, env);
2115 }
2116
2117
2118 /**
2119  * Clear all message processing flags previously set for this place.
2120  */
2121 void
2122 GNUNET_SOCIAL_place_msg_proc_clear (struct GNUNET_SOCIAL_Place *plc)
2123 {
2124   struct GNUNET_MessageHeader *req;
2125   struct GNUNET_MQ_Envelope *
2126     env = GNUNET_MQ_msg (req, GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_CLEAR);
2127
2128   GNUNET_MQ_send (plc->mq, env);
2129 }
2130
2131
2132 static struct GNUNET_SOCIAL_HistoryRequest *
2133 place_history_replay (struct GNUNET_SOCIAL_Place *plc,
2134                       uint64_t start_message_id,
2135                       uint64_t end_message_id,
2136                       uint64_t message_limit,
2137                       const char *method_prefix,
2138                       uint32_t flags,
2139                       struct GNUNET_PSYC_Slicer *slicer,
2140                       GNUNET_ResultCallback result_cb,
2141                       void *cls)
2142 {
2143   struct GNUNET_PSYC_HistoryRequestMessage *req;
2144   struct GNUNET_SOCIAL_HistoryRequest *hist = GNUNET_malloc (sizeof (*hist));
2145   hist->plc = plc;
2146   hist->slicer = slicer;
2147   hist->result_cb = result_cb;
2148   hist->cls = cls;
2149   hist->op_id = GNUNET_OP_add (plc->op, op_recv_history_result, hist, NULL);
2150
2151   GNUNET_assert (NULL != method_prefix);
2152   uint16_t method_size = strnlen (method_prefix,
2153                                   GNUNET_SERVER_MAX_MESSAGE_SIZE
2154                                   - sizeof (*req)) + 1;
2155   GNUNET_assert ('\0' == method_prefix[method_size - 1]);
2156
2157   struct GNUNET_MQ_Envelope *
2158     env = GNUNET_MQ_msg_extra (req, method_size,
2159                                GNUNET_MESSAGE_TYPE_PSYC_HISTORY_REPLAY);
2160   req->start_message_id = GNUNET_htonll (start_message_id);
2161   req->end_message_id = GNUNET_htonll (end_message_id);
2162   req->message_limit = GNUNET_htonll (message_limit);
2163   req->flags = htonl (flags);
2164   req->op_id = GNUNET_htonll (hist->op_id);
2165   GNUNET_memcpy (&req[1], method_prefix, method_size);
2166
2167   GNUNET_MQ_send (plc->mq, env);
2168   return hist;
2169 }
2170
2171
2172 /**
2173  * Learn about the history of a place.
2174  *
2175  * Messages are returned through the @a slicer function
2176  * and have the #GNUNET_PSYC_MESSAGE_HISTORIC flag set.
2177  *
2178  * @param place
2179  *        Place we want to learn more about.
2180  * @param start_message_id
2181  *        First historic message we are interested in.
2182  * @param end_message_id
2183  *        Last historic message we are interested in (inclusive).
2184  * @param method_prefix
2185  *        Only retrieve messages with this method prefix.
2186  * @param flags
2187  *        OR'ed GNUNET_PSYC_HistoryReplayFlags
2188  * @param slicer
2189  *        Slicer to use for retrieved messages.
2190  *        Can be the same as the slicer of the place.
2191  * @param result_cb
2192  *        Function called after all messages retrieved.
2193  *        NULL if not needed.
2194  * @param cls Closure for @a result_cb.
2195  */
2196 struct GNUNET_SOCIAL_HistoryRequest *
2197 GNUNET_SOCIAL_place_history_replay (struct GNUNET_SOCIAL_Place *plc,
2198                                     uint64_t start_message_id,
2199                                     uint64_t end_message_id,
2200                                     const char *method_prefix,
2201                                     uint32_t flags,
2202                                     struct GNUNET_PSYC_Slicer *slicer,
2203                                     GNUNET_ResultCallback result_cb,
2204                                     void *cls)
2205 {
2206   return place_history_replay (plc, start_message_id, end_message_id, 0,
2207                                method_prefix, flags, slicer, result_cb, cls);
2208 }
2209
2210
2211 /**
2212  * Learn about the history of a place.
2213  *
2214  * Sends messages through the slicer function of the place where
2215  * start_message_id <= message_id <= end_message_id.
2216  * The messages will have the #GNUNET_PSYC_MESSAGE_HISTORIC flag set.
2217  *
2218  * To get the latest message, use 0 for both the start and end message ID.
2219  *
2220  * @param place
2221  *        Place we want to learn more about.
2222  * @param message_limit
2223  *        Maximum number of historic messages we are interested in.
2224  * @param method_prefix
2225  *        Only retrieve messages with this method prefix.
2226  * @param flags
2227  *        OR'ed GNUNET_PSYC_HistoryReplayFlags
2228  * @param result_cb
2229  *        Function called after all messages retrieved.
2230  *        NULL if not needed.
2231  * @param cls Closure for @a result_cb.
2232  */
2233 struct GNUNET_SOCIAL_HistoryRequest *
2234 GNUNET_SOCIAL_place_history_replay_latest (struct GNUNET_SOCIAL_Place *plc,
2235                                            uint64_t message_limit,
2236                                            const char *method_prefix,
2237                                            uint32_t flags,
2238                                            struct GNUNET_PSYC_Slicer *slicer,
2239                                            GNUNET_ResultCallback result_cb,
2240                                            void *cls)
2241 {
2242   return place_history_replay (plc, 0, 0, message_limit, method_prefix, flags,
2243                                slicer, result_cb, cls);
2244 }
2245
2246
2247 /**
2248  * Cancel learning about the history of a place.
2249  *
2250  * @param hist
2251  *        History lesson to cancel.
2252  */
2253 void
2254 GNUNET_SOCIAL_place_history_replay_cancel (struct GNUNET_SOCIAL_HistoryRequest *hist)
2255 {
2256   GNUNET_OP_remove (hist->plc->op, hist->op_id);
2257   GNUNET_free (hist);
2258 }
2259
2260
2261 /**
2262  * Request matching state variables.
2263  */
2264 static struct GNUNET_SOCIAL_LookHandle *
2265 place_state_get (struct GNUNET_SOCIAL_Place *plc,
2266                  uint16_t type, const char *name,
2267                  GNUNET_PSYC_StateVarCallback var_cb,
2268                  GNUNET_ResultCallback result_cb, void *cls)
2269 {
2270   struct GNUNET_PSYC_StateRequestMessage *req;
2271   struct GNUNET_SOCIAL_LookHandle *look = GNUNET_malloc (sizeof (*look));
2272   look->plc = plc;
2273   look->var_cb = var_cb;
2274   look->result_cb = result_cb;
2275   look->cls = cls;
2276   look->op_id = GNUNET_OP_add (plc->op, &op_recv_state_result, look, NULL);
2277
2278   GNUNET_assert (NULL != name);
2279   size_t name_size = strnlen (name, GNUNET_SERVER_MAX_MESSAGE_SIZE
2280                               - sizeof (*req)) + 1;
2281   struct GNUNET_MQ_Envelope *
2282     env = GNUNET_MQ_msg_extra (req, name_size, type);
2283   req->op_id = GNUNET_htonll (look->op_id);
2284   GNUNET_memcpy (&req[1], name, name_size);
2285
2286   GNUNET_MQ_send (plc->mq, env);
2287   return look;
2288 }
2289
2290
2291 /**
2292  * Look at a particular object in the place.
2293  *
2294  * The best matching object is returned (its name might be less specific than
2295  * what was requested).
2296  *
2297  * @param place
2298  *        The place where to look.
2299  * @param full_name
2300  *        Full name of the object.
2301  * @param value_size
2302  *        Set to the size of the returned value.
2303  *
2304  * @return NULL if there is no such object at this place.
2305  */
2306 struct GNUNET_SOCIAL_LookHandle *
2307 GNUNET_SOCIAL_place_look_at (struct GNUNET_SOCIAL_Place *plc,
2308                              const char *full_name,
2309                              GNUNET_PSYC_StateVarCallback var_cb,
2310                              GNUNET_ResultCallback result_cb,
2311                              void *cls)
2312 {
2313   return place_state_get (plc, GNUNET_MESSAGE_TYPE_PSYC_STATE_GET,
2314                           full_name, var_cb, result_cb, cls);
2315 }
2316
2317
2318 /**
2319  * Look for objects in the place with a matching name prefix.
2320  *
2321  * @param place
2322  *        The place where to look.
2323  * @param name_prefix
2324  *        Look at objects with names beginning with this value.
2325  * @param var_cb
2326  *        Function to call for each object found.
2327  * @param cls
2328  *        Closure for callback function.
2329  *
2330  * @return Handle that can be used to stop looking at objects.
2331  */
2332 struct GNUNET_SOCIAL_LookHandle *
2333 GNUNET_SOCIAL_place_look_for (struct GNUNET_SOCIAL_Place *plc,
2334                               const char *name_prefix,
2335                               GNUNET_PSYC_StateVarCallback var_cb,
2336                               GNUNET_ResultCallback result_cb,
2337                               void *cls)
2338 {
2339   return place_state_get (plc, GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX,
2340                           name_prefix, var_cb, result_cb, cls);
2341 }
2342
2343
2344 /**
2345  * Cancel a state request operation.
2346  *
2347  * @param sr
2348  *        Handle for the operation to cancel.
2349  */
2350 void
2351 GNUNET_SOCIAL_place_look_cancel (struct GNUNET_SOCIAL_LookHandle *look)
2352 {
2353   GNUNET_OP_remove (look->plc->op, look->op_id);
2354   GNUNET_free (look);
2355 }
2356
2357
2358 static void
2359 op_recv_zone_add_place_result (void *cls, int64_t result,
2360                                const void *err_msg, uint16_t err_msg_size)
2361 {
2362   LOG (GNUNET_ERROR_TYPE_DEBUG,
2363        "Received zone add place result: %" PRId64 ".\n", result);
2364
2365   struct ZoneAddPlaceHandle *add_plc = cls;
2366   if (NULL != add_plc->result_cb)
2367     add_plc->result_cb (add_plc->result_cls, result, err_msg, err_msg_size);
2368
2369   GNUNET_free (add_plc);
2370 }
2371
2372
2373 /**
2374  * Advertise @e place in the GNS zone of @e ego.
2375  *
2376  * @param app
2377  *        Application handle.
2378  * @param ego
2379  *        Ego.
2380  * @param place_pub_key
2381  *        Public key of place to add.
2382  * @param name
2383  *        The name for the PLACE record to put in the zone.
2384  * @param password
2385  *        Password used to encrypt the record or NULL to keep it cleartext.
2386  * @param relay_count
2387  *        Number of elements in the @a relays array.
2388  * @param relays
2389  *        List of relays to put in the PLACE record to advertise
2390  *        as entry points to the place in addition to the origin.
2391  * @param expiration_time
2392  *        Expiration time of the record, use 0 to remove the record.
2393  * @param result_cb
2394  *        Function called with the result of the operation.
2395  * @param result_cls
2396  *        Closure for @a result_cb
2397  *
2398  * @return #GNUNET_OK if the request was sent,
2399  *         #GNUNET_SYSERR on error, e.g. the name/password is too long.
2400  */
2401 int
2402 GNUNET_SOCIAL_zone_add_place (const struct GNUNET_SOCIAL_App *app,
2403                               const struct GNUNET_SOCIAL_Ego *ego,
2404                               const char *name,
2405                               const char *password,
2406                               const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
2407                               const struct GNUNET_PeerIdentity *origin,
2408                               uint32_t relay_count,
2409                               const struct GNUNET_PeerIdentity *relays,
2410                               struct GNUNET_TIME_Absolute expiration_time,
2411                               GNUNET_ResultCallback result_cb,
2412                               void *result_cls)
2413 {
2414   struct ZoneAddPlaceRequest *preq;
2415   size_t name_size = strlen (name) + 1;
2416   size_t password_size = strlen (password) + 1;
2417   size_t relay_size = relay_count * sizeof (*relays);
2418   size_t payload_size = name_size + password_size + relay_size;
2419
2420   if (GNUNET_SERVER_MAX_MESSAGE_SIZE < sizeof (*preq) + payload_size)
2421     return GNUNET_SYSERR;
2422
2423   struct GNUNET_MQ_Envelope *
2424     env = GNUNET_MQ_msg_extra (preq, payload_size,
2425                                GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_PLACE);
2426   preq->expiration_time = GNUNET_htonll (expiration_time.abs_value_us);
2427   preq->ego_pub_key = ego->pub_key;
2428   preq->place_pub_key = *place_pub_key;
2429   preq->origin = *origin;
2430   preq->relay_count = htonl (relay_count);
2431
2432   char *p = (char *) &preq[1];
2433   GNUNET_memcpy (p, name, name_size);
2434   p += name_size;
2435   GNUNET_memcpy (p, password, password_size);
2436   p += password_size;
2437   GNUNET_memcpy (p, relays, relay_size);
2438
2439   struct ZoneAddPlaceHandle * add_plc = GNUNET_malloc (sizeof (*add_plc));
2440   add_plc->result_cb = result_cb;
2441   add_plc->result_cls = result_cls;
2442
2443   preq->op_id = GNUNET_htonll (GNUNET_OP_add (app->op,
2444                                               op_recv_zone_add_place_result,
2445                                               add_plc, NULL));
2446
2447   GNUNET_MQ_send (app->mq, env);
2448   return GNUNET_OK;
2449 }
2450
2451
2452 static void
2453 op_recv_zone_add_nym_result (void *cls, int64_t result,
2454                              const void *err_msg, uint16_t err_msg_size)
2455 {
2456   LOG (GNUNET_ERROR_TYPE_DEBUG,
2457        "Received zone add nym result: %" PRId64 ".\n", result);
2458
2459   struct ZoneAddNymHandle *add_nym = cls;
2460   if (NULL != add_nym->result_cb)
2461     add_nym->result_cb (add_nym->result_cls, result, err_msg, err_msg_size);
2462
2463   GNUNET_free (add_nym);
2464 }
2465
2466
2467 /**
2468  * Add nym to the GNS zone of @e ego.
2469  *
2470  * @param cfg
2471  *        Configuration.
2472  * @param ego
2473  *        Ego.
2474  * @param name
2475  *        The name for the PKEY record to put in the zone.
2476  * @param nym_pub_key
2477  *        Public key of nym to add.
2478  * @param expiration_time
2479  *        Expiration time of the record, use 0 to remove the record.
2480  * @param result_cb
2481  *        Function called with the result of the operation.
2482  * @param result_cls
2483  *        Closure for @a result_cb
2484  *
2485  * @return #GNUNET_OK if the request was sent,
2486  *         #GNUNET_SYSERR on error, e.g. the name is too long.
2487  */
2488 int
2489 GNUNET_SOCIAL_zone_add_nym (const struct GNUNET_SOCIAL_App *app,
2490                             const struct GNUNET_SOCIAL_Ego *ego,
2491                             const char *name,
2492                             const struct GNUNET_CRYPTO_EcdsaPublicKey *nym_pub_key,
2493                             struct GNUNET_TIME_Absolute expiration_time,
2494                             GNUNET_ResultCallback result_cb,
2495                             void *result_cls)
2496 {
2497   struct ZoneAddNymRequest *nreq;
2498
2499   size_t name_size = strlen (name) + 1;
2500   if (GNUNET_SERVER_MAX_MESSAGE_SIZE < sizeof (*nreq) + name_size)
2501     return GNUNET_SYSERR;
2502
2503   struct GNUNET_MQ_Envelope *
2504     env = GNUNET_MQ_msg_extra (nreq, name_size,
2505                                GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_NYM);
2506   nreq->expiration_time = GNUNET_htonll (expiration_time.abs_value_us);
2507   nreq->ego_pub_key = ego->pub_key;
2508   nreq->nym_pub_key = *nym_pub_key;
2509   GNUNET_memcpy (&nreq[1], name, name_size);
2510
2511   struct ZoneAddNymHandle *add_nym = GNUNET_malloc (sizeof (*add_nym));
2512   add_nym->result_cb = result_cb;
2513   add_nym->result_cls = result_cls;
2514
2515   nreq->op_id = GNUNET_htonll (GNUNET_OP_add (app->op,
2516                                               op_recv_zone_add_nym_result,
2517                                               add_nym, NULL));
2518
2519   GNUNET_MQ_send (app->mq, env);
2520   return GNUNET_OK;
2521 }
2522
2523
2524 /*** APP ***/
2525
2526
2527 static void
2528 app_connect (struct GNUNET_SOCIAL_App *app);
2529
2530
2531 static void
2532 app_reconnect (void *cls)
2533 {
2534   app_connect (cls);
2535 }
2536
2537
2538 /**
2539  * App client disconnected from service.
2540  *
2541  * Reconnect after backoff period.
2542  */
2543 static void
2544 app_disconnected (void *cls, enum GNUNET_MQ_Error error)
2545 {
2546   struct GNUNET_SOCIAL_App *app = cls;
2547
2548   LOG (GNUNET_ERROR_TYPE_DEBUG,
2549        "App client disconnected (%d), re-connecting\n",
2550        (int) error);
2551   if (NULL != app->mq)
2552   {
2553     GNUNET_MQ_destroy (app->mq);
2554     app->mq = NULL;
2555   }
2556
2557   app->reconnect_task = GNUNET_SCHEDULER_add_delayed (app->reconnect_delay,
2558                                                       app_reconnect,
2559                                                       app);
2560   app->reconnect_delay = GNUNET_TIME_STD_BACKOFF (app->reconnect_delay);
2561 }
2562
2563
2564 static void
2565 app_connect (struct GNUNET_SOCIAL_App *app)
2566 {
2567   struct GNUNET_MQ_MessageHandler handlers[] = {
2568     GNUNET_MQ_hd_var_size (app_ego,
2569                            GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO,
2570                            struct AppEgoMessage,
2571                            app),
2572     GNUNET_MQ_hd_fixed_size (app_ego_end,
2573                              GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO_END,
2574                              struct GNUNET_MessageHeader,
2575                              app),
2576     GNUNET_MQ_hd_var_size (app_place,
2577                            GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE,
2578                            struct AppPlaceMessage,
2579                            app),
2580     GNUNET_MQ_hd_fixed_size (app_place_end,
2581                              GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE_END,
2582                              struct GNUNET_MessageHeader,
2583                              app),
2584     GNUNET_MQ_hd_var_size (app_result,
2585                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
2586                            struct GNUNET_OperationResultMessage,
2587                            app),
2588     GNUNET_MQ_handler_end ()
2589   };
2590
2591   app->mq = GNUNET_CLIENT_connecT (app->cfg, "social",
2592                                    handlers, app_disconnected, app);
2593   GNUNET_assert (NULL != app->mq);
2594   GNUNET_MQ_send_copy (app->mq, app->connect_env);
2595 }
2596
2597
2598 /**
2599  * Connect application to the social service.
2600  *
2601  * The @host_place_cb and @guest_place_cb functions are
2602  * initially called for each entered places,
2603  * then later each time a new place is entered with the current application ID.
2604  *
2605  * @param cfg
2606  *        Configuration.
2607  * @param id
2608  *        Application ID.
2609  * @param ego_cb
2610  *        Function to notify about an available ego.
2611  * @param host_cb
2612  *        Function to notify about a place entered as host.
2613  * @param guest_cb
2614  *        Function to notify about a place entered as guest.
2615  * @param cls
2616  *        Closure for the callbacks.
2617  *
2618  * @return Handle that can be used to stop listening.
2619  */
2620 struct GNUNET_SOCIAL_App *
2621 GNUNET_SOCIAL_app_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
2622                            const char *id,
2623                            GNUNET_SOCIAL_AppEgoCallback ego_cb,
2624                            GNUNET_SOCIAL_AppHostPlaceCallback host_cb,
2625                            GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb,
2626                            GNUNET_SOCIAL_AppConnectedCallback connected_cb,
2627                            void *cls)
2628 {
2629   uint16_t app_id_size = strnlen (id, GNUNET_SOCIAL_APP_MAX_ID_SIZE);
2630   if (GNUNET_SOCIAL_APP_MAX_ID_SIZE == app_id_size)
2631     return NULL;
2632   app_id_size++;
2633
2634   struct GNUNET_SOCIAL_App *app = GNUNET_malloc (sizeof *app);
2635   app->cfg = cfg;
2636   app->ego_cb = ego_cb;
2637   app->host_cb = host_cb;
2638   app->guest_cb = guest_cb;
2639   app->connected_cb = connected_cb;
2640   app->cb_cls = cls;
2641   app->egos = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
2642   app->op = GNUNET_OP_create ();
2643   app->id = GNUNET_malloc (app_id_size);
2644   GNUNET_memcpy (app->id, id, app_id_size);
2645
2646   struct AppConnectRequest *creq;
2647   app->connect_env = GNUNET_MQ_msg_extra (creq, app_id_size,
2648                                           GNUNET_MESSAGE_TYPE_SOCIAL_APP_CONNECT);
2649   GNUNET_memcpy (&creq[1], app->id, app_id_size);
2650
2651   app_connect (app);
2652   return app;
2653 }
2654
2655
2656 static void
2657 app_cleanup (struct GNUNET_SOCIAL_App *app)
2658 {
2659   if (NULL != app->mq)
2660   {
2661     GNUNET_MQ_destroy (app->mq);
2662     app->mq = NULL;
2663   }
2664   if (NULL != app->disconnect_cb)
2665   {
2666     app->disconnect_cb (app->disconnect_cls);
2667     app->disconnect_cb = NULL;
2668   }
2669   GNUNET_free (app);
2670 }
2671
2672 /**
2673  * Disconnect application.
2674  *
2675  * @param app
2676  *        Application handle.
2677  * @param disconnect_cb
2678  *        Disconnect callback.
2679  * @param disconnect_cls
2680  *        Disconnect closure.
2681  */
2682 void
2683 GNUNET_SOCIAL_app_disconnect (struct GNUNET_SOCIAL_App *app,
2684                               GNUNET_ContinuationCallback disconnect_cb,
2685                               void *disconnect_cls)
2686 {
2687   app->disconnect_cb = disconnect_cb;
2688   app->disconnect_cls = disconnect_cls;
2689
2690   if (NULL != app->mq)
2691   {
2692     struct GNUNET_MQ_Envelope *env = GNUNET_MQ_get_last_envelope (app->mq);
2693     if (NULL != env)
2694     {
2695       GNUNET_MQ_notify_sent (env, (GNUNET_MQ_NotifyCallback) app_cleanup, app);
2696     }
2697     else
2698     {
2699       app_cleanup (app);
2700     }
2701   }
2702   else
2703   {
2704     app_cleanup (app);
2705   }
2706 }
2707
2708
2709 /**
2710  * Detach application from a place.
2711  *
2712  * Removes the place from the entered places list for this application.
2713  * Note: this does not disconnect from the place.
2714  *
2715  * @see GNUNET_SOCIAL_host_disconnect() and GNUNET_SOCIAL_guest_disconnect()
2716  *
2717  * @param app
2718  *        Application.
2719  * @param plc
2720  *        Place.
2721  */
2722 void
2723 GNUNET_SOCIAL_app_detach (struct GNUNET_SOCIAL_App *app,
2724                           struct GNUNET_SOCIAL_Place *plc)
2725 {
2726   struct AppDetachRequest *dreq;
2727   struct GNUNET_MQ_Envelope *
2728     env = GNUNET_MQ_msg (dreq, GNUNET_MESSAGE_TYPE_SOCIAL_APP_DETACH);
2729   dreq->place_pub_key = plc->pub_key;
2730
2731   GNUNET_MQ_send (app->mq, env);
2732 }
2733
2734
2735 /* end of social_api.c */