f48abfc7c2e7643f72a3baa147f5720fae371340
[oweals/gnunet.git] / src / transport / test_transport_api_manipulation_recv_tcp.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010 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 transport/test_transport_api_manipulation_recv_tcp.c
22  * @brief base test case for transport traffic manipulation implementation
23  *
24  * This test case will setup 2 peers and connect them, the first message
25  * will be sent without manipulation, then a receive delay of 1 second will
26  * be configured and 2 more message will be sent. Time will be measured
27  *
28  * In addition the distance on receiver side will be manipulated to be 10
29  */
30 #include "platform.h"
31 #include "gnunet_transport_service.h"
32 #include "transport-testing.h"
33
34 /**
35  * How long until we give up on transmitting the message?
36  */
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
38
39 /**
40  * How long until we give up on transmitting the message?
41  */
42 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
43
44 #define TEST_MESSAGE_SIZE 2600
45
46 #define TEST_MESSAGE_TYPE 12345
47
48 static char *test_source;
49
50 static char *test_plugin;
51
52 static char *test_name;
53
54 static int ok;
55
56 static int s_started;
57
58 static int s_connected;
59
60 static int s_sending;
61
62 static struct GNUNET_SCHEDULER_Task * die_task;
63
64 static struct GNUNET_SCHEDULER_Task * send_task;
65
66 static struct PeerContext *p1;
67
68 static struct PeerContext *p2;
69
70 static struct GNUNET_TRANSPORT_TESTING_ConnectRequest * cc;
71
72 static struct GNUNET_TRANSPORT_TransmitHandle *th;
73
74 static struct GNUNET_TRANSPORT_TESTING_handle *tth;
75
76 static char *cfg_file_p1;
77
78 static char *cfg_file_p2;
79
80 static int messages_recv;
81
82 static struct GNUNET_TIME_Absolute start_normal;
83 static struct GNUNET_TIME_Relative dur_normal;
84
85 static struct GNUNET_TIME_Absolute start_delayed;
86 static struct GNUNET_TIME_Relative dur_delayed;
87
88 static void
89 end ()
90 {
91   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
92
93   if (send_task != NULL)
94     GNUNET_SCHEDULER_cancel (send_task);
95
96   if (die_task != NULL)
97     GNUNET_SCHEDULER_cancel (die_task);
98
99   if (th != NULL)
100     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
101   th = NULL;
102
103   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
104   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
105 }
106
107 static void
108 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
109 {
110   die_task = NULL;
111
112   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
113
114
115   if (send_task != NULL)
116     GNUNET_SCHEDULER_cancel (send_task);
117
118   if (cc != NULL)
119   {
120     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Fail! Could not connect peers\n"));
121     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
122     cc = NULL;
123   }
124
125   if (th != NULL)
126     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
127   else
128     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
129
130   if (s_started == GNUNET_NO)
131     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were not started \n"));
132   else
133     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peers were started \n"));
134
135   if (s_connected == GNUNET_NO)
136     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not connected\n"));
137   else
138     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were connected\n"));
139
140   if (s_sending == GNUNET_NO)
141     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were not ready to send data\n"));
142   else
143     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer were ready to send data\n"));
144
145   th = NULL;
146
147   if (p1 != NULL)
148     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
149   else
150     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 1 was not started\n"));
151   if (p2 != NULL)
152     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
153   else
154     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Peer 2 was not started\n"));
155
156   ok = GNUNET_SYSERR;
157 }
158
159
160 static void
161 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
162
163 static void
164 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
165                 const struct GNUNET_MessageHeader *message)
166 {
167   struct PeerContext *p = cls;
168   struct PeerContext *t = NULL;
169
170   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
171     t = p1;
172   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
173     t = p2;
174   GNUNET_assert (t != NULL);
175
176   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
177
178   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
179               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
180               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
181               GNUNET_i2s (&t->id));
182   GNUNET_free (ps);
183
184   if ((TEST_MESSAGE_TYPE == ntohs (message->type)) &&
185       (TEST_MESSAGE_SIZE == ntohs (message->size)))
186   {
187     ok = 0;
188
189   }
190   else
191   {
192     GNUNET_break (0);
193     ok = 1;
194     end ();
195     return;
196   }
197
198   if (messages_recv <= 1)
199   {
200     /* Received non-delayed message */
201     dur_normal = GNUNET_TIME_absolute_get_duration(start_normal);
202     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
203                 "Received non-delayed message %u after %s\n",
204                 messages_recv,
205                 GNUNET_STRINGS_relative_time_to_string (dur_normal,
206                                                         GNUNET_YES));
207
208     struct GNUNET_ATS_Properties prop;
209     struct GNUNET_TIME_Relative delay;
210
211     delay.rel_value_us = 1000 * 1000LL;
212     memset (&prop, 0, sizeof (prop));
213     prop.distance = 10;
214     GNUNET_TRANSPORT_set_traffic_metric (p1->th,
215                                          &p2->id,
216                                          &prop,
217                                          delay,
218                                          GNUNET_TIME_UNIT_ZERO);
219     send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
220   }
221   if (2 == messages_recv)
222   {
223         /* Received manipulated message */
224         dur_delayed = GNUNET_TIME_absolute_get_duration(start_delayed);
225       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
226                   "Received delayed message %u after %s\n",
227                   messages_recv,
228                   GNUNET_STRINGS_relative_time_to_string (dur_delayed,
229                                                           GNUNET_YES));
230       if (dur_delayed.rel_value_us < 1000 * 1000LL)
231       {
232         GNUNET_break (0);
233         ok += 1;
234         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
235                     "Delayed message was not delayed correctly: took only %s\n",
236                     GNUNET_STRINGS_relative_time_to_string (dur_delayed,
237                                                             GNUNET_YES));
238       }
239       /* shutdown */
240       end ();
241   }
242
243   messages_recv ++;
244 }
245
246
247 static size_t
248 notify_ready (void *cls, size_t size, void *buf)
249 {
250   struct PeerContext *p = cls;
251   struct GNUNET_MessageHeader *hdr;
252
253   th = NULL;
254
255   if (buf == NULL)
256   {
257     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
258                 "Timeout occurred while waiting for transmit_ready\n");
259     if (NULL != die_task)
260       GNUNET_SCHEDULER_cancel (die_task);
261     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
262     ok = 42;
263     return 0;
264   }
265
266   GNUNET_assert (size >= TEST_MESSAGE_SIZE);
267   memset (buf, '\0', TEST_MESSAGE_SIZE);
268   hdr = buf;
269   hdr->size = htons (TEST_MESSAGE_SIZE);
270   hdr->type = htons (TEST_MESSAGE_TYPE);
271
272   {
273     char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
274
275     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
276                 "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
277                 p2->no,
278                 ps,
279                 ntohs (hdr->type),
280                 ntohs (hdr->size),
281                 p->no,
282                 GNUNET_i2s (&p->id));
283     GNUNET_free (ps);
284   }
285
286   return TEST_MESSAGE_SIZE;
287 }
288
289
290 static void
291 sendtask (void *cls,
292           const struct GNUNET_SCHEDULER_TaskContext *tc)
293 {
294   send_task = NULL;
295
296   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
297     return;
298   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
299
300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
301               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
302               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
303   GNUNET_free (receiver_s);
304
305
306   if (0 == messages_recv)
307   {
308     start_normal = GNUNET_TIME_absolute_get();
309   }
310   if (1 == messages_recv)
311   {
312     start_delayed = GNUNET_TIME_absolute_get();
313   }
314
315   s_sending = GNUNET_YES;
316   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th,
317                                                &p1->id,
318                                                TEST_MESSAGE_SIZE,
319                                                TIMEOUT_TRANSMIT,
320                                                &notify_ready,
321                                                p1);
322 }
323
324
325 static void
326 notify_connect (void *cls,
327                 const struct GNUNET_PeerIdentity *peer)
328 {
329   static int c;
330
331   c++;
332   struct PeerContext *p = cls;
333   struct PeerContext *t = NULL;
334
335   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
336     t = p1;
337   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
338     t = p2;
339   GNUNET_assert (t != NULL);
340
341   {
342     char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
343
344     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
345                 "Peer %u (`%4s'): peer %u (`%s') connected to me!\n",
346                 p->no,
347                 ps,
348                 t->no,
349                 GNUNET_i2s (peer));
350     GNUNET_free (ps);
351   }
352 }
353
354
355 static void
356 notify_disconnect (void *cls,
357                    const struct GNUNET_PeerIdentity *peer)
358 {
359   struct PeerContext *p = cls;
360
361   {
362     char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
363
364     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
365                 "Peer %u (`%4s'): peer (`%s') disconnected from me!\n",
366                 p->no,
367                 ps,
368                 GNUNET_i2s (peer));
369     GNUNET_free (ps);
370   }
371
372   if (th != NULL)
373   {
374     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
375     th = NULL;
376   }
377 }
378
379
380 static void
381 testing_connect_cb (struct PeerContext *p1,
382                     struct PeerContext *p2,
383                     void *cls)
384 {
385   cc = NULL;
386
387   {
388     char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
389
390     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
391                 "Peers connected: %u (%s) <-> %u (%s)\n",
392                 p1->no,
393                 p1_c,
394                 p2->no,
395                 GNUNET_i2s (&p2->id));
396     GNUNET_free (p1_c);
397   }
398
399   s_connected = GNUNET_YES;
400   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
401 }
402
403
404 static void
405 start_cb (struct PeerContext *p, void *cls)
406 {
407   static int started;
408   started++;
409
410   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
411               "Peer %u (`%s') started\n",
412               p->no,
413               GNUNET_i2s (&p->id));
414
415   if (started != 2)
416     return;
417   else
418     s_started = GNUNET_YES;
419   {
420     char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
421
422     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
423                 "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
424                 p1->no,
425                 sender_c,
426                 p2->no,
427                 GNUNET_i2s (&p2->id));
428     GNUNET_free (sender_c);
429   }
430
431   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth,
432                                                p1,
433                                                p2,
434                                                &testing_connect_cb,
435                                                NULL);
436
437 }
438
439
440 static void
441 run (void *cls, char *const *args, const char *cfgfile,
442      const struct GNUNET_CONFIGURATION_Handle *cfg)
443 {
444   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
445
446   s_started = GNUNET_NO;
447   s_connected = GNUNET_NO;
448   s_sending = GNUNET_NO;
449
450   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
451                                             &notify_receive, &notify_connect,
452                                             &notify_disconnect, &start_cb,
453                                             NULL);
454
455   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
456                                             &notify_receive, &notify_connect,
457                                             &notify_disconnect, &start_cb,
458                                             NULL);
459
460   if ((p1 == NULL) || (p2 == NULL))
461   {
462     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
463     if (die_task != NULL)
464       GNUNET_SCHEDULER_cancel (die_task);
465     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
466     return;
467   }
468 }
469
470
471 static int
472 check ()
473 {
474   static char *const argv[] = { "test-transport-api-manipulation",
475     "-c",
476     "test_transport_api_data.conf",
477     NULL
478   };
479   static struct GNUNET_GETOPT_CommandLineOption options[] = {
480     GNUNET_GETOPT_OPTION_END
481   };
482
483   send_task = NULL;
484
485   ok = 1;
486   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
487                       "nohelp", options, &run, &ok);
488
489   return ok;
490 }
491
492 int
493 main (int argc, char *argv[])
494 {
495   int ret;
496
497   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
498   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
499   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
500                                                  &test_plugin);
501
502   GNUNET_log_setup (test_name,
503                     "WARNING",
504                     NULL);
505   tth = GNUNET_TRANSPORT_TESTING_init ();
506
507   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
508   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
509
510   ret = check ();
511
512   GNUNET_free (cfg_file_p1);
513   GNUNET_free (cfg_file_p2);
514
515   GNUNET_free (test_source);
516   GNUNET_free (test_plugin);
517   GNUNET_free (test_name);
518
519   GNUNET_TRANSPORT_TESTING_done (tth);
520
521   return ret;
522 }
523
524 /* end of test_transport_api_manipulation_recv_tcp.c */