- debug
[oweals/gnunet.git] / src / mesh / test_mesh2_local.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 mesh/test_mesh_local_1.c
23  * @brief test mesh local: test of tunnels with just one peer
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_dht_service.h"
30 #include "gnunet_testing_lib.h"
31 #include "gnunet_mesh2_service.h"
32
33 struct GNUNET_TESTING_Peer *me;
34
35 static struct GNUNET_MESH_Handle *mesh_peer_1;
36
37 static struct GNUNET_MESH_Handle *mesh_peer_2;
38
39 static struct GNUNET_MESH_Tunnel *t;
40
41 static int result = GNUNET_OK;
42
43 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
44
45 static GNUNET_SCHEDULER_TaskIdentifier shutdown_task;
46
47
48 /**
49  * Shutdown nicely
50  */
51 static void
52 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
53 {
54   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: shutdown\n");
55   if (0 != abort_task)
56   {
57     GNUNET_SCHEDULER_cancel (abort_task);
58   }
59   if (NULL != t)
60   {
61     GNUNET_MESH_tunnel_destroy(t);
62   }
63   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: D1\n");
64   if (NULL != mesh_peer_1)
65   {
66     GNUNET_MESH_disconnect (mesh_peer_1);
67   }
68   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: D2\n");
69   if (NULL != mesh_peer_2)
70   {
71     GNUNET_MESH_disconnect (mesh_peer_2);
72   }
73 }
74
75
76 /**
77  * Something went wrong and timed out. Kill everything and set error flag
78  */
79 static void
80 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
81 {
82   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: ABORT\n");
83   result = GNUNET_SYSERR;
84   abort_task = 0;
85   if (GNUNET_SCHEDULER_NO_TASK != shutdown_task)
86   {
87     GNUNET_SCHEDULER_cancel (shutdown_task);
88     shutdown_task = GNUNET_SCHEDULER_NO_TASK;
89   }
90   do_shutdown (cls, tc);
91 }
92
93
94 /**
95  * Function is called whenever a message is received.
96  *
97  * @param cls closure (set from GNUNET_MESH_connect)
98  * @param tunnel connection to the other end
99  * @param tunnel_ctx place to store local state associated with the tunnel
100  * @param sender who sent the message
101  * @param message the actual message
102  * 
103  * @return GNUNET_OK to keep the connection open,
104  *         GNUNET_SYSERR to close it (signal serious error)
105  */
106 static int
107 data_callback (void *cls, struct GNUNET_MESH_Tunnel *tunnel, void **tunnel_ctx,
108                const struct GNUNET_PeerIdentity *sender,
109                const struct GNUNET_MessageHeader *message)
110 {
111   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: Data callback\n");
112   if (GNUNET_SCHEDULER_NO_TASK != shutdown_task)
113     GNUNET_SCHEDULER_cancel (shutdown_task);
114   shutdown_task =
115     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &do_shutdown,
116                                   NULL);
117   return GNUNET_OK;
118 }
119
120
121 /**
122  * Method called whenever another peer has added us to a tunnel
123  * the other peer initiated.
124  *
125  * @param cls closure
126  * @param tunnel new handle to the tunnel
127  * @param initiator peer that started the tunnel
128  * @param port port number
129  * @return initial tunnel context for the tunnel (can be NULL -- that's not an error)
130  */
131 static void *
132 inbound_tunnel (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
133                 const struct GNUNET_PeerIdentity *initiator,
134                 uint32_t port)
135 {
136   long id = (long) cls;
137
138   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
139               "test: received incoming tunnel on peer %d, port %u\n",
140               id, port);
141   if (id != 1L)
142   {
143     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
144                 "test: wrong peer\n");
145     result = GNUNET_SYSERR;
146   }
147   return NULL;
148 }
149
150
151 /**
152  * Function called whenever an inbound tunnel is destroyed.  Should clean up
153  * any associated state.
154  *
155  * @param cls closure (set from GNUNET_MESH_connect)
156  * @param tunnel connection to the other end (henceforth invalid)
157  * @param tunnel_ctx place where local state associated
158  *                   with the tunnel is stored
159  */
160 static void
161 inbound_end (void *cls, const struct GNUNET_MESH_Tunnel *tunnel,
162              void *tunnel_ctx)
163 {
164   unsigned int id = *(unsigned int *) cls;
165
166   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: incoming tunnel closed\n");
167   if (id != 1)
168   {
169     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
170                 "test: received closing tunnel on peer 2\n");
171     result = GNUNET_SYSERR;
172   }
173 }
174
175
176 /**
177  * Handler array for traffic received on peer1
178  */
179 static struct GNUNET_MESH_MessageHandler handlers1[] = {
180   {&data_callback, 1, 0},
181   {NULL, 0, 0}
182 };
183
184
185 /**
186  * Handler array for traffic received on peer2 (none expected)
187  */
188 static struct GNUNET_MESH_MessageHandler handlers2[] = { {NULL, 0, 0} };
189
190
191 /**
192  * Start looking for a peer by type
193  */
194 static void
195 do_find (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
196 {
197   struct GNUNET_PeerIdentity id;
198
199   GNUNET_TESTING_peer_get_identity (me, &id);
200   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: CONNECT BY PORT\n");
201   t = GNUNET_MESH_tunnel_create (mesh_peer_1, NULL, &id, 1);
202 }
203
204
205 /**
206  * Initialize framework and start test
207  */
208 static void
209 run (void *cls, 
210      const struct GNUNET_CONFIGURATION_Handle *cfg,
211      struct GNUNET_TESTING_Peer *peer)
212 {
213   static uint32_t ports[] = {1, 0};
214
215   me = peer;
216   abort_task =
217       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
218                                     (GNUNET_TIME_UNIT_SECONDS, 120), &do_abort,
219                                     NULL);
220   mesh_peer_1 = GNUNET_MESH_connect (cfg,       /* configuration */
221                                      (void *) 1L,     /* cls */
222                                      &inbound_tunnel,   /* inbound new hndlr */
223                                      &inbound_end,      /* inbound end hndlr */
224                                      handlers1, /* traffic handlers */
225                                      NULL);     /* ports offered */
226
227   mesh_peer_2 = GNUNET_MESH_connect (cfg,       /* configuration */
228                                      (void *) 2L,     /* cls */
229                                      &inbound_tunnel,   /* inbound new hndlr */
230                                      &inbound_end,      /* inbound end hndlr */
231                                      handlers2, /* traffic handlers */
232                                      ports);     /* ports offered */
233   if (NULL == mesh_peer_1 || NULL == mesh_peer_2)
234   {
235     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "test: Couldn't connect to mesh :(\n");
236     result = GNUNET_SYSERR;
237     return;
238   }
239   else
240   {
241     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: YAY! CONNECTED TO MESH :D\n");
242   }
243   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &do_find, NULL);
244 }
245
246
247 /**
248  * Main
249  */
250 int
251 main (int argc, char *argv[])
252 {
253   if (0 != GNUNET_TESTING_peer_run ("test-mesh-local-1",
254                                     "test_mesh2.conf",
255                                 &run, NULL))
256     return 1;
257   return (result == GNUNET_OK) ? 0 : 1;
258 }
259
260 /* end of test_mesh_local_1.c */