-minor code cleanup
[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   }
314   listener = listener_get (client);
315   if (NULL != listener)
316   {
317     listener->client = NULL;
318     listener_destroy (listener);
319   }
320 }
321
322
323 /**
324  * Destroy an incoming request from a remote peer
325  *
326  * @param incoming remote request to destroy
327  */
328 static void
329 incoming_destroy (struct Incoming *incoming)
330 {
331   GNUNET_CONTAINER_DLL_remove (incoming_head, incoming_tail, incoming);
332   if (NULL != incoming->tunnel)
333   {
334     struct GNUNET_MESH_Tunnel *t = incoming->tunnel;
335     incoming->tunnel = NULL;
336     GNUNET_MESH_tunnel_destroy (t);
337     return;
338   }
339   GNUNET_free (incoming);
340 }
341
342
343 static struct Listener *
344 listener_get_by_target (enum GNUNET_SET_OperationType op,
345                         const struct GNUNET_HashCode *app_id)
346 {
347   struct Listener *l;
348
349   for (l = listeners_head; NULL != l; l = l->next)
350   {
351     if (l->operation != op)
352       continue;
353     if (0 != GNUNET_CRYPTO_hash_cmp (app_id, &l->app_id))
354       continue;
355     return l;
356   }
357   return NULL;
358 }
359
360
361 /**
362  * Suggest the given request to the listener,
363  * who can accept or reject the request.
364  *
365  * @param incoming the incoming peer with the request to suggest
366  * @param listener the listener to suggest the request to
367  */
368 static void
369 incoming_suggest (struct Incoming *incoming, struct Listener *listener)
370 {
371   struct GNUNET_MQ_Envelope *mqm;
372   struct GNUNET_SET_RequestMessage *cmsg;
373
374   GNUNET_assert (0 == incoming->suggest_id);
375   GNUNET_assert (NULL != incoming->spec);
376   incoming->suggest_id = suggest_id++;
377
378   GNUNET_SCHEDULER_cancel (incoming->timeout_task);
379   mqm = GNUNET_MQ_msg_nested_mh (cmsg, GNUNET_MESSAGE_TYPE_SET_REQUEST,
380                                  incoming->spec->context_msg);
381   GNUNET_assert (NULL != mqm);
382   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "suggesting request with accept id %u\n", incoming->suggest_id);
383   cmsg->accept_id = htonl (incoming->suggest_id);
384   cmsg->peer_id = incoming->spec->peer;
385   GNUNET_MQ_send (listener->client_mq, mqm);
386
387 }
388
389
390 /**
391  * Handle a request for a set operation from
392  * another peer.
393  *
394  * @param op the operation state
395  * @param mh the received message
396  * @return GNUNET_OK if the tunnel should be kept alive,
397  *         GNUNET_SYSERR to destroy the tunnel
398  */
399 static int
400 handle_incoming_msg (struct OperationState *op,
401                      const struct GNUNET_MessageHeader *mh)
402 {
403   struct Incoming *incoming = (struct Incoming *) op;
404   const struct OperationRequestMessage *msg = (const struct OperationRequestMessage *) mh;
405   struct Listener *listener;
406   struct OperationSpecification *spec;
407
408   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "got op request\n");
409
410   if (GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST != ntohs (mh->type))
411   {
412     GNUNET_break_op (0);
413     return GNUNET_SYSERR;
414   }
415
416   if (NULL != incoming->spec)
417   {
418     /* double operation request */
419     GNUNET_break_op (0);
420     return GNUNET_SYSERR;
421   }
422
423   spec = GNUNET_new (struct OperationSpecification);
424   spec->context_msg = GNUNET_MQ_extract_nested_mh (msg);
425   if (NULL != spec->context_msg)
426     spec->context_msg = GNUNET_copy_message (spec->context_msg);
427   spec->operation = ntohl (msg->operation);
428   spec->app_id = msg->app_id;
429   spec->salt = ntohl (msg->salt);
430   spec->peer = incoming->peer;
431
432   incoming->spec = spec;
433
434   if ( (NULL != spec->context_msg) &&
435        (ntohs (spec->context_msg->size) > GNUNET_SET_CONTEXT_MESSAGE_MAX_SIZE) )
436   {
437     GNUNET_break_op (0);
438     return GNUNET_SYSERR;
439   }
440
441   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "received P2P operation request (op %u, app %s)\n",
442               ntohs (msg->operation), GNUNET_h2s (&msg->app_id));
443   listener = listener_get_by_target (ntohs (msg->operation), &msg->app_id);
444   if (NULL == listener)
445   {
446     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
447                 "no listener matches incoming request, waiting with timeout\n");
448     return GNUNET_OK;
449   }
450   incoming_suggest (incoming, listener);
451   return GNUNET_OK;
452 }
453
454
455 /**
456  * Called when a client wants to create a new set.
457  *
458  * @param cls unused
459  * @param client client that sent the message
460  * @param m message sent by the client
461  */
462 static void
463 handle_client_create (void *cls,
464                       struct GNUNET_SERVER_Client *client,
465                       const struct GNUNET_MessageHeader *m)
466 {
467   struct GNUNET_SET_CreateMessage *msg = (struct GNUNET_SET_CreateMessage *) m;
468   struct Set *set;
469
470   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client created new set (operation %u)\n",
471               ntohs (msg->operation));
472
473   if (NULL != set_get (client))
474   {
475     GNUNET_break (0);
476     GNUNET_SERVER_client_disconnect (client);
477     return;
478   }
479
480   set = NULL;
481   set = GNUNET_new (struct Set);
482
483   switch (ntohs (msg->operation))
484   {
485     case GNUNET_SET_OPERATION_INTERSECTION:
486       // FIXME
487       break;
488     case GNUNET_SET_OPERATION_UNION:
489       set->vt = _GSS_union_vt ();
490       break;
491     default:
492       GNUNET_break (0);
493       GNUNET_SERVER_client_disconnect (client);
494       return;
495   }
496
497   set->state = set->vt->create ();
498   set->client = client;
499   set->client_mq = GNUNET_MQ_queue_for_server_client (client);
500   GNUNET_CONTAINER_DLL_insert (sets_head, sets_tail, set);
501   GNUNET_SERVER_receive_done (client, GNUNET_OK);
502 }
503
504
505 /**
506  * Called when a client wants to create a new listener.
507  *
508  * @param cls unused
509  * @param client client that sent the message
510  * @param m message sent by the client
511  */
512 static void
513 handle_client_listen (void *cls,
514                       struct GNUNET_SERVER_Client *client,
515                       const struct GNUNET_MessageHeader *m)
516 {
517   struct GNUNET_SET_ListenMessage *msg = (struct GNUNET_SET_ListenMessage *) m;
518   struct Listener *listener;
519   struct Incoming *incoming;
520
521   if (NULL != listener_get (client))
522   {
523     GNUNET_break (0);
524     GNUNET_SERVER_client_disconnect (client);
525     return;
526   }
527   listener = GNUNET_new (struct Listener);
528   listener->client = client;
529   listener->client_mq = GNUNET_MQ_queue_for_server_client (client);
530   listener->app_id = msg->app_id;
531   listener->operation = ntohs (msg->operation);
532   GNUNET_CONTAINER_DLL_insert_tail (listeners_head, listeners_tail, listener);
533   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new listener created (op %u, app %s)\n",
534               listener->operation, GNUNET_h2s (&listener->app_id));
535   for (incoming = incoming_head; NULL != incoming; incoming = incoming->next)
536   {
537     if ( (NULL == incoming->spec) ||
538          (0 != incoming->suggest_id) )
539       continue;
540     if (listener->operation != incoming->spec->operation)
541       continue;
542     if (0 != GNUNET_CRYPTO_hash_cmp (&listener->app_id, &incoming->spec->app_id))
543       continue;
544     incoming_suggest (incoming, listener);
545   }
546   GNUNET_SERVER_receive_done (client, GNUNET_OK);
547 }
548
549
550 /**
551  * Called when the client wants to reject an operation
552  * request from another peer.
553  *
554  * @param cls unused
555  * @param client client that sent the message
556  * @param m message sent by the client
557  */
558 static void
559 handle_client_reject (void *cls,
560                       struct GNUNET_SERVER_Client *client,
561                       const struct GNUNET_MessageHeader *m)
562 {
563   struct Incoming *incoming;
564   const struct GNUNET_SET_AcceptRejectMessage *msg;
565
566   msg = (const struct GNUNET_SET_AcceptRejectMessage *) m;
567   GNUNET_break (0 == ntohl (msg->request_id));
568
569   incoming = get_incoming (ntohl (msg->accept_reject_id));
570   if (NULL == incoming)
571   {
572     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
573     return;
574   }
575   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "peer request rejected by client\n");
576   GNUNET_MESH_tunnel_destroy (incoming->tunnel);
577   GNUNET_SERVER_receive_done (client, GNUNET_OK);
578 }
579
580
581 /**
582  * Called when a client wants to add an element to a
583  * set it inhabits.
584  *
585  * @param cls unused
586  * @param client client that sent the message
587  * @param m message sent by the client
588  */
589 static void
590 handle_client_add_remove (void *cls,
591                           struct GNUNET_SERVER_Client *client,
592                           const struct GNUNET_MessageHeader *m)
593 {
594   struct Set *set;
595   const struct GNUNET_SET_ElementMessage *msg;
596   struct GNUNET_SET_Element el;
597
598   set = set_get (client);
599   if (NULL == set)
600   {
601     GNUNET_break (0);
602     GNUNET_SERVER_client_disconnect (client);
603     return;
604   }
605   msg = (const struct GNUNET_SET_ElementMessage *) m;
606   el.size = ntohs (m->size) - sizeof *msg;
607   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
608               "client ins/rem element of size %u\n", el.size);
609   el.data = &msg[1];
610   if (GNUNET_MESSAGE_TYPE_SET_REMOVE == ntohs (m->type))
611     set->vt->remove (set->state, &el);
612   else
613     set->vt->add (set->state, &el);
614   GNUNET_SERVER_receive_done (client, GNUNET_OK);
615 }
616
617
618 /**
619  * Called when a client wants to evaluate a set operation with another peer.
620  *
621  * @param cls unused
622  * @param client client that sent the message
623  * @param m message sent by the client
624  */
625 static void
626 handle_client_evaluate (void *cls,
627                         struct GNUNET_SERVER_Client *client,
628                         const struct GNUNET_MessageHeader *m)
629 {
630   struct Set *set;
631   struct TunnelContext *tc;
632   struct GNUNET_MESH_Tunnel *tunnel;
633   struct GNUNET_SET_EvaluateMessage *msg;
634   struct OperationSpecification *spec;
635
636   set = set_get (client);
637   if (NULL == set)
638   {
639     GNUNET_break (0);
640     GNUNET_SERVER_client_disconnect (client);
641     return;
642   }
643
644   msg = (struct GNUNET_SET_EvaluateMessage *) m;
645   tc = GNUNET_new (struct TunnelContext);
646   spec = GNUNET_new (struct OperationSpecification);
647   spec->operation = set->operation;
648   spec->app_id = msg->app_id;
649   spec->salt = ntohl (msg->salt);
650   spec->peer = msg->target_peer;
651   spec->set = set;
652   spec->client_request_id = ntohl (msg->request_id);
653
654   tunnel = GNUNET_MESH_tunnel_create (mesh, tc, &msg->target_peer,
655                                       GNUNET_APPLICATION_TYPE_SET,
656                                       GNUNET_YES,
657                                       GNUNET_YES);
658
659   set->vt->evaluate (spec, tunnel, tc);
660
661   GNUNET_SERVER_receive_done (client, GNUNET_OK);
662 }
663
664
665 /**
666  * Handle an ack from a client.
667  *
668  * @param cls unused
669  * @param client the client
670  * @param m the message
671  */
672 static void
673 handle_client_ack (void *cls,
674                    struct GNUNET_SERVER_Client *client,
675                    const struct GNUNET_MessageHeader *m)
676 {
677   /* FIXME: implement */
678   GNUNET_SERVER_receive_done (client, GNUNET_OK);
679 }
680
681
682 /**
683  * Handle a request from the client to accept
684  * a set operation that came from a remote peer.
685  *
686  * @param cls unused
687  * @param client the client
688  * @param mh the message
689  */
690 static void
691 handle_client_cancel (void *cls,
692                       struct GNUNET_SERVER_Client *client,
693                       const struct GNUNET_MessageHeader *mh)
694 {
695   const struct GNUNET_SET_CancelMessage *msg =
696       (const struct GNUNET_SET_CancelMessage *) mh;
697   struct Set *set;
698
699   set = set_get (client);
700   if (NULL == set)
701   {
702     GNUNET_break (0);
703     GNUNET_SERVER_client_disconnect (client);
704     return;
705   }
706   /* FIXME: maybe cancel should return success/error code? */
707   set->vt->cancel (set->state, ntohl (msg->request_id));
708 }
709
710
711 /**
712  * Handle a request from the client to accept
713  * a set operation that came from a remote peer.
714  *
715  * @param cls unused
716  * @param client the client
717  * @param mh the message
718  */
719 static void
720 handle_client_accept (void *cls,
721                       struct GNUNET_SERVER_Client *client,
722                       const struct GNUNET_MessageHeader *mh)
723 {
724   struct Set *set;
725   struct Incoming *incoming;
726   struct GNUNET_SET_AcceptRejectMessage *msg = (struct GNUNET_SET_AcceptRejectMessage *) mh;
727
728   incoming = get_incoming (ntohl (msg->accept_reject_id));
729
730   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client accepting %u\n", ntohl (msg->accept_reject_id));
731
732   if (NULL == incoming)
733   {
734
735     GNUNET_break (0);
736     GNUNET_SERVER_client_disconnect (client);
737     return;
738   }
739
740   set = set_get (client);
741
742   if (NULL == set)
743   {
744     GNUNET_break (0);
745     GNUNET_SERVER_client_disconnect (client);
746     return;
747   }
748
749   incoming->spec->set = set;
750   incoming->spec->client_request_id = ntohl (msg->request_id);
751   set->vt->accept (incoming->spec, incoming->tunnel, incoming->tc);
752   /* tunnel ownership goes to operation */
753   incoming->tunnel = NULL;
754   incoming_destroy (incoming);
755   GNUNET_SERVER_receive_done (client, GNUNET_OK);
756 }
757
758
759 /**
760  * Called to clean up, after a shutdown has been requested.
761  *
762  * @param cls closure
763  * @param tc context information (why was this task triggered now)
764  */
765 static void
766 shutdown_task (void *cls,
767                const struct GNUNET_SCHEDULER_TaskContext *tc)
768 {
769   while (NULL != incoming_head)
770     incoming_destroy (incoming_head);
771
772   while (NULL != listeners_head)
773     listener_destroy (listeners_head);
774
775   while (NULL != sets_head)
776     set_destroy (sets_head);
777
778
779   /* it's important to destroy mesh at the end, as tunnels
780    * must be destroyed first! */
781   if (NULL != mesh)
782   {
783     GNUNET_MESH_disconnect (mesh);
784     mesh = NULL;
785   }
786
787   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "handled shutdown request\n");
788 }
789
790
791 /**
792  * Signature of the main function of a task.
793  *
794  * @param cls closure
795  * @param tc context information (why was this task triggered now)
796  */
797 static void
798 incoming_timeout_cb (void *cls,
799                      const struct GNUNET_SCHEDULER_TaskContext *tc)
800 {
801   struct Incoming *incoming = cls;
802
803   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "remote peer timed out\n");
804   incoming_destroy (incoming);
805 }
806
807
808 static void
809 handle_incoming_disconnect (struct OperationState *op_state)
810 {
811   struct Incoming *incoming = (struct Incoming *) op_state;
812   if (NULL == incoming->tunnel)
813     return;
814
815   incoming_destroy (incoming);
816 }
817
818
819 /**
820  * Method called whenever another peer has added us to a tunnel
821  * the other peer initiated.
822  * Only called (once) upon reception of data with a message type which was
823  * subscribed to in GNUNET_MESH_connect. A call to GNUNET_MESH_tunnel_destroy
824  * causes te tunnel to be ignored and no further notifications are sent about
825  * the same tunnel.
826  *
827  * @param cls closure
828  * @param tunnel new handle to the tunnel
829  * @param initiator peer that started the tunnel
830  * @param port Port this tunnel is for.
831  * @return initial tunnel context for the tunnel
832  *         (can be NULL -- that's not an error)
833  */
834 static void *
835 tunnel_new_cb (void *cls,
836                struct GNUNET_MESH_Tunnel *tunnel,
837                const struct GNUNET_PeerIdentity *initiator,
838                uint32_t port)
839 {
840   struct Incoming *incoming;
841   static const struct SetVT incoming_vt = {
842     .msg_handler = handle_incoming_msg,
843     .peer_disconnect = handle_incoming_disconnect
844   };
845
846   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "new incoming tunnel\n");
847
848   GNUNET_assert (port == GNUNET_APPLICATION_TYPE_SET);
849   incoming = GNUNET_new (struct Incoming);
850   incoming->peer = *initiator;
851   incoming->tunnel = tunnel;
852   incoming->tc = GNUNET_new (struct TunnelContext);;
853   incoming->tc->vt = &incoming_vt;
854   incoming->tc->op = (struct OperationState *) incoming;
855   incoming->timeout_task = 
856       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, incoming_timeout_cb, incoming);
857   GNUNET_CONTAINER_DLL_insert_tail (incoming_head, incoming_tail, incoming);
858
859   return incoming->tc;
860 }
861
862
863 /**
864  * Function called whenever a tunnel is destroyed.  Should clean up
865  * any associated state.
866  * GNUNET_MESH_tunnel_destroy. It must NOT call GNUNET_MESH_tunnel_destroy on
867  * the tunnel.
868  *
869  * @param cls closure (set from GNUNET_MESH_connect)
870  * @param tunnel connection to the other end (henceforth invalid)
871  * @param tunnel_ctx place where local state associated
872  *                   with the tunnel is stored
873  */
874 static void
875 tunnel_end_cb (void *cls,
876                const struct GNUNET_MESH_Tunnel *tunnel, void *tunnel_ctx)
877 {
878   struct TunnelContext *ctx = tunnel_ctx;
879
880   ctx->vt->peer_disconnect (ctx->op);
881   /* mesh will never call us with the context again! */
882   GNUNET_free (tunnel_ctx);
883 }
884
885
886 /**
887  * Functions with this signature are called whenever a message is
888  * received.
889  * 
890  * Each time the function must call GNUNET_MESH_receive_done on the tunnel
891  * in order to receive the next message. This doesn't need to be immediate:
892  * can be delayed if some processing is done on the message.
893  *
894  * @param cls Closure (set from GNUNET_MESH_connect).
895  * @param tunnel Connection to the other end.
896  * @param tunnel_ctx Place to store local state associated with the tunnel.
897  * @param message The actual message.
898  * 
899  * @return GNUNET_OK to keep the tunnel open,
900  *         GNUNET_SYSERR to close it (signal serious error).
901  */
902 static int
903 dispatch_p2p_message (void *cls,
904                       struct GNUNET_MESH_Tunnel *tunnel,
905                       void **tunnel_ctx,
906                       const struct GNUNET_MessageHeader *message)
907 {
908   struct TunnelContext *tc = *tunnel_ctx;
909   int ret;
910
911   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "dispatching mesh message\n");
912   ret = tc->vt->msg_handler (tc->op, message);
913   GNUNET_MESH_receive_done (tunnel);
914
915   return ret;
916 }
917
918
919 /**
920  * Function called by the service's run
921  * method to run service-specific setup code.
922  *
923  * @param cls closure
924  * @param server the initialized server
925  * @param cfg configuration to use
926  */
927 static void
928 run (void *cls, struct GNUNET_SERVER_Handle *server,
929      const struct GNUNET_CONFIGURATION_Handle *cfg)
930 {
931   static const struct GNUNET_SERVER_MessageHandler server_handlers[] = {
932     {handle_client_accept, NULL, GNUNET_MESSAGE_TYPE_SET_ACCEPT,
933         sizeof (struct GNUNET_SET_AcceptRejectMessage)},
934     {handle_client_ack, NULL, GNUNET_MESSAGE_TYPE_SET_ACK, 0},
935     {handle_client_add_remove, NULL, GNUNET_MESSAGE_TYPE_SET_ADD, 0},
936     {handle_client_create, NULL, GNUNET_MESSAGE_TYPE_SET_CREATE,
937         sizeof (struct GNUNET_SET_CreateMessage)},
938     {handle_client_evaluate, NULL, GNUNET_MESSAGE_TYPE_SET_EVALUATE, 0},
939     {handle_client_listen, NULL, GNUNET_MESSAGE_TYPE_SET_LISTEN,
940         sizeof (struct GNUNET_SET_ListenMessage)},
941     {handle_client_reject, NULL, GNUNET_MESSAGE_TYPE_SET_REJECT,
942         sizeof (struct GNUNET_SET_AcceptRejectMessage)},
943     {handle_client_add_remove, NULL, GNUNET_MESSAGE_TYPE_SET_REMOVE, 0},
944     {handle_client_cancel, NULL, GNUNET_MESSAGE_TYPE_SET_REMOVE,
945         sizeof (struct GNUNET_SET_CancelMessage)},
946     {NULL, NULL, 0, 0}
947   };
948   static const struct GNUNET_MESH_MessageHandler mesh_handlers[] = {
949     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_OPERATION_REQUEST, 0},
950     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_IBF, 0},
951     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_ELEMENTS, 0},
952     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_DONE, 0},
953     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_ELEMENT_REQUESTS, 0},
954     {dispatch_p2p_message, GNUNET_MESSAGE_TYPE_SET_P2P_SE, 0},
955     {NULL, 0, 0}
956   };
957   static const uint32_t mesh_ports[] = {GNUNET_APPLICATION_TYPE_SET, 0};
958
959   configuration = cfg;
960   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
961                                 &shutdown_task, NULL);
962   GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
963   GNUNET_SERVER_add_handlers (server, server_handlers);
964
965   mesh = GNUNET_MESH_connect (cfg, NULL, tunnel_new_cb, tunnel_end_cb,
966                               mesh_handlers, mesh_ports);
967   if (NULL == mesh)
968   {
969     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "could not connect to mesh\n");
970     return;
971   }
972
973   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "started\n");
974 }
975
976
977 /**
978  * The main function for the set service.
979  *
980  * @param argc number of arguments from the command line
981  * @param argv command line arguments
982  * @return 0 ok, 1 on error
983  */
984 int
985 main (int argc, char *const *argv)
986 {
987   int ret;
988   ret = GNUNET_SERVICE_run (argc, argv, "set",
989                             GNUNET_SERVICE_OPTION_NONE, &run, NULL);
990   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "exit\n");
991   return (GNUNET_OK == ret) ? 0 : 1;
992 }
993