continue to fix extract result
[oweals/gnunet.git] / src / dht / gnunet-service-xdht.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  * @file dht/gnunet-service-xdht.c
22  * @brief GNUnet DHT service
23  * @author Christian Grothoff
24  * @author Nathan Evans
25  */
26 #include "platform.h"
27 #include "gnunet_block_lib.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_transport_service.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_dht_service.h"
32 #include "gnunet_statistics_service.h"
33 #include "gnunet-service-xdht.h"
34 #include "gnunet-service-xdht_clients.h"
35 #include "gnunet-service-xdht_datacache.h"
36 #include "gnunet-service-xdht_neighbours.h"
37 #include "gnunet-service-xdht_nse.h"
38 #include "gnunet-service-xdht_routing.h"
39
40
41
42 /**
43  * Handle for the statistics service.
44  */
45 struct GNUNET_STATISTICS_Handle *GDS_stats;
46
47 /**
48  * Our handle to the BLOCK library.
49  */
50 struct GNUNET_BLOCK_Context *GDS_block_context;
51
52 /**
53  * The configuration the DHT service is running with
54  */
55 const struct GNUNET_CONFIGURATION_Handle *GDS_cfg;
56
57 /**
58  * Should we store our topology predecessor and successor IDs into statistics?
59  */
60 extern unsigned int track_topology;
61
62 #if ENABLE_MALICIOUS
63 /**
64  * Should this peer act malicious?
65  */
66 unsigned int malicious;
67 #endif
68
69
70 /**
71  * Task run during shutdown.
72  *
73  * @param cls unused
74  */
75 static void
76 shutdown_task (void *cls)
77 {
78   GDS_NEIGHBOURS_done ();
79   GDS_DATACACHE_done ();
80   GDS_ROUTING_done ();
81   GDS_NSE_done ();
82   if (GDS_block_context != NULL)
83   {
84     GNUNET_BLOCK_context_destroy (GDS_block_context);
85     GDS_block_context = NULL;
86   }
87   if (GDS_stats != NULL)
88   {
89     GNUNET_STATISTICS_destroy (GDS_stats, GNUNET_YES);
90     GDS_stats = NULL;
91   }
92 }
93
94
95 /**
96  * Process dht requests.
97  *
98  * @param cls closure
99  * @param server the initialized server
100  * @param c configuration to use
101  */
102 static void
103 run (void *cls, struct GNUNET_SERVER_Handle *server,
104      const struct GNUNET_CONFIGURATION_Handle *c)
105 {
106   unsigned long long _track_topology;
107
108   GDS_cfg = c;
109   GDS_block_context = GNUNET_BLOCK_context_create (GDS_cfg);
110   GDS_stats = GNUNET_STATISTICS_create ("dht", GDS_cfg);
111   GDS_ROUTING_init ();
112   GDS_NSE_init ();
113   GDS_DATACACHE_init ();
114   GDS_CLIENTS_init (server);
115   if (GNUNET_OK ==
116       GNUNET_CONFIGURATION_get_value_number (c, "xdht", "track_toplogy",
117                                              &_track_topology))
118   {
119     track_topology = (unsigned int) _track_topology;
120   }
121   if (GNUNET_OK != GDS_NEIGHBOURS_init ())
122   {
123     shutdown_task (NULL);
124     return;
125   }
126   GNUNET_SCHEDULER_add_shutdown (&shutdown_task,
127                                  NULL);
128 }
129
130
131 /**
132  * The main function for the dht service.
133  *
134  * @param argc number of arguments from the command line
135  * @param argv command line arguments
136  * @return 0 ok, 1 on error
137  */
138 int
139 main (int argc, char *const *argv)
140 {
141   int ret;
142
143   ret =
144       (GNUNET_OK ==
145        GNUNET_SERVICE_run (argc, argv,
146                            "xdht",
147                            GNUNET_SERVICE_OPTION_NONE, &run,
148                            NULL)) ? 0 : 1;
149   GDS_CLIENTS_done ();
150   return ret;
151 }
152
153 /* end of gnunet-service-xdht.c */