443694d0830f6b06cabc3a01ae2b8a96866b4e11
[oweals/gnunet.git] / src / set / gnunet-service-set.c
1 /*
2       This file is part of GNUnet
3       (C) 2013 Christian Grothoff (and other contributing authors)
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 2, 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., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file set/gnunet-service-set.c
23  * @brief two-peer set operations
24  * @author Florian Dold
25  */
26 #include "gnunet-service-set.h"
27 #include "set_protocol.h"
28
29
30 /**
31  * Peer that has connected to us, but is not yet evaluating a set operation.
32  * Once the peer has sent a request, and the client has
33  * accepted or rejected it, this information will be deleted.
34  */
35 struct Incoming
36 {
37   /**
38    * Incoming peers are held in a linked list
39    */
40   struct Incoming *next;
41
42   /**
43    * Incoming peers are held in a linked list
44    */
45   struct Incoming *prev;
46
47   /**
48    * Detail information about the operation.
49    * NULL as long as we did not receive the operation
50    * request from the remote peer.
51    */
52   struct OperationSpecification *spec;
53
54   /**
55    * The identity of the requesting peer.  Needs to
56    * be stored here as the op spec might not have been created yet.
57    */
58   struct GNUNET_PeerIdentity peer;
59
60   /**
61    * Tunnel to the peer.
62    */
63   struct GNUNET_MESH_Tunnel *tunnel;
64
65   /**
66    * Unique request id for the request from
67    * a remote peer, sent to the client, which will
68    * accept or reject the request.
69    * Set to '0' iff the request has not been
70    * suggested yet.
71    */
72   uint32_t suggest_id;
73
74   /**
75    * Timeout task, if the incoming peer has not been accepted
76    * after the timeout, it will be disconnected.
77    */
78   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
79
80   /**
81    * Tunnel context, needs to be stored here as a client's accept will change
82    * the tunnel context.
83    */
84   struct TunnelContext *tc;
85 };
86
87
88 /**
89  * A listener is inhabited by a client, and
90  * waits for evaluation requests from remote peers.
91  */
92 struct Listener
93 {
94   /**
95    * Listeners are held in a doubly linked list.
96    */
97   struct Listener *next;
98
99   /**
100    * Listeners are held in a doubly linked list.
101    */
102   struct Listener *prev;
103
104   /**
105    * Client that owns the listener.
106    * Only one client may own a listener.
107    */
108   struct GNUNET_SERVER_Client *client;
109
110   /**
111    * Message queue for the client
112    */
113   struct GNUNET_MQ_Handle *client_mq;
114
115   /**
116    * The type of the operation.
117    */
118   enum GNUNET_SET_OperationType operation;
119
120   /**
121    * Application ID for the operation, used to distinguish
122    * multiple operations of the same type with the same peer.
123    */
124   struct GNUNET_HashCode app_id;
125 };
126
127
128 /**
129  * Configuration of our local peer.
130  */
131 static const struct GNUNET_CONFIGURATION_Handle *configuration;
132
133 /**
134  * Handle to the mesh service, used
135  * to listen for and connect to remote peers.
136  */
137 static struct GNUNET_MESH_Handle *mesh;
138
139 /**
140  * Sets are held in a doubly linked list.
141  */
142 static struct Set *sets_head;
143
144 /**
145  * Sets are held in a doubly linked list.
146  */
147 static struct Set *sets_tail;
148
149 /**
150  * Listeners are held in a doubly linked list.
151  */
152 static struct Listener *listeners_head;
153
154 /**
155  * Listeners are held in a doubly linked list.
156  */
157 static struct Listener *listeners_tail;
158
159 /**
160  * Incoming sockets from remote peers are
161  * held in a doubly linked list.
162  */
163 static struct Incoming *incoming_head;
164
165 /**
166  * Incoming sockets from remote peers are
167  * held in a doubly linked list.
168  */
169 static struct Incoming *incoming_tail;
170
171 /**
172  * Counter for allocating unique IDs for clients,
173  * used to identify incoming operation requests from remote peers,
174  * that the client can choose to accept or refuse.
175  */
176 static uint32_t suggest_id = 1;
177
178
179 /**
180  * Get set that is owned by the given client, if any.
181  *
182  * @param client client to look for
183  * @return set that the client owns, NULL if the client
184  *         does not own a set
185  */
186 static struct Set *
187 set_get (struct GNUNET_SERVER_Client *client)
188 {
189   struct Set *set;
190
191   for (set = sets_head; NULL != set; set = set->next)
192     if (set->client == client)
193       return set;
194   return NULL;
195 }
196
197
198 /**
199  * Get the listener associated with the given client, if any.
200  *
201  * @param client the client
202  * @return listener associated with the client, NULL
203  *         if there isn't any
204  */
205 static struct Listener *
206 listener_get (struct GNUNET_SERVER_Client *client)
207 {
208   struct Listener *listener;
209
210   for (listener = listeners_head; NULL != listener; listener = listener->next)
211     if (listener->client == client)
212       return listener;
213   return NULL;
214 }
215
216
217 /**
218  * Get the incoming socket associated with the given id.
219  *
220  * @param id id to look for
221  * @return the incoming socket associated with the id,
222  *         or NULL if there is none
223  */
224 static struct Incoming *
225 get_incoming (uint32_t id)
226 {
227   struct Incoming *incoming;
228
229   for (incoming = incoming_head; NULL != incoming; incoming = incoming->next)
230     if (incoming->suggest_id == id)
231       return incoming;
232   return NULL;
233 }
234
235
236 /**
237  * Destroy a listener, free all resources associated with it.
238  *
239  * @param listener listener to destroy
240  */
241 static void
242 listener_destroy (struct Listener *listener)
243 {
244   /* If the client is not dead yet, destroy it.
245    * The client's destroy callback will destroy the listener again. */
246   if (NULL != listener->client)
247   {
248     struct GNUNET_SERVER_Client *client = listener->client;
249     listener->client = NULL;
250     GNUNET_SERVER_client_disconnect (client);
251     return;
252   }
253   if (NULL != listener->client_mq)
254   {
255     GNUNET_MQ_destroy (listener->client_mq);
256     listener->client_mq = NULL;
257   }
258   GNUNET_CONTAINER_DLL_remove (listeners_head, listeners_tail, listener);
259   GNUNET_free (listener);
260 }
261
262
263 /**
264  * Destroy a set, and free all resources associated with it.
265  *
266  * @param set the set to destroy
267  */
268 static void
269 set_destroy (struct Set *set)
270 {
271   /* If the client is not dead yet, destroy it.
272    * The client's destroy callback will destroy the set again. */
273   if (NULL != set->client)
274   {
275     struct GNUNET_SERVER_Client *client = set->client;
276     set->client = NULL;
277     GNUNET_SERVER_client_disconnect (client);
278     return;
279   }
280   if (NULL != set->client_mq)
281   {
282     GNUNET_MQ_destroy (set->client_mq);
283     set->client_mq = NULL;
284   }
285   GNUNET_assert (NULL != set->state);
286   set->vt->destroy_set (set->state);
287   set->state = NULL;
288   GNUNET_CONTAINER_DLL_remove (sets_head, sets_tail, set);
289   GNUNET_free (set);
290 }
291
292
293 /**
294  * Clean up after a client after it is
295  * disconnected (either by us or by itself)
296  *
297  * @param cls closure, unused
298  * @param client the client to clean up after
299  */
300 static void
301 handle_client_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
302 {
303   struct Set *set;
304   struct Listener *listener;
305
306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disconnected, cleaning up\n");
307
308   set = set_get (client);
309   if (NULL != set)
310   {
311     set->client = NULL;
312     set_destroy (set);
313     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "(client's set destroyed)\n");
314   }
315   listener = listener_get (client);
316   if (NULL != listener)
317   {
318     listener->client = NULL;
319     listener_destroy (listener);
320     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "(client's listener destroyed)\n");
321   }
322 }
323
324
325 /**
326  * Destroy an incoming request from a remote peer
327  *
328  * @param incoming remote request to destroy
329  */
330 static void
331 incoming_destroy (struct Incoming *incoming)
332 {
333   GNUNET_CONTAINER_DLL_remove (incoming_head, incoming_tail, incoming);
334   if (NULL != incoming->tunnel)
335   {
336     struct GNUNET_MESH_Tunnel *t = incoming->tunnel;
337     incoming->tunnel = NULL;
338     GNUNET_MESH_tunnel_destroy (t);
339     return;
340   }
341   GNUNET_free (incoming);
342 }
343
344
345 static struct Listener *
346 listener_get_by_target (enum GNUNET_SET_OperationType op,
347                         const struct GNUNET_HashCode *app_id)
348 {
349   struct Listener *l;
350
351   for (l = listeners_head; NULL != l; l = l->next)
352   {
353     if (l->operation != op)
354       continue;
355     if (0 != GNUNET_CRYPTO_hash_cmp (app_id, &l->app_id))
356       continue;
357     return l;
358   }
359   return NULL;
360 }
361
362
363 /**
364  * Suggest the given request to the listener,
365  * who can accept or reject the request.
366  *
367  * @param incoming the incoming peer with the request to suggest
368  * @param listener the listener to suggest the request to
369  */
370 static void
371 incoming_suggest (struct Incoming *incoming, struct Listener *listener)
372 {
373   struct GNUNET_MQ_Envelope *mqm;
374   struct GNUNET_SET_RequestMessage *cmsg;
375
376   GNUNET_assert (0 == incoming->suggest_id);
377   GNUNET_assert (NULL != incoming->spec);
378   incoming->suggest_id = suggest_id++;
379
380   GNUNET_SCHEDULER_cancel (incoming->timeout_task);
381   mqm = GNUNET_MQ_msg_nested_mh (cmsg, GNUNET_MESSAGE_TYPE_SET_REQUEST,
382                                  incoming->spec->context_msg);
383   GNUNET_assert (NULL != mqm);
384   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "suggesting request with accept id %u\n",
385               incoming->suggest_id);
386   cmsg->accept_id = htonl (incoming->suggest_id);
387   cmsg->peer_id = incoming->spec->peer;
388   GNUNET_MQ_send (listener->client_mq, mqm);
389
390 }
391
392
393 /**
394  * Handle a request for a set operation from
395  * another peer.
396  *
397  * @param op the operation state
398  * @param mh the received message
399  * @return GNUNET_OK if the tunnel should be kept alive,
400  *         GNUNET_SYSERR to destroy the tunnel
401  */
402 static int
403 handle_incoming_msg (struct OperationState *op,
404                      const struct GNUNET_MessageHeader *mh)
405 {
406   struct Incoming *incoming = (struct Incoming *) op;
407   const struct OperationRequestMessage *msg = (const struct OperationRequestMessage *) mh;
408   struct Listener *listener;
409   struct OperationSpecification *spec;
410
411   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got op request\n");
412
413   if (GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST != ntohs (mh->type))
414   {
415     GNUNET_break_op (0);
416     return GNUNET_SYSERR;
417   }
418
419   if (NULL != incoming->spec)
420   {
421     /* double operation request */
422     GNUNET_break_op (0);
423     return GNUNET_SYSERR;
424   }
425
426   spec = GNUNET_new (struct OperationSpecification);
427   spec->context_msg = GNUNET_MQ_extract_nested_mh (msg);
428   if (NULL != spec->context_msg)
429     spec->context_msg = GNUNET_copy_message (spec->context_msg);
430   spec->operation = ntohl (msg->operation);
431   spec->app_id = msg->app_id;
432   spec->salt = ntohl (msg->salt);
433   spec->peer = incoming->peer;
434
435   incoming->spec = spec;
436
437   if ( (NULL != spec->context_msg) &&
438        (ntohs (spec->context_msg->size) > GNUNET_SET_CONTEXT_MESSAGE_MAX_SIZE) )
439   {
440     GNUNET_break_op (0);
441     return GNUNET_SYSERR;
442   }
443
444   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "received P2P operation request (op %u, app %s)\n",
445               ntohs (msg->operation), GNUNET_h2s (&msg->app_id));
446   listener = listener_get_by_target (ntohs (msg->operation), &msg->app_id);
447   if (NULL == listener)
448   {
449     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
450                 "no listener matches incoming request, waiting with timeout\n");
451     return GNUNET_OK;
452   }
453   incoming_suggest (incoming, listener);
454   return GNUNET_OK;
455 }
456
457
458 /**
459  * Called when a client wants to iterate the elements of a set.
460  *
461  * @param cls unused
462  * @param client client that sent the message
463  * @param m message sent by the client
464  */
465 static void
466 handle_client_iterate (void *cls,
467                        struct GNUNET_SERVER_Client *client,
468                        const struct GNUNET_MessageHeader *m)
469 {
470   struct Set *set;
471   
472   set = set_get (client);
473   if (NULL == set)
474   {
475     GNUNET_break (0);
476     GNUNET_SERVER_client_disconnect (client);
477     return;
478   }
479
480   set->vt->iterate (set);
481 }
482
483
484 /**
485  * Called when a client wants to create a new set.
486  *
487  * @param cls unused
488  * @param client client that sent the message
489  * @param m message sent by the client
490  */
491 static void
492 handle_client_create (void *cls,
493                       struct GNUNET_SERVER_Client *client,
494                       const struct GNUNET_MessageHeader *m)
495 {
496   struct GNUNET_SET_CreateMessage *msg = (struct GNUNET_SET_CreateMessage *) m;
497   struct Set *set;
498
499   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client created new set (operation %u)\n",
500               ntohs (msg->operation));
501
502   if (NULL != set_get (client))
503   {
504     GNUNET_break (0);
505     GNUNET_SERVER_client_disconnect (client);
506     return;
507   }
508
509   set = GNUNET_new (struct Set);
510
511   switch (ntohs (msg->operation))
512   {
513     case GNUNET_SET_OPERATION_INTERSECTION:
514       // FIXME
515       break;
516     case GNUNET_SET_OPERATION_UNION:
517       set->vt = _GSS_union_vt ();
518       break;
519     default:
520       GNUNET_free (set);
521       GNUNET_break (0);
522       GNUNET_SERVER_client_disconnect (client);
523       return;
524   }
525
526   set->state = set->vt->create ();
527   set->client = client;
528   set->client_mq = GNUNET_MQ_queue_for_server_client (client);
529   GNUNET_CONTAINER_DLL_insert (sets_head, sets_tail, set);
530   GNUNET_SERVER_receive_done (client, GNUNET_OK);
531 }
532
533
534 /**
535  * Called when a client wants to create a new listener.
536  *
537  * @param cls unused
538  * @param client client that sent the message
539  * @param m message sent by the client
540  */
541 static void
542 handle_client_listen (void *cls,
543                       struct GNUNET_SERVER_Client *client,
544                       const struct GNUNET_MessageHeader *m)
545 {
546   struct GNUNET_SET_ListenMessage *msg = (struct GNUNET_SET_ListenMessage *) m;
547   struct Listener *listener;
548   struct Incoming *incoming;
549
550   if (NULL != listener_get (client))
551   {
552     GNUNET_break (0);
553     GNUNET_SERVER_client_disconnect (client);
554     return;
555   }
556   listener = GNUNET_new (struct Listener);
557   listener->client = client;
558   listener->client_mq = GNUNET_MQ_queue_for_server_client (client);
559   listener->app_id = msg->app_id;
560   listener->operation = ntohs (msg->operation);
561   GNUNET_CONTAINER_DLL_insert_tail (listeners_head, listeners_tail, listener);
562   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new listener created (op %u, app %s)\n",
563               listener->operation, GNUNET_h2s (&listener->app_id));
564   for (incoming = incoming_head; NULL != incoming; incoming = incoming->next)
565   {
566     if ( (NULL == incoming->spec) ||
567          (0 != incoming->suggest_id) )
568       continue;
569     if (listener->operation != incoming->spec->operation)
570       continue;
571     if (0 != GNUNET_CRYPTO_hash_cmp (&listener->app_id, &incoming->spec->app_id))
572       continue;
573     incoming_suggest (incoming, listener);
574   }
575   GNUNET_SERVER_receive_done (client, GNUNET_OK);
576 }
577
578
579 /**
580  * Called when the client wants to reject an operation
581  * request from another peer.
582  *
583  * @param cls unused
584  * @param client client that sent the message
585  * @param m message sent by the client
586  */
587 static void
588 handle_client_reject (void *cls,
589                       struct GNUNET_SERVER_Client *client,
590                       const struct GNUNET_MessageHeader *m)
591 {
592   struct Incoming *incoming;
593   const struct GNUNET_SET_AcceptRejectMessage *msg;
594
595   msg = (const struct GNUNET_SET_AcceptRejectMessage *) m;
596   GNUNET_break (0 == ntohl (msg->request_id));
597
598   incoming = get_incoming (ntohl (msg->accept_reject_id));
599   if (NULL == incoming)
600   {
601     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
602     return;
603   }
604   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer request rejected by client\n");
605   GNUNET_MESH_tunnel_destroy (incoming->tunnel);
606   GNUNET_SERVER_receive_done (client, GNUNET_OK);
607 }
608
609
610 /**
611  * Called when a client wants to add an element to a
612  * set it inhabits.
613  *
614  * @param cls unused
615  * @param client client that sent the message
616  * @param m message sent by the client
617  */
618 static void
619 handle_client_add_remove (void *cls,
620                           struct GNUNET_SERVER_Client *client,
621                           const struct GNUNET_MessageHeader *m)
622 {
623   struct Set *set;
624   const struct GNUNET_SET_ElementMessage *msg;
625   struct GNUNET_SET_Element el;
626
627   set = set_get (client);
628   if (NULL == set)
629   {
630     GNUNET_break (0);
631     GNUNET_SERVER_client_disconnect (client);
632     return;
633   }
634   msg = (const struct GNUNET_SET_ElementMessage *) m;
635   el.size = ntohs (m->size) - sizeof *msg;
636   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
637               "client ins/rem element of size %u\n", el.size);
638   el.data = &msg[1];
639   if (GNUNET_MESSAGE_TYPE_SET_REMOVE == ntohs (m->type))
640     set->vt->remove (set->state, &el);
641   else
642     set->vt->add (set->state, &el);
643   GNUNET_SERVER_receive_done (client, GNUNET_OK);
644 }
645
646
647 /**
648  * Called when a client wants to evaluate a set operation with another peer.
649  *
650  * @param cls unused
651  * @param client client that sent the message
652  * @param m message sent by the client
653  */
654 static void
655 handle_client_evaluate (void *cls,
656                         struct GNUNET_SERVER_Client *client,
657                         const struct GNUNET_MessageHeader *m)
658 {
659   struct Set *set;
660   struct TunnelContext *tc;
661   struct GNUNET_MESH_Tunnel *tunnel;
662   struct GNUNET_SET_EvaluateMessage *msg;
663   struct OperationSpecification *spec;
664
665   set = set_get (client);
666   if (NULL == set)
667   {
668     GNUNET_break (0);
669     GNUNET_SERVER_client_disconnect (client);
670     return;
671   }
672
673   msg = (struct GNUNET_SET_EvaluateMessage *) m;
674   tc = GNUNET_new (struct TunnelContext);
675   spec = GNUNET_new (struct OperationSpecification);
676   spec->operation = set->operation;
677   spec->app_id = msg->app_id;
678   spec->salt = ntohl (msg->salt);
679   spec->peer = msg->target_peer;
680   spec->set = set;
681   spec->client_request_id = ntohl (msg->request_id);
682   spec->context_msg = GNUNET_MQ_extract_nested_mh (msg);
683   if (NULL != spec->context_msg)
684     spec->context_msg = GNUNET_copy_message (spec->context_msg);
685
686   tunnel = GNUNET_MESH_tunnel_create (mesh, tc, &msg->target_peer,
687                                       GNUNET_APPLICATION_TYPE_SET,
688                                       GNUNET_YES,
689                                       GNUNET_YES);
690
691   set->vt->evaluate (spec, tunnel, tc);
692
693   GNUNET_SERVER_receive_done (client, GNUNET_OK);
694 }
695
696
697 /**
698  * Handle an ack from a client.
699  *
700  * @param cls unused
701  * @param client the client
702  * @param m the message
703  */
704 static void
705 handle_client_ack (void *cls,
706                    struct GNUNET_SERVER_Client *client,
707                    const struct GNUNET_MessageHeader *m)
708 {
709   /* FIXME: implement */
710   GNUNET_SERVER_receive_done (client, GNUNET_OK);
711 }
712
713
714 /**
715  * Handle a request from the client to accept
716  * a set operation that came from a remote peer.
717  *
718  * @param cls unused
719  * @param client the client
720  * @param mh the message
721  */
722 static void
723 handle_client_cancel (void *cls,
724                       struct GNUNET_SERVER_Client *client,
725                       const struct GNUNET_MessageHeader *mh)
726 {
727   const struct GNUNET_SET_CancelMessage *msg =
728       (const struct GNUNET_SET_CancelMessage *) mh;
729   struct Set *set;
730
731   set = set_get (client);
732   if (NULL == set)
733   {
734     GNUNET_break (0);
735     GNUNET_SERVER_client_disconnect (client);
736     return;
737   }
738   /* FIXME: maybe cancel should return success/error code? */
739   set->vt->cancel (set->state, ntohl (msg->request_id));
740 }
741
742
743 /**
744  * Handle a request from the client to accept
745  * a set operation that came from a remote peer.
746  *
747  * @param cls unused
748  * @param client the client
749  * @param mh the message
750  */
751 static void
752 handle_client_accept (void *cls,
753                       struct GNUNET_SERVER_Client *client,
754                       const struct GNUNET_MessageHeader *mh)
755 {
756   struct Set *set;
757   struct Incoming *incoming;
758   struct GNUNET_SET_AcceptRejectMessage *msg = (struct GNUNET_SET_AcceptRejectMessage *) mh;
759
760   incoming = get_incoming (ntohl (msg->accept_reject_id));
761
762   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client accepting %u\n", ntohl (msg->accept_reject_id));
763
764   if (NULL == incoming)
765   {
766
767     GNUNET_break (0);
768     GNUNET_SERVER_client_disconnect (client);
769     return;
770   }
771
772   set = set_get (client);
773
774   if (NULL == set)
775   {
776     GNUNET_break (0);
777     GNUNET_SERVER_client_disconnect (client);
778     return;
779   }
780
781   incoming->spec->set = set;
782   incoming->spec->client_request_id = ntohl (msg->request_id);
783   set->vt->accept (incoming->spec, incoming->tunnel, incoming->tc);
784   /* tunnel ownership goes to operation */
785   incoming->tunnel = NULL;
786   incoming_destroy (incoming);
787   GNUNET_SERVER_receive_done (client, GNUNET_OK);
788 }
789
790
791 /**
792  * Called to clean up, after a shutdown has been requested.
793  *
794  * @param cls closure
795  * @param tc context information (why was this task triggered now)
796  */
797 static void
798 shutdown_task (void *cls,
799                const struct GNUNET_SCHEDULER_TaskContext *tc)
800 {
801   while (NULL != incoming_head)
802     incoming_destroy (incoming_head);
803
804   while (NULL != listeners_head)
805     listener_destroy (listeners_head);
806
807   while (NULL != sets_head)
808     set_destroy (sets_head);
809
810
811   /* it's important to destroy mesh at the end, as tunnels
812    * must be destroyed first! */
813   if (NULL != mesh)
814   {
815     GNUNET_MESH_disconnect (mesh);
816     mesh = NULL;
817   }
818
819   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "handled shutdown request\n");
820 }
821
822
823 /**
824  * Signature of the main function of a task.
825  *
826  * @param cls closure
827  * @param tc context information (why was this task triggered now)
828  */
829 static void
830 incoming_timeout_cb (void *cls,
831                      const struct GNUNET_SCHEDULER_TaskContext *tc)
832 {
833   struct Incoming *incoming = cls;
834
835   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "remote peer timed out\n");
836   incoming_destroy (incoming);
837 }
838
839
840 static void
841 handle_incoming_disconnect (struct OperationState *op_state)
842 {
843   struct Incoming *incoming = (struct Incoming *) op_state;
844   if (NULL == incoming->tunnel)
845     return;
846
847   incoming_destroy (incoming);
848 }
849
850
851 /**
852  * Method called whenever another peer has added us to a tunnel
853  * the other peer initiated.
854  * Only called (once) upon reception of data with a message type which was
855  * subscribed to in GNUNET_MESH_connect. A call to GNUNET_MESH_tunnel_destroy
856  * causes te tunnel to be ignored and no further notifications are sent about
857  * the same tunnel.
858  *
859  * @param cls closure
860  * @param tunnel new handle to the tunnel
861  * @param initiator peer that started the tunnel
862  * @param port Port this tunnel is for.
863  * @return initial tunnel context for the tunnel
864  *         (can be NULL -- that's not an error)
865  */
866 static void *
867 tunnel_new_cb (void *cls,
868                struct GNUNET_MESH_Tunnel *tunnel,
869                const struct GNUNET_PeerIdentity *initiator,
870                uint32_t port)
871 {
872   struct Incoming *incoming;
873   static const struct SetVT incoming_vt = {
874     .msg_handler = handle_incoming_msg,
875     .peer_disconnect = handle_incoming_disconnect
876   };
877
878   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new incoming tunnel\n");
879
880   GNUNET_assert (port == GNUNET_APPLICATION_TYPE_SET);
881   incoming = GNUNET_new (struct Incoming);
882   incoming->peer = *initiator;
883   incoming->tunnel = tunnel;
884   incoming->tc = GNUNET_new (struct TunnelContext);;
885   incoming->tc->vt = &incoming_vt;
886   incoming->tc->op = (struct OperationState *) incoming;
887   incoming->timeout_task = 
888       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, incoming_timeout_cb, incoming);
889   GNUNET_CONTAINER_DLL_insert_tail (incoming_head, incoming_tail, incoming);
890
891   return incoming->tc;
892 }
893
894
895 /**
896  * Function called whenever a tunnel is destroyed.  Should clean up
897  * any associated state.
898  * GNUNET_MESH_tunnel_destroy. It must NOT call GNUNET_MESH_tunnel_destroy on
899  * the tunnel.
900  *
901  * @param cls closure (set from GNUNET_MESH_connect)
902  * @param tunnel connection to the other end (henceforth invalid)
903  * @param tunnel_ctx place where local state associated
904  *                   with the tunnel is stored
905  */
906 static void
907 tunnel_end_cb (void *cls,
908                const struct GNUNET_MESH_Tunnel *tunnel, void *tunnel_ctx)
909 {
910   struct TunnelContext *ctx = tunnel_ctx;
911
912   ctx->vt->peer_disconnect (ctx->op);
913   /* mesh will never call us with the context again! */
914   GNUNET_free (tunnel_ctx);
915 }
916
917
918 /**
919  * Functions with this signature are called whenever a message is
920  * received.
921  * 
922  * Each time the function must call GNUNET_MESH_receive_done on the tunnel
923  * in order to receive the next message. This doesn't need to be immediate:
924  * can be delayed if some processing is done on the message.
925  *
926  * @param cls Closure (set from GNUNET_MESH_connect).
927  * @param tunnel Connection to the other end.
928  * @param tunnel_ctx Place to store local state associated with the tunnel.
929  * @param message The actual message.
930  * 
931  * @return GNUNET_OK to keep the tunnel open,
932  *         GNUNET_SYSERR to close it (signal serious error).
933  */
934 static int
935 dispatch_p2p_message (void *cls,
936                       struct GNUNET_MESH_Tunnel *tunnel,
937                       void **tunnel_ctx,
938                       const struct GNUNET_MessageHeader *message)
939 {
940   struct TunnelContext *tc = *tunnel_ctx;
941   int ret;
942
943   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "dispatching mesh message (type: %u)\n",
944               ntohs (message->type));
945   ret = tc->vt->msg_handler (tc->op, message);
946   GNUNET_MESH_receive_done (tunnel);
947   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "handled mesh message (type: %u)\n",
948               ntohs (message->type));
949   return ret;
950 }
951
952
953 /**
954  * Function called by the service's run
955  * method to run service-specific setup code.
956  *
957  * @param cls closure
958  * @param server the initialized server
959  * @param cfg configuration to use
960  */
961 static void
962 run (void *cls, struct GNUNET_SERVER_Handle *server,
963      const struct GNUNET_CONFIGURATION_Handle *cfg)
964 {
965   static const struct GNUNET_SERVER_MessageHandler server_handlers[] = {
966     {handle_client_accept, NULL, GNUNET_MESSAGE_TYPE_SET_ACCEPT,
967         sizeof (struct GNUNET_SET_AcceptRejectMessage)},
968     {handle_client_ack, NULL, GNUNET_MESSAGE_TYPE_SET_ACK, 0},
969     {handle_client_add_remove, NULL, GNUNET_MESSAGE_TYPE_SET_ADD, 0},
970     {handle_client_create, NULL, GNUNET_MESSAGE_TYPE_SET_CREATE,
971         sizeof (struct GNUNET_SET_CreateMessage)},
972     {handle_client_iterate, NULL, GNUNET_MESSAGE_TYPE_SET_ITER_REQUEST,
973         sizeof (struct GNUNET_MessageHeader)},
974     {handle_client_evaluate, NULL, GNUNET_MESSAGE_TYPE_SET_EVALUATE, 0},
975     {handle_client_listen, NULL, GNUNET_MESSAGE_TYPE_SET_LISTEN,
976         sizeof (struct GNUNET_SET_ListenMessage)},
977     {handle_client_reject, NULL, GNUNET_MESSAGE_TYPE_SET_REJECT,
978         sizeof (struct GNUNET_SET_AcceptRejectMessage)},
979     {handle_client_add_remove, NULL, GNUNET_MESSAGE_TYPE_SET_REMOVE, 0},
980     {handle_client_cancel, NULL, GNUNET_MESSAGE_TYPE_SET_REMOVE,
981         sizeof (struct GNUNET_SET_CancelMessage)},
982     {NULL, NULL, 0, 0}
983   };
984   static const struct GNUNET_MESH_MessageHandler mesh_handlers[] = {
985     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST, 0},
986     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_IBF, 0},
987     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_ELEMENTS, 0},
988     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_DONE, 0},
989     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_ELEMENT_REQUESTS, 0},
990     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_SE, 0},
991     {NULL, 0, 0}
992   };
993   static const uint32_t mesh_ports[] = {GNUNET_APPLICATION_TYPE_SET, 0};
994
995   configuration = cfg;
996   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
997                                 &shutdown_task, NULL);
998   GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
999   GNUNET_SERVER_add_handlers (server, server_handlers);
1000
1001   mesh = GNUNET_MESH_connect (cfg, NULL, tunnel_new_cb, tunnel_end_cb,
1002                               mesh_handlers, mesh_ports);
1003   if (NULL == mesh)
1004   {
1005     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "could not connect to mesh\n");
1006     return;
1007   }
1008
1009   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "started\n");
1010 }
1011
1012
1013 /**
1014  * The main function for the set service.
1015  *
1016  * @param argc number of arguments from the command line
1017  * @param argv command line arguments
1018  * @return 0 ok, 1 on error
1019  */
1020 int
1021 main (int argc, char *const *argv)
1022 {
1023   int ret;
1024   ret = GNUNET_SERVICE_run (argc, argv, "set",
1025                             GNUNET_SERVICE_OPTION_NONE, &run, NULL);
1026   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "exit\n");
1027   return (GNUNET_OK == ret) ? 0 : 1;
1028 }
1029