-only trigger check config if we actually need it
[oweals/gnunet.git] / src / dht / gnunet-service-dht.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010, 2011 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file dht/gnunet-service-dht.c
23  * @brief GNUnet DHT service
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27 #include "platform.h"
28 #include "gnunet_block_lib.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_transport_service.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_dht_service.h"
33 #include "gnunet_statistics_service.h"
34 #include "gnunet-service-dht.h"
35 #include "gnunet-service-dht_clients.h"
36 #include "gnunet-service-dht_datacache.h"
37 #include "gnunet-service-dht_hello.h"
38 #include "gnunet-service-dht_neighbours.h"
39 #include "gnunet-service-dht_nse.h"
40 #include "gnunet-service-dht_routing.h"
41
42
43
44 /**
45  * Handle for the statistics service.
46  */
47 struct GNUNET_STATISTICS_Handle *GDS_stats;
48
49 /**
50  * Our handle to the BLOCK library.
51  */
52 struct GNUNET_BLOCK_Context *GDS_block_context;
53
54 /**
55  * The configuration the DHT service is running with
56  */
57 const struct GNUNET_CONFIGURATION_Handle *GDS_cfg;
58
59 /**
60  * Handle to our server.
61  */
62 struct GNUNET_SERVER_Handle *GDS_server;
63
64 /**
65  * Our HELLO
66  */
67 struct GNUNET_MessageHeader *GDS_my_hello;
68
69 /**
70  * Handle to the transport service, for getting our hello
71  */
72 struct GNUNET_TRANSPORT_Handle *GDS_transport_handle;
73
74 /**
75  * Handle to get our current HELLO.
76  */
77 static struct GNUNET_TRANSPORT_GetHelloHandle *ghh;
78
79 /**
80  * Hello address expiration
81  */
82 struct GNUNET_TIME_Relative hello_expiration;
83
84
85 /**
86  * Receive the HELLO from transport service, free current and replace
87  * if necessary.
88  *
89  * @param cls NULL
90  * @param message HELLO message of peer
91  */
92 static void
93 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
94 {
95   GNUNET_assert (message != NULL);
96   GNUNET_free_non_null (GDS_my_hello);
97   GDS_my_hello = GNUNET_malloc (ntohs (message->size));
98   memcpy (GDS_my_hello, message, ntohs (message->size));
99 }
100
101
102 /**
103  * Task run during shutdown.
104  *
105  * @param cls unused
106  */
107 static void
108 shutdown_task (void *cls)
109 {
110   if (NULL != ghh)
111   {
112     GNUNET_TRANSPORT_get_hello_cancel (ghh);
113     ghh = NULL;
114   }
115   if (GDS_transport_handle != NULL)
116   {
117     GNUNET_TRANSPORT_disconnect (GDS_transport_handle);
118     GDS_transport_handle = NULL;
119   }
120   GDS_NEIGHBOURS_done ();
121   GDS_DATACACHE_done ();
122   GDS_ROUTING_done ();
123   GDS_HELLO_done ();
124   GDS_NSE_done ();
125   if (GDS_block_context != NULL)
126   {
127     GNUNET_BLOCK_context_destroy (GDS_block_context);
128     GDS_block_context = NULL;
129   }
130   if (GDS_stats != NULL)
131   {
132     GNUNET_STATISTICS_destroy (GDS_stats, GNUNET_YES);
133     GDS_stats = NULL;
134   }
135   GNUNET_free_non_null (GDS_my_hello);
136   GDS_my_hello = NULL;
137 }
138
139
140 /**
141  * Process dht requests.
142  *
143  * @param cls closure
144  * @param server the initialized server
145  * @param c configuration to use
146  */
147 static void
148 run (void *cls,
149      struct GNUNET_SERVER_Handle *server,
150      const struct GNUNET_CONFIGURATION_Handle *c)
151 {
152   GDS_cfg = c;
153   GDS_server = server;
154   GNUNET_SERVER_suspend (server);
155   if (GNUNET_OK !=
156       GNUNET_CONFIGURATION_get_value_time (c, "transport", "HELLO_EXPIRATION", &hello_expiration))
157   {
158     hello_expiration = GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION;
159   }
160   GDS_block_context = GNUNET_BLOCK_context_create (GDS_cfg);
161   GDS_stats = GNUNET_STATISTICS_create ("dht", GDS_cfg);
162   GDS_ROUTING_init ();
163   GDS_NSE_init ();
164   GDS_DATACACHE_init ();
165   GDS_HELLO_init ();
166   if (GNUNET_OK != GDS_NEIGHBOURS_init ())
167   {
168     shutdown_task (NULL);
169     return;
170   }
171   GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
172                                  NULL);
173   GDS_transport_handle =
174       GNUNET_TRANSPORT_connect (GDS_cfg, NULL, NULL, NULL, NULL, NULL);
175   if (GDS_transport_handle == NULL)
176   {
177     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
178                 _("Failed to connect to transport service!\n"));
179     return;
180   }
181   ghh = GNUNET_TRANSPORT_get_hello (GDS_transport_handle, &process_hello, NULL);
182 }
183
184
185 /**
186  * The main function for the dht service.
187  *
188  * @param argc number of arguments from the command line
189  * @param argv command line arguments
190  * @return 0 ok, 1 on error
191  */
192 int
193 main (int argc, char *const *argv)
194 {
195   int ret;
196
197   ret =
198       (GNUNET_OK ==
199        GNUNET_SERVICE_run (argc, argv, "dht", GNUNET_SERVICE_OPTION_NONE, &run,
200                            NULL)) ? 0 : 1;
201   GDS_CLIENTS_done ();
202   return ret;
203 }
204
205 /* end of gnunet-service-dht.c */