social: debug msgs
[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 *last = GNUNET_MQ_get_last_envelope (plc->mq);
1079     if (NULL != last)
1080     {
1081       GNUNET_MQ_notify_sent (last,
1082                              (GNUNET_MQ_NotifyCallback) place_cleanup, plc);
1083     }
1084     else
1085     {
1086       place_cleanup (plc);
1087     }
1088   }
1089   else
1090   {
1091     place_cleanup (plc);
1092   }
1093 }
1094
1095
1096 void
1097 place_leave (struct GNUNET_SOCIAL_Place *plc)
1098 {
1099   struct GNUNET_MessageHeader *msg;
1100   struct GNUNET_MQ_Envelope *
1101     env = GNUNET_MQ_msg (msg, GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE);
1102
1103   GNUNET_MQ_send (plc->mq, env);
1104 }
1105
1106
1107 /*** HOST ***/
1108
1109
1110 static void
1111 host_connect (struct GNUNET_SOCIAL_Host *hst);
1112
1113
1114 static void
1115 host_reconnect (void *cls)
1116 {
1117   host_connect (cls);
1118 }
1119
1120
1121 /**
1122  * Host client disconnected from service.
1123  *
1124  * Reconnect after backoff period.
1125  */
1126 static void
1127 host_disconnected (void *cls, enum GNUNET_MQ_Error error)
1128 {
1129   struct GNUNET_SOCIAL_Host *hst = cls;
1130   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1131
1132   LOG (GNUNET_ERROR_TYPE_DEBUG,
1133        "Host client disconnected (%d), re-connecting\n",
1134        (int) error);
1135   if (NULL != plc->mq)
1136   {
1137     GNUNET_MQ_destroy (plc->mq);
1138     plc->mq = NULL;
1139   }
1140   if (NULL != plc->tmit)
1141   {
1142     GNUNET_PSYC_transmit_destroy (plc->tmit);
1143     plc->tmit = NULL;
1144   }
1145
1146   plc->reconnect_task = GNUNET_SCHEDULER_add_delayed (plc->reconnect_delay,
1147                                                       host_reconnect,
1148                                                       hst);
1149   plc->reconnect_delay = GNUNET_TIME_STD_BACKOFF (plc->reconnect_delay);
1150 }
1151
1152
1153 static void
1154 host_connect (struct GNUNET_SOCIAL_Host *hst)
1155 {
1156   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1157
1158   struct GNUNET_MQ_MessageHandler handlers[] = {
1159     GNUNET_MQ_hd_fixed_size (host_enter_ack,
1160                              GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER_ACK,
1161                              struct HostEnterAck,
1162                              hst),
1163     GNUNET_MQ_hd_var_size (host_enter_request,
1164                            GNUNET_MESSAGE_TYPE_PSYC_JOIN_REQUEST,
1165                            struct GNUNET_PSYC_JoinRequestMessage,
1166                            hst),
1167     GNUNET_MQ_hd_var_size (host_message,
1168                            GNUNET_MESSAGE_TYPE_PSYC_MESSAGE,
1169                            struct GNUNET_PSYC_MessageHeader,
1170                            hst),
1171     GNUNET_MQ_hd_fixed_size (place_message_ack,
1172                              GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK,
1173                              struct GNUNET_MessageHeader,
1174                              plc),
1175     GNUNET_MQ_hd_var_size (place_history_result,
1176                            GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT,
1177                            struct GNUNET_OperationResultMessage,
1178                            plc),
1179     GNUNET_MQ_hd_var_size (place_state_result,
1180                            GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT,
1181                            struct GNUNET_OperationResultMessage,
1182                            plc),
1183     GNUNET_MQ_hd_var_size (place_result,
1184                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
1185                            struct GNUNET_OperationResultMessage,
1186                            plc),
1187     GNUNET_MQ_handler_end ()
1188   };
1189
1190   plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social",
1191                                    handlers, host_disconnected, hst);
1192   GNUNET_assert (NULL != plc->mq);
1193   plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
1194
1195   GNUNET_MQ_send_copy (plc->mq, plc->connect_env);
1196 }
1197
1198
1199 /**
1200  * Enter a place as host.
1201  *
1202  * A place is created upon first entering, and it is active until permanently
1203  * left using GNUNET_SOCIAL_host_leave().
1204  *
1205  * @param app
1206  *        Application handle.
1207  * @param ego
1208  *        Identity of the host.
1209  * @param policy
1210  *        Policy specifying entry and history restrictions for the place.
1211  * @param slicer
1212  *        Slicer to handle incoming messages.
1213  * @param enter_cb
1214  *        Function called when the place is entered and ready to use.
1215  * @param answer_door_cb
1216  *        Function to handle new nyms that want to enter.
1217  * @param farewell_cb
1218  *        Function to handle departing nyms.
1219  * @param cls
1220  *        Closure for the callbacks.
1221  *
1222  * @return Handle for the host. This handle contains the pubkey.
1223  */
1224 struct GNUNET_SOCIAL_Host *
1225 GNUNET_SOCIAL_host_enter (const struct GNUNET_SOCIAL_App *app,
1226                           const struct GNUNET_SOCIAL_Ego *ego,
1227                           enum GNUNET_PSYC_Policy policy,
1228                           struct GNUNET_PSYC_Slicer *slicer,
1229                           GNUNET_SOCIAL_HostEnterCallback enter_cb,
1230                           GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb,
1231                           GNUNET_SOCIAL_FarewellCallback farewell_cb,
1232                           void *cls)
1233 {
1234   struct GNUNET_SOCIAL_Host *hst = GNUNET_malloc (sizeof (*hst));
1235   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1236
1237   plc->cfg = app->cfg;
1238   plc->is_host = GNUNET_YES;
1239   plc->slicer = slicer;
1240
1241   hst->enter_cb = enter_cb;
1242   hst->answer_door_cb = answer_door_cb;
1243   hst->farewell_cb = farewell_cb;
1244   hst->cb_cls = cls;
1245
1246   plc->op = GNUNET_OP_create ();
1247
1248   hst->slicer = GNUNET_PSYC_slicer_create ();
1249   GNUNET_PSYC_slicer_method_add (hst->slicer, "_notice_place_leave", NULL,
1250                                  host_recv_notice_place_leave_method,
1251                                  host_recv_notice_place_leave_modifier,
1252                                  NULL, host_recv_notice_place_leave_eom, hst);
1253
1254   uint16_t app_id_size = strlen (app->id) + 1;
1255   struct HostEnterRequest *hreq;
1256   plc->connect_env = GNUNET_MQ_msg_extra (hreq, app_id_size,
1257                                           GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER);
1258   hreq->policy = policy;
1259   hreq->ego_pub_key = ego->pub_key;
1260   GNUNET_memcpy (&hreq[1], app->id, app_id_size);
1261
1262   host_connect (hst);
1263   return hst;
1264 }
1265
1266
1267 /**
1268  * Reconnect to an already entered place as host.
1269  *
1270  * @param hconn
1271  *        Host connection handle.
1272  *        @see GNUNET_SOCIAL_app_connect() & GNUNET_SOCIAL_AppHostPlaceCallback()
1273  * @param slicer
1274  *        Slicer to handle incoming messages.
1275  * @param enter_cb
1276  *        Function called when the place is entered and ready to use.
1277  * @param answer_door_cb
1278  *        Function to handle new nyms that want to enter.
1279  * @param farewell_cb
1280  *        Function to handle departing nyms.
1281  * @param cls
1282  *        Closure for the callbacks.
1283  *
1284  * @return Handle for the host.
1285  */
1286  struct GNUNET_SOCIAL_Host *
1287 GNUNET_SOCIAL_host_enter_reconnect (struct GNUNET_SOCIAL_HostConnection *hconn,
1288                                     struct GNUNET_PSYC_Slicer *slicer,
1289                                     GNUNET_SOCIAL_HostEnterCallback enter_cb,
1290                                     GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb,
1291                                     GNUNET_SOCIAL_FarewellCallback farewell_cb,
1292                                     void *cls)
1293 {
1294   struct GNUNET_SOCIAL_Host *hst = GNUNET_malloc (sizeof (*hst));
1295   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1296
1297   hst->enter_cb = enter_cb;
1298   hst->answer_door_cb = answer_door_cb;
1299   hst->farewell_cb = farewell_cb;
1300   hst->cb_cls = cls;
1301
1302   plc->cfg = hconn->app->cfg;
1303   plc->is_host = GNUNET_YES;
1304   plc->slicer = slicer;
1305   plc->pub_key = hconn->plc_msg.place_pub_key;
1306   plc->ego_pub_key = hconn->plc_msg.ego_pub_key;
1307
1308   plc->op = GNUNET_OP_create ();
1309
1310   hst->slicer = GNUNET_PSYC_slicer_create ();
1311   GNUNET_PSYC_slicer_method_add (hst->slicer, "_notice_place_leave", NULL,
1312                                  host_recv_notice_place_leave_method,
1313                                  host_recv_notice_place_leave_modifier,
1314                                  NULL, host_recv_notice_place_leave_eom, hst);
1315
1316   size_t app_id_size = strlen (hconn->app->id) + 1;
1317   struct HostEnterRequest *hreq;
1318   plc->connect_env = GNUNET_MQ_msg_extra (hreq, app_id_size,
1319                                           GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER);
1320   hreq->place_pub_key = hconn->plc_msg.place_pub_key;
1321   hreq->ego_pub_key = hconn->plc_msg.ego_pub_key;
1322   GNUNET_memcpy (&hreq[1], hconn->app->id, app_id_size);
1323
1324   host_connect (hst);
1325   return hst;
1326 }
1327
1328
1329 /**
1330  * Decision whether to admit @a nym into the place or refuse entry.
1331  *
1332  * @param hst
1333  *        Host of the place.
1334  * @param nym
1335  *        Handle for the entity that wanted to enter.
1336  * @param is_admitted
1337  *        #GNUNET_YES    if @a nym is admitted,
1338  *        #GNUNET_NO     if @a nym is refused entry,
1339  *        #GNUNET_SYSERR if we cannot answer the request.
1340  * @param method_name
1341  *        Method name for the rejection message.
1342  * @param env
1343  *        Environment containing variables for the message, or NULL.
1344  * @param data
1345  *        Data for the rejection message to send back.
1346  * @param data_size
1347  *        Number of bytes in @a data for method.
1348  * @return #GNUNET_OK on success,
1349  *         #GNUNET_SYSERR if the message is too large.
1350  */
1351 int
1352 GNUNET_SOCIAL_host_entry_decision (struct GNUNET_SOCIAL_Host *hst,
1353                                    struct GNUNET_SOCIAL_Nym *nym,
1354                                    int is_admitted,
1355                                    const struct GNUNET_PSYC_Message *entry_resp)
1356 {
1357   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1358   struct GNUNET_PSYC_JoinDecisionMessage *dcsn;
1359   uint16_t entry_resp_size
1360     = (NULL != entry_resp) ? ntohs (entry_resp->header.size) : 0;
1361
1362   if (GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD < sizeof (*dcsn) + entry_resp_size)
1363     return GNUNET_SYSERR;
1364
1365   struct GNUNET_MQ_Envelope *
1366     env = GNUNET_MQ_msg_extra (dcsn, entry_resp_size,
1367                                GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION);
1368   dcsn->is_admitted = htonl (is_admitted);
1369   dcsn->slave_pub_key = nym->pub_key;
1370
1371   if (0 < entry_resp_size)
1372     GNUNET_memcpy (&dcsn[1], entry_resp, entry_resp_size);
1373
1374   GNUNET_MQ_send (plc->mq, env);
1375   return GNUNET_OK;
1376 }
1377
1378
1379 /**
1380  * Throw @a nym out of the place.
1381  *
1382  * The @a nym reference will remain valid until the
1383  * #GNUNET_SOCIAL_FarewellCallback is invoked,
1384  * which should be very soon after this call.
1385  *
1386  * @param host
1387  *        Host of the place.
1388  * @param nym
1389  *        Handle for the entity to be ejected.
1390  * @param env
1391  *        Environment for the message or NULL.
1392  */
1393 void
1394 GNUNET_SOCIAL_host_eject (struct GNUNET_SOCIAL_Host *hst,
1395                           const struct GNUNET_SOCIAL_Nym *nym,
1396                           struct GNUNET_PSYC_Environment *e)
1397 {
1398   struct GNUNET_PSYC_Environment *env = e;
1399   if (NULL == env)
1400     env = GNUNET_PSYC_env_create ();
1401   GNUNET_PSYC_env_add (env, GNUNET_PSYC_OP_SET,
1402                        "_nym", &nym->pub_key, sizeof (nym->pub_key));
1403   GNUNET_SOCIAL_host_announce (hst, "_notice_place_leave", env, NULL, NULL,
1404                                GNUNET_SOCIAL_ANNOUNCE_NONE);
1405   if (NULL == e)
1406     GNUNET_PSYC_env_destroy (env);
1407 }
1408
1409
1410 /**
1411  * Get the public key of @a ego.
1412  *
1413  * @param ego
1414  *        Ego.
1415  *
1416  * @return Public key of ego.
1417  */
1418 const struct GNUNET_CRYPTO_EcdsaPublicKey *
1419 GNUNET_SOCIAL_ego_get_pub_key (const struct GNUNET_SOCIAL_Ego *ego)
1420 {
1421   return &ego->pub_key;
1422 }
1423
1424
1425 /**
1426  * Get the hash of the public key of @a ego.
1427  *
1428  * @param ego
1429  *        Ego.
1430  *
1431  * @return Hash of the public key of @a ego.
1432  */
1433 const struct GNUNET_HashCode *
1434 GNUNET_SOCIAL_ego_get_pub_key_hash (const struct GNUNET_SOCIAL_Ego *ego)
1435 {
1436   return &ego->pub_key_hash;
1437 }
1438
1439
1440 /**
1441  * Get the name of @a ego.
1442  *
1443  * @param ego
1444  *        Ego.
1445  *
1446  * @return Public key of @a ego.
1447  */
1448 const char *
1449 GNUNET_SOCIAL_ego_get_name (const struct GNUNET_SOCIAL_Ego *ego)
1450 {
1451   return ego->name;
1452 }
1453
1454
1455 /**
1456  * Get the public key of @a nym.
1457  *
1458  * Suitable, for example, to be used with GNUNET_SOCIAL_zone_add_nym().
1459  *
1460  * @param nym
1461  *        Pseudonym.
1462  *
1463  * @return Public key of @a nym.
1464  */
1465 const struct GNUNET_CRYPTO_EcdsaPublicKey *
1466 GNUNET_SOCIAL_nym_get_pub_key (const struct GNUNET_SOCIAL_Nym *nym)
1467 {
1468   return &nym->pub_key;
1469 }
1470
1471
1472 /**
1473  * Get the hash of the public key of @a nym.
1474  *
1475  * @param nym
1476  *        Pseudonym.
1477  *
1478  * @return Hash of the public key of @a nym.
1479  */
1480 const struct GNUNET_HashCode *
1481 GNUNET_SOCIAL_nym_get_pub_key_hash (const struct GNUNET_SOCIAL_Nym *nym)
1482 {
1483   return &nym->pub_key_hash;
1484 }
1485
1486
1487 /**
1488  * Send a message to all nyms that are present in the place.
1489  *
1490  * This function is restricted to the host.  Nyms can only send requests
1491  * to the host who can decide to relay it to everyone in the place.
1492  *
1493  * @param host  Host of the place.
1494  * @param method_name Method to use for the announcement.
1495  * @param env  Environment containing variables for the message and operations
1496  *          on objects of the place.  Can be NULL.
1497  * @param notify Function to call to get the payload of the announcement.
1498  * @param notify_cls Closure for @a notify.
1499  * @param flags Flags for this announcement.
1500  *
1501  * @return NULL on error (announcement already in progress?).
1502  */
1503 struct GNUNET_SOCIAL_Announcement *
1504 GNUNET_SOCIAL_host_announce (struct GNUNET_SOCIAL_Host *hst,
1505                              const char *method_name,
1506                              const struct GNUNET_PSYC_Environment *env,
1507                              GNUNET_PSYC_TransmitNotifyData notify_data,
1508                              void *notify_data_cls,
1509                              enum GNUNET_SOCIAL_AnnounceFlags flags)
1510 {
1511   if (GNUNET_OK ==
1512       GNUNET_PSYC_transmit_message (hst->plc.tmit, method_name, env,
1513                                     NULL, notify_data, notify_data_cls, flags))
1514     return (struct GNUNET_SOCIAL_Announcement *) hst->plc.tmit;
1515   else
1516     return NULL;
1517 }
1518
1519
1520 /**
1521  * Resume transmitting announcement.
1522  *
1523  * @param a
1524  *        The announcement to resume.
1525  */
1526 void
1527 GNUNET_SOCIAL_host_announce_resume (struct GNUNET_SOCIAL_Announcement *a)
1528 {
1529   GNUNET_PSYC_transmit_resume ((struct GNUNET_PSYC_TransmitHandle *) a);
1530 }
1531
1532
1533 /**
1534  * Cancel announcement.
1535  *
1536  * @param a
1537  *        The announcement to cancel.
1538  */
1539 void
1540 GNUNET_SOCIAL_host_announce_cancel (struct GNUNET_SOCIAL_Announcement *a)
1541 {
1542   GNUNET_PSYC_transmit_cancel ((struct GNUNET_PSYC_TransmitHandle *) a);
1543 }
1544
1545
1546 /**
1547  * Obtain handle for a hosted place.
1548  *
1549  * The returned handle can be used to access the place API.
1550  *
1551  * @param host  Handle for the host.
1552  *
1553  * @return Handle for the hosted place, valid as long as @a host is valid.
1554  */
1555 struct GNUNET_SOCIAL_Place *
1556 GNUNET_SOCIAL_host_get_place (struct GNUNET_SOCIAL_Host *hst)
1557 {
1558   return &hst->plc;
1559 }
1560
1561
1562 /**
1563  * Disconnect from a home.
1564  *
1565  * Invalidates host handle.
1566  *
1567  * @param hst
1568  *        The host to disconnect.
1569  */
1570 void
1571 GNUNET_SOCIAL_host_disconnect (struct GNUNET_SOCIAL_Host *hst,
1572                                GNUNET_ContinuationCallback disconnect_cb,
1573                                void *cls)
1574 {
1575   place_disconnect (&hst->plc, disconnect_cb, cls);
1576 }
1577
1578
1579 /**
1580  * Stop hosting the home.
1581  *
1582  * Sends a _notice_place_closing announcement to the home.
1583  * Invalidates host handle.
1584  *
1585  * @param hst
1586  *        The host leaving.
1587  * @param env
1588  *        Environment for the message or NULL.
1589  *        _nym is set to @e nym regardless whether an @e env is provided.
1590  * @param disconnect_cb
1591  *        Function called after the host left the place
1592  *        and disconnected from the social service.
1593  * @param cls
1594  *        Closure for @a disconnect_cb.
1595  */
1596 void
1597 GNUNET_SOCIAL_host_leave (struct GNUNET_SOCIAL_Host *hst,
1598                           const struct GNUNET_PSYC_Environment *env,
1599                           GNUNET_ContinuationCallback disconnect_cb,
1600                           void *cls)
1601 {
1602   GNUNET_SOCIAL_host_announce (hst, "_notice_place_closing", env, NULL, NULL,
1603                                GNUNET_SOCIAL_ANNOUNCE_NONE);
1604   place_leave (&hst->plc);
1605   GNUNET_SOCIAL_host_disconnect (hst, disconnect_cb, cls);
1606 }
1607
1608
1609 /*** GUEST ***/
1610
1611
1612 static void
1613 guest_connect (struct GNUNET_SOCIAL_Guest *gst);
1614
1615
1616 static void
1617 guest_reconnect (void *cls)
1618 {
1619   guest_connect (cls);
1620 }
1621
1622
1623 /**
1624  * Guest client disconnected from service.
1625  *
1626  * Reconnect after backoff period.
1627  */
1628 static void
1629 guest_disconnected (void *cls, enum GNUNET_MQ_Error error)
1630 {
1631   struct GNUNET_SOCIAL_Guest *gst = cls;
1632   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1633
1634   LOG (GNUNET_ERROR_TYPE_DEBUG,
1635        "Guest client disconnected (%d), re-connecting\n",
1636        (int) error);
1637   if (NULL != plc->mq)
1638   {
1639     GNUNET_MQ_destroy (plc->mq);
1640     plc->mq = NULL;
1641   }
1642   if (NULL != plc->tmit)
1643   {
1644     GNUNET_PSYC_transmit_destroy (plc->tmit);
1645     plc->tmit = NULL;
1646   }
1647
1648   plc->reconnect_task = GNUNET_SCHEDULER_add_delayed (plc->reconnect_delay,
1649                                                       guest_reconnect,
1650                                                       gst);
1651   plc->reconnect_delay = GNUNET_TIME_STD_BACKOFF (plc->reconnect_delay);
1652 }
1653
1654
1655 static void
1656 guest_connect (struct GNUNET_SOCIAL_Guest *gst)
1657 {
1658   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1659
1660   struct GNUNET_MQ_MessageHandler handlers[] = {
1661     GNUNET_MQ_hd_fixed_size (guest_enter_ack,
1662                              GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK,
1663                              struct GNUNET_PSYC_CountersResultMessage,
1664                              gst),
1665     GNUNET_MQ_hd_var_size (guest_enter_decision,
1666                            GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION,
1667                            struct GNUNET_PSYC_JoinDecisionMessage,
1668                            gst),
1669     GNUNET_MQ_hd_var_size (place_message,
1670                            GNUNET_MESSAGE_TYPE_PSYC_MESSAGE,
1671                            struct GNUNET_PSYC_MessageHeader,
1672                            plc),
1673     GNUNET_MQ_hd_fixed_size (place_message_ack,
1674                              GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK,
1675                              struct GNUNET_MessageHeader,
1676                              plc),
1677     GNUNET_MQ_hd_var_size (place_history_result,
1678                            GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT,
1679                            struct GNUNET_OperationResultMessage,
1680                            plc),
1681     GNUNET_MQ_hd_var_size (place_state_result,
1682                            GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT,
1683                            struct GNUNET_OperationResultMessage,
1684                            plc),
1685     GNUNET_MQ_hd_var_size (place_result,
1686                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
1687                            struct GNUNET_OperationResultMessage,
1688                            plc),
1689     GNUNET_MQ_handler_end ()
1690   };
1691
1692   plc->mq = GNUNET_CLIENT_connecT (plc->cfg, "social",
1693                                    handlers, guest_disconnected, gst);
1694   GNUNET_assert (NULL != plc->mq);
1695   plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
1696
1697   GNUNET_MQ_send_copy (plc->mq, plc->connect_env);
1698 }
1699
1700
1701 static struct GNUNET_MQ_Envelope *
1702 guest_enter_request_create (const char *app_id,
1703                             const struct GNUNET_CRYPTO_EcdsaPublicKey *ego_pub_key,
1704                             const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
1705                             const struct GNUNET_PeerIdentity *origin,
1706                             size_t relay_count,
1707                             const struct GNUNET_PeerIdentity *relays,
1708                             const struct GNUNET_PSYC_Message *join_msg)
1709 {
1710   uint16_t app_id_size = strlen (app_id) + 1;
1711   uint16_t join_msg_size = ntohs (join_msg->header.size);
1712   uint16_t relay_size = relay_count * sizeof (*relays);
1713
1714   struct GuestEnterRequest *greq;
1715   struct GNUNET_MQ_Envelope *
1716     env = GNUNET_MQ_msg_extra (greq, app_id_size + relay_size + join_msg_size,
1717                                GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1718   greq->place_pub_key = *place_pub_key;
1719   greq->ego_pub_key = *ego_pub_key;
1720   greq->origin = *origin;
1721   greq->relay_count = htonl (relay_count);
1722
1723   char *p = (char *) &greq[1];
1724   GNUNET_memcpy (p, app_id, app_id_size);
1725   p += app_id_size;
1726
1727   if (0 < relay_size)
1728   {
1729     GNUNET_memcpy (p, relays, relay_size);
1730     p += relay_size;
1731   }
1732
1733   GNUNET_memcpy (p, join_msg, join_msg_size);
1734   return env;
1735 }
1736
1737
1738 /**
1739  * Request entry to a place as a guest.
1740  *
1741  * @param app
1742  *        Application handle.
1743  * @param ego
1744  *        Identity of the guest.
1745  * @param place_pub_key
1746  *        Public key of the place to enter.
1747  * @param flags
1748  *        Flags for the entry.
1749  * @param origin
1750  *        Peer identity of the origin of the underlying multicast group.
1751  * @param relay_count
1752  *        Number of elements in the @a relays array.
1753  * @param relays
1754  *        Relays for the underlying multicast group.
1755  * @param method_name
1756  *        Method name for the message.
1757  * @param env
1758  *        Environment containing variables for the message, or NULL.
1759  * @param data
1760  *        Payload for the message to give to the enter callback.
1761  * @param data_size
1762  *        Number of bytes in @a data.
1763  * @param slicer
1764  *        Slicer to use for processing incoming requests from guests.
1765  *
1766  * @return NULL on errors, otherwise handle for the guest.
1767  */
1768 struct GNUNET_SOCIAL_Guest *
1769 GNUNET_SOCIAL_guest_enter (const struct GNUNET_SOCIAL_App *app,
1770                            const struct GNUNET_SOCIAL_Ego *ego,
1771                            const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
1772                            enum GNUNET_PSYC_SlaveJoinFlags flags,
1773                            const struct GNUNET_PeerIdentity *origin,
1774                            uint32_t relay_count,
1775                            const struct GNUNET_PeerIdentity *relays,
1776                            const struct GNUNET_PSYC_Message *entry_msg,
1777                            struct GNUNET_PSYC_Slicer *slicer,
1778                            GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1779                            GNUNET_SOCIAL_EntryDecisionCallback entry_dcsn_cb,
1780                            void *cls)
1781 {
1782   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1783   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1784
1785   plc->ego_pub_key = ego->pub_key;
1786   plc->pub_key = *place_pub_key;
1787   plc->cfg = app->cfg;
1788   plc->is_host = GNUNET_NO;
1789   plc->slicer = slicer;
1790
1791   plc->op = GNUNET_OP_create ();
1792
1793   plc->connect_env
1794     = guest_enter_request_create (app->id, &ego->pub_key, &plc->pub_key,
1795                                   origin, relay_count, relays, entry_msg);
1796
1797   gst->enter_cb = local_enter_cb;
1798   gst->entry_dcsn_cb = entry_dcsn_cb;
1799   gst->cb_cls = cls;
1800
1801   guest_connect (gst);
1802   return gst;
1803 }
1804
1805
1806 /**
1807  * Request entry to a place by name as a guest.
1808  *
1809  * @param app
1810  *        Application handle.
1811  * @param ego
1812  *        Identity of the guest.
1813  * @param gns_name
1814  *        GNS name of the place to enter.  Either in the form of
1815  *        'room.friend.gnu', or 'NYMPUBKEY.zkey'.  This latter case refers to
1816  *        the 'PLACE' record of the empty label ("+") in the GNS zone with the
1817  *        nym's public key 'NYMPUBKEY', and can be used to request entry to a
1818  *        pseudonym's place directly.
1819  * @param password
1820  *        Password to decrypt the record, or NULL for cleartext records.
1821  * @param join_msg
1822  *        Entry request message or NULL.
1823  * @param slicer
1824  *        Slicer to use for processing incoming requests from guests.
1825  * @param local_enter_cb
1826  *        Called upon connection established to the social service.
1827  * @param entry_decision_cb
1828  *        Called upon receiving entry decision.
1829  *
1830  * @return NULL on errors, otherwise handle for the guest.
1831  */
1832 struct GNUNET_SOCIAL_Guest *
1833 GNUNET_SOCIAL_guest_enter_by_name (const struct GNUNET_SOCIAL_App *app,
1834                                    const struct GNUNET_SOCIAL_Ego *ego,
1835                                    const char *gns_name,
1836                                    const char *password,
1837                                    const struct GNUNET_PSYC_Message *join_msg,
1838                                    struct GNUNET_PSYC_Slicer *slicer,
1839                                    GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1840                                    GNUNET_SOCIAL_EntryDecisionCallback entry_decision_cb,
1841                                    void *cls)
1842 {
1843   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1844   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1845
1846   if (NULL == password)
1847     password = "";
1848
1849   uint16_t app_id_size = strlen (app->id) + 1;
1850   uint16_t gns_name_size = strlen (gns_name) + 1;
1851   uint16_t password_size = strlen (password) + 1;
1852
1853   uint16_t join_msg_size = 0;
1854   if (NULL != join_msg)
1855     join_msg_size = ntohs (join_msg->header.size);
1856
1857   struct GuestEnterByNameRequest *greq;
1858   plc->connect_env
1859     = GNUNET_MQ_msg_extra (greq, app_id_size + gns_name_size
1860                            + password_size + join_msg_size,
1861                            GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_BY_NAME);
1862
1863   greq->ego_pub_key = ego->pub_key;
1864
1865   char *p = (char *) &greq[1];
1866   GNUNET_memcpy (p, app->id, app_id_size);
1867   p += app_id_size;
1868   GNUNET_memcpy (p, gns_name, gns_name_size);
1869   p += gns_name_size;
1870   GNUNET_memcpy (p, password, password_size);
1871   p += password_size;
1872   if (NULL != join_msg)
1873     GNUNET_memcpy (p, join_msg, join_msg_size);
1874
1875   plc->ego_pub_key = ego->pub_key;
1876   plc->cfg = app->cfg;
1877   plc->is_host = GNUNET_NO;
1878   plc->slicer = slicer;
1879
1880   plc->op = GNUNET_OP_create ();
1881
1882   gst->enter_cb = local_enter_cb;
1883   gst->entry_dcsn_cb = entry_decision_cb;
1884   gst->cb_cls = cls;
1885
1886   guest_connect (gst);
1887   return gst;
1888 }
1889
1890
1891 /**
1892  * Reconnect to an already entered place as guest.
1893  *
1894  * @param gconn
1895  *        Guest connection handle.
1896  *        @see GNUNET_SOCIAL_app_connect() & GNUNET_SOCIAL_AppGuestPlaceCallback()
1897  * @param flags
1898  *        Flags for the entry.
1899  * @param slicer
1900  *        Slicer to use for processing incoming requests from guests.
1901  * @param local_enter_cb
1902  *        Called upon connection established to the social service.
1903  * @param entry_decision_cb
1904  *        Called upon receiving entry decision.
1905  *
1906  * @return NULL on errors, otherwise handle for the guest.
1907  */
1908 struct GNUNET_SOCIAL_Guest *
1909 GNUNET_SOCIAL_guest_enter_reconnect (struct GNUNET_SOCIAL_GuestConnection *gconn,
1910                                      enum GNUNET_PSYC_SlaveJoinFlags flags,
1911                                      struct GNUNET_PSYC_Slicer *slicer,
1912                                      GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1913                                      void *cls)
1914 {
1915   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1916   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1917
1918   uint16_t app_id_size = strlen (gconn->app->id) + 1;
1919   struct GuestEnterRequest *greq;
1920   plc->connect_env
1921     = GNUNET_MQ_msg_extra (greq, app_id_size,
1922                            GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1923   greq->ego_pub_key = gconn->plc_msg.ego_pub_key;
1924   greq->place_pub_key = gconn->plc_msg.place_pub_key;
1925   greq->flags = htonl (flags);
1926
1927   GNUNET_memcpy (&greq[1], gconn->app->id, app_id_size);
1928
1929   plc->cfg = gconn->app->cfg;
1930   plc->is_host = GNUNET_NO;
1931   plc->slicer = slicer;
1932   plc->pub_key = gconn->plc_msg.place_pub_key;
1933   plc->ego_pub_key = gconn->plc_msg.ego_pub_key;
1934
1935   plc->op = GNUNET_OP_create ();
1936
1937   gst->enter_cb = local_enter_cb;
1938   gst->cb_cls = cls;
1939
1940   guest_connect (gst);
1941   return gst;
1942 }
1943
1944
1945 /**
1946  * Talk to the host of the place.
1947  *
1948  * @param place
1949  *        Place where we want to talk to the host.
1950  * @param method_name
1951  *        Method to invoke on the host.
1952  * @param env
1953  *        Environment containing variables for the message, or NULL.
1954  * @param notify_data
1955  *        Function to use to get the payload for the method.
1956  * @param notify_data_cls
1957  *        Closure for @a notify_data.
1958  * @param flags
1959  *        Flags for the message being sent.
1960  *
1961  * @return NULL if we are already trying to talk to the host,
1962  *         otherwise handle to cancel the request.
1963  */
1964 struct GNUNET_SOCIAL_TalkRequest *
1965 GNUNET_SOCIAL_guest_talk (struct GNUNET_SOCIAL_Guest *gst,
1966                           const char *method_name,
1967                           const struct GNUNET_PSYC_Environment *env,
1968                           GNUNET_PSYC_TransmitNotifyData notify_data,
1969                           void *notify_data_cls,
1970                           enum GNUNET_SOCIAL_TalkFlags flags)
1971 {
1972   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1973   GNUNET_assert (NULL != plc->tmit);
1974
1975   if (GNUNET_OK ==
1976       GNUNET_PSYC_transmit_message (plc->tmit, method_name, env,
1977                                     NULL, notify_data, notify_data_cls, flags))
1978     return (struct GNUNET_SOCIAL_TalkRequest *) plc->tmit;
1979   else
1980     return NULL;
1981 }
1982
1983
1984 /**
1985  * Resume talking to the host of the place.
1986  *
1987  * @param tr
1988  *        Talk request to resume.
1989  */
1990 void
1991 GNUNET_SOCIAL_guest_talk_resume (struct GNUNET_SOCIAL_TalkRequest *tr)
1992 {
1993   GNUNET_PSYC_transmit_resume ((struct GNUNET_PSYC_TransmitHandle *) tr);
1994 }
1995
1996
1997 /**
1998  * Cancel talking to the host of the place.
1999  *
2000  * @param tr
2001  *        Talk request to cancel.
2002  */
2003 void
2004 GNUNET_SOCIAL_guest_talk_cancel (struct GNUNET_SOCIAL_TalkRequest *tr)
2005 {
2006   GNUNET_PSYC_transmit_cancel ( (struct GNUNET_PSYC_TransmitHandle *) tr);
2007 }
2008
2009
2010 /**
2011  * Disconnect from a place.
2012  *
2013  * Invalidates guest handle.
2014  *
2015  * @param gst
2016  *        The guest to disconnect.
2017  */
2018 void
2019 GNUNET_SOCIAL_guest_disconnect (struct GNUNET_SOCIAL_Guest *gst,
2020                                 GNUNET_ContinuationCallback disconnect_cb,
2021                                 void *cls)
2022 {
2023   place_disconnect (&gst->plc, disconnect_cb, cls);
2024 }
2025
2026
2027 /**
2028  * Leave a place temporarily or permanently.
2029  *
2030  * Notifies the owner of the place about leaving, and destroys the place handle.
2031  *
2032  * @param place
2033  *        Place to leave.
2034  * @param keep_active
2035  *        Keep place active after last application disconnected.
2036  *        #GNUNET_YES or #GNUNET_NO
2037  * @param env
2038  *        Optional environment for the leave message if @a keep_active
2039  *        is #GNUNET_NO.  NULL if not needed.
2040  * @param leave_cb
2041  *        Called upon disconnecting from the social service.
2042  */
2043 void
2044 GNUNET_SOCIAL_guest_leave (struct GNUNET_SOCIAL_Guest *gst,
2045                            struct GNUNET_PSYC_Environment *env,
2046                            GNUNET_ContinuationCallback disconnect_cb,
2047                            void *cls)
2048 {
2049   GNUNET_SOCIAL_guest_talk (gst, "_notice_place_leave", env, NULL, NULL,
2050                             GNUNET_SOCIAL_TALK_NONE);
2051   place_leave (&gst->plc);
2052   GNUNET_SOCIAL_guest_disconnect (gst, disconnect_cb, cls);
2053 }
2054
2055
2056 /**
2057  * Obtain handle for a place entered as guest.
2058  *
2059  * The returned handle can be used to access the place API.
2060  *
2061  * @param guest  Handle for the guest.
2062  *
2063  * @return Handle for the place, valid as long as @a guest is valid.
2064  */
2065 struct GNUNET_SOCIAL_Place *
2066 GNUNET_SOCIAL_guest_get_place (struct GNUNET_SOCIAL_Guest *gst)
2067 {
2068   return &gst->plc;
2069 }
2070
2071
2072 /**
2073  * Obtain the public key of a place.
2074  *
2075  * @param plc
2076  *        Place.
2077  *
2078  * @return Public key of the place.
2079  */
2080 const struct GNUNET_CRYPTO_EddsaPublicKey *
2081 GNUNET_SOCIAL_place_get_pub_key (const struct GNUNET_SOCIAL_Place *plc)
2082 {
2083   return &plc->pub_key;
2084 }
2085
2086
2087 /**
2088  * Set message processing @a flags for a @a method_prefix.
2089  *
2090  * @param plc
2091  *        Place.
2092  * @param method_prefix
2093  *        Method prefix @a flags apply to.
2094  * @param flags
2095  *        The flags that apply to a matching @a method_prefix.
2096  */
2097 void
2098 GNUNET_SOCIAL_place_msg_proc_set (struct GNUNET_SOCIAL_Place *plc,
2099                                   const char *method_prefix,
2100                                   enum GNUNET_SOCIAL_MsgProcFlags flags)
2101 {
2102   GNUNET_assert (NULL != method_prefix);
2103   struct MsgProcRequest *mpreq;
2104   uint16_t method_size = strnlen (method_prefix,
2105                                   GNUNET_SERVER_MAX_MESSAGE_SIZE
2106                                   - sizeof (*mpreq)) + 1;
2107   GNUNET_assert ('\0' == method_prefix[method_size - 1]);
2108
2109   struct GNUNET_MQ_Envelope *
2110     env = GNUNET_MQ_msg_extra (mpreq, method_size,
2111                                GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_SET);
2112   mpreq->flags = htonl (flags);
2113   GNUNET_memcpy (&mpreq[1], method_prefix, method_size);
2114
2115   GNUNET_MQ_send (plc->mq, env);
2116 }
2117
2118
2119 /**
2120  * Clear all message processing flags previously set for this place.
2121  */
2122 void
2123 GNUNET_SOCIAL_place_msg_proc_clear (struct GNUNET_SOCIAL_Place *plc)
2124 {
2125   struct GNUNET_MessageHeader *req;
2126   struct GNUNET_MQ_Envelope *
2127     env = GNUNET_MQ_msg (req, GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_CLEAR);
2128
2129   GNUNET_MQ_send (plc->mq, env);
2130 }
2131
2132
2133 static struct GNUNET_SOCIAL_HistoryRequest *
2134 place_history_replay (struct GNUNET_SOCIAL_Place *plc,
2135                       uint64_t start_message_id,
2136                       uint64_t end_message_id,
2137                       uint64_t message_limit,
2138                       const char *method_prefix,
2139                       uint32_t flags,
2140                       struct GNUNET_PSYC_Slicer *slicer,
2141                       GNUNET_ResultCallback result_cb,
2142                       void *cls)
2143 {
2144   struct GNUNET_PSYC_HistoryRequestMessage *req;
2145   struct GNUNET_SOCIAL_HistoryRequest *hist = GNUNET_malloc (sizeof (*hist));
2146   hist->plc = plc;
2147   hist->slicer = slicer;
2148   hist->result_cb = result_cb;
2149   hist->cls = cls;
2150   hist->op_id = GNUNET_OP_add (plc->op, op_recv_history_result, hist, NULL);
2151
2152   GNUNET_assert (NULL != method_prefix);
2153   uint16_t method_size = strnlen (method_prefix,
2154                                   GNUNET_SERVER_MAX_MESSAGE_SIZE
2155                                   - sizeof (*req)) + 1;
2156   GNUNET_assert ('\0' == method_prefix[method_size - 1]);
2157
2158   struct GNUNET_MQ_Envelope *
2159     env = GNUNET_MQ_msg_extra (req, method_size,
2160                                GNUNET_MESSAGE_TYPE_PSYC_HISTORY_REPLAY);
2161   req->start_message_id = GNUNET_htonll (start_message_id);
2162   req->end_message_id = GNUNET_htonll (end_message_id);
2163   req->message_limit = GNUNET_htonll (message_limit);
2164   req->flags = htonl (flags);
2165   req->op_id = GNUNET_htonll (hist->op_id);
2166   GNUNET_memcpy (&req[1], method_prefix, method_size);
2167
2168   GNUNET_MQ_send (plc->mq, env);
2169   return hist;
2170 }
2171
2172
2173 /**
2174  * Learn about the history of a place.
2175  *
2176  * Messages are returned through the @a slicer function
2177  * and have the #GNUNET_PSYC_MESSAGE_HISTORIC flag set.
2178  *
2179  * @param place
2180  *        Place we want to learn more about.
2181  * @param start_message_id
2182  *        First historic message we are interested in.
2183  * @param end_message_id
2184  *        Last historic message we are interested in (inclusive).
2185  * @param method_prefix
2186  *        Only retrieve messages with this method prefix.
2187  * @param flags
2188  *        OR'ed GNUNET_PSYC_HistoryReplayFlags
2189  * @param slicer
2190  *        Slicer to use for retrieved messages.
2191  *        Can be the same as the slicer of the place.
2192  * @param result_cb
2193  *        Function called after all messages retrieved.
2194  *        NULL if not needed.
2195  * @param cls Closure for @a result_cb.
2196  */
2197 struct GNUNET_SOCIAL_HistoryRequest *
2198 GNUNET_SOCIAL_place_history_replay (struct GNUNET_SOCIAL_Place *plc,
2199                                     uint64_t start_message_id,
2200                                     uint64_t end_message_id,
2201                                     const char *method_prefix,
2202                                     uint32_t flags,
2203                                     struct GNUNET_PSYC_Slicer *slicer,
2204                                     GNUNET_ResultCallback result_cb,
2205                                     void *cls)
2206 {
2207   return place_history_replay (plc, start_message_id, end_message_id, 0,
2208                                method_prefix, flags, slicer, result_cb, cls);
2209 }
2210
2211
2212 /**
2213  * Learn about the history of a place.
2214  *
2215  * Sends messages through the slicer function of the place where
2216  * start_message_id <= message_id <= end_message_id.
2217  * The messages will have the #GNUNET_PSYC_MESSAGE_HISTORIC flag set.
2218  *
2219  * To get the latest message, use 0 for both the start and end message ID.
2220  *
2221  * @param place
2222  *        Place we want to learn more about.
2223  * @param message_limit
2224  *        Maximum number of historic messages we are interested in.
2225  * @param method_prefix
2226  *        Only retrieve messages with this method prefix.
2227  * @param flags
2228  *        OR'ed GNUNET_PSYC_HistoryReplayFlags
2229  * @param result_cb
2230  *        Function called after all messages retrieved.
2231  *        NULL if not needed.
2232  * @param cls Closure for @a result_cb.
2233  */
2234 struct GNUNET_SOCIAL_HistoryRequest *
2235 GNUNET_SOCIAL_place_history_replay_latest (struct GNUNET_SOCIAL_Place *plc,
2236                                            uint64_t message_limit,
2237                                            const char *method_prefix,
2238                                            uint32_t flags,
2239                                            struct GNUNET_PSYC_Slicer *slicer,
2240                                            GNUNET_ResultCallback result_cb,
2241                                            void *cls)
2242 {
2243   return place_history_replay (plc, 0, 0, message_limit, method_prefix, flags,
2244                                slicer, result_cb, cls);
2245 }
2246
2247
2248 /**
2249  * Cancel learning about the history of a place.
2250  *
2251  * @param hist
2252  *        History lesson to cancel.
2253  */
2254 void
2255 GNUNET_SOCIAL_place_history_replay_cancel (struct GNUNET_SOCIAL_HistoryRequest *hist)
2256 {
2257   GNUNET_OP_remove (hist->plc->op, hist->op_id);
2258   GNUNET_free (hist);
2259 }
2260
2261
2262 /**
2263  * Request matching state variables.
2264  */
2265 static struct GNUNET_SOCIAL_LookHandle *
2266 place_state_get (struct GNUNET_SOCIAL_Place *plc,
2267                  uint16_t type, const char *name,
2268                  GNUNET_PSYC_StateVarCallback var_cb,
2269                  GNUNET_ResultCallback result_cb, void *cls)
2270 {
2271   struct GNUNET_PSYC_StateRequestMessage *req;
2272   struct GNUNET_SOCIAL_LookHandle *look = GNUNET_malloc (sizeof (*look));
2273   look->plc = plc;
2274   look->var_cb = var_cb;
2275   look->result_cb = result_cb;
2276   look->cls = cls;
2277   look->op_id = GNUNET_OP_add (plc->op, &op_recv_state_result, look, NULL);
2278
2279   GNUNET_assert (NULL != name);
2280   size_t name_size = strnlen (name, GNUNET_SERVER_MAX_MESSAGE_SIZE
2281                               - sizeof (*req)) + 1;
2282   struct GNUNET_MQ_Envelope *
2283     env = GNUNET_MQ_msg_extra (req, name_size, type);
2284   req->op_id = GNUNET_htonll (look->op_id);
2285   GNUNET_memcpy (&req[1], name, name_size);
2286
2287   GNUNET_MQ_send (plc->mq, env);
2288   return look;
2289 }
2290
2291
2292 /**
2293  * Look at a particular object in the place.
2294  *
2295  * The best matching object is returned (its name might be less specific than
2296  * what was requested).
2297  *
2298  * @param place
2299  *        The place where to look.
2300  * @param full_name
2301  *        Full name of the object.
2302  * @param value_size
2303  *        Set to the size of the returned value.
2304  *
2305  * @return NULL if there is no such object at this place.
2306  */
2307 struct GNUNET_SOCIAL_LookHandle *
2308 GNUNET_SOCIAL_place_look_at (struct GNUNET_SOCIAL_Place *plc,
2309                              const char *full_name,
2310                              GNUNET_PSYC_StateVarCallback var_cb,
2311                              GNUNET_ResultCallback result_cb,
2312                              void *cls)
2313 {
2314   return place_state_get (plc, GNUNET_MESSAGE_TYPE_PSYC_STATE_GET,
2315                           full_name, var_cb, result_cb, cls);
2316 }
2317
2318
2319 /**
2320  * Look for objects in the place with a matching name prefix.
2321  *
2322  * @param place
2323  *        The place where to look.
2324  * @param name_prefix
2325  *        Look at objects with names beginning with this value.
2326  * @param var_cb
2327  *        Function to call for each object found.
2328  * @param cls
2329  *        Closure for callback function.
2330  *
2331  * @return Handle that can be used to stop looking at objects.
2332  */
2333 struct GNUNET_SOCIAL_LookHandle *
2334 GNUNET_SOCIAL_place_look_for (struct GNUNET_SOCIAL_Place *plc,
2335                               const char *name_prefix,
2336                               GNUNET_PSYC_StateVarCallback var_cb,
2337                               GNUNET_ResultCallback result_cb,
2338                               void *cls)
2339 {
2340   return place_state_get (plc, GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX,
2341                           name_prefix, var_cb, result_cb, cls);
2342 }
2343
2344
2345 /**
2346  * Cancel a state request operation.
2347  *
2348  * @param sr
2349  *        Handle for the operation to cancel.
2350  */
2351 void
2352 GNUNET_SOCIAL_place_look_cancel (struct GNUNET_SOCIAL_LookHandle *look)
2353 {
2354   GNUNET_OP_remove (look->plc->op, look->op_id);
2355   GNUNET_free (look);
2356 }
2357
2358
2359 static void
2360 op_recv_zone_add_place_result (void *cls, int64_t result,
2361                                const void *err_msg, uint16_t err_msg_size)
2362 {
2363   LOG (GNUNET_ERROR_TYPE_DEBUG,
2364        "Received zone add place result: %" PRId64 ".\n", result);
2365
2366   struct ZoneAddPlaceHandle *add_plc = cls;
2367   if (NULL != add_plc->result_cb)
2368     add_plc->result_cb (add_plc->result_cls, result, err_msg, err_msg_size);
2369
2370   GNUNET_free (add_plc);
2371 }
2372
2373
2374 /**
2375  * Advertise @e place in the GNS zone of @e ego.
2376  *
2377  * @param app
2378  *        Application handle.
2379  * @param ego
2380  *        Ego.
2381  * @param place_pub_key
2382  *        Public key of place to add.
2383  * @param name
2384  *        The name for the PLACE record to put in the zone.
2385  * @param password
2386  *        Password used to encrypt the record or NULL to keep it cleartext.
2387  * @param relay_count
2388  *        Number of elements in the @a relays array.
2389  * @param relays
2390  *        List of relays to put in the PLACE record to advertise
2391  *        as entry points to the place in addition to the origin.
2392  * @param expiration_time
2393  *        Expiration time of the record, use 0 to remove the record.
2394  * @param result_cb
2395  *        Function called with the result of the operation.
2396  * @param result_cls
2397  *        Closure for @a result_cb
2398  *
2399  * @return #GNUNET_OK if the request was sent,
2400  *         #GNUNET_SYSERR on error, e.g. the name/password is too long.
2401  */
2402 int
2403 GNUNET_SOCIAL_zone_add_place (const struct GNUNET_SOCIAL_App *app,
2404                               const struct GNUNET_SOCIAL_Ego *ego,
2405                               const char *name,
2406                               const char *password,
2407                               const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
2408                               const struct GNUNET_PeerIdentity *origin,
2409                               uint32_t relay_count,
2410                               const struct GNUNET_PeerIdentity *relays,
2411                               struct GNUNET_TIME_Absolute expiration_time,
2412                               GNUNET_ResultCallback result_cb,
2413                               void *result_cls)
2414 {
2415   struct ZoneAddPlaceRequest *preq;
2416   size_t name_size = strlen (name) + 1;
2417   size_t password_size = strlen (password) + 1;
2418   size_t relay_size = relay_count * sizeof (*relays);
2419   size_t payload_size = name_size + password_size + relay_size;
2420
2421   if (GNUNET_SERVER_MAX_MESSAGE_SIZE < sizeof (*preq) + payload_size)
2422     return GNUNET_SYSERR;
2423
2424   struct GNUNET_MQ_Envelope *
2425     env = GNUNET_MQ_msg_extra (preq, payload_size,
2426                                GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_PLACE);
2427   preq->expiration_time = GNUNET_htonll (expiration_time.abs_value_us);
2428   preq->ego_pub_key = ego->pub_key;
2429   preq->place_pub_key = *place_pub_key;
2430   preq->origin = *origin;
2431   preq->relay_count = htonl (relay_count);
2432
2433   char *p = (char *) &preq[1];
2434   GNUNET_memcpy (p, name, name_size);
2435   p += name_size;
2436   GNUNET_memcpy (p, password, password_size);
2437   p += password_size;
2438   GNUNET_memcpy (p, relays, relay_size);
2439
2440   struct ZoneAddPlaceHandle * add_plc = GNUNET_malloc (sizeof (*add_plc));
2441   add_plc->result_cb = result_cb;
2442   add_plc->result_cls = result_cls;
2443
2444   preq->op_id = GNUNET_htonll (GNUNET_OP_add (app->op,
2445                                               op_recv_zone_add_place_result,
2446                                               add_plc, NULL));
2447
2448   GNUNET_MQ_send (app->mq, env);
2449   return GNUNET_OK;
2450 }
2451
2452
2453 static void
2454 op_recv_zone_add_nym_result (void *cls, int64_t result,
2455                              const void *err_msg, uint16_t err_msg_size)
2456 {
2457   LOG (GNUNET_ERROR_TYPE_DEBUG,
2458        "Received zone add nym result: %" PRId64 ".\n", result);
2459
2460   struct ZoneAddNymHandle *add_nym = cls;
2461   if (NULL != add_nym->result_cb)
2462     add_nym->result_cb (add_nym->result_cls, result, err_msg, err_msg_size);
2463
2464   GNUNET_free (add_nym);
2465 }
2466
2467
2468 /**
2469  * Add nym to the GNS zone of @e ego.
2470  *
2471  * @param cfg
2472  *        Configuration.
2473  * @param ego
2474  *        Ego.
2475  * @param name
2476  *        The name for the PKEY record to put in the zone.
2477  * @param nym_pub_key
2478  *        Public key of nym to add.
2479  * @param expiration_time
2480  *        Expiration time of the record, use 0 to remove the record.
2481  * @param result_cb
2482  *        Function called with the result of the operation.
2483  * @param result_cls
2484  *        Closure for @a result_cb
2485  *
2486  * @return #GNUNET_OK if the request was sent,
2487  *         #GNUNET_SYSERR on error, e.g. the name is too long.
2488  */
2489 int
2490 GNUNET_SOCIAL_zone_add_nym (const struct GNUNET_SOCIAL_App *app,
2491                             const struct GNUNET_SOCIAL_Ego *ego,
2492                             const char *name,
2493                             const struct GNUNET_CRYPTO_EcdsaPublicKey *nym_pub_key,
2494                             struct GNUNET_TIME_Absolute expiration_time,
2495                             GNUNET_ResultCallback result_cb,
2496                             void *result_cls)
2497 {
2498   struct ZoneAddNymRequest *nreq;
2499
2500   size_t name_size = strlen (name) + 1;
2501   if (GNUNET_SERVER_MAX_MESSAGE_SIZE < sizeof (*nreq) + name_size)
2502     return GNUNET_SYSERR;
2503
2504   struct GNUNET_MQ_Envelope *
2505     env = GNUNET_MQ_msg_extra (nreq, name_size,
2506                                GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_NYM);
2507   nreq->expiration_time = GNUNET_htonll (expiration_time.abs_value_us);
2508   nreq->ego_pub_key = ego->pub_key;
2509   nreq->nym_pub_key = *nym_pub_key;
2510   GNUNET_memcpy (&nreq[1], name, name_size);
2511
2512   struct ZoneAddNymHandle *add_nym = GNUNET_malloc (sizeof (*add_nym));
2513   add_nym->result_cb = result_cb;
2514   add_nym->result_cls = result_cls;
2515
2516   nreq->op_id = GNUNET_htonll (GNUNET_OP_add (app->op,
2517                                               op_recv_zone_add_nym_result,
2518                                               add_nym, NULL));
2519
2520   GNUNET_MQ_send (app->mq, env);
2521   return GNUNET_OK;
2522 }
2523
2524
2525 /*** APP ***/
2526
2527
2528 static void
2529 app_connect (struct GNUNET_SOCIAL_App *app);
2530
2531
2532 static void
2533 app_reconnect (void *cls)
2534 {
2535   app_connect (cls);
2536 }
2537
2538
2539 /**
2540  * App client disconnected from service.
2541  *
2542  * Reconnect after backoff period.
2543  */
2544 static void
2545 app_disconnected (void *cls, enum GNUNET_MQ_Error error)
2546 {
2547   struct GNUNET_SOCIAL_App *app = cls;
2548
2549   LOG (GNUNET_ERROR_TYPE_DEBUG,
2550        "App client disconnected (%d), re-connecting\n",
2551        (int) error);
2552   if (NULL != app->mq)
2553   {
2554     GNUNET_MQ_destroy (app->mq);
2555     app->mq = NULL;
2556   }
2557
2558   app->reconnect_task = GNUNET_SCHEDULER_add_delayed (app->reconnect_delay,
2559                                                       app_reconnect,
2560                                                       app);
2561   app->reconnect_delay = GNUNET_TIME_STD_BACKOFF (app->reconnect_delay);
2562 }
2563
2564
2565 static void
2566 app_connect (struct GNUNET_SOCIAL_App *app)
2567 {
2568   struct GNUNET_MQ_MessageHandler handlers[] = {
2569     GNUNET_MQ_hd_var_size (app_ego,
2570                            GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO,
2571                            struct AppEgoMessage,
2572                            app),
2573     GNUNET_MQ_hd_fixed_size (app_ego_end,
2574                              GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO_END,
2575                              struct GNUNET_MessageHeader,
2576                              app),
2577     GNUNET_MQ_hd_var_size (app_place,
2578                            GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE,
2579                            struct AppPlaceMessage,
2580                            app),
2581     GNUNET_MQ_hd_fixed_size (app_place_end,
2582                              GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE_END,
2583                              struct GNUNET_MessageHeader,
2584                              app),
2585     GNUNET_MQ_hd_var_size (app_result,
2586                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
2587                            struct GNUNET_OperationResultMessage,
2588                            app),
2589     GNUNET_MQ_handler_end ()
2590   };
2591
2592   app->mq = GNUNET_CLIENT_connecT (app->cfg, "social",
2593                                    handlers, app_disconnected, app);
2594   GNUNET_assert (NULL != app->mq);
2595   GNUNET_MQ_send_copy (app->mq, app->connect_env);
2596 }
2597
2598
2599 /**
2600  * Connect application to the social service.
2601  *
2602  * The @host_place_cb and @guest_place_cb functions are
2603  * initially called for each entered places,
2604  * then later each time a new place is entered with the current application ID.
2605  *
2606  * @param cfg
2607  *        Configuration.
2608  * @param id
2609  *        Application ID.
2610  * @param ego_cb
2611  *        Function to notify about an available ego.
2612  * @param host_cb
2613  *        Function to notify about a place entered as host.
2614  * @param guest_cb
2615  *        Function to notify about a place entered as guest.
2616  * @param cls
2617  *        Closure for the callbacks.
2618  *
2619  * @return Handle that can be used to stop listening.
2620  */
2621 struct GNUNET_SOCIAL_App *
2622 GNUNET_SOCIAL_app_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
2623                            const char *id,
2624                            GNUNET_SOCIAL_AppEgoCallback ego_cb,
2625                            GNUNET_SOCIAL_AppHostPlaceCallback host_cb,
2626                            GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb,
2627                            GNUNET_SOCIAL_AppConnectedCallback connected_cb,
2628                            void *cls)
2629 {
2630   uint16_t app_id_size = strnlen (id, GNUNET_SOCIAL_APP_MAX_ID_SIZE);
2631   if (GNUNET_SOCIAL_APP_MAX_ID_SIZE == app_id_size)
2632     return NULL;
2633   app_id_size++;
2634
2635   struct GNUNET_SOCIAL_App *app = GNUNET_malloc (sizeof *app);
2636   app->cfg = cfg;
2637   app->ego_cb = ego_cb;
2638   app->host_cb = host_cb;
2639   app->guest_cb = guest_cb;
2640   app->connected_cb = connected_cb;
2641   app->cb_cls = cls;
2642   app->egos = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
2643   app->op = GNUNET_OP_create ();
2644   app->id = GNUNET_malloc (app_id_size);
2645   GNUNET_memcpy (app->id, id, app_id_size);
2646
2647   struct AppConnectRequest *creq;
2648   app->connect_env = GNUNET_MQ_msg_extra (creq, app_id_size,
2649                                           GNUNET_MESSAGE_TYPE_SOCIAL_APP_CONNECT);
2650   GNUNET_memcpy (&creq[1], app->id, app_id_size);
2651
2652   app_connect (app);
2653   return app;
2654 }
2655
2656
2657 static void
2658 app_cleanup (struct GNUNET_SOCIAL_App *app)
2659 {
2660   if (NULL != app->mq)
2661   {
2662     GNUNET_MQ_destroy (app->mq);
2663     app->mq = NULL;
2664   }
2665   if (NULL != app->disconnect_cb)
2666   {
2667     app->disconnect_cb (app->disconnect_cls);
2668     app->disconnect_cb = NULL;
2669   }
2670   GNUNET_free (app);
2671 }
2672
2673 /**
2674  * Disconnect application.
2675  *
2676  * @param app
2677  *        Application handle.
2678  * @param disconnect_cb
2679  *        Disconnect callback.
2680  * @param disconnect_cls
2681  *        Disconnect closure.
2682  */
2683 void
2684 GNUNET_SOCIAL_app_disconnect (struct GNUNET_SOCIAL_App *app,
2685                               GNUNET_ContinuationCallback disconnect_cb,
2686                               void *disconnect_cls)
2687 {
2688   app->disconnect_cb = disconnect_cb;
2689   app->disconnect_cls = disconnect_cls;
2690
2691   if (NULL != app->mq)
2692   {
2693     struct GNUNET_MQ_Envelope *last = GNUNET_MQ_get_last_envelope (app->mq);
2694     if (NULL != last)
2695     {
2696       GNUNET_MQ_notify_sent (last,
2697                              (GNUNET_MQ_NotifyCallback) app_cleanup, app);
2698     }
2699     else
2700     {
2701       app_cleanup (app);
2702     }
2703   }
2704   else
2705   {
2706     app_cleanup (app);
2707   }
2708 }
2709
2710
2711 /**
2712  * Detach application from a place.
2713  *
2714  * Removes the place from the entered places list for this application.
2715  * Note: this does not disconnect from the place.
2716  *
2717  * @see GNUNET_SOCIAL_host_disconnect() and GNUNET_SOCIAL_guest_disconnect()
2718  *
2719  * @param app
2720  *        Application.
2721  * @param plc
2722  *        Place.
2723  */
2724 void
2725 GNUNET_SOCIAL_app_detach (struct GNUNET_SOCIAL_App *app,
2726                           struct GNUNET_SOCIAL_Place *plc)
2727 {
2728   struct AppDetachRequest *dreq;
2729   struct GNUNET_MQ_Envelope *
2730     env = GNUNET_MQ_msg (dreq, GNUNET_MESSAGE_TYPE_SOCIAL_APP_DETACH);
2731   dreq->place_pub_key = plc->pub_key;
2732
2733   GNUNET_MQ_send (app->mq, env);
2734 }
2735
2736
2737 /* end of social_api.c */