1db8e501ac0b51e4d94b3b73e0fc4e09b70d5818
[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   if (NULL == mod)
661   {
662     GNUNET_break_op (0);
663     LOG (GNUNET_ERROR_TYPE_WARNING,
664          "Invalid modifier in state result\n");
665     return GNUNET_SYSERR;
666   }
667
668   uint16_t size = ntohs (res->header.size);
669   uint16_t mod_size = ntohs (mod->size);
670   if (size - sizeof (*res) != mod_size)
671   {
672     GNUNET_break_op (0);
673     LOG (GNUNET_ERROR_TYPE_WARNING,
674          "Invalid modifier size in state result: %u - %u != %u\n",
675          ntohs (res->header.size), sizeof (*res), mod_size);
676     return GNUNET_SYSERR;
677   }
678   return GNUNET_OK;
679 }
680
681
682 static void
683 handle_place_state_result (void *cls,
684                            const struct GNUNET_OperationResultMessage *res)
685 {
686   struct GNUNET_SOCIAL_Place *plc = cls;
687
688   GNUNET_ResultCallback result_cb = NULL;
689   struct GNUNET_SOCIAL_LookHandle *look = NULL;
690
691   if (GNUNET_YES != GNUNET_OP_get (plc->op,
692                                    GNUNET_ntohll (res->op_id),
693                                    &result_cb, (void *) &look, NULL))
694   { /* Operation not found. */
695     return;
696   }
697
698   const struct GNUNET_MessageHeader *mod = GNUNET_MQ_extract_nested_mh (res);
699   uint16_t mod_size = ntohs (mod->size);
700
701   switch (ntohs (mod->type))
702   {
703   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER:
704   {
705     const struct GNUNET_PSYC_MessageModifier *
706       pmod = (const struct GNUNET_PSYC_MessageModifier *) mod;
707
708     const char *name = (const char *) &pmod[1];
709     uint16_t name_size = ntohs (pmod->name_size);
710     if (0 == name_size
711         || mod_size - sizeof (*pmod) < name_size
712         || '\0' != name[name_size - 1])
713     {
714       GNUNET_break_op (0);
715       LOG (GNUNET_ERROR_TYPE_WARNING,
716            "Invalid modifier name in state result\n");
717       return;
718     }
719     look->mod_value_size = ntohs (pmod->value_size);
720     look->var_cb (look->cls, mod, name, name + name_size,
721                   mod_size - sizeof (*mod) - name_size,
722                   look->mod_value_size);
723     if (look->mod_value_size > mod_size - sizeof (*mod) - name_size)
724     {
725         look->mod_value_remaining = look->mod_value_size;
726         look->mod_name = GNUNET_malloc (name_size);
727         GNUNET_memcpy (look->mod_name, name, name_size);
728     }
729     break;
730   }
731
732   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MOD_CONT:
733     look->var_cb (look->cls, mod, look->mod_name, (const char *) &mod[1],
734                   mod_size - sizeof (*mod), look->mod_value_size);
735     look->mod_value_remaining -= mod_size - sizeof (*mod);
736     if (0 == look->mod_value_remaining)
737     {
738         GNUNET_free (look->mod_name);
739     }
740     break;
741   }
742 }
743
744
745 static void
746 handle_place_message_ack (void *cls,
747                           const struct GNUNET_MessageHeader *msg)
748 {
749   struct GNUNET_SOCIAL_Place *plc = cls;
750
751   GNUNET_PSYC_transmit_got_ack (plc->tmit);
752 }
753
754
755 static int
756 check_place_message (void *cls,
757                      const struct GNUNET_PSYC_MessageHeader *pmsg)
758 {
759   return GNUNET_OK;
760 }
761
762
763 static void
764 handle_place_message (void *cls,
765                       const struct GNUNET_PSYC_MessageHeader *pmsg)
766 {
767   struct GNUNET_SOCIAL_Place *plc = cls;
768
769   GNUNET_PSYC_slicer_message (plc->slicer, pmsg);
770 }
771
772
773 static int
774 check_host_message (void *cls,
775                     const struct GNUNET_PSYC_MessageHeader *pmsg)
776 {
777   return GNUNET_OK;
778 }
779
780
781 static void
782 handle_host_message (void *cls,
783                      const struct GNUNET_PSYC_MessageHeader *pmsg)
784 {
785   struct GNUNET_SOCIAL_Host *hst = cls;
786
787   GNUNET_PSYC_slicer_message (hst->slicer, pmsg);
788   GNUNET_PSYC_slicer_message (hst->plc.slicer, pmsg);
789 }
790
791
792 static void
793 handle_host_enter_ack (void *cls,
794                        const struct HostEnterAck *hack)
795 {
796   struct GNUNET_SOCIAL_Host *hst = cls;
797
798   hst->plc.pub_key = hack->place_pub_key;
799
800   int32_t result = ntohl (hack->result_code);
801   if (NULL != hst->enter_cb)
802     hst->enter_cb (hst->cb_cls, result, &hack->place_pub_key,
803                    GNUNET_ntohll (hack->max_message_id));
804 }
805
806
807 static int
808 check_host_enter_request (void *cls,
809                           const struct GNUNET_PSYC_JoinRequestMessage *req)
810 {
811   return GNUNET_OK;
812 }
813
814
815 static void
816 handle_host_enter_request (void *cls,
817                            const struct GNUNET_PSYC_JoinRequestMessage *req)
818 {
819   struct GNUNET_SOCIAL_Host *hst = cls;
820
821   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
822               "handle_host_enter_request\n");
823
824   if (NULL == hst->answer_door_cb)
825      return;
826
827   const char *method_name = NULL;
828   struct GNUNET_PSYC_Environment *env = NULL;
829   struct GNUNET_PSYC_MessageHeader *entry_pmsg = NULL;
830   const void *data = NULL;
831   uint16_t data_size = 0;
832   char *str;
833   const struct GNUNET_PSYC_Message *join_msg = NULL;
834
835   do
836   {
837     if (sizeof (*req) + sizeof (*join_msg) <= ntohs (req->header.size))
838     {
839       join_msg = (struct GNUNET_PSYC_Message *) GNUNET_MQ_extract_nested_mh (req);
840       LOG (GNUNET_ERROR_TYPE_DEBUG,
841            "Received join_msg of type %u and size %u.\n",
842            ntohs (join_msg->header.type), ntohs (join_msg->header.size));
843
844       env = GNUNET_PSYC_env_create ();
845       entry_pmsg = GNUNET_PSYC_message_header_create_from_psyc (join_msg);
846       if (GNUNET_OK != GNUNET_PSYC_message_parse (entry_pmsg, &method_name, env,
847                                                   &data, &data_size))
848       {
849         GNUNET_break_op (0);
850         str = GNUNET_CRYPTO_ecdsa_public_key_to_string (&req->slave_pub_key);
851         LOG (GNUNET_ERROR_TYPE_WARNING,
852              "Ignoring invalid entry request from nym %s.\n",
853              str);
854         GNUNET_free (str);
855         break;
856       }
857     }
858
859     struct GNUNET_SOCIAL_Nym *nym = nym_get_or_create (&req->slave_pub_key);
860     hst->answer_door_cb (hst->cb_cls, nym, method_name, env,
861                          data, data_size);
862   } while (0);
863
864   if (NULL != env)
865     GNUNET_PSYC_env_destroy (env);
866   if (NULL != entry_pmsg)
867     GNUNET_free (entry_pmsg);
868 }
869
870
871 static void
872 handle_guest_enter_ack (void *cls,
873                         const struct GNUNET_PSYC_CountersResultMessage *cres)
874 {
875   struct GNUNET_SOCIAL_Guest *gst = cls;
876
877   int32_t result = ntohl (cres->result_code);
878   if (NULL != gst->enter_cb)
879     gst->enter_cb (gst->cb_cls, result, &gst->plc.pub_key,
880                    GNUNET_ntohll (cres->max_message_id));
881 }
882
883
884 static int
885 check_guest_enter_decision (void *cls,
886                             const struct GNUNET_PSYC_JoinDecisionMessage *dcsn)
887 {
888   return GNUNET_OK;
889 }
890
891
892 static void
893 handle_guest_enter_decision (void *cls,
894                              const struct GNUNET_PSYC_JoinDecisionMessage *dcsn)
895 {
896   struct GNUNET_SOCIAL_Guest *gst = cls;
897
898   struct GNUNET_PSYC_Message *pmsg = NULL;
899   if (ntohs (dcsn->header.size) > sizeof (*dcsn))
900     pmsg = (struct GNUNET_PSYC_Message *) GNUNET_MQ_extract_nested_mh (dcsn);
901
902   if (NULL != gst->entry_dcsn_cb)
903     gst->entry_dcsn_cb (gst->cb_cls, ntohl (dcsn->is_admitted), pmsg);
904 }
905
906
907 static int
908 check_app_ego (void *cls,
909                const struct AppEgoMessage *emsg)
910 {
911   return GNUNET_OK;
912 }
913
914
915 static void
916 handle_app_ego (void *cls,
917                 const struct AppEgoMessage *emsg)
918 {
919   struct GNUNET_SOCIAL_App *app = cls;
920
921   uint16_t name_size = ntohs (emsg->header.size) - sizeof (*emsg);
922
923   struct GNUNET_HashCode ego_pub_hash;
924   GNUNET_CRYPTO_hash (&emsg->ego_pub_key, sizeof (emsg->ego_pub_key),
925                       &ego_pub_hash);
926
927   struct GNUNET_SOCIAL_Ego *
928     ego = GNUNET_CONTAINER_multihashmap_get (app->egos, &ego_pub_hash);
929   if (NULL == ego)
930   {
931     ego = GNUNET_malloc (sizeof (*ego));
932     ego->pub_key = emsg->ego_pub_key;
933     ego->name = GNUNET_malloc (name_size);
934     GNUNET_memcpy (ego->name, &emsg[1], name_size);
935   }
936   else
937   {
938     ego->name = GNUNET_realloc (ego->name, name_size);
939     GNUNET_memcpy (ego->name, &emsg[1], name_size);
940   }
941
942   GNUNET_CONTAINER_multihashmap_put (app->egos, &ego_pub_hash, ego,
943                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE);
944
945   if (NULL != app->ego_cb)
946     app->ego_cb (app->cb_cls, ego, &ego->pub_key, ego->name);
947 }
948
949
950 static void
951 handle_app_ego_end (void *cls,
952                     const struct GNUNET_MessageHeader *msg)
953 {
954   //struct GNUNET_SOCIAL_App *app = cls;
955 }
956
957
958 static int
959 check_app_place (void *cls,
960                  const struct AppPlaceMessage *pmsg)
961 {
962   return GNUNET_OK;
963 }
964
965
966 static void
967 handle_app_place (void *cls,
968                   const struct AppPlaceMessage *pmsg)
969 {
970   struct GNUNET_SOCIAL_App *app = cls;
971
972   if ((GNUNET_YES == pmsg->is_host && NULL == app->host_cb)
973       || (GNUNET_NO == pmsg->is_host && NULL == app->guest_cb))
974     return;
975
976   struct GNUNET_HashCode ego_pub_hash;
977   GNUNET_CRYPTO_hash (&pmsg->ego_pub_key, sizeof (pmsg->ego_pub_key),
978                       &ego_pub_hash);
979   struct GNUNET_SOCIAL_Ego *
980     ego = GNUNET_CONTAINER_multihashmap_get (app->egos, &ego_pub_hash);
981   if (NULL == ego)
982   {
983     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failure to obtain ego %s.\n",
984                 GNUNET_h2s (&ego_pub_hash));
985     GNUNET_break (0);
986     return;
987   }
988
989   if (GNUNET_YES == pmsg->is_host)
990   {
991     if (NULL != app->host_cb) {
992       struct GNUNET_SOCIAL_HostConnection *hconn = GNUNET_malloc (sizeof (*hconn));
993       hconn->app = app;
994       hconn->plc_msg = *pmsg;
995       app->host_cb (app->cb_cls, hconn, ego, &pmsg->place_pub_key, pmsg->place_state);
996       GNUNET_free (hconn);
997     }
998   }
999   else if (NULL != app->guest_cb)
1000   {
1001     struct GNUNET_SOCIAL_GuestConnection *gconn = GNUNET_malloc (sizeof (*gconn));
1002     gconn->app = app;
1003     gconn->plc_msg = *pmsg;
1004     app->guest_cb (app->cb_cls, gconn, ego, &pmsg->place_pub_key, pmsg->place_state);
1005     GNUNET_free (gconn);
1006   }
1007 }
1008
1009
1010 static void
1011 handle_app_place_end (void *cls,
1012                       const struct GNUNET_MessageHeader *msg)
1013 {
1014   struct GNUNET_SOCIAL_App *app = cls;
1015
1016   if (NULL != app->connected_cb)
1017     app->connected_cb (app->cb_cls);
1018 }
1019
1020
1021 /*** CLEANUP / DISCONNECT ***/
1022
1023
1024 static void
1025 host_cleanup (struct GNUNET_SOCIAL_Host *hst)
1026 {
1027   if (NULL != hst->slicer)
1028   {
1029     GNUNET_PSYC_slicer_destroy (hst->slicer);
1030     hst->slicer = NULL;
1031   }
1032   GNUNET_free (hst);
1033 }
1034
1035
1036 static void
1037 guest_cleanup (struct GNUNET_SOCIAL_Guest *gst)
1038 {
1039   GNUNET_free (gst);
1040 }
1041
1042
1043 static void
1044 place_cleanup (struct GNUNET_SOCIAL_Place *plc)
1045 {
1046   struct GNUNET_HashCode place_pub_hash;
1047
1048   GNUNET_CRYPTO_hash (&plc->pub_key, sizeof (plc->pub_key), &place_pub_hash);
1049   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1050               "%s place cleanup: %s\n",
1051               GNUNET_YES == plc->is_host ? "host" : "guest",
1052               GNUNET_h2s (&place_pub_hash));
1053
1054   if (NULL != plc->tmit)
1055   {
1056     GNUNET_PSYC_transmit_destroy (plc->tmit);
1057     plc->tmit = NULL;
1058   }
1059   if (NULL != plc->connect_env)
1060   {
1061     GNUNET_MQ_discard (plc->connect_env);
1062     plc->connect_env = NULL;
1063   }
1064   if (NULL != plc->mq)
1065   {
1066     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1067                 "destroying MQ (place_cleanup)\n");
1068     GNUNET_MQ_destroy (plc->mq);
1069     plc->mq = NULL;
1070   }
1071   if (NULL != plc->disconnect_cb)
1072   {
1073     plc->disconnect_cb (plc->disconnect_cls);
1074     plc->disconnect_cb = NULL;
1075   }
1076
1077   (GNUNET_YES == plc->is_host)
1078     ? host_cleanup ((struct GNUNET_SOCIAL_Host *) plc)
1079     : guest_cleanup ((struct GNUNET_SOCIAL_Guest *) plc);
1080 }
1081
1082
1083 static void
1084 place_disconnect (struct GNUNET_SOCIAL_Place *plc)
1085 {
1086   struct GNUNET_HashCode place_pub_hash;
1087
1088   GNUNET_CRYPTO_hash (&plc->pub_key,
1089                       sizeof (plc->pub_key),
1090                       &place_pub_hash);
1091   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1092               "place_disconnect, plc = %s\n",
1093               GNUNET_h2s (&place_pub_hash));
1094   place_cleanup (plc);
1095 }
1096
1097
1098 /*** HOST ***/
1099
1100
1101 static void
1102 host_connect (struct GNUNET_SOCIAL_Host *hst);
1103
1104
1105 static void
1106 host_reconnect (void *cls)
1107 {
1108   host_connect (cls);
1109 }
1110
1111
1112 /**
1113  * Host client disconnected from service.
1114  *
1115  * Reconnect after backoff period.
1116  */
1117 static void
1118 host_disconnected (void *cls, enum GNUNET_MQ_Error error)
1119 {
1120   struct GNUNET_SOCIAL_Host *hst = cls;
1121   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1122
1123   LOG (GNUNET_ERROR_TYPE_DEBUG,
1124        "Host client disconnected (%d), re-connecting\n",
1125        (int) error);
1126   if (NULL != plc->tmit)
1127   {
1128     GNUNET_PSYC_transmit_destroy (plc->tmit);
1129     plc->tmit = NULL;
1130   }
1131   if (NULL != plc->mq)
1132   {
1133     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1134                 "destroying MQ (host_disconnected)\n");
1135     GNUNET_MQ_destroy (plc->mq);
1136     plc->mq = NULL;
1137   }
1138
1139   plc->reconnect_task = GNUNET_SCHEDULER_add_delayed (plc->reconnect_delay,
1140                                                       host_reconnect,
1141                                                       hst);
1142   plc->reconnect_delay = GNUNET_TIME_STD_BACKOFF (plc->reconnect_delay);
1143 }
1144
1145
1146 static void
1147 host_connect (struct GNUNET_SOCIAL_Host *hst)
1148 {
1149   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1150
1151   struct GNUNET_MQ_MessageHandler handlers[] = {
1152     GNUNET_MQ_hd_fixed_size (host_enter_ack,
1153                              GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER_ACK,
1154                              struct HostEnterAck,
1155                              hst),
1156     GNUNET_MQ_hd_var_size (host_enter_request,
1157                            GNUNET_MESSAGE_TYPE_PSYC_JOIN_REQUEST,
1158                            struct GNUNET_PSYC_JoinRequestMessage,
1159                            hst),
1160     GNUNET_MQ_hd_var_size (host_message,
1161                            GNUNET_MESSAGE_TYPE_PSYC_MESSAGE,
1162                            struct GNUNET_PSYC_MessageHeader,
1163                            hst),
1164     GNUNET_MQ_hd_fixed_size (place_message_ack,
1165                              GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK,
1166                              struct GNUNET_MessageHeader,
1167                              plc),
1168     GNUNET_MQ_hd_var_size (place_history_result,
1169                            GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT,
1170                            struct GNUNET_OperationResultMessage,
1171                            plc),
1172     GNUNET_MQ_hd_var_size (place_state_result,
1173                            GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT,
1174                            struct GNUNET_OperationResultMessage,
1175                            plc),
1176     GNUNET_MQ_hd_var_size (place_result,
1177                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
1178                            struct GNUNET_OperationResultMessage,
1179                            plc),
1180     GNUNET_MQ_handler_end ()
1181   };
1182
1183   plc->mq = GNUNET_CLIENT_connect (plc->cfg, "social",
1184                                    handlers, host_disconnected, hst);
1185   GNUNET_assert (NULL != plc->mq);
1186   plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
1187
1188   GNUNET_MQ_send_copy (plc->mq, plc->connect_env);
1189 }
1190
1191
1192 /**
1193  * Enter a place as host.
1194  *
1195  * A place is created upon first entering, and it is active until permanently
1196  * left using GNUNET_SOCIAL_host_leave().
1197  *
1198  * @param app
1199  *        Application handle.
1200  * @param ego
1201  *        Identity of the host.
1202  * @param policy
1203  *        Policy specifying entry and history restrictions for the place.
1204  * @param slicer
1205  *        Slicer to handle incoming messages.
1206  * @param enter_cb
1207  *        Function called when the place is entered and ready to use.
1208  * @param answer_door_cb
1209  *        Function to handle new nyms that want to enter.
1210  * @param farewell_cb
1211  *        Function to handle departing nyms.
1212  * @param cls
1213  *        Closure for the callbacks.
1214  *
1215  * @return Handle for the host. This handle contains the pubkey.
1216  */
1217 struct GNUNET_SOCIAL_Host *
1218 GNUNET_SOCIAL_host_enter (const struct GNUNET_SOCIAL_App *app,
1219                           const struct GNUNET_SOCIAL_Ego *ego,
1220                           enum GNUNET_PSYC_Policy policy,
1221                           struct GNUNET_PSYC_Slicer *slicer,
1222                           GNUNET_SOCIAL_HostEnterCallback enter_cb,
1223                           GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb,
1224                           GNUNET_SOCIAL_FarewellCallback farewell_cb,
1225                           void *cls)
1226 {
1227   struct GNUNET_SOCIAL_Host *hst = GNUNET_malloc (sizeof (*hst));
1228   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1229
1230   plc->cfg = app->cfg;
1231   plc->is_host = GNUNET_YES;
1232   plc->slicer = slicer;
1233
1234   hst->enter_cb = enter_cb;
1235   hst->answer_door_cb = answer_door_cb;
1236   hst->farewell_cb = farewell_cb;
1237   hst->cb_cls = cls;
1238
1239   plc->op = GNUNET_OP_create ();
1240
1241   hst->slicer = GNUNET_PSYC_slicer_create ();
1242   GNUNET_PSYC_slicer_method_add (hst->slicer, "_notice_place_leave", NULL,
1243                                  host_recv_notice_place_leave_method,
1244                                  host_recv_notice_place_leave_modifier,
1245                                  NULL, host_recv_notice_place_leave_eom, hst);
1246
1247   uint16_t app_id_size = strlen (app->id) + 1;
1248   struct HostEnterRequest *hreq;
1249   plc->connect_env = GNUNET_MQ_msg_extra (hreq, app_id_size,
1250                                           GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER);
1251   hreq->policy = policy;
1252   hreq->ego_pub_key = ego->pub_key;
1253   GNUNET_memcpy (&hreq[1], app->id, app_id_size);
1254
1255   host_connect (hst);
1256   return hst;
1257 }
1258
1259
1260 /**
1261  * Reconnect to an already entered place as host.
1262  *
1263  * @param hconn
1264  *        Host connection handle.
1265  *        @see GNUNET_SOCIAL_app_connect() & GNUNET_SOCIAL_AppHostPlaceCallback()
1266  * @param slicer
1267  *        Slicer to handle incoming messages.
1268  * @param enter_cb
1269  *        Function called when the place is entered and ready to use.
1270  * @param answer_door_cb
1271  *        Function to handle new nyms that want to enter.
1272  * @param farewell_cb
1273  *        Function to handle departing nyms.
1274  * @param cls
1275  *        Closure for the callbacks.
1276  *
1277  * @return Handle for the host.
1278  */
1279  struct GNUNET_SOCIAL_Host *
1280 GNUNET_SOCIAL_host_enter_reconnect (struct GNUNET_SOCIAL_HostConnection *hconn,
1281                                     struct GNUNET_PSYC_Slicer *slicer,
1282                                     GNUNET_SOCIAL_HostEnterCallback enter_cb,
1283                                     GNUNET_SOCIAL_AnswerDoorCallback answer_door_cb,
1284                                     GNUNET_SOCIAL_FarewellCallback farewell_cb,
1285                                     void *cls)
1286 {
1287   struct GNUNET_SOCIAL_Host *hst = GNUNET_malloc (sizeof (*hst));
1288   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1289
1290   hst->enter_cb = enter_cb;
1291   hst->answer_door_cb = answer_door_cb;
1292   hst->farewell_cb = farewell_cb;
1293   hst->cb_cls = cls;
1294
1295   plc->cfg = hconn->app->cfg;
1296   plc->is_host = GNUNET_YES;
1297   plc->slicer = slicer;
1298   plc->pub_key = hconn->plc_msg.place_pub_key;
1299   plc->ego_pub_key = hconn->plc_msg.ego_pub_key;
1300
1301   plc->op = GNUNET_OP_create ();
1302
1303   hst->slicer = GNUNET_PSYC_slicer_create ();
1304   GNUNET_PSYC_slicer_method_add (hst->slicer, "_notice_place_leave", NULL,
1305                                  host_recv_notice_place_leave_method,
1306                                  host_recv_notice_place_leave_modifier,
1307                                  NULL, host_recv_notice_place_leave_eom, hst);
1308
1309   size_t app_id_size = strlen (hconn->app->id) + 1;
1310   struct HostEnterRequest *hreq;
1311   plc->connect_env = GNUNET_MQ_msg_extra (hreq, app_id_size,
1312                                           GNUNET_MESSAGE_TYPE_SOCIAL_HOST_ENTER);
1313   hreq->place_pub_key = hconn->plc_msg.place_pub_key;
1314   hreq->ego_pub_key = hconn->plc_msg.ego_pub_key;
1315   GNUNET_memcpy (&hreq[1], hconn->app->id, app_id_size);
1316
1317   host_connect (hst);
1318   return hst;
1319 }
1320
1321
1322 /**
1323  * Decision whether to admit @a nym into the place or refuse entry.
1324  *
1325  * @param hst
1326  *        Host of the place.
1327  * @param nym
1328  *        Handle for the entity that wanted to enter.
1329  * @param is_admitted
1330  *        #GNUNET_YES    if @a nym is admitted,
1331  *        #GNUNET_NO     if @a nym is refused entry,
1332  *        #GNUNET_SYSERR if we cannot answer the request.
1333  * @param method_name
1334  *        Method name for the rejection message.
1335  * @param env
1336  *        Environment containing variables for the message, or NULL.
1337  * @param data
1338  *        Data for the rejection message to send back.
1339  * @param data_size
1340  *        Number of bytes in @a data for method.
1341  * @return #GNUNET_OK on success,
1342  *         #GNUNET_SYSERR if the message is too large.
1343  */
1344 int
1345 GNUNET_SOCIAL_host_entry_decision (struct GNUNET_SOCIAL_Host *hst,
1346                                    struct GNUNET_SOCIAL_Nym *nym,
1347                                    int is_admitted,
1348                                    const struct GNUNET_PSYC_Message *entry_resp)
1349 {
1350   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1351   struct GNUNET_PSYC_JoinDecisionMessage *dcsn;
1352   uint16_t entry_resp_size
1353     = (NULL != entry_resp) ? ntohs (entry_resp->header.size) : 0;
1354
1355   if (GNUNET_MULTICAST_FRAGMENT_MAX_PAYLOAD < sizeof (*dcsn) + entry_resp_size)
1356     return GNUNET_SYSERR;
1357
1358   struct GNUNET_MQ_Envelope *
1359     env = GNUNET_MQ_msg_extra (dcsn, entry_resp_size,
1360                                GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION);
1361   dcsn->is_admitted = htonl (is_admitted);
1362   dcsn->slave_pub_key = nym->pub_key;
1363
1364   if (0 < entry_resp_size)
1365     GNUNET_memcpy (&dcsn[1], entry_resp, entry_resp_size);
1366
1367   GNUNET_MQ_send (plc->mq, env);
1368   return GNUNET_OK;
1369 }
1370
1371
1372 /**
1373  * Throw @a nym out of the place.
1374  *
1375  * The @a nym reference will remain valid until the
1376  * #GNUNET_SOCIAL_FarewellCallback is invoked,
1377  * which should be very soon after this call.
1378  *
1379  * @param host
1380  *        Host of the place.
1381  * @param nym
1382  *        Handle for the entity to be ejected.
1383  * @param env
1384  *        Environment for the message or NULL.
1385  */
1386 void
1387 GNUNET_SOCIAL_host_eject (struct GNUNET_SOCIAL_Host *hst,
1388                           const struct GNUNET_SOCIAL_Nym *nym,
1389                           struct GNUNET_PSYC_Environment *e)
1390 {
1391   struct GNUNET_PSYC_Environment *env = e;
1392   if (NULL == env)
1393     env = GNUNET_PSYC_env_create ();
1394   GNUNET_PSYC_env_add (env, GNUNET_PSYC_OP_SET,
1395                        "_nym", &nym->pub_key, sizeof (nym->pub_key));
1396   GNUNET_SOCIAL_host_announce (hst, "_notice_place_leave", env, NULL, NULL,
1397                                GNUNET_SOCIAL_ANNOUNCE_NONE);
1398   if (NULL == e)
1399     GNUNET_PSYC_env_destroy (env);
1400 }
1401
1402
1403 /**
1404  * Get the public key of @a ego.
1405  *
1406  * @param ego
1407  *        Ego.
1408  *
1409  * @return Public key of ego.
1410  */
1411 const struct GNUNET_CRYPTO_EcdsaPublicKey *
1412 GNUNET_SOCIAL_ego_get_pub_key (const struct GNUNET_SOCIAL_Ego *ego)
1413 {
1414   return &ego->pub_key;
1415 }
1416
1417
1418 /**
1419  * Get the hash of the public key of @a ego.
1420  *
1421  * @param ego
1422  *        Ego.
1423  *
1424  * @return Hash of the public key of @a ego.
1425  */
1426 const struct GNUNET_HashCode *
1427 GNUNET_SOCIAL_ego_get_pub_key_hash (const struct GNUNET_SOCIAL_Ego *ego)
1428 {
1429   return &ego->pub_key_hash;
1430 }
1431
1432
1433 /**
1434  * Get the name of @a ego.
1435  *
1436  * @param ego
1437  *        Ego.
1438  *
1439  * @return Public key of @a ego.
1440  */
1441 const char *
1442 GNUNET_SOCIAL_ego_get_name (const struct GNUNET_SOCIAL_Ego *ego)
1443 {
1444   return ego->name;
1445 }
1446
1447
1448 /**
1449  * Get the public key of @a nym.
1450  *
1451  * Suitable, for example, to be used with GNUNET_SOCIAL_zone_add_nym().
1452  *
1453  * @param nym
1454  *        Pseudonym.
1455  *
1456  * @return Public key of @a nym.
1457  */
1458 const struct GNUNET_CRYPTO_EcdsaPublicKey *
1459 GNUNET_SOCIAL_nym_get_pub_key (const struct GNUNET_SOCIAL_Nym *nym)
1460 {
1461   return &nym->pub_key;
1462 }
1463
1464
1465 /**
1466  * Get the hash of the public key of @a nym.
1467  *
1468  * @param nym
1469  *        Pseudonym.
1470  *
1471  * @return Hash of the public key of @a nym.
1472  */
1473 const struct GNUNET_HashCode *
1474 GNUNET_SOCIAL_nym_get_pub_key_hash (const struct GNUNET_SOCIAL_Nym *nym)
1475 {
1476   return &nym->pub_key_hash;
1477 }
1478
1479
1480 /**
1481  * Send a message to all nyms that are present in the place.
1482  *
1483  * This function is restricted to the host.  Nyms can only send requests
1484  * to the host who can decide to relay it to everyone in the place.
1485  *
1486  * @param host  Host of the place.
1487  * @param method_name Method to use for the announcement.
1488  * @param env  Environment containing variables for the message and operations
1489  *          on objects of the place.  Can be NULL.
1490  * @param notify Function to call to get the payload of the announcement.
1491  * @param notify_cls Closure for @a notify.
1492  * @param flags Flags for this announcement.
1493  *
1494  * @return NULL on error (announcement already in progress?).
1495  */
1496 struct GNUNET_SOCIAL_Announcement *
1497 GNUNET_SOCIAL_host_announce (struct GNUNET_SOCIAL_Host *hst,
1498                              const char *method_name,
1499                              const struct GNUNET_PSYC_Environment *env,
1500                              GNUNET_PSYC_TransmitNotifyData notify_data,
1501                              void *notify_data_cls,
1502                              enum GNUNET_SOCIAL_AnnounceFlags flags)
1503 {
1504   if (GNUNET_OK ==
1505       GNUNET_PSYC_transmit_message (hst->plc.tmit, method_name, env,
1506                                     NULL, notify_data, notify_data_cls, flags))
1507     return (struct GNUNET_SOCIAL_Announcement *) hst->plc.tmit;
1508   else
1509     return NULL;
1510 }
1511
1512
1513 /**
1514  * Resume transmitting announcement.
1515  *
1516  * @param a
1517  *        The announcement to resume.
1518  */
1519 void
1520 GNUNET_SOCIAL_host_announce_resume (struct GNUNET_SOCIAL_Announcement *a)
1521 {
1522   GNUNET_PSYC_transmit_resume ((struct GNUNET_PSYC_TransmitHandle *) a);
1523 }
1524
1525
1526 /**
1527  * Cancel announcement.
1528  *
1529  * @param a
1530  *        The announcement to cancel.
1531  */
1532 void
1533 GNUNET_SOCIAL_host_announce_cancel (struct GNUNET_SOCIAL_Announcement *a)
1534 {
1535   GNUNET_PSYC_transmit_cancel ((struct GNUNET_PSYC_TransmitHandle *) a);
1536 }
1537
1538
1539 /**
1540  * Obtain handle for a hosted place.
1541  *
1542  * The returned handle can be used to access the place API.
1543  *
1544  * @param host  Handle for the host.
1545  *
1546  * @return Handle for the hosted place, valid as long as @a host is valid.
1547  */
1548 struct GNUNET_SOCIAL_Place *
1549 GNUNET_SOCIAL_host_get_place (struct GNUNET_SOCIAL_Host *hst)
1550 {
1551   return &hst->plc;
1552 }
1553
1554
1555 /**
1556  * Disconnect from a home.
1557  *
1558  * Invalidates host handle.
1559  *
1560  * @param hst
1561  *        The host to disconnect.
1562  */
1563 void
1564 GNUNET_SOCIAL_host_disconnect (struct GNUNET_SOCIAL_Host *hst,
1565                                GNUNET_ContinuationCallback disconnect_cb,
1566                                void *cls)
1567 {
1568   struct GNUNET_SOCIAL_Place *plc = &hst->plc;
1569
1570   plc->disconnect_cb = disconnect_cb;
1571   plc->disconnect_cls = cls;
1572   place_disconnect (plc);
1573 }
1574
1575
1576 /**
1577  * Closure for #host_leave_cont.
1578  */
1579 struct HostLeaveContext
1580 {
1581   struct GNUNET_SOCIAL_Host *hst;
1582   GNUNET_ContinuationCallback disconnect_cb;
1583   void *disconnect_cb_cls;
1584 };
1585
1586
1587 /**
1588  * FIXME.
1589  */
1590 static void
1591 host_leave_cont (void *cls)
1592 {
1593   struct HostLeaveContext *hlc = cls;
1594
1595   GNUNET_SOCIAL_host_disconnect (hlc->hst,
1596                                  hlc->disconnect_cb,
1597                                  hlc->disconnect_cb_cls);
1598   GNUNET_free (hlc);
1599 }
1600
1601
1602 /**
1603  * Stop hosting the home.
1604  *
1605  * Sends a _notice_place_closing announcement to the home.
1606  * Invalidates host handle.
1607  *
1608  * @param hst
1609  *        The host leaving.
1610  * @param env
1611  *        Environment for the message or NULL.
1612  *        _nym is set to @e nym regardless whether an @e env is provided.
1613  * @param disconnect_cb
1614  *        Function called after the host left the place
1615  *        and disconnected from the social service.
1616  * @param cls
1617  *        Closure for @a disconnect_cb.
1618  */
1619 void
1620 GNUNET_SOCIAL_host_leave (struct GNUNET_SOCIAL_Host *hst,
1621                           const struct GNUNET_PSYC_Environment *env,
1622                           GNUNET_ContinuationCallback disconnect_cb,
1623                           void *cls)
1624 {
1625   struct GNUNET_MessageHeader *msg;
1626   struct GNUNET_MQ_Envelope *envelope;
1627   struct HostLeaveContext *hlc;
1628
1629   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1630               "GNUNET_SOCIAL_host_leave\n");
1631   GNUNET_SOCIAL_host_announce (hst, "_notice_place_closing", env, NULL, NULL,
1632                                GNUNET_SOCIAL_ANNOUNCE_NONE);
1633   envelope = GNUNET_MQ_msg (msg,
1634                             GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE);
1635   hlc = GNUNET_new (struct HostLeaveContext);
1636   hlc->hst = hst;
1637   hlc->disconnect_cb = disconnect_cb;
1638   hlc->disconnect_cb_cls = cls;
1639   GNUNET_MQ_notify_sent (envelope,
1640                          &host_leave_cont,
1641                          hlc);
1642   GNUNET_MQ_send (hst->plc.mq,
1643                   envelope);
1644 }
1645
1646
1647 /*** GUEST ***/
1648
1649
1650 static void
1651 guest_connect (struct GNUNET_SOCIAL_Guest *gst);
1652
1653
1654 static void
1655 guest_reconnect (void *cls)
1656 {
1657   guest_connect (cls);
1658 }
1659
1660
1661 /**
1662  * Guest client disconnected from service.
1663  *
1664  * Reconnect after backoff period.
1665  */
1666 static void
1667 guest_disconnected (void *cls, enum GNUNET_MQ_Error error)
1668 {
1669   struct GNUNET_SOCIAL_Guest *gst = cls;
1670   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1671
1672   LOG (GNUNET_ERROR_TYPE_DEBUG,
1673        "Guest client disconnected (%d), re-connecting\n",
1674        (int) error);
1675   if (NULL != plc->tmit)
1676   {
1677     GNUNET_PSYC_transmit_destroy (plc->tmit);
1678     plc->tmit = NULL;
1679   }
1680   if (NULL != plc->mq)
1681   {
1682     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1683                 "destroying MQ (guest_disconnected)\n");
1684     GNUNET_MQ_destroy (plc->mq);
1685     plc->mq = NULL;
1686   }
1687
1688   plc->reconnect_task = GNUNET_SCHEDULER_add_delayed (plc->reconnect_delay,
1689                                                       guest_reconnect,
1690                                                       gst);
1691   plc->reconnect_delay = GNUNET_TIME_STD_BACKOFF (plc->reconnect_delay);
1692 }
1693
1694
1695 static void
1696 guest_connect (struct GNUNET_SOCIAL_Guest *gst)
1697 {
1698   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1699
1700   struct GNUNET_MQ_MessageHandler handlers[] = {
1701     GNUNET_MQ_hd_fixed_size (guest_enter_ack,
1702                              GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_ACK,
1703                              struct GNUNET_PSYC_CountersResultMessage,
1704                              gst),
1705     GNUNET_MQ_hd_var_size (guest_enter_decision,
1706                            GNUNET_MESSAGE_TYPE_PSYC_JOIN_DECISION,
1707                            struct GNUNET_PSYC_JoinDecisionMessage,
1708                            gst),
1709     GNUNET_MQ_hd_var_size (place_message,
1710                            GNUNET_MESSAGE_TYPE_PSYC_MESSAGE,
1711                            struct GNUNET_PSYC_MessageHeader,
1712                            plc),
1713     GNUNET_MQ_hd_fixed_size (place_message_ack,
1714                              GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_ACK,
1715                              struct GNUNET_MessageHeader,
1716                              plc),
1717     GNUNET_MQ_hd_var_size (place_history_result,
1718                            GNUNET_MESSAGE_TYPE_PSYC_HISTORY_RESULT,
1719                            struct GNUNET_OperationResultMessage,
1720                            plc),
1721     GNUNET_MQ_hd_var_size (place_state_result,
1722                            GNUNET_MESSAGE_TYPE_PSYC_STATE_RESULT,
1723                            struct GNUNET_OperationResultMessage,
1724                            plc),
1725     GNUNET_MQ_hd_var_size (place_result,
1726                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
1727                            struct GNUNET_OperationResultMessage,
1728                            plc),
1729     GNUNET_MQ_handler_end ()
1730   };
1731
1732   plc->mq = GNUNET_CLIENT_connect (plc->cfg, "social",
1733                                    handlers, guest_disconnected, gst);
1734   GNUNET_assert (NULL != plc->mq);
1735   plc->tmit = GNUNET_PSYC_transmit_create (plc->mq);
1736
1737   GNUNET_MQ_send_copy (plc->mq, plc->connect_env);
1738 }
1739
1740
1741 static struct GNUNET_MQ_Envelope *
1742 guest_enter_request_create (const char *app_id,
1743                             const struct GNUNET_CRYPTO_EcdsaPublicKey *ego_pub_key,
1744                             const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
1745                             const struct GNUNET_PeerIdentity *origin,
1746                             size_t relay_count,
1747                             const struct GNUNET_PeerIdentity *relays,
1748                             const struct GNUNET_PSYC_Message *join_msg)
1749 {
1750   uint16_t app_id_size = strlen (app_id) + 1;
1751   uint16_t join_msg_size = ntohs (join_msg->header.size);
1752   uint16_t relay_size = relay_count * sizeof (*relays);
1753
1754   struct GuestEnterRequest *greq;
1755   struct GNUNET_MQ_Envelope *
1756     env = GNUNET_MQ_msg_extra (greq, app_id_size + relay_size + join_msg_size,
1757                                GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1758   greq->place_pub_key = *place_pub_key;
1759   greq->ego_pub_key = *ego_pub_key;
1760   greq->origin = *origin;
1761   greq->relay_count = htonl (relay_count);
1762
1763   char *p = (char *) &greq[1];
1764   GNUNET_memcpy (p, app_id, app_id_size);
1765   p += app_id_size;
1766
1767   if (0 < relay_size)
1768   {
1769     GNUNET_memcpy (p, relays, relay_size);
1770     p += relay_size;
1771   }
1772
1773   GNUNET_memcpy (p, join_msg, join_msg_size);
1774   return env;
1775 }
1776
1777
1778 /**
1779  * Request entry to a place as a guest.
1780  *
1781  * @param app
1782  *        Application handle.
1783  * @param ego
1784  *        Identity of the guest.
1785  * @param place_pub_key
1786  *        Public key of the place to enter.
1787  * @param flags
1788  *        Flags for the entry.
1789  * @param origin
1790  *        Peer identity of the origin of the underlying multicast group.
1791  * @param relay_count
1792  *        Number of elements in the @a relays array.
1793  * @param relays
1794  *        Relays for the underlying multicast group.
1795  * @param method_name
1796  *        Method name for the message.
1797  * @param env
1798  *        Environment containing variables for the message, or NULL.
1799  * @param data
1800  *        Payload for the message to give to the enter callback.
1801  * @param data_size
1802  *        Number of bytes in @a data.
1803  * @param slicer
1804  *        Slicer to use for processing incoming requests from guests.
1805  *
1806  * @return NULL on errors, otherwise handle for the guest.
1807  */
1808 struct GNUNET_SOCIAL_Guest *
1809 GNUNET_SOCIAL_guest_enter (const struct GNUNET_SOCIAL_App *app,
1810                            const struct GNUNET_SOCIAL_Ego *ego,
1811                            const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
1812                            enum GNUNET_PSYC_SlaveJoinFlags flags,
1813                            const struct GNUNET_PeerIdentity *origin,
1814                            uint32_t relay_count,
1815                            const struct GNUNET_PeerIdentity *relays,
1816                            const struct GNUNET_PSYC_Message *entry_msg,
1817                            struct GNUNET_PSYC_Slicer *slicer,
1818                            GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1819                            GNUNET_SOCIAL_EntryDecisionCallback entry_dcsn_cb,
1820                            void *cls)
1821 {
1822   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1823   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1824
1825   plc->ego_pub_key = ego->pub_key;
1826   plc->pub_key = *place_pub_key;
1827   plc->cfg = app->cfg;
1828   plc->is_host = GNUNET_NO;
1829   plc->slicer = slicer;
1830
1831   plc->op = GNUNET_OP_create ();
1832
1833   plc->connect_env
1834     = guest_enter_request_create (app->id, &ego->pub_key, &plc->pub_key,
1835                                   origin, relay_count, relays, entry_msg);
1836
1837   gst->enter_cb = local_enter_cb;
1838   gst->entry_dcsn_cb = entry_dcsn_cb;
1839   gst->cb_cls = cls;
1840
1841   guest_connect (gst);
1842   return gst;
1843 }
1844
1845
1846 /**
1847  * Request entry to a place by name as a guest.
1848  *
1849  * @param app
1850  *        Application handle.
1851  * @param ego
1852  *        Identity of the guest.
1853  * @param gns_name
1854  *        GNS name of the place to enter.  Either in the form of
1855  *        'room.friend.gnu', or 'NYMPUBKEY.zkey'.  This latter case refers to
1856  *        the 'PLACE' record of the empty label ("+") in the GNS zone with the
1857  *        nym's public key 'NYMPUBKEY', and can be used to request entry to a
1858  *        pseudonym's place directly.
1859  * @param password
1860  *        Password to decrypt the record, or NULL for cleartext records.
1861  * @param join_msg
1862  *        Entry request message or NULL.
1863  * @param slicer
1864  *        Slicer to use for processing incoming requests from guests.
1865  * @param local_enter_cb
1866  *        Called upon connection established to the social service.
1867  * @param entry_decision_cb
1868  *        Called upon receiving entry decision.
1869  *
1870  * @return NULL on errors, otherwise handle for the guest.
1871  */
1872 struct GNUNET_SOCIAL_Guest *
1873 GNUNET_SOCIAL_guest_enter_by_name (const struct GNUNET_SOCIAL_App *app,
1874                                    const struct GNUNET_SOCIAL_Ego *ego,
1875                                    const char *gns_name,
1876                                    const char *password,
1877                                    const struct GNUNET_PSYC_Message *join_msg,
1878                                    struct GNUNET_PSYC_Slicer *slicer,
1879                                    GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1880                                    GNUNET_SOCIAL_EntryDecisionCallback entry_decision_cb,
1881                                    void *cls)
1882 {
1883   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1884   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1885
1886   if (NULL == password)
1887     password = "";
1888
1889   uint16_t app_id_size = strlen (app->id) + 1;
1890   uint16_t gns_name_size = strlen (gns_name) + 1;
1891   uint16_t password_size = strlen (password) + 1;
1892
1893   uint16_t join_msg_size = 0;
1894   if (NULL != join_msg)
1895     join_msg_size = ntohs (join_msg->header.size);
1896
1897   struct GuestEnterByNameRequest *greq;
1898   plc->connect_env
1899     = GNUNET_MQ_msg_extra (greq, app_id_size + gns_name_size
1900                            + password_size + join_msg_size,
1901                            GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER_BY_NAME);
1902
1903   greq->ego_pub_key = ego->pub_key;
1904
1905   char *p = (char *) &greq[1];
1906   GNUNET_memcpy (p, app->id, app_id_size);
1907   p += app_id_size;
1908   GNUNET_memcpy (p, gns_name, gns_name_size);
1909   p += gns_name_size;
1910   GNUNET_memcpy (p, password, password_size);
1911   p += password_size;
1912   if (NULL != join_msg)
1913     GNUNET_memcpy (p, join_msg, join_msg_size);
1914
1915   plc->ego_pub_key = ego->pub_key;
1916   plc->cfg = app->cfg;
1917   plc->is_host = GNUNET_NO;
1918   plc->slicer = slicer;
1919
1920   plc->op = GNUNET_OP_create ();
1921
1922   gst->enter_cb = local_enter_cb;
1923   gst->entry_dcsn_cb = entry_decision_cb;
1924   gst->cb_cls = cls;
1925
1926   guest_connect (gst);
1927   return gst;
1928 }
1929
1930
1931 /**
1932  * Reconnect to an already entered place as guest.
1933  *
1934  * @param gconn
1935  *        Guest connection handle.
1936  *        @see GNUNET_SOCIAL_app_connect() & GNUNET_SOCIAL_AppGuestPlaceCallback()
1937  * @param flags
1938  *        Flags for the entry.
1939  * @param slicer
1940  *        Slicer to use for processing incoming requests from guests.
1941  * @param local_enter_cb
1942  *        Called upon connection established to the social service.
1943  * @param entry_decision_cb
1944  *        Called upon receiving entry decision.
1945  *
1946  * @return NULL on errors, otherwise handle for the guest.
1947  */
1948 struct GNUNET_SOCIAL_Guest *
1949 GNUNET_SOCIAL_guest_enter_reconnect (struct GNUNET_SOCIAL_GuestConnection *gconn,
1950                                      enum GNUNET_PSYC_SlaveJoinFlags flags,
1951                                      struct GNUNET_PSYC_Slicer *slicer,
1952                                      GNUNET_SOCIAL_GuestEnterCallback local_enter_cb,
1953                                      void *cls)
1954 {
1955   struct GNUNET_SOCIAL_Guest *gst = GNUNET_malloc (sizeof (*gst));
1956   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
1957
1958   uint16_t app_id_size = strlen (gconn->app->id) + 1;
1959   struct GuestEnterRequest *greq;
1960   plc->connect_env
1961     = GNUNET_MQ_msg_extra (greq, app_id_size,
1962                            GNUNET_MESSAGE_TYPE_SOCIAL_GUEST_ENTER);
1963   greq->ego_pub_key = gconn->plc_msg.ego_pub_key;
1964   greq->place_pub_key = gconn->plc_msg.place_pub_key;
1965   greq->flags = htonl (flags);
1966
1967   GNUNET_memcpy (&greq[1], gconn->app->id, app_id_size);
1968
1969   plc->cfg = gconn->app->cfg;
1970   plc->is_host = GNUNET_NO;
1971   plc->slicer = slicer;
1972   plc->pub_key = gconn->plc_msg.place_pub_key;
1973   plc->ego_pub_key = gconn->plc_msg.ego_pub_key;
1974
1975   plc->op = GNUNET_OP_create ();
1976
1977   gst->enter_cb = local_enter_cb;
1978   gst->cb_cls = cls;
1979
1980   guest_connect (gst);
1981   return gst;
1982 }
1983
1984
1985 /**
1986  * Talk to the host of the place.
1987  *
1988  * @param place
1989  *        Place where we want to talk to the host.
1990  * @param method_name
1991  *        Method to invoke on the host.
1992  * @param env
1993  *        Environment containing variables for the message, or NULL.
1994  * @param notify_data
1995  *        Function to use to get the payload for the method.
1996  * @param notify_data_cls
1997  *        Closure for @a notify_data.
1998  * @param flags
1999  *        Flags for the message being sent.
2000  *
2001  * @return NULL if we are already trying to talk to the host,
2002  *         otherwise handle to cancel the request.
2003  */
2004 struct GNUNET_SOCIAL_TalkRequest *
2005 GNUNET_SOCIAL_guest_talk (struct GNUNET_SOCIAL_Guest *gst,
2006                           const char *method_name,
2007                           const struct GNUNET_PSYC_Environment *env,
2008                           GNUNET_PSYC_TransmitNotifyData notify_data,
2009                           void *notify_data_cls,
2010                           enum GNUNET_SOCIAL_TalkFlags flags)
2011 {
2012   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
2013   GNUNET_assert (NULL != plc->tmit);
2014
2015   if (GNUNET_OK ==
2016       GNUNET_PSYC_transmit_message (plc->tmit, method_name, env,
2017                                     NULL, notify_data, notify_data_cls, flags))
2018     return (struct GNUNET_SOCIAL_TalkRequest *) plc->tmit;
2019   else
2020     return NULL;
2021 }
2022
2023
2024 /**
2025  * Resume talking to the host of the place.
2026  *
2027  * @param tr
2028  *        Talk request to resume.
2029  */
2030 void
2031 GNUNET_SOCIAL_guest_talk_resume (struct GNUNET_SOCIAL_TalkRequest *tr)
2032 {
2033   GNUNET_PSYC_transmit_resume ((struct GNUNET_PSYC_TransmitHandle *) tr);
2034 }
2035
2036
2037 /**
2038  * Cancel talking to the host of the place.
2039  *
2040  * @param tr
2041  *        Talk request to cancel.
2042  */
2043 void
2044 GNUNET_SOCIAL_guest_talk_cancel (struct GNUNET_SOCIAL_TalkRequest *tr)
2045 {
2046   GNUNET_PSYC_transmit_cancel ( (struct GNUNET_PSYC_TransmitHandle *) tr);
2047 }
2048
2049
2050 /**
2051  * Disconnect from a place.
2052  *
2053  * Invalidates guest handle.
2054  *
2055  * @param gst
2056  *        The guest to disconnect.
2057  */
2058 void
2059 GNUNET_SOCIAL_guest_disconnect (struct GNUNET_SOCIAL_Guest *gst,
2060                                 GNUNET_ContinuationCallback disconnect_cb,
2061                                 void *cls)
2062 {
2063   struct GNUNET_SOCIAL_Place *plc = &gst->plc;
2064
2065   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2066               "GNUNET_SOCIAL_guest_disconnect, gst = %p\n",
2067               gst);
2068   plc->disconnect_cb = disconnect_cb;
2069   plc->disconnect_cls = cls;
2070   place_disconnect (plc);
2071 }
2072
2073
2074 /**
2075  * Closure for #leave_done_cont.
2076  */
2077 struct LeaveContext
2078 {
2079   struct GNUNET_SOCIAL_Guest *gst;
2080   GNUNET_ContinuationCallback disconnect_cb;
2081   void *disconnect_cb_cls;
2082 };
2083
2084
2085 /**
2086  * The leave message was transmitted, now complete the
2087  * disconnection process.
2088  *
2089  * @param cls a `struct LeaveContext`
2090  */
2091 static void
2092 leave_done_cont (void *cls)
2093 {
2094   struct LeaveContext *lc = cls;
2095
2096   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2097               "social_api: guest's place_leave message sent!\n");
2098   GNUNET_SOCIAL_guest_disconnect (lc->gst,
2099                                   lc->disconnect_cb,
2100                                   lc->disconnect_cb_cls);
2101   GNUNET_free (lc);
2102 }
2103
2104
2105 /**
2106  * Leave a place temporarily or permanently.
2107  *
2108  * Notifies the owner of the place about leaving, and destroys the place handle.
2109  *
2110  * @param place
2111  *        Place to leave.
2112  * @param keep_active
2113  *        Keep place active after last application disconnected.
2114  *        #GNUNET_YES or #GNUNET_NO
2115  * @param env
2116  *        Optional environment for the leave message if @a keep_active
2117  *        is #GNUNET_NO.  NULL if not needed.
2118  * @param leave_cb
2119  *        Called upon disconnecting from the social service.
2120  */
2121 void
2122 GNUNET_SOCIAL_guest_leave (struct GNUNET_SOCIAL_Guest *gst,
2123                            struct GNUNET_PSYC_Environment *env,
2124                            GNUNET_ContinuationCallback disconnect_cb,
2125                            void *cls)
2126 {
2127   struct GNUNET_MessageHeader *msg;
2128   struct GNUNET_MQ_Envelope *envelope;
2129   struct LeaveContext *lc;
2130
2131   GNUNET_SOCIAL_guest_talk (gst, "_notice_place_leave", env, NULL, NULL,
2132                             GNUNET_SOCIAL_TALK_NONE);
2133
2134
2135   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2136               "social_api: place_leave\n");
2137   envelope = GNUNET_MQ_msg (msg,
2138                             GNUNET_MESSAGE_TYPE_SOCIAL_PLACE_LEAVE);
2139   lc = GNUNET_new (struct LeaveContext);
2140   lc->gst = gst;
2141   lc->disconnect_cb = disconnect_cb;
2142   lc->disconnect_cb_cls = cls;
2143   GNUNET_MQ_notify_sent (envelope,
2144                          &leave_done_cont,
2145                          lc);
2146   GNUNET_MQ_send (gst->plc.mq,
2147                   envelope);
2148 }
2149
2150
2151 /**
2152  * Obtain handle for a place entered as guest.
2153  *
2154  * The returned handle can be used to access the place API.
2155  *
2156  * @param guest  Handle for the guest.
2157  *
2158  * @return Handle for the place, valid as long as @a guest is valid.
2159  */
2160 struct GNUNET_SOCIAL_Place *
2161 GNUNET_SOCIAL_guest_get_place (struct GNUNET_SOCIAL_Guest *gst)
2162 {
2163   return &gst->plc;
2164 }
2165
2166
2167 /**
2168  * Obtain the public key of a place.
2169  *
2170  * @param plc
2171  *        Place.
2172  *
2173  * @return Public key of the place.
2174  */
2175 const struct GNUNET_CRYPTO_EddsaPublicKey *
2176 GNUNET_SOCIAL_place_get_pub_key (const struct GNUNET_SOCIAL_Place *plc)
2177 {
2178   return &plc->pub_key;
2179 }
2180
2181
2182 /**
2183  * Set message processing @a flags for a @a method_prefix.
2184  *
2185  * @param plc
2186  *        Place.
2187  * @param method_prefix
2188  *        Method prefix @a flags apply to.
2189  * @param flags
2190  *        The flags that apply to a matching @a method_prefix.
2191  */
2192 void
2193 GNUNET_SOCIAL_place_msg_proc_set (struct GNUNET_SOCIAL_Place *plc,
2194                                   const char *method_prefix,
2195                                   enum GNUNET_SOCIAL_MsgProcFlags flags)
2196 {
2197   GNUNET_assert (NULL != method_prefix);
2198   struct MsgProcRequest *mpreq;
2199   uint16_t method_size = strnlen (method_prefix,
2200                                   GNUNET_MAX_MESSAGE_SIZE
2201                                   - sizeof (*mpreq)) + 1;
2202   GNUNET_assert ('\0' == method_prefix[method_size - 1]);
2203
2204   struct GNUNET_MQ_Envelope *
2205     env = GNUNET_MQ_msg_extra (mpreq, method_size,
2206                                GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_SET);
2207   mpreq->flags = htonl (flags);
2208   GNUNET_memcpy (&mpreq[1], method_prefix, method_size);
2209
2210   GNUNET_MQ_send (plc->mq, env);
2211 }
2212
2213
2214 /**
2215  * Clear all message processing flags previously set for this place.
2216  */
2217 void
2218 GNUNET_SOCIAL_place_msg_proc_clear (struct GNUNET_SOCIAL_Place *plc)
2219 {
2220   struct GNUNET_MessageHeader *req;
2221   struct GNUNET_MQ_Envelope *
2222     env = GNUNET_MQ_msg (req, GNUNET_MESSAGE_TYPE_SOCIAL_MSG_PROC_CLEAR);
2223
2224   GNUNET_MQ_send (plc->mq, env);
2225 }
2226
2227
2228 static struct GNUNET_SOCIAL_HistoryRequest *
2229 place_history_replay (struct GNUNET_SOCIAL_Place *plc,
2230                       uint64_t start_message_id,
2231                       uint64_t end_message_id,
2232                       uint64_t message_limit,
2233                       const char *method_prefix,
2234                       uint32_t flags,
2235                       struct GNUNET_PSYC_Slicer *slicer,
2236                       GNUNET_ResultCallback result_cb,
2237                       void *cls)
2238 {
2239   struct GNUNET_PSYC_HistoryRequestMessage *req;
2240   struct GNUNET_SOCIAL_HistoryRequest *hist = GNUNET_malloc (sizeof (*hist));
2241   hist->plc = plc;
2242   hist->slicer = slicer;
2243   hist->result_cb = result_cb;
2244   hist->cls = cls;
2245   hist->op_id = GNUNET_OP_add (plc->op, op_recv_history_result, hist, NULL);
2246
2247   GNUNET_assert (NULL != method_prefix);
2248   uint16_t method_size = strnlen (method_prefix,
2249                                   GNUNET_MAX_MESSAGE_SIZE
2250                                   - sizeof (*req)) + 1;
2251   GNUNET_assert ('\0' == method_prefix[method_size - 1]);
2252
2253   struct GNUNET_MQ_Envelope *
2254     env = GNUNET_MQ_msg_extra (req, method_size,
2255                                GNUNET_MESSAGE_TYPE_PSYC_HISTORY_REPLAY);
2256   req->start_message_id = GNUNET_htonll (start_message_id);
2257   req->end_message_id = GNUNET_htonll (end_message_id);
2258   req->message_limit = GNUNET_htonll (message_limit);
2259   req->flags = htonl (flags);
2260   req->op_id = GNUNET_htonll (hist->op_id);
2261   GNUNET_memcpy (&req[1], method_prefix, method_size);
2262
2263   GNUNET_MQ_send (plc->mq, env);
2264   return hist;
2265 }
2266
2267
2268 /**
2269  * Learn about the history of a place.
2270  *
2271  * Messages are returned through the @a slicer function
2272  * and have the #GNUNET_PSYC_MESSAGE_HISTORIC flag set.
2273  *
2274  * @param place
2275  *        Place we want to learn more about.
2276  * @param start_message_id
2277  *        First historic message we are interested in.
2278  * @param end_message_id
2279  *        Last historic message we are interested in (inclusive).
2280  * @param method_prefix
2281  *        Only retrieve messages with this method prefix.
2282  * @param flags
2283  *        OR'ed GNUNET_PSYC_HistoryReplayFlags
2284  * @param slicer
2285  *        Slicer to use for retrieved messages.
2286  *        Can be the same as the slicer of the place.
2287  * @param result_cb
2288  *        Function called after all messages retrieved.
2289  *        NULL if not needed.
2290  * @param cls Closure for @a result_cb.
2291  */
2292 struct GNUNET_SOCIAL_HistoryRequest *
2293 GNUNET_SOCIAL_place_history_replay (struct GNUNET_SOCIAL_Place *plc,
2294                                     uint64_t start_message_id,
2295                                     uint64_t end_message_id,
2296                                     const char *method_prefix,
2297                                     uint32_t flags,
2298                                     struct GNUNET_PSYC_Slicer *slicer,
2299                                     GNUNET_ResultCallback result_cb,
2300                                     void *cls)
2301 {
2302   return place_history_replay (plc, start_message_id, end_message_id, 0,
2303                                method_prefix, flags, slicer, result_cb, cls);
2304 }
2305
2306
2307 /**
2308  * Learn about the history of a place.
2309  *
2310  * Sends messages through the slicer function of the place where
2311  * start_message_id <= message_id <= end_message_id.
2312  * The messages will have the #GNUNET_PSYC_MESSAGE_HISTORIC flag set.
2313  *
2314  * To get the latest message, use 0 for both the start and end message ID.
2315  *
2316  * @param place
2317  *        Place we want to learn more about.
2318  * @param message_limit
2319  *        Maximum number of historic messages we are interested in.
2320  * @param method_prefix
2321  *        Only retrieve messages with this method prefix.
2322  * @param flags
2323  *        OR'ed GNUNET_PSYC_HistoryReplayFlags
2324  * @param result_cb
2325  *        Function called after all messages retrieved.
2326  *        NULL if not needed.
2327  * @param cls Closure for @a result_cb.
2328  */
2329 struct GNUNET_SOCIAL_HistoryRequest *
2330 GNUNET_SOCIAL_place_history_replay_latest (struct GNUNET_SOCIAL_Place *plc,
2331                                            uint64_t message_limit,
2332                                            const char *method_prefix,
2333                                            uint32_t flags,
2334                                            struct GNUNET_PSYC_Slicer *slicer,
2335                                            GNUNET_ResultCallback result_cb,
2336                                            void *cls)
2337 {
2338   return place_history_replay (plc, 0, 0, message_limit, method_prefix, flags,
2339                                slicer, result_cb, cls);
2340 }
2341
2342
2343 /**
2344  * Cancel learning about the history of a place.
2345  *
2346  * @param hist
2347  *        History lesson to cancel.
2348  */
2349 void
2350 GNUNET_SOCIAL_place_history_replay_cancel (struct GNUNET_SOCIAL_HistoryRequest *hist)
2351 {
2352   GNUNET_OP_remove (hist->plc->op, hist->op_id);
2353   GNUNET_free (hist);
2354 }
2355
2356
2357 /**
2358  * Request matching state variables.
2359  */
2360 static struct GNUNET_SOCIAL_LookHandle *
2361 place_state_get (struct GNUNET_SOCIAL_Place *plc,
2362                  uint16_t type, const char *name,
2363                  GNUNET_PSYC_StateVarCallback var_cb,
2364                  GNUNET_ResultCallback result_cb, void *cls)
2365 {
2366   struct GNUNET_PSYC_StateRequestMessage *req;
2367   struct GNUNET_SOCIAL_LookHandle *look = GNUNET_malloc (sizeof (*look));
2368   look->plc = plc;
2369   look->var_cb = var_cb;
2370   look->result_cb = result_cb;
2371   look->cls = cls;
2372   look->op_id = GNUNET_OP_add (plc->op, &op_recv_state_result, look, NULL);
2373
2374   GNUNET_assert (NULL != name);
2375   size_t name_size = strnlen (name, GNUNET_MAX_MESSAGE_SIZE
2376                               - sizeof (*req)) + 1;
2377   struct GNUNET_MQ_Envelope *
2378     env = GNUNET_MQ_msg_extra (req, name_size, type);
2379   req->op_id = GNUNET_htonll (look->op_id);
2380   GNUNET_memcpy (&req[1], name, name_size);
2381
2382   GNUNET_MQ_send (plc->mq, env);
2383   return look;
2384 }
2385
2386
2387 /**
2388  * Look at a particular object in the place.
2389  *
2390  * The best matching object is returned (its name might be less specific than
2391  * what was requested).
2392  *
2393  * @param place
2394  *        The place where to look.
2395  * @param full_name
2396  *        Full name of the object.
2397  * @param value_size
2398  *        Set to the size of the returned value.
2399  *
2400  * @return NULL if there is no such object at this place.
2401  */
2402 struct GNUNET_SOCIAL_LookHandle *
2403 GNUNET_SOCIAL_place_look_at (struct GNUNET_SOCIAL_Place *plc,
2404                              const char *full_name,
2405                              GNUNET_PSYC_StateVarCallback var_cb,
2406                              GNUNET_ResultCallback result_cb,
2407                              void *cls)
2408 {
2409   return place_state_get (plc, GNUNET_MESSAGE_TYPE_PSYC_STATE_GET,
2410                           full_name, var_cb, result_cb, cls);
2411 }
2412
2413
2414 /**
2415  * Look for objects in the place with a matching name prefix.
2416  *
2417  * @param place
2418  *        The place where to look.
2419  * @param name_prefix
2420  *        Look at objects with names beginning with this value.
2421  * @param var_cb
2422  *        Function to call for each object found.
2423  * @param cls
2424  *        Closure for callback function.
2425  *
2426  * @return Handle that can be used to stop looking at objects.
2427  */
2428 struct GNUNET_SOCIAL_LookHandle *
2429 GNUNET_SOCIAL_place_look_for (struct GNUNET_SOCIAL_Place *plc,
2430                               const char *name_prefix,
2431                               GNUNET_PSYC_StateVarCallback var_cb,
2432                               GNUNET_ResultCallback result_cb,
2433                               void *cls)
2434 {
2435   return place_state_get (plc, GNUNET_MESSAGE_TYPE_PSYC_STATE_GET_PREFIX,
2436                           name_prefix, var_cb, result_cb, cls);
2437 }
2438
2439
2440 /**
2441  * Cancel a state request operation.
2442  *
2443  * @param sr
2444  *        Handle for the operation to cancel.
2445  */
2446 void
2447 GNUNET_SOCIAL_place_look_cancel (struct GNUNET_SOCIAL_LookHandle *look)
2448 {
2449   GNUNET_OP_remove (look->plc->op, look->op_id);
2450   GNUNET_free (look);
2451 }
2452
2453
2454 static void
2455 op_recv_zone_add_place_result (void *cls, int64_t result,
2456                                const void *err_msg, uint16_t err_msg_size)
2457 {
2458   LOG (GNUNET_ERROR_TYPE_DEBUG,
2459        "Received zone add place result: %" PRId64 ".\n", result);
2460
2461   struct ZoneAddPlaceHandle *add_plc = cls;
2462   if (NULL != add_plc->result_cb)
2463     add_plc->result_cb (add_plc->result_cls, result, err_msg, err_msg_size);
2464
2465   GNUNET_free (add_plc);
2466 }
2467
2468
2469 /**
2470  * Advertise @e place in the GNS zone of @e ego.
2471  *
2472  * @param app
2473  *        Application handle.
2474  * @param ego
2475  *        Ego.
2476  * @param place_pub_key
2477  *        Public key of place to add.
2478  * @param name
2479  *        The name for the PLACE record to put in the zone.
2480  * @param password
2481  *        Password used to encrypt the record or NULL to keep it cleartext.
2482  * @param relay_count
2483  *        Number of elements in the @a relays array.
2484  * @param relays
2485  *        List of relays to put in the PLACE record to advertise
2486  *        as entry points to the place in addition to the origin.
2487  * @param expiration_time
2488  *        Expiration time of the record, use 0 to remove the record.
2489  * @param result_cb
2490  *        Function called with the result of the operation.
2491  * @param result_cls
2492  *        Closure for @a result_cb
2493  *
2494  * @return #GNUNET_OK if the request was sent,
2495  *         #GNUNET_SYSERR on error, e.g. the name/password is too long.
2496  */
2497 int
2498 GNUNET_SOCIAL_zone_add_place (const struct GNUNET_SOCIAL_App *app,
2499                               const struct GNUNET_SOCIAL_Ego *ego,
2500                               const char *name,
2501                               const char *password,
2502                               const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
2503                               const struct GNUNET_PeerIdentity *origin,
2504                               uint32_t relay_count,
2505                               const struct GNUNET_PeerIdentity *relays,
2506                               struct GNUNET_TIME_Absolute expiration_time,
2507                               GNUNET_ResultCallback result_cb,
2508                               void *result_cls)
2509 {
2510   struct ZoneAddPlaceRequest *preq;
2511   size_t name_size = strlen (name) + 1;
2512   size_t password_size = strlen (password) + 1;
2513   size_t relay_size = relay_count * sizeof (*relays);
2514   size_t payload_size = name_size + password_size + relay_size;
2515
2516   if (GNUNET_MAX_MESSAGE_SIZE < sizeof (*preq) + payload_size)
2517     return GNUNET_SYSERR;
2518
2519   struct GNUNET_MQ_Envelope *
2520     env = GNUNET_MQ_msg_extra (preq, payload_size,
2521                                GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_PLACE);
2522   preq->expiration_time = GNUNET_htonll (expiration_time.abs_value_us);
2523   preq->ego_pub_key = ego->pub_key;
2524   preq->place_pub_key = *place_pub_key;
2525   preq->origin = *origin;
2526   preq->relay_count = htonl (relay_count);
2527
2528   char *p = (char *) &preq[1];
2529   GNUNET_memcpy (p, name, name_size);
2530   p += name_size;
2531   GNUNET_memcpy (p, password, password_size);
2532   p += password_size;
2533   GNUNET_memcpy (p, relays, relay_size);
2534
2535   struct ZoneAddPlaceHandle * add_plc = GNUNET_malloc (sizeof (*add_plc));
2536   add_plc->result_cb = result_cb;
2537   add_plc->result_cls = result_cls;
2538
2539   preq->op_id = GNUNET_htonll (GNUNET_OP_add (app->op,
2540                                               op_recv_zone_add_place_result,
2541                                               add_plc, NULL));
2542
2543   GNUNET_MQ_send (app->mq, env);
2544   return GNUNET_OK;
2545 }
2546
2547
2548 static void
2549 op_recv_zone_add_nym_result (void *cls, int64_t result,
2550                              const void *err_msg, uint16_t err_msg_size)
2551 {
2552   LOG (GNUNET_ERROR_TYPE_DEBUG,
2553        "Received zone add nym result: %" PRId64 ".\n", result);
2554
2555   struct ZoneAddNymHandle *add_nym = cls;
2556   if (NULL != add_nym->result_cb)
2557     add_nym->result_cb (add_nym->result_cls, result, err_msg, err_msg_size);
2558
2559   GNUNET_free (add_nym);
2560 }
2561
2562
2563 /**
2564  * Add nym to the GNS zone of @e ego.
2565  *
2566  * @param cfg
2567  *        Configuration.
2568  * @param ego
2569  *        Ego.
2570  * @param name
2571  *        The name for the PKEY record to put in the zone.
2572  * @param nym_pub_key
2573  *        Public key of nym to add.
2574  * @param expiration_time
2575  *        Expiration time of the record, use 0 to remove the record.
2576  * @param result_cb
2577  *        Function called with the result of the operation.
2578  * @param result_cls
2579  *        Closure for @a result_cb
2580  *
2581  * @return #GNUNET_OK if the request was sent,
2582  *         #GNUNET_SYSERR on error, e.g. the name is too long.
2583  */
2584 int
2585 GNUNET_SOCIAL_zone_add_nym (const struct GNUNET_SOCIAL_App *app,
2586                             const struct GNUNET_SOCIAL_Ego *ego,
2587                             const char *name,
2588                             const struct GNUNET_CRYPTO_EcdsaPublicKey *nym_pub_key,
2589                             struct GNUNET_TIME_Absolute expiration_time,
2590                             GNUNET_ResultCallback result_cb,
2591                             void *result_cls)
2592 {
2593   struct ZoneAddNymRequest *nreq;
2594
2595   size_t name_size = strlen (name) + 1;
2596   if (GNUNET_MAX_MESSAGE_SIZE < sizeof (*nreq) + name_size)
2597     return GNUNET_SYSERR;
2598
2599   struct GNUNET_MQ_Envelope *
2600     env = GNUNET_MQ_msg_extra (nreq, name_size,
2601                                GNUNET_MESSAGE_TYPE_SOCIAL_ZONE_ADD_NYM);
2602   nreq->expiration_time = GNUNET_htonll (expiration_time.abs_value_us);
2603   nreq->ego_pub_key = ego->pub_key;
2604   nreq->nym_pub_key = *nym_pub_key;
2605   GNUNET_memcpy (&nreq[1], name, name_size);
2606
2607   struct ZoneAddNymHandle *add_nym = GNUNET_malloc (sizeof (*add_nym));
2608   add_nym->result_cb = result_cb;
2609   add_nym->result_cls = result_cls;
2610
2611   nreq->op_id = GNUNET_htonll (GNUNET_OP_add (app->op,
2612                                               op_recv_zone_add_nym_result,
2613                                               add_nym, NULL));
2614
2615   GNUNET_MQ_send (app->mq, env);
2616   return GNUNET_OK;
2617 }
2618
2619
2620 /*** APP ***/
2621
2622
2623 static void
2624 app_connect (struct GNUNET_SOCIAL_App *app);
2625
2626
2627 static void
2628 app_reconnect (void *cls)
2629 {
2630   app_connect (cls);
2631 }
2632
2633
2634 /**
2635  * App client disconnected from service.
2636  *
2637  * Reconnect after backoff period.
2638  */
2639 static void
2640 app_disconnected (void *cls, enum GNUNET_MQ_Error error)
2641 {
2642   struct GNUNET_SOCIAL_App *app = cls;
2643
2644   LOG (GNUNET_ERROR_TYPE_DEBUG,
2645        "App client disconnected (%d), re-connecting\n",
2646        (int) error);
2647   if (NULL != app->mq)
2648   {
2649     GNUNET_MQ_destroy (app->mq);
2650     app->mq = NULL;
2651   }
2652
2653   app->reconnect_task = GNUNET_SCHEDULER_add_delayed (app->reconnect_delay,
2654                                                       app_reconnect,
2655                                                       app);
2656   app->reconnect_delay = GNUNET_TIME_STD_BACKOFF (app->reconnect_delay);
2657 }
2658
2659
2660 static void
2661 app_connect (struct GNUNET_SOCIAL_App *app)
2662 {
2663   struct GNUNET_MQ_MessageHandler handlers[] = {
2664     GNUNET_MQ_hd_var_size (app_ego,
2665                            GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO,
2666                            struct AppEgoMessage,
2667                            app),
2668     GNUNET_MQ_hd_fixed_size (app_ego_end,
2669                              GNUNET_MESSAGE_TYPE_SOCIAL_APP_EGO_END,
2670                              struct GNUNET_MessageHeader,
2671                              app),
2672     GNUNET_MQ_hd_var_size (app_place,
2673                            GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE,
2674                            struct AppPlaceMessage,
2675                            app),
2676     GNUNET_MQ_hd_fixed_size (app_place_end,
2677                              GNUNET_MESSAGE_TYPE_SOCIAL_APP_PLACE_END,
2678                              struct GNUNET_MessageHeader,
2679                              app),
2680     GNUNET_MQ_hd_var_size (app_result,
2681                            GNUNET_MESSAGE_TYPE_PSYC_RESULT_CODE,
2682                            struct GNUNET_OperationResultMessage,
2683                            app),
2684     GNUNET_MQ_handler_end ()
2685   };
2686
2687   app->mq = GNUNET_CLIENT_connect (app->cfg, "social",
2688                                    handlers, app_disconnected, app);
2689   GNUNET_assert (NULL != app->mq);
2690   GNUNET_MQ_send_copy (app->mq, app->connect_env);
2691 }
2692
2693
2694 /**
2695  * Connect application to the social service.
2696  *
2697  * The @host_place_cb and @guest_place_cb functions are
2698  * initially called for each entered places,
2699  * then later each time a new place is entered with the current application ID.
2700  *
2701  * @param cfg
2702  *        Configuration.
2703  * @param id
2704  *        Application ID.
2705  * @param ego_cb
2706  *        Function to notify about an available ego.
2707  * @param host_cb
2708  *        Function to notify about a place entered as host.
2709  * @param guest_cb
2710  *        Function to notify about a place entered as guest.
2711  * @param cls
2712  *        Closure for the callbacks.
2713  *
2714  * @return Handle that can be used to stop listening.
2715  */
2716 struct GNUNET_SOCIAL_App *
2717 GNUNET_SOCIAL_app_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
2718                            const char *id,
2719                            GNUNET_SOCIAL_AppEgoCallback ego_cb,
2720                            GNUNET_SOCIAL_AppHostPlaceCallback host_cb,
2721                            GNUNET_SOCIAL_AppGuestPlaceCallback guest_cb,
2722                            GNUNET_SOCIAL_AppConnectedCallback connected_cb,
2723                            void *cls)
2724 {
2725   uint16_t app_id_size = strnlen (id, GNUNET_SOCIAL_APP_MAX_ID_SIZE);
2726   if (GNUNET_SOCIAL_APP_MAX_ID_SIZE == app_id_size)
2727     return NULL;
2728   app_id_size++;
2729
2730   struct GNUNET_SOCIAL_App *app = GNUNET_malloc (sizeof *app);
2731   app->cfg = cfg;
2732   app->ego_cb = ego_cb;
2733   app->host_cb = host_cb;
2734   app->guest_cb = guest_cb;
2735   app->connected_cb = connected_cb;
2736   app->cb_cls = cls;
2737   app->egos = GNUNET_CONTAINER_multihashmap_create (1, GNUNET_NO);
2738   app->op = GNUNET_OP_create ();
2739   app->id = GNUNET_malloc (app_id_size);
2740   GNUNET_memcpy (app->id, id, app_id_size);
2741
2742   struct AppConnectRequest *creq;
2743   app->connect_env = GNUNET_MQ_msg_extra (creq, app_id_size,
2744                                           GNUNET_MESSAGE_TYPE_SOCIAL_APP_CONNECT);
2745   GNUNET_memcpy (&creq[1], app->id, app_id_size);
2746
2747   app_connect (app);
2748   return app;
2749 }
2750
2751
2752 static void
2753 app_cleanup (struct GNUNET_SOCIAL_App *app)
2754 {
2755   if (NULL != app->mq)
2756   {
2757     GNUNET_MQ_destroy (app->mq);
2758     app->mq = NULL;
2759   }
2760   if (NULL != app->disconnect_cb)
2761   {
2762     app->disconnect_cb (app->disconnect_cls);
2763     app->disconnect_cb = NULL;
2764   }
2765   GNUNET_free (app);
2766 }
2767
2768 /**
2769  * Disconnect application.
2770  *
2771  * @param app
2772  *        Application handle.
2773  * @param disconnect_cb
2774  *        Disconnect callback.
2775  * @param disconnect_cls
2776  *        Disconnect closure.
2777  */
2778 void
2779 GNUNET_SOCIAL_app_disconnect (struct GNUNET_SOCIAL_App *app,
2780                               GNUNET_ContinuationCallback disconnect_cb,
2781                               void *disconnect_cls)
2782 {
2783   app->disconnect_cb = disconnect_cb;
2784   app->disconnect_cls = disconnect_cls;
2785
2786   if (NULL != app->mq)
2787   {
2788     struct GNUNET_MQ_Envelope *env = GNUNET_MQ_get_last_envelope (app->mq);
2789     if (NULL != env)
2790     {
2791       GNUNET_MQ_notify_sent (env, (GNUNET_SCHEDULER_TaskCallback) app_cleanup, app);
2792     }
2793     else
2794     {
2795       app_cleanup (app);
2796     }
2797   }
2798   else
2799   {
2800     app_cleanup (app);
2801   }
2802 }
2803
2804
2805 /**
2806  * Detach application from a place.
2807  *
2808  * Removes the place from the entered places list for this application.
2809  * Note: this does not disconnect from the place.
2810  *
2811  * @see GNUNET_SOCIAL_host_disconnect() and GNUNET_SOCIAL_guest_disconnect()
2812  *
2813  * @param app
2814  *        Application.
2815  * @param plc
2816  *        Place.
2817  */
2818 void
2819 GNUNET_SOCIAL_app_detach (struct GNUNET_SOCIAL_App *app,
2820                           struct GNUNET_SOCIAL_Place *plc)
2821 {
2822   struct AppDetachRequest *dreq;
2823   struct GNUNET_MQ_Envelope *
2824     env = GNUNET_MQ_msg (dreq, GNUNET_MESSAGE_TYPE_SOCIAL_APP_DETACH);
2825   dreq->place_pub_key = plc->pub_key;
2826   dreq->ego_pub_key = plc->ego_pub_key;
2827
2828   GNUNET_MQ_send (app->mq, env);
2829 }
2830
2831
2832 /* end of social_api.c */