eliminating dead HELLO logic, not needed for x-vine/whanau
[oweals/gnunet.git] / src / dht / gnunet-service-xdht.c
1 /*
2      This file is part of GNUnet.
3      Copyright (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  * Should we store our topology predecessor and successor IDs into statistics?
62  */
63 extern unsigned int track_topology;
64
65 #if ENABLE_MALICIOUS
66 /**
67  * Should this peer act malicious?
68  */
69 unsigned int malicious;
70 #endif
71
72
73 /**
74  * Task run during shutdown.
75  *
76  * @param cls unused
77  * @param tc unused
78  */
79 static void
80 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
81 {
82   GDS_NEIGHBOURS_done ();
83   GDS_DATACACHE_done ();
84   GDS_ROUTING_done ();
85   GDS_NSE_done ();
86   if (GDS_block_context != NULL)
87   {
88     GNUNET_BLOCK_context_destroy (GDS_block_context);
89     GDS_block_context = NULL;
90   }
91   if (GDS_stats != NULL)
92   {
93     GNUNET_STATISTICS_destroy (GDS_stats, GNUNET_YES);
94     GDS_stats = NULL;
95   }
96 }
97
98
99 /**
100  * Process dht requests.
101  *
102  * @param cls closure
103  * @param server the initialized server
104  * @param c configuration to use
105  */
106 static void
107 run (void *cls, struct GNUNET_SERVER_Handle *server,
108      const struct GNUNET_CONFIGURATION_Handle *c)
109 {
110   unsigned long long _track_topology;
111
112   GDS_cfg = c;
113   GDS_block_context = GNUNET_BLOCK_context_create (GDS_cfg);
114   GDS_stats = GNUNET_STATISTICS_create ("dht", GDS_cfg);
115   GDS_ROUTING_init ();
116   GDS_NSE_init ();
117   GDS_DATACACHE_init ();
118   GDS_CLIENTS_init (server);
119   if (GNUNET_OK ==
120       GNUNET_CONFIGURATION_get_value_number (c, "xdht", "track_toplogy",
121                                              &_track_topology))
122   {
123     track_topology = (unsigned int) _track_topology;
124   }
125   if (GNUNET_OK != GDS_NEIGHBOURS_init ())
126   {
127     shutdown_task (NULL, NULL);
128     return;
129   }
130   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
131                                 &shutdown_task,
132                                 NULL);
133 }
134
135
136 /**
137  * The main function for the dht service.
138  *
139  * @param argc number of arguments from the command line
140  * @param argv command line arguments
141  * @return 0 ok, 1 on error
142  */
143 int
144 main (int argc, char *const *argv)
145 {
146   int ret;
147
148   ret =
149       (GNUNET_OK ==
150        GNUNET_SERVICE_run (argc, argv,
151                            "xdht",
152                            GNUNET_SERVICE_OPTION_NONE, &run,
153                            NULL)) ? 0 : 1;
154   GDS_CLIENTS_done ();
155   return ret;
156 }
157
158 /* end of gnunet-service-xdht.c */