- changes
[oweals/gnunet.git] / src / transport / test_transport_api_restart_1peer.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_restart_1peer.c
22  * @brief base test case for transport implementations
23  *
24  * This test case starts 2 peers, connects and exchanges a message
25  * 1 peer is restarted and tested if peers reconnect
26  * C code apparently.
27  */
28 #include "platform.h"
29 #include "gnunet_common.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_getopt_lib.h"
32 #include "gnunet_os_lib.h"
33 #include "gnunet_program_lib.h"
34 #include "gnunet_scheduler_lib.h"
35 #include "gnunet_transport_service.h"
36 #include "transport.h"
37 #include "transport-testing.h"
38
39 #define VERBOSE GNUNET_EXTRA_LOGGING
40 #define VERBOSE_ARM GNUNET_EXTRA_LOGGING
41
42 #define START_ARM GNUNET_YES
43
44 /**
45  * How long until we give up on transmitting the message?
46  */
47 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
48
49 /**
50  * How long until we give up on transmitting the message?
51  */
52 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
53
54 #define MTYPE 12345
55
56 static char *test_name;
57
58 static int ok;
59
60 static GNUNET_SCHEDULER_TaskIdentifier die_task;
61
62 static GNUNET_SCHEDULER_TaskIdentifier send_task;
63
64 static GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
65
66 struct PeerContext *p1;
67
68 struct PeerContext *p2;
69
70 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
71
72 struct GNUNET_TRANSPORT_TransmitHandle *th;
73
74 struct GNUNET_TRANSPORT_TESTING_handle *tth;
75
76 char *cfg_file_p1;
77
78 char *cfg_file_p2;
79
80 static int restarted;
81
82 #if VERBOSE
83 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
84 #else
85 #define OKPP do { ok++; } while (0)
86 #endif
87
88
89 static void
90 end ()
91 {
92   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
93
94   if (send_task != GNUNET_SCHEDULER_NO_TASK)
95     GNUNET_SCHEDULER_cancel (send_task);
96   send_task = GNUNET_SCHEDULER_NO_TASK;
97
98   if (reconnect_task != GNUNET_SCHEDULER_NO_TASK)
99     GNUNET_SCHEDULER_cancel (reconnect_task);
100   reconnect_task = GNUNET_SCHEDULER_NO_TASK;
101
102   if (die_task != GNUNET_SCHEDULER_NO_TASK)
103     GNUNET_SCHEDULER_cancel (die_task);
104   die_task = GNUNET_SCHEDULER_NO_TASK;
105
106   if (th != NULL)
107     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
108   th = NULL;
109
110   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
111   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
112 }
113
114 static void
115 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
116 {
117   die_task = GNUNET_SCHEDULER_NO_TASK;
118
119   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
120
121   if (restarted == GNUNET_YES)
122     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Peer was restarted\n");
123
124   if (restarted == GNUNET_NO)
125     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Peer was NOT restarted\n");
126
127   if (reconnect_task != GNUNET_SCHEDULER_NO_TASK)
128     GNUNET_SCHEDULER_cancel (reconnect_task);
129   reconnect_task = GNUNET_SCHEDULER_NO_TASK;
130
131   if (send_task != GNUNET_SCHEDULER_NO_TASK)
132     GNUNET_SCHEDULER_cancel (send_task);
133   send_task = GNUNET_SCHEDULER_NO_TASK;
134
135   if (cc != NULL)
136   {
137     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
138     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
139     cc = NULL;
140   }
141
142   if (th != NULL)
143     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
144   th = NULL;
145
146   if (p1 != NULL)
147     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
148   if (p2 != NULL)
149     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
150
151   ok = GNUNET_SYSERR;
152 }
153
154 static void
155 reconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
156 {
157   struct PeerContext *p = cls;
158
159   reconnect_task = GNUNET_SCHEDULER_NO_TASK;
160
161   GNUNET_TRANSPORT_try_connect (p->th, &p2->id);
162   reconnect_task =
163       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &reconnect, p);
164 }
165
166 static void
167 restart_cb (struct PeerContext *p, void *cls)
168 {
169
170   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
171               "Restarted peer %u (`%4s'), issuing reconnect\n", p->no,
172               GNUNET_i2s (&p->id));
173
174   reconnect_task = GNUNET_SCHEDULER_add_now (&reconnect, p);
175 }
176
177 static void
178 restart (struct PeerContext *p, char *cfg_file)
179 {
180   GNUNET_assert (p != NULL);
181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Restarting peer %u (`%4s')\n", p->no,
182               GNUNET_i2s (&p->id));
183   GNUNET_TRANSPORT_TESTING_restart_peer (tth, p, cfg_file, &restart_cb, p);
184   return;
185 }
186
187 static void
188 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
189                 const struct GNUNET_MessageHeader *message,
190                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
191 {
192   struct PeerContext *p = cls;
193   struct PeerContext *t = NULL;
194
195   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
196     t = p1;
197   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
198     t = p2;
199   GNUNET_assert (t != NULL);
200
201   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
202
203   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
204               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
205               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
206               GNUNET_i2s (&t->id));
207   GNUNET_free (ps);
208
209   if ((MTYPE == ntohs (message->type)) &&
210       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
211   {
212     if (restarted == GNUNET_NO)
213     {
214       restarted = GNUNET_YES;
215       restart (p1, cfg_file_p1);
216       return;
217     }
218     else
219     {
220       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
221                   "Restarted peers connected, stopping test...\n");
222       ok = 0;
223       end ();
224     }
225   }
226   else
227   {
228     GNUNET_break (0);
229     ok = 1;
230     if (die_task != GNUNET_SCHEDULER_NO_TASK)
231       GNUNET_SCHEDULER_cancel (die_task);
232     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
233   }
234 }
235
236
237 static size_t
238 notify_ready (void *cls, size_t size, void *buf)
239 {
240   struct PeerContext *p = cls;
241   struct GNUNET_MessageHeader *hdr;
242
243   th = NULL;
244
245   if (buf == NULL)
246   {
247     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
248                 "Timeout occurred while waiting for transmit_ready\n");
249     if (GNUNET_SCHEDULER_NO_TASK != die_task)
250       GNUNET_SCHEDULER_cancel (die_task);
251     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
252     ok = 42;
253     return 0;
254   }
255
256   GNUNET_assert (size >= 256);
257
258   if (buf != NULL)
259   {
260     hdr = buf;
261     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
262     hdr->type = htons (MTYPE);
263   }
264   char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
265
266   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
267               "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
268               p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
269               GNUNET_i2s (&p->id));
270   GNUNET_free (ps);
271   return sizeof (struct GNUNET_MessageHeader);
272 }
273
274
275 static void
276 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
277 {
278   send_task = GNUNET_SCHEDULER_NO_TASK;
279
280   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
281     return;
282   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
283
284   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
285               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
286               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
287   GNUNET_free (receiver_s);
288
289   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, 256, 0,
290                                                TIMEOUT_TRANSMIT, &notify_ready,
291                                                p1);
292 }
293
294
295 static void
296 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
297                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
298 {
299   static int c;
300
301   c++;
302   struct PeerContext *p = cls;
303   struct PeerContext *t = NULL;
304
305   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
306     t = p1;
307   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
308     t = p2;
309   GNUNET_assert (t != NULL);
310
311   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
312
313   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
314               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
315               t->no, GNUNET_i2s (peer));
316   GNUNET_free (ps);
317
318   if ((restarted == GNUNET_YES) && (c == 4))
319   {
320     send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
321   }
322 }
323
324
325 static void
326 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
327 {
328   struct PeerContext *p = cls;
329
330
331   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
332
333   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
334               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
335               GNUNET_i2s (peer));
336   GNUNET_free (ps);
337
338   if (th != NULL)
339     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
340   th = NULL;
341 }
342
343 static void
344 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
345 {
346   cc = NULL;
347   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
348
349   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
350               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
351   GNUNET_free (p1_c);
352
353   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
354 }
355
356
357
358 void
359 start_cb (struct PeerContext *p, void *cls)
360 {
361   static int started;
362
363   started++;
364
365   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
366               GNUNET_i2s (&p->id));
367
368   if (started != 2)
369     return;
370
371   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
372
373   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
374               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
375               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
376   GNUNET_free (sender_c);
377
378   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
379                                                NULL);
380
381 }
382
383 static void
384 run (void *cls, char *const *args, const char *cfgfile,
385      const struct GNUNET_CONFIGURATION_Handle *cfg)
386 {
387   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
388
389   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
390                                             &notify_receive, &notify_connect,
391                                             &notify_disconnect, &start_cb,
392                                             NULL);
393
394   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
395                                             &notify_receive, &notify_connect,
396                                             &notify_disconnect, &start_cb,
397                                             NULL);
398
399   if ((p1 == NULL) || (p2 == NULL))
400   {
401     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
402     if (die_task != GNUNET_SCHEDULER_NO_TASK)
403       GNUNET_SCHEDULER_cancel (die_task);
404     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
405     return;
406   }
407 }
408
409
410 static int
411 check ()
412 {
413   static char *const argv[] = { "test-transport-api",
414     "-c",
415     "test_transport_api_data.conf",
416 #if VERBOSE
417     "-L", "DEBUG",
418 #endif
419     NULL
420   };
421   static struct GNUNET_GETOPT_CommandLineOption options[] = {
422     GNUNET_GETOPT_OPTION_END
423   };
424
425 #if WRITECONFIG
426   setTransportOptions ("test_transport_api_data.conf");
427 #endif
428   send_task = GNUNET_SCHEDULER_NO_TASK;
429
430   ok = 1;
431   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
432                       "nohelp", options, &run, &ok);
433
434   return ok;
435 }
436
437 int
438 main (int argc, char *argv[])
439 {
440   int ret;
441
442   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
443
444
445   GNUNET_log_setup (test_name,
446 #if VERBOSE
447                     "DEBUG",
448 #else
449                     "WARNING",
450 #endif
451                     NULL);
452
453   tth = GNUNET_TRANSPORT_TESTING_init ();
454
455
456   GNUNET_asprintf (&cfg_file_p1, "test_transport_api_tcp_peer1.conf");
457   GNUNET_asprintf (&cfg_file_p2, "test_transport_api_tcp_peer2.conf");
458
459
460   ret = check ();
461
462   GNUNET_free (cfg_file_p1);
463   GNUNET_free (cfg_file_p2);
464
465   GNUNET_free (test_name);
466
467   GNUNET_TRANSPORT_TESTING_done (tth);
468
469   return ret;
470 }
471
472 /* end of test_transport_api_restart_1peer.c */