- distribute peers equally among island nodes on SuperMUC
[oweals/gnunet.git] / src / transport / test_transport_api_bidirectional_connect.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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  * @file transport/test_transport_api_bidirectional_connect.c
22  * @brief base test case for transport implementations
23  *
24  * Perform a 3-way handshake connection set up in both directions at
25  * (almost) the same time
26  */
27 #include "platform.h"
28 #include "gnunet_transport_service.h"
29 #include "transport-testing.h"
30
31
32 /**
33  * How long until we give up on transmitting the message?
34  */
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
36
37 /**
38  * How long until we give up on transmitting the message?
39  */
40 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
41
42 #define MTYPE 12345
43
44 static char *test_source;
45
46 static char *test_plugin;
47
48 static char *test_name;
49
50 static int ok;
51
52 static GNUNET_SCHEDULER_TaskIdentifier die_task;
53
54 static GNUNET_SCHEDULER_TaskIdentifier send_task;
55
56 static struct PeerContext *p1;
57
58 static struct PeerContext *p2;
59
60 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc1;
61 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc2;
62
63 static struct GNUNET_TRANSPORT_TransmitHandle *th;
64
65 static struct GNUNET_TRANSPORT_TESTING_handle *tth;
66
67 static char *cfg_file_p1;
68
69 static char *cfg_file_p2;
70
71
72 static void
73 end ()
74 {
75   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
76
77   if (send_task != GNUNET_SCHEDULER_NO_TASK)
78     GNUNET_SCHEDULER_cancel (send_task);
79
80   if (die_task != GNUNET_SCHEDULER_NO_TASK)
81     GNUNET_SCHEDULER_cancel (die_task);
82
83   if (NULL != th)
84   {
85     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
86     th = NULL;
87   }
88
89   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
90   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
91 }
92
93 static void
94 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   die_task = GNUNET_SCHEDULER_NO_TASK;
97   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
98   if (send_task != GNUNET_SCHEDULER_NO_TASK)
99     GNUNET_SCHEDULER_cancel (send_task);
100
101   if (NULL != cc2)
102   {
103     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
104     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc2);
105     cc2 = NULL;
106   }
107   if (NULL != cc1)
108   {
109     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
110     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc1);
111     cc1 = NULL;
112   }
113   if (NULL != th)
114   {
115     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
116     th = NULL;
117   }
118   if (p1 != NULL)
119     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
120   if (p2 != NULL)
121     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
122
123   ok = GNUNET_SYSERR;
124 }
125
126
127 static void
128 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
129                 const struct GNUNET_MessageHeader *message)
130 {
131   struct PeerContext *p = cls;
132   struct PeerContext *t = NULL;
133
134   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
135     t = p1;
136   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
137     t = p2;
138   GNUNET_assert (t != NULL);
139
140   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
141
142   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
143               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
144               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
145               GNUNET_i2s (&t->id));
146
147   if ((MTYPE == ntohs (message->type)) &&
148       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
149   {
150     ok = 0;
151     end ();
152   }
153   else
154   {
155     GNUNET_break (0);
156     ok = 1;
157     end ();
158   }
159 }
160
161
162 static size_t
163 notify_ready (void *cls, size_t size, void *buf)
164 {
165   struct PeerContext *p = cls;
166   struct GNUNET_MessageHeader *hdr;
167
168   th = NULL;
169
170   if (buf == NULL)
171   {
172     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
173                 "Timeout occurred while waiting for transmit_ready\n");
174     if (GNUNET_SCHEDULER_NO_TASK != die_task)
175       GNUNET_SCHEDULER_cancel (die_task);
176     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
177     ok = 42;
178     return 0;
179   }
180
181   GNUNET_assert (size >= 256);
182
183   if (buf != NULL)
184   {
185     hdr = buf;
186     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
187     hdr->type = htons (MTYPE);
188   }
189   char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
190
191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
192               "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
193               p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
194               GNUNET_i2s (&p->id));
195   GNUNET_free (ps);
196   return sizeof (struct GNUNET_MessageHeader);
197 }
198
199
200 static void
201 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
202 {
203   send_task = GNUNET_SCHEDULER_NO_TASK;
204
205   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
206     return;
207   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
208
209   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
210               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
211               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
212   GNUNET_free (receiver_s);
213
214   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, 256, 0,
215                                                TIMEOUT_TRANSMIT, &notify_ready,
216                                                p1);
217 }
218
219
220 static void
221 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
222 {
223   static int c;
224
225   c++;
226   struct PeerContext *p = cls;
227   struct PeerContext *t = NULL;
228
229   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
230     t = p1;
231   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
232     t = p2;
233   GNUNET_assert (t != NULL);
234
235   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
236
237   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
238               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
239               t->no, GNUNET_i2s (peer));
240   GNUNET_free (ps);
241 }
242
243
244 static void
245 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
246 {
247   struct PeerContext *p = cls;
248   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
249
250   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
251               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
252               GNUNET_i2s (peer));
253
254   if (th != NULL)
255     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
256   th = NULL;
257 }
258
259
260 static void
261 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
262 {
263   if (cls == cc1)
264   {
265     cc1 = NULL;
266     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc2);
267   }
268   if (cls == cc2)
269   {
270     cc2 = NULL;
271     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc1);
272   }
273
274   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
275
276   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
277               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
278   GNUNET_free (p1_c);
279
280   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
281 }
282
283
284 static void
285 start_cb (struct PeerContext *p, void *cls)
286 {
287   static int started;
288
289   started++;
290
291   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
292               GNUNET_i2s (&p->id));
293
294   if (started != 2)
295     return;
296
297   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
298
299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
300               "Test tries to connect peer %u (`%s') <-> peer %u (`%s')\n",
301               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
302
303   cc1 =
304       GNUNET_TRANSPORT_TESTING_connect_peers (tth, p2, p1, &testing_connect_cb,
305                                               NULL);
306   cc2 =
307       GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
308                                               NULL);
309 }
310
311 static void
312 run (void *cls, char *const *args, const char *cfgfile,
313      const struct GNUNET_CONFIGURATION_Handle *cfg)
314 {
315   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
316
317   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
318                                             &notify_receive, &notify_connect,
319                                             &notify_disconnect, &start_cb,
320                                             NULL);
321
322   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
323                                             &notify_receive, &notify_connect,
324                                             &notify_disconnect, &start_cb,
325                                             NULL);
326
327   if ((p1 == NULL) || (p2 == NULL))
328   {
329     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
330     if (die_task != GNUNET_SCHEDULER_NO_TASK)
331       GNUNET_SCHEDULER_cancel (die_task);
332     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
333     return;
334   }
335 }
336
337
338 static int
339 check ()
340 {
341   static char *const argv[] = { "test-transport-api",
342     "-c",
343     "test_transport_api_data.conf",
344     NULL
345   };
346   static struct GNUNET_GETOPT_CommandLineOption options[] = {
347     GNUNET_GETOPT_OPTION_END
348   };
349
350 #if WRITECONFIG
351   setTransportOptions ("test_transport_api_data.conf");
352 #endif
353   send_task = GNUNET_SCHEDULER_NO_TASK;
354
355   ok = 1;
356   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
357                       "nohelp", options, &run, &ok);
358
359   return ok;
360 }
361
362 int
363 main (int argc, char *argv[])
364 {
365   int ret;
366
367   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
368
369   GNUNET_log_setup (test_name,
370                     "WARNING",
371                     NULL);
372
373   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
374   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
375                                                  &test_plugin);
376
377   tth = GNUNET_TRANSPORT_TESTING_init ();
378
379   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
380   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
381
382   ret = check ();
383
384   GNUNET_free (cfg_file_p1);
385   GNUNET_free (cfg_file_p2);
386
387   GNUNET_free (test_source);
388   GNUNET_free (test_plugin);
389   GNUNET_free (test_name);
390
391   GNUNET_TRANSPORT_TESTING_done (tth);
392
393   return ret;
394 }
395
396 /* end of test_transport_api_bidirectional_connect.c */