gpl3
[oweals/gnunet.git] / src / dht / gnunet-service-dht.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file dht/gnunet-service-dht.c
23  * @brief main DHT service shell, building block for DHT implementations
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_client_lib.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_os_lib.h"
32 #include "gnunet_protocols.h"
33 #include "gnunet_service_lib.h"
34 #include "gnunet_core_service.h"
35 #include "gnunet_signal_lib.h"
36 #include "gnunet_util_lib.h"
37 #include "gnunet_datacache_lib.h"
38 #include "gnunet_transport_service.h"
39 #include "gnunet_hello_lib.h"
40 #include "dht.h"
41
42 /**
43  * Handle to the datacache service (for inserting/retrieving data)
44  */
45 struct GNUNET_DATACACHE_Handle *datacache;
46
47 /**
48  * The main scheduler to use for the DHT service
49  */
50 static struct GNUNET_SCHEDULER_Handle *sched;
51
52 /**
53  * The configuration the DHT service is running with
54  */
55 static const struct GNUNET_CONFIGURATION_Handle *cfg;
56
57 /**
58  * Handle to the core service
59  */
60 static struct GNUNET_CORE_Handle *coreAPI;
61
62 /**
63  * Handle to the transport service, for getting our hello
64  */
65 static struct GNUNET_TRANSPORT_Handle *transport_handle;
66
67 /**
68  * The identity of our peer.
69  */
70 static struct GNUNET_PeerIdentity my_identity;
71
72 /**
73  * Short id of the peer, for printing
74  */
75 static char *my_short_id;
76
77 /**
78  * Our HELLO
79  */
80 static struct GNUNET_MessageHeader *my_hello;
81
82 /**
83  * Task to run when we shut down, cleaning up all our trash
84  */
85 static GNUNET_SCHEDULER_TaskIdentifier cleanup_task;
86
87
88 /**
89  * Linked list of messages to send to clients.
90  */
91 struct PendingMessage
92 {
93   /**
94    * Pointer to next item in the list
95    */
96   struct PendingMessage *next;
97
98   /**
99    * Pointer to previous item in the list
100    */
101   struct PendingMessage *prev;
102
103   /**
104    * Actual message to be sent; // avoid allocation
105    */
106   const struct GNUNET_MessageHeader *msg; // msg = (cast) &pm[1]; // memcpy (&pm[1], data, len);
107
108 };
109
110 /**
111  * Struct containing information about a client,
112  * handle to connect to it, and any pending messages
113  * that need to be sent to it.
114  */
115 struct ClientList
116 {
117   /**
118    * Linked list of active clients
119    */
120   struct ClientList *next;
121
122   /**
123    * The handle to this client
124    */
125   struct GNUNET_SERVER_Client *client_handle;
126
127   /**
128    * Handle to the current transmission request, NULL
129    * if none pending.
130    */
131   struct GNUNET_CONNECTION_TransmitHandle *transmit_handle;
132
133   /**
134    * Linked list of pending messages for this client
135    */
136   struct PendingMessage *pending_head;
137
138   /**
139    * Tail of linked list of pending messages for this client
140    */
141   struct PendingMessage *pending_tail;
142
143 };
144
145 /**
146  * Context for handling results from a get request.
147  */
148 struct DatacacheGetContext
149 {
150   /**
151    * The client to send the result to.
152    */
153   struct ClientList *client;
154
155   /**
156    * The unique id of this request
157    */
158   unsigned long long unique_id;
159 };
160
161 /**
162  * Context containing information about a DHT message received.
163  */
164 struct DHT_MessageContext
165 {
166   /**
167    * The client this request was received from.
168    */
169   struct ClientList *client;
170
171   /**
172    * The key this request was about
173    */
174   const GNUNET_HashCode *key;
175
176   /**
177    * The unique identifier of this request
178    */
179   unsigned long long unique_id;
180
181   /**
182    * Desired replication level
183    */
184   size_t replication;
185
186   /**
187    * Any message options for this request
188    */
189   size_t msg_options;
190 };
191
192 /**
193  * List of active clients.
194  */
195 static struct ClientList *client_list;
196
197 /**
198  * Forward declaration.
199  */
200 static size_t send_generic_reply (void *cls, size_t size, void *buf);
201
202
203 /**
204  * Task run to check for messages that need to be sent to a client.
205  *
206  * @param client a ClientList, containing the client and any messages to be sent to it
207  */
208 static void
209 process_pending_messages (struct ClientList *client)
210
211   if (client->pending_head == NULL) 
212     return;    
213   if (client->transmit_handle != NULL) 
214     return;
215   client->transmit_handle =
216     GNUNET_SERVER_notify_transmit_ready (client->client_handle,
217                                          ntohs (client->pending_head->msg->
218                                                 size),
219                                          GNUNET_TIME_UNIT_FOREVER_REL,
220                                          &send_generic_reply, client);
221 }
222
223 /**
224  * Callback called as a result of issuing a GNUNET_SERVER_notify_transmit_ready
225  * request.  A ClientList is passed as closure, take the head of the list
226  * and copy it into buf, which has the result of sending the message to the
227  * client.
228  *
229  * @param cls closure to this call
230  * @param size maximum number of bytes available to send
231  * @param buf where to copy the actual message to
232  *
233  * @return the number of bytes actually copied, 0 indicates failure
234  */
235 static size_t
236 send_generic_reply (void *cls, size_t size, void *buf)
237 {
238   struct ClientList *client = cls;
239   char *cbuf = buf;
240   struct PendingMessage *reply;
241   size_t off;
242   size_t msize;
243
244   client->transmit_handle = NULL;
245   if (buf == NULL)             
246     {
247       /* client disconnected */
248       return 0;
249     }
250   off = 0;
251   while ( (NULL != (reply = client->pending_head)) &&
252           (size >= off + (msize = ntohs (reply->msg->size))))
253     {
254       GNUNET_CONTAINER_DLL_remove (client->pending_head,
255                                    client->pending_tail,
256                                    reply);
257       memcpy (&cbuf[off], reply->msg, msize);
258       GNUNET_free (reply);
259       off += msize;
260     }
261   process_pending_messages (client);
262   return off;
263 }
264
265
266 /**
267  * Add a PendingMessage to the clients list of messages to be sent
268  *
269  * @param client the active client to send the message to
270  * @param pending_message the actual message to send
271  */
272 static void
273 add_pending_message (struct ClientList *client,
274                      struct PendingMessage *pending_message)
275 {
276   GNUNET_CONTAINER_DLL_insert_after (client->pending_head,
277                                      client->pending_tail,
278                                      client->pending_tail,
279                                      pending_message);
280   process_pending_messages (client);
281 }
282
283
284 /**
285  * Called when a reply needs to be sent to a client, as
286  * a result it found to a GET or FIND PEER request.
287  *
288  * @param client the client to send the reply to
289  * @param message the encapsulated message to send
290  * @param uid the unique identifier of this request
291  */
292 static void
293 send_reply_to_client (struct ClientList *client,
294                       const struct GNUNET_MessageHeader *message,
295                       unsigned long long uid)
296 {
297   struct GNUNET_DHT_RouteResultMessage *reply;
298   struct PendingMessage *pending_message;
299   uint16_t msize;
300   size_t tsize;
301 #if DEBUG_DHT
302   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
303               "`%s': Sending reply to client.\n", "DHT");
304 #endif
305   msize = ntohs (message->size);
306   tsize = sizeof (struct GNUNET_DHT_RouteResultMessage) + msize;
307   if (tsize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
308     {
309       GNUNET_break_op (0);
310       return;
311     }
312
313   pending_message = GNUNET_malloc (sizeof (struct PendingMessage) + tsize);
314   pending_message->msg = (struct GNUNET_MessageHeader *)&pending_message[1];
315   reply = (struct GNUNET_DHT_RouteResultMessage *)&pending_message[1];
316   reply->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_ROUTE_RESULT);
317   reply->header.size = htons (tsize);
318   reply->unique_id = GNUNET_htonll (uid);
319   memcpy (&reply[1], message, msize);
320
321   add_pending_message (client, pending_message);
322 }
323
324
325 /**
326  * Iterator for local get request results,
327  *
328  * @param cls closure for iterator, a DatacacheGetContext
329  * @param exp when does this value expire?
330  * @param key the key this data is stored under
331  * @param size the size of the data identified by key
332  * @param data the actual data
333  * @param type the type of the data
334  *
335  * @return GNUNET_OK to continue iteration, anything else
336  * to stop iteration.
337  */
338 static int
339 datacache_get_iterator (void *cls,
340                         struct GNUNET_TIME_Absolute exp,
341                         const GNUNET_HashCode * key,
342                         uint32_t size, const char *data, uint32_t type)
343 {
344   struct DatacacheGetContext *datacache_get_ctx = cls;
345   struct GNUNET_DHT_GetResultMessage *get_result;
346 #if DEBUG_DHT
347   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
348               "`%s': Received `%s' response from datacache\n", "DHT", "GET");
349 #endif
350   get_result =
351     GNUNET_malloc (sizeof (struct GNUNET_DHT_GetResultMessage) + size);
352   get_result->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_GET_RESULT);
353   get_result->header.size =
354     htons (sizeof (struct GNUNET_DHT_GetResultMessage) + size);
355   get_result->expiration = exp;
356   memcpy (&get_result->key, key, sizeof (GNUNET_HashCode));
357   get_result->type = htons (type);
358   memcpy (&get_result[1], data, size);
359   send_reply_to_client (datacache_get_ctx->client, &get_result->header,
360                         datacache_get_ctx->unique_id);
361   GNUNET_free (get_result);
362   return GNUNET_OK;
363 }
364
365
366 /**
367  * Server handler for initiating local dht get requests
368  *
369  * @param cls closure for service
370  * @param msg the actual get message
371  * @param message_context struct containing pertinent information about the get request
372  */
373 static void
374 handle_dht_get (void *cls, 
375                 const struct GNUNET_MessageHeader *msg,
376                 struct DHT_MessageContext *message_context)
377 {
378   const struct GNUNET_DHT_GetMessage *get_msg;
379   uint16_t get_type;
380   unsigned int results;
381   struct DatacacheGetContext datacache_get_context;
382
383   get_msg = (const struct GNUNET_DHT_GetMessage *) msg;
384   if (ntohs (get_msg->header.size) != sizeof (struct GNUNET_DHT_GetMessage))
385     {
386       GNUNET_break (0);
387       return;
388     }
389
390   get_type = ntohs (get_msg->type);
391 #if DEBUG_DHT
392   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
393               "`%s': Received `%s' request from client, message type %u, key %s, uid %llu\n",
394               "DHT", "GET", get_type, GNUNET_h2s (message_context->key),
395               message_context->unique_id);
396 #endif
397   datacache_get_context.client = message_context->client;
398   datacache_get_context.unique_id = message_context->unique_id;
399   results = 0;
400   if (datacache != NULL)
401     results =
402       GNUNET_DATACACHE_get (datacache, message_context->key, get_type,
403                             &datacache_get_iterator, &datacache_get_context);
404   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
405               "`%s': Found %d results for local `%s' request\n", "DHT",
406               results, "GET");
407 }
408
409
410 /**
411  * Server handler for initiating local dht find peer requests
412  *
413  * @param cls closure for service
414  * @param find_msg the actual find peer message
415  * @param message_context struct containing pertinent information about the request
416  *
417  */
418 static void
419 handle_dht_find_peer (void *cls, 
420                       const struct GNUNET_MessageHeader *find_msg,
421                       struct DHT_MessageContext *message_context)
422 {
423   struct GNUNET_MessageHeader *find_peer_result;
424   size_t hello_size;
425   size_t tsize;
426
427 #if DEBUG_DHT
428   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
429               "`%s': Received `%s' request from client, key %s (msg size %d, we expected %d)\n",
430               "DHT", "FIND PEER", GNUNET_h2s (message_context->key),
431               ntohs (find_msg->size),
432               sizeof (struct GNUNET_MessageHeader));
433 #endif
434   if (my_hello == NULL)
435   {
436 #if DEBUG_DHT
437     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
438                 "`%s': Our HELLO is null, can't return.\n",
439                 "DHT");
440 #endif
441     return;
442   }
443   /* Simplistic find_peer functionality, always return our hello */
444   hello_size = ntohs(my_hello->size);
445   tsize = hello_size + sizeof (struct GNUNET_MessageHeader);
446   // check tsize < MAX
447   find_peer_result = GNUNET_malloc (tsize);
448   find_peer_result->type = htons (GNUNET_MESSAGE_TYPE_DHT_FIND_PEER_RESULT);
449   find_peer_result->size = htons (tsize);
450   memcpy (&find_peer_result[1], my_hello, hello_size);
451 #if DEBUG_DHT_HELLO
452     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
453                 "`%s': Sending hello size %d to client.\n",
454                 "DHT", hello_size);
455 #endif
456   send_reply_to_client(message_context->client, find_peer_result, message_context->unique_id);
457   GNUNET_free(find_peer_result);
458 }
459
460
461 /**
462  * Server handler for initiating local dht put requests
463  *
464  * @param cls closure for service
465  * @param msg the actual put message
466  * @param message_context struct containing pertinent information about the request
467  */
468 static void
469 handle_dht_put (void *cls,
470                 const struct GNUNET_MessageHeader *msg,
471                 struct DHT_MessageContext *message_context)
472 {
473   struct GNUNET_DHT_PutMessage *put_msg;
474   size_t put_type;
475   size_t data_size;
476
477   GNUNET_assert (ntohs (msg->size) >=
478                  sizeof (struct GNUNET_DHT_PutMessage));
479   put_msg = (struct GNUNET_DHT_PutMessage *)msg;
480   put_type = ntohs (put_msg->type);
481   data_size = ntohs (put_msg->header.size) - sizeof (struct GNUNET_DHT_PutMessage);
482 #if DEBUG_DHT
483   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
484               "`%s': Received `%s' request from client, message type %d, key %s\n",
485               "DHT", "PUT", put_type, GNUNET_h2s (message_context->key));
486 #endif
487   if (datacache != NULL)
488     GNUNET_DATACACHE_put (datacache, message_context->key, data_size,
489                           (char *) &put_msg[1], put_type,
490                           GNUNET_TIME_absolute_ntoh(put_msg->expiration));
491   else
492     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
493                 "`%s': %s request received locally, but have no datacache!\n",
494                 "DHT", "PUT");
495 }
496
497
498 /**
499  * Find a client if it exists, add it otherwise.
500  *
501  * @param client the server handle to the client
502  *
503  * @return the client if found, a new client otherwise
504  */
505 static struct ClientList *
506 find_active_client (struct GNUNET_SERVER_Client *client)
507 {
508   struct ClientList *pos = client_list;
509   struct ClientList *ret;
510
511   while (pos != NULL)
512     {
513       if (pos->client_handle == client)
514         return pos;
515       pos = pos->next;
516     }
517
518   ret = GNUNET_malloc (sizeof (struct ClientList));
519   ret->client_handle = client;
520   ret->next = client_list;
521   client_list = ret;
522   return ret;
523 }
524
525 /**
526  * Handler for any generic DHT messages, calls the appropriate handler
527  * depending on message type, sends confirmation if responses aren't otherwise
528  * expected.
529  *
530  * @param cls closure for the service
531  * @param client the client we received this message from
532  * @param message the actual message received
533  */
534 static void
535 handle_dht_start_message (void *cls, struct GNUNET_SERVER_Client *client,
536                           const struct GNUNET_MessageHeader *message)
537 {
538   const struct GNUNET_DHT_RouteMessage *dht_msg = (const struct GNUNET_DHT_RouteMessage *) message;
539   const struct GNUNET_MessageHeader *enc_msg;
540   struct DHT_MessageContext *message_context;
541   int handle_locally;
542   size_t enc_type;
543
544   enc_msg = (const struct GNUNET_MessageHeader *) &dht_msg[1];
545   enc_type = ntohs (enc_msg->type);
546
547
548 #if DEBUG_DHT
549   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
550               "`%s': Received `%s' request from client, message type %d, key %s, uid %llu\n",
551               "DHT", "GENERIC", enc_type, GNUNET_h2s (&dht_msg->key),
552               GNUNET_ntohll (dht_msg->unique_id));
553 #endif
554
555   message_context = GNUNET_malloc (sizeof (struct DHT_MessageContext));
556   message_context->client = find_active_client (client);
557   message_context->key = &dht_msg->key;
558   message_context->unique_id = GNUNET_ntohll (dht_msg->unique_id);
559   message_context->replication = ntohl (dht_msg->desired_replication_level);
560   message_context->msg_options = ntohl (dht_msg->options);
561
562   /* TODO: Steps to be added by students */
563   /* FIXME: Implement *remote* DHT operations here (forward request) */
564   /* Implement generic route function and call here. */
565   /* FIXME: *IF* handling should be local, then do this: */
566   /* 1. find if this peer is closest based on whatever metric the DHT uses
567    * 2. if this peer is closest _OR_ the message options indicate it should
568    *    be processed everywhere _AND_ we want it processed everywhere, then
569    *    handle it locally.
570    */
571   handle_locally = GNUNET_YES;
572   if (handle_locally == GNUNET_YES)
573     {
574       switch (enc_type)
575         {
576         case GNUNET_MESSAGE_TYPE_DHT_GET:
577           handle_dht_get (cls, enc_msg,
578                           message_context);
579           break;
580         case GNUNET_MESSAGE_TYPE_DHT_PUT:
581           handle_dht_put (cls, enc_msg,
582                           message_context);
583           break;
584         case GNUNET_MESSAGE_TYPE_DHT_FIND_PEER:
585           handle_dht_find_peer (cls,
586                                 enc_msg,
587                                 message_context);
588           break;
589         default:
590           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
591                       "`%s': Message type (%d) not handled\n", "DHT", enc_type);
592         }
593     }
594   GNUNET_free (message_context);
595   GNUNET_SERVER_receive_done (client, GNUNET_OK);
596
597 }
598
599 /**
600  * Handler for any generic DHT stop messages, calls the appropriate handler
601  * depending on message type (if processed locally)
602  *
603  * @param cls closure for the service
604  * @param client the client we received this message from
605  * @param message the actual message received
606  *
607  * TODO: once message are remembered by unique id, add code to
608  *       forget them here
609  */
610 static void
611 handle_dht_stop_message (void *cls, struct GNUNET_SERVER_Client *client,
612                          const struct GNUNET_MessageHeader *message)
613 {
614   const struct GNUNET_DHT_StopMessage *dht_stop_msg =
615     (const struct GNUNET_DHT_StopMessage *) message;
616   uint64_t uid;
617 #if DEBUG_DHT
618   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
619               "`%s': Received `%s' request from client, uid %llu\n", "DHT",
620               "GENERIC STOP", GNUNET_ntohll (dht_stop_msg->unique_id));
621 #endif
622
623   uid = GNUNET_ntohll(dht_stop_msg->unique_id);
624   /* TODO: actually stop... free associated resources for the request
625    * lookup request by uid and remove state. */
626
627   GNUNET_SERVER_receive_done (client, GNUNET_OK);
628 }
629
630
631 /**
632  * Core handler for p2p route requests.
633  */
634 static int
635 handle_dht_p2p_route_request (void *cls,
636                               const struct GNUNET_PeerIdentity *peer,
637                               const struct GNUNET_MessageHeader *message,
638                               struct GNUNET_TIME_Relative latency, uint32_t distance)
639 {
640 #if DEBUG_DHT
641   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
642               "`%s': Received `%s' request from another peer\n", "DHT",
643               "GET");
644 #endif
645   // FIXME: setup tracking for sending replies to peer (with timeout)
646   // FIXME: call code from handle_dht_start_message (refactor...)
647   return GNUNET_YES;
648 }
649
650
651 /**
652  * Core handler for p2p route results.
653  */
654 static int
655 handle_dht_p2p_route_result (void *cls,
656                              const struct GNUNET_PeerIdentity *peer,
657                              const struct GNUNET_MessageHeader *message,
658                              struct GNUNET_TIME_Relative latency, uint32_t distance)
659 {
660 #if DEBUG_DHT
661   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
662               "`%s': Received `%s' request from another peer\n", "DHT",
663               "GET");
664 #endif
665   // FIXME: setup tracking for sending replies to peer
666   // FIXME: possibly call code from handle_dht_stop_message? (unique result?) (refactor...)
667   return GNUNET_YES;
668 }
669
670
671 /**
672  * Receive the HELLO from transport service,
673  * free current and replace if necessary.
674  *
675  * @param cls NULL
676  * @param message HELLO message of peer
677  */
678 static void
679 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
680 {
681 #if DEBUG_DHT
682   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
683               "Received our `%s' from transport service\n",
684               "HELLO");
685 #endif
686
687   GNUNET_assert (message != NULL);
688   GNUNET_free_non_null(my_hello);
689   my_hello = GNUNET_malloc(ntohs(message->size));
690   memcpy(my_hello, message, ntohs(message->size));
691 }
692
693 /**
694  * Task run during shutdown.
695  *
696  * @param cls unused
697  * @param tc unused
698  */
699 static void
700 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
701 {
702   if (transport_handle != NULL)
703   {
704     GNUNET_free_non_null(my_hello);
705     GNUNET_TRANSPORT_get_hello_cancel(transport_handle, &process_hello, NULL);
706     GNUNET_TRANSPORT_disconnect(transport_handle);
707   }
708   if (coreAPI != NULL)
709     GNUNET_CORE_disconnect (coreAPI);
710   if (datacache != NULL)
711     GNUNET_DATACACHE_destroy (datacache);
712   if (my_short_id != NULL)
713     GNUNET_free(my_short_id);
714 }
715
716
717 /**
718  * To be called on core init/fail.
719  *
720  * @param cls service closure
721  * @param server handle to the server for this service
722  * @param identity the public identity of this peer
723  * @param publicKey the public key of this peer
724  */
725 void
726 core_init (void *cls,
727            struct GNUNET_CORE_Handle *server,
728            const struct GNUNET_PeerIdentity *identity,
729            const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *publicKey)
730 {
731
732   if (server == NULL)
733     {
734 #if DEBUG_DHT
735   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
736               "%s: Connection to core FAILED!\n", "dht",
737               GNUNET_i2s (identity));
738 #endif
739       GNUNET_SCHEDULER_cancel (sched, cleanup_task);
740       GNUNET_SCHEDULER_add_now (sched, &shutdown_task, NULL);
741       return;
742     }
743 #if DEBUG_DHT
744   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
745               "%s: Core connection initialized, I am peer: %s\n", "dht",
746               GNUNET_i2s (identity));
747 #endif
748   /* Copy our identity so we can use it */
749   memcpy (&my_identity, identity, sizeof (struct GNUNET_PeerIdentity));
750   my_short_id = GNUNET_strdup(GNUNET_i2s(&my_identity));
751   /* Set the server to local variable */
752   coreAPI = server;
753 }
754
755
756 static struct GNUNET_SERVER_MessageHandler plugin_handlers[] = {
757   {&handle_dht_start_message, NULL, GNUNET_MESSAGE_TYPE_DHT_ROUTE, 0},
758   {&handle_dht_stop_message, NULL, GNUNET_MESSAGE_TYPE_DHT_STOP, 0},
759   {NULL, NULL, 0, 0}
760 };
761
762
763 static struct GNUNET_CORE_MessageHandler core_handlers[] = {
764   {&handle_dht_p2p_route_request, GNUNET_MESSAGE_TYPE_DHT_ROUTE, 0},
765   {&handle_dht_p2p_route_result, GNUNET_MESSAGE_TYPE_DHT_ROUTE_RESULT, 0},
766   {NULL, 0, 0}
767 };
768
769 /**
770  * Method called whenever a peer connects.
771  *
772  * @param cls closure
773  * @param peer peer identity this notification is about
774  * @param latency reported latency of the connection with peer
775  * @param distance reported distance (DV) to peer
776  */
777 void handle_core_connect (void *cls,
778                           const struct GNUNET_PeerIdentity * peer,
779                           struct GNUNET_TIME_Relative latency,
780                           uint32_t distance)
781 {
782   int ret;
783   char *data;
784   size_t data_size = 42;
785   data = GNUNET_malloc (data_size);
786   memset (data, 43, data_size);
787
788 #if DEBUG_DHT
789   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
790               "%s:%s Receives core connect message for peer %s distance %d!\n", my_short_id, "dht", GNUNET_i2s(peer), distance);
791 #endif
792   if (datacache != NULL)
793   {
794     ret = GNUNET_DATACACHE_put (datacache, &peer->hashPubKey, data_size,
795                                 data, 130,
796                                 GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(),
797                                                           GNUNET_TIME_UNIT_MINUTES));
798 #if DEBUG_DHT
799     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
800                 "%s Inserting data %s, type %d into datacache, return value was %d\n", my_short_id, GNUNET_h2s(&peer->hashPubKey), 130, ret);
801 #endif
802   }
803 }
804
805 /**
806  * Process dht requests.
807  *
808  * @param cls closure
809  * @param scheduler scheduler to use
810  * @param server the initialized server
811  * @param c configuration to use
812  */
813 static void
814 run (void *cls,
815      struct GNUNET_SCHEDULER_Handle *scheduler,
816      struct GNUNET_SERVER_Handle *server,
817      const struct GNUNET_CONFIGURATION_Handle *c)
818 {
819   sched = scheduler;
820   cfg = c;
821   datacache = GNUNET_DATACACHE_create (sched, cfg, "dhtcache");
822   GNUNET_SERVER_add_handlers (server, plugin_handlers);
823   coreAPI = GNUNET_CORE_connect (sched, /* Main scheduler */
824                                  cfg,   /* Main configuration */
825                                  GNUNET_TIME_UNIT_FOREVER_REL,
826                                  NULL,  /* FIXME: anything we want to pass around? */
827                                  &core_init,    /* Call core_init once connected */
828                                  &handle_core_connect,  /* Don't care about connects */
829                                  NULL,  /* Don't care about disconnects */
830                                  NULL,  /* Don't want notified about all incoming messages */
831                                  GNUNET_NO,     /* For header only inbound notification */
832                                  NULL,  /* Don't want notified about all outbound messages */
833                                  GNUNET_NO,     /* For header only outbound notification */
834                                  core_handlers);        /* Register these handlers */
835   if (coreAPI == NULL)
836     return;
837   transport_handle = GNUNET_TRANSPORT_connect(sched, cfg, NULL, NULL, NULL, NULL);
838   if (transport_handle != NULL)
839     GNUNET_TRANSPORT_get_hello (transport_handle, &process_hello, NULL);
840   else
841     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to connect to transport service!\n");
842   /* Scheduled the task to clean up when shutdown is called */
843   cleanup_task = GNUNET_SCHEDULER_add_delayed (sched,
844                                                GNUNET_TIME_UNIT_FOREVER_REL,
845                                                &shutdown_task, NULL);
846 }
847
848 /**
849  * The main function for the dht service.
850  *
851  * @param argc number of arguments from the command line
852  * @param argv command line arguments
853  * @return 0 ok, 1 on error
854  */
855 int
856 main (int argc, char *const *argv)
857 {
858   return (GNUNET_OK ==
859           GNUNET_SERVICE_run (argc,
860                               argv,
861                               "dht",
862                               GNUNET_SERVICE_OPTION_NONE,
863                               &run, NULL)) ? 0 : 1;
864 }