remove protocol violation
[oweals/gnunet.git] / src / dht / gnunet-service-xdht.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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-xdht.c
23  * @brief GNUnet DHT service
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_block_lib.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_transport_service.h"
32 #include "gnunet_hello_lib.h"
33 #include "gnunet_dht_service.h"
34 #include "gnunet_statistics_service.h"
35 #include "gnunet-service-xdht.h"
36 #include "gnunet-service-xdht_clients.h"
37 #include "gnunet-service-xdht_datacache.h"
38 #include "gnunet-service-xdht_hello.h"
39 #include "gnunet-service-xdht_neighbours.h"
40 #include "gnunet-service-xdht_nse.h"
41 #include "gnunet-service-xdht_routing.h"
42
43
44
45 /**
46  * Handle for the statistics service.
47  */
48 struct GNUNET_STATISTICS_Handle *GDS_stats;
49
50 /**
51  * Our handle to the BLOCK library.
52  */
53 struct GNUNET_BLOCK_Context *GDS_block_context;
54
55 /**
56  * The configuration the DHT service is running with
57  */
58 const struct GNUNET_CONFIGURATION_Handle *GDS_cfg;
59
60 /**
61  * Our HELLO
62  */
63 struct GNUNET_MessageHeader *GDS_my_hello;
64
65 /**
66  * Handle to the transport service, for getting our hello
67  */
68 struct GNUNET_TRANSPORT_Handle *GDS_transport_handle;
69
70 /**
71  * Handle to get our current HELLO.
72  */
73 static struct GNUNET_TRANSPORT_GetHelloHandle *ghh;
74
75 /**
76  * Hello address expiration
77  */
78 struct GNUNET_TIME_Relative hello_expiration;
79
80
81 /**
82  * Receive the HELLO from transport service, free current and replace
83  * if necessary.
84  *
85  * @param cls NULL
86  * @param message HELLO message of peer
87  */
88 static void
89 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
90 {
91   GNUNET_assert (message != NULL);
92   GNUNET_free_non_null (GDS_my_hello);
93   GDS_my_hello = GNUNET_malloc (ntohs (message->size));
94   memcpy (GDS_my_hello, message, ntohs (message->size));
95 }
96
97
98 /**
99  * Task run during shutdown.
100  *
101  * @param cls unused
102  * @param tc unused
103  */
104 static void
105 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   if (NULL != ghh)
108   {
109     GNUNET_TRANSPORT_get_hello_cancel (ghh);
110     ghh = NULL;
111   }
112   if (GDS_transport_handle != NULL)
113   {
114     GNUNET_TRANSPORT_disconnect (GDS_transport_handle);
115     GDS_transport_handle = NULL;
116   }
117
118   GDS_NEIGHBOURS_done ();
119   GDS_DATACACHE_done ();
120   GDS_ROUTING_done ();
121   GDS_HELLO_done ();
122   GDS_NSE_done ();
123   if (GDS_block_context != NULL)
124   {
125     GNUNET_BLOCK_context_destroy (GDS_block_context);
126     GDS_block_context = NULL;
127   }
128   if (GDS_stats != NULL)
129   {
130     GNUNET_STATISTICS_destroy (GDS_stats, GNUNET_YES);
131     GDS_stats = NULL;
132   }
133   GNUNET_free_non_null (GDS_my_hello);
134   GDS_my_hello = NULL;
135 }
136
137
138 /**
139  * Process dht requests.
140  *
141  * @param cls closure
142  * @param server the initialized server
143  * @param c configuration to use
144  */
145 static void
146 run (void *cls, struct GNUNET_SERVER_Handle *server,
147      const struct GNUNET_CONFIGURATION_Handle *c)
148 {
149   GDS_cfg = c;
150   if (GNUNET_OK !=
151       GNUNET_CONFIGURATION_get_value_time (c, "transport", "HELLO_EXPIRATION", &hello_expiration))
152   {
153     hello_expiration = GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION;
154   }
155   GDS_block_context = GNUNET_BLOCK_context_create (GDS_cfg);
156   GDS_stats = GNUNET_STATISTICS_create ("dht", GDS_cfg);
157
158   GDS_ROUTING_init ();
159   GDS_NSE_init ();
160   GDS_DATACACHE_init ();
161   GDS_HELLO_init ();
162   GDS_CLIENTS_init (server);
163
164   if (GNUNET_OK != GDS_NEIGHBOURS_init ())
165   {
166     shutdown_task (NULL, NULL);
167     return;
168   }
169   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
170                                 NULL);
171   GDS_transport_handle =
172       GNUNET_TRANSPORT_connect (GDS_cfg, NULL, NULL, NULL, NULL, NULL);
173   if (GDS_transport_handle == NULL)
174   {
175     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
176                 _("Failed to connect to transport service!\n"));
177     return;
178   }
179   ghh = GNUNET_TRANSPORT_get_hello (GDS_transport_handle, &process_hello, NULL);
180 }
181
182
183 /**
184  * The main function for the dht service.
185  *
186  * @param argc number of arguments from the command line
187  * @param argv command line arguments
188  * @return 0 ok, 1 on error
189  */
190 int
191 main (int argc, char *const *argv)
192 {
193   int ret;
194
195   ret =
196       (GNUNET_OK ==
197        GNUNET_SERVICE_run (argc, argv, "dht", GNUNET_SERVICE_OPTION_NONE, &run,
198                            NULL)) ? 0 : 1;
199   GDS_CLIENTS_done ();
200   return ret;
201 }
202
203 /* end of gnunet-service-dht.c */