-ftbfs
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh-enc.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001-2013 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 mesh/gnunet-service-mesh-enc.c
23  * @brief GNUnet MESH service with encryption
24  * @author Bartlomiej Polot
25  *
26  *  FIXME in progress:
27  * - when sending in-order buffered data, wait for client ACKs
28  * - add signatures
29  * - add encryption
30  * - set connection IDs independently from tunnel, tunnel has no ID
31  *
32  * TODO:
33  * - relay corking down to core
34  * - set ttl relative to path length
35  * TODO END
36  *
37  * Dictionary:
38  * - peer: other mesh instance. If there is direct connection it's a neighbor.
39  * - tunnel: encrypted connection to a peer, neighbor or not.
40  * - channel: connection between two clients, on the same or different peers.
41  *            have properties like reliability.
42  * - path: series of directly connected peer from one peer to another.
43  * - connection: path which is being used in a tunnel.
44  */
45
46 #include "platform.h"
47 #include "gnunet_util_lib.h"
48 #include "mesh_enc.h"
49 #include "block_mesh.h"
50 #include "gnunet_statistics_service.h"
51
52 #include "gnunet-service-mesh_local.h"
53 #include "gnunet-service-mesh_channel.h"
54 #include "gnunet-service-mesh_connection.h"
55 #include "gnunet-service-mesh_tunnel.h"
56 #include "gnunet-service-mesh_dht.h"
57 #include "gnunet-service-mesh_peer.h"
58
59
60 /******************************************************************************/
61 /************************      DATA STRUCTURES     ****************************/
62 /******************************************************************************/
63
64
65
66 /******************************************************************************/
67 /************************      DEBUG FUNCTIONS     ****************************/
68 /******************************************************************************/
69
70
71 /******************************************************************************/
72 /***********************      GLOBAL VARIABLES     ****************************/
73 /******************************************************************************/
74
75 /************************** Configuration parameters **************************/
76
77
78
79 /*************************** Static global variables **************************/
80
81 /**
82  * Handle to the statistics service.
83  */
84 static struct GNUNET_STATISTICS_Handle *stats;
85
86 /**
87  * Local peer own ID (memory efficient handle).
88  */
89 static GNUNET_PEER_Id myid;
90
91 /**
92  * Local peer own ID (full value).
93  */
94 static struct GNUNET_PeerIdentity my_full_id;
95
96 /**
97  * Own private key.
98  */
99 static struct GNUNET_CRYPTO_EccPrivateKey *my_private_key;
100
101
102 /******************************************************************************/
103 /***********************         DECLARATIONS        **************************/
104 /******************************************************************************/
105
106
107 /******************************************************************************/
108 /******************      GENERAL HELPER FUNCTIONS      ************************/
109 /******************************************************************************/
110
111
112
113 /******************************************************************************/
114 /****************      MESH NETWORK HANDLER HELPERS     ***********************/
115 /******************************************************************************/
116
117
118
119 /******************************************************************************/
120 /********************      MESH NETWORK HANDLERS     **************************/
121 /******************************************************************************/
122
123
124 /******************************************************************************/
125 /************************      MAIN FUNCTIONS      ****************************/
126 /******************************************************************************/
127
128
129 /**
130  * Task run during shutdown.
131  *
132  * @param cls unused
133  * @param tc unused
134  */
135 static void
136 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
137 {
138   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shutting down\n");
139
140   GML_shutdown ();
141   GMD_shutdown ();
142   GMP_shutdown ();
143   GMC_shutdown ();
144   GMT_shutdown ();
145
146   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shut down\n");
147 }
148
149
150 /**
151  * Process mesh requests.
152  *
153  * @param cls closure
154  * @param server the initialized server
155  * @param c configuration to use
156  */
157 static void
158 run (void *cls, struct GNUNET_SERVER_Handle *server,
159      const struct GNUNET_CONFIGURATION_Handle *c)
160 {
161   struct GNUNET_CRYPTO_EccPrivateKey *pk;
162
163   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting to run\n");
164
165   stats = GNUNET_STATISTICS_create ("mesh", c);
166
167   /* Scheduled the task to clean up when shutdown is called */
168   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
169                                 NULL);
170   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "reading key\n");
171   pk = GNUNET_CRYPTO_ecc_key_create_from_configuration (c);
172   GNUNET_assert (NULL != pk);
173   my_private_key = pk;
174   GNUNET_CRYPTO_ecc_key_get_public_for_signature (my_private_key,
175                                                   &my_full_id.public_key);
176   myid = GNUNET_PEER_intern (&my_full_id);
177   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
178               "Mesh for peer [%s] starting\n",
179               GNUNET_i2s (&my_full_id));
180
181   GML_init (server);    /* Local clients */
182   GMC_init (c);         /* Connections */
183   GMP_init (c);         /* Peers */
184   GMD_init (c, &my_full_id);         /* DHT */
185   GMT_init (c, &my_full_id, my_private_key);
186
187   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Mesh service running\n");
188 }
189
190
191 /**
192  * The main function for the mesh service.
193  *
194  * @param argc number of arguments from the command line
195  * @param argv command line arguments
196  * @return 0 ok, 1 on error
197  */
198 int
199 main (int argc, char *const *argv)
200 {
201   int ret;
202   int r;
203
204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main()\n");
205   r = GNUNET_SERVICE_run (argc, argv, "mesh", GNUNET_SERVICE_OPTION_NONE, &run,
206                           NULL);
207   ret = (GNUNET_OK == r) ? 0 : 1;
208   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "main() END\n");
209
210   return ret;
211 }