error msg
[oweals/gnunet.git] / src / transport / test_transport_api_manipulation_recv_tcp.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_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 GNUNET_SCHEDULER_TaskIdentifier die_task;
63
64 static GNUNET_SCHEDULER_TaskIdentifier send_task;
65
66 static struct PeerContext *p1;
67
68 static struct PeerContext *p2;
69
70 static 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 != GNUNET_SCHEDULER_NO_TASK)
94     GNUNET_SCHEDULER_cancel (send_task);
95
96   if (die_task != GNUNET_SCHEDULER_NO_TASK)
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 = GNUNET_SCHEDULER_NO_TASK;
111
112   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
113
114
115   if (send_task != GNUNET_SCHEDULER_NO_TASK)
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                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
167 {
168   struct PeerContext *p = cls;
169   struct PeerContext *t = NULL;
170   int c;
171
172   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
173     t = p1;
174   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
175     t = p2;
176   GNUNET_assert (t != NULL);
177
178   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
179
180   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
181               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
182               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
183               GNUNET_i2s (&t->id));
184   GNUNET_free (ps);
185
186   if ((TEST_MESSAGE_TYPE == ntohs (message->type)) &&
187       (TEST_MESSAGE_SIZE == ntohs (message->size)))
188   {
189     ok = 0;
190
191   }
192   else
193   {
194     GNUNET_break (0);
195     ok = 1;
196     end ();
197     return;
198   }
199
200   if (messages_recv <= 1)
201   {
202         /* Received non-delayed message */
203         dur_normal = GNUNET_TIME_absolute_get_duration(start_normal);
204     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
205                 "Received non-delayed message %u after %llu\n",
206                 messages_recv,
207                 (long long unsigned int) dur_normal.rel_value);
208
209     struct GNUNET_ATS_Information ats[2];
210         ats[0].type = htonl (GNUNET_ATS_QUALITY_NET_DELAY);
211         ats[0].value = htonl (1000);
212         ats[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
213         ats[1].value = htonl (10);
214
215     GNUNET_TRANSPORT_set_traffic_metric (p1->th, &p2->id, TM_RECEIVE, ats, 2);
216     send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
217   }
218   if (2 == messages_recv)
219   {
220         /* Received manipulated message */
221         dur_delayed = GNUNET_TIME_absolute_get_duration(start_delayed);
222       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
223                   "Received delayed message %u after %llu\n",
224                   messages_recv,
225                   (long long unsigned int) dur_delayed.rel_value);
226       if (dur_delayed.rel_value < 1000)
227       {
228                                 GNUNET_break (0);
229                                 ok += 1;
230         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
231                     "Delayed message was not delayed correctly: took only %llu\n",
232                     (long long unsigned int) dur_delayed.rel_value);
233       }
234       for (c = 0; c < ats_count; c++)
235       {
236         if (ntohl (ats[c].type) == GNUNET_ATS_QUALITY_NET_DISTANCE)
237         {
238                         if (ntohl (ats[c].value) == 10)
239                                 ok += 0;
240                         else
241                         {
242                                         GNUNET_break (0);
243                                         ok += 1;
244                         }
245         }
246       }
247       /* shutdown */
248       end ();
249   }
250
251   messages_recv ++;
252 }
253
254
255 static size_t
256 notify_ready (void *cls, size_t size, void *buf)
257 {
258   struct PeerContext *p = cls;
259   struct GNUNET_MessageHeader *hdr;
260
261   th = NULL;
262
263   if (buf == NULL)
264   {
265     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
266                 "Timeout occurred while waiting for transmit_ready\n");
267     if (GNUNET_SCHEDULER_NO_TASK != die_task)
268       GNUNET_SCHEDULER_cancel (die_task);
269     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
270     ok = 42;
271     return 0;
272   }
273
274   GNUNET_assert (size >= TEST_MESSAGE_SIZE);
275   if (buf != NULL)
276   {
277     memset (buf, '\0', TEST_MESSAGE_SIZE);
278     hdr = buf;
279     hdr->size = htons (TEST_MESSAGE_SIZE);
280     hdr->type = htons (TEST_MESSAGE_TYPE);
281   }
282
283   char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
284   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
285               "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
286               p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
287               GNUNET_i2s (&p->id));
288   GNUNET_free (ps);
289
290   return TEST_MESSAGE_SIZE;
291 }
292
293
294 static void
295 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
296 {
297   send_task = GNUNET_SCHEDULER_NO_TASK;
298
299   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
300     return;
301   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
302
303   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
304               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
305               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
306   GNUNET_free (receiver_s);
307
308
309   if (0 == messages_recv)
310   {
311         start_normal = GNUNET_TIME_absolute_get();
312   }
313   if (1 == messages_recv)
314   {
315                 start_delayed = GNUNET_TIME_absolute_get();
316   }
317
318   s_sending = GNUNET_YES;
319   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, TEST_MESSAGE_SIZE, 0,
320                                                TIMEOUT_TRANSMIT, &notify_ready,
321                                                p1);
322 }
323
324
325 static void
326 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
327                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
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   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
342
343   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
344               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
345               t->no, GNUNET_i2s (peer));
346   GNUNET_free (ps);
347 }
348
349
350 static void
351 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
352 {
353   struct PeerContext *p = cls;
354   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
355
356   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
357               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
358               GNUNET_i2s (peer));
359
360   GNUNET_free (ps);
361
362   if (th != NULL)
363     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
364   th = NULL;
365 }
366
367
368 static void
369 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
370 {
371   cc = NULL;
372   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
373
374   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
375               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
376   GNUNET_free (p1_c);
377
378   s_connected = GNUNET_YES;
379   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
380 }
381
382
383 static void
384 start_cb (struct PeerContext *p, void *cls)
385 {
386   static int started;
387   started++;
388
389   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
390               GNUNET_i2s (&p->id));
391
392   if (started != 2)
393     return;
394   else
395     s_started = GNUNET_YES;
396   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
397
398   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
399               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
400               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
401   GNUNET_free (sender_c);
402
403   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
404                                                NULL);
405
406 }
407
408
409 static void
410 run (void *cls, char *const *args, const char *cfgfile,
411      const struct GNUNET_CONFIGURATION_Handle *cfg)
412 {
413   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
414
415   s_started = GNUNET_NO;
416   s_connected = GNUNET_NO;
417   s_sending = GNUNET_NO;
418
419   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
420                                             &notify_receive, &notify_connect,
421                                             &notify_disconnect, &start_cb,
422                                             NULL);
423
424   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
425                                             &notify_receive, &notify_connect,
426                                             &notify_disconnect, &start_cb,
427                                             NULL);
428
429   if ((p1 == NULL) || (p2 == NULL))
430   {
431     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
432     if (die_task != GNUNET_SCHEDULER_NO_TASK)
433       GNUNET_SCHEDULER_cancel (die_task);
434     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
435     return;
436   }
437 }
438
439
440 static int
441 check ()
442 {
443   static char *const argv[] = { "test-transport-api-manipulation",
444     "-c",
445     "test_transport_api_data.conf",
446     NULL
447   };
448   static struct GNUNET_GETOPT_CommandLineOption options[] = {
449     GNUNET_GETOPT_OPTION_END
450   };
451
452   send_task = GNUNET_SCHEDULER_NO_TASK;
453
454   ok = 1;
455   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
456                       "nohelp", options, &run, &ok);
457
458   return ok;
459 }
460
461 int
462 main (int argc, char *argv[])
463 {
464   int ret;
465
466   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
467   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
468   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
469                                                  &test_plugin);
470
471   GNUNET_log_setup (test_name,
472                     "WARNING",
473                     NULL);
474   tth = GNUNET_TRANSPORT_TESTING_init ();
475
476   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
477   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
478
479   ret = check ();
480
481   GNUNET_free (cfg_file_p1);
482   GNUNET_free (cfg_file_p2);
483
484   GNUNET_free (test_source);
485   GNUNET_free (test_plugin);
486   GNUNET_free (test_name);
487
488   GNUNET_TRANSPORT_TESTING_done (tth);
489
490   return ret;
491 }
492
493 /* end of test_transport_api_manipulation_recv_tcp.c */