8f05d996d6b2f85af48d4bc5c6c3e249c1fd539a
[oweals/gnunet.git] / src / transport / test_transport_api.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.c
22  * @brief base test case for transport implementations
23  *
24  * This test case serves as a base for tcp, udp, and udp-nat
25  * transport test cases.  Based on the executable being run
26  * the correct test case will be performed.  Conservation of
27  * C code apparently.
28  */
29 #include "platform.h"
30 #include "gnunet_common.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_scheduler_lib.h"
36 #include "gnunet_transport_service.h"
37 #include "transport.h"
38 #include "transport-testing.h"
39
40 #define VERBOSE GNUNET_NO
41
42 #define VERBOSE_ARM GNUNET_NO
43
44 #define START_ARM GNUNET_YES
45
46 /**
47  * How long until we give up on transmitting the message?
48  */
49 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
50
51 /**
52  * How long until we give up on transmitting the message?
53  */
54 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
55
56 #define MTYPE 12345
57
58 static int ok;
59
60 static GNUNET_SCHEDULER_TaskIdentifier die_task;
61
62 static GNUNET_SCHEDULER_TaskIdentifier send_task;
63
64 struct PeerContext *p1;
65
66 struct PeerContext *p2;
67
68 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
69
70 struct GNUNET_TRANSPORT_TransmitHandle *th;
71
72 char *cfg_file_p1;
73
74 char *cfg_file_p2;
75
76 #if VERBOSE
77 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
78 #else
79 #define OKPP do { ok++; } while (0)
80 #endif
81
82
83 static void
84 end ()
85 {
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
87
88   if (send_task != GNUNET_SCHEDULER_NO_TASK)
89     GNUNET_SCHEDULER_cancel (send_task);
90
91   if (die_task != GNUNET_SCHEDULER_NO_TASK)
92     GNUNET_SCHEDULER_cancel (die_task);
93
94   if (th != NULL)
95     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
96   th = NULL;
97
98   GNUNET_TRANSPORT_TESTING_stop_peer (p1);
99   GNUNET_TRANSPORT_TESTING_stop_peer (p2);
100 }
101
102 static void
103 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
104 {
105   die_task = GNUNET_SCHEDULER_NO_TASK;
106
107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
108
109   if (send_task != GNUNET_SCHEDULER_NO_TASK)
110     GNUNET_SCHEDULER_cancel (send_task);
111
112   if (cc != NULL)
113     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (cc);
114
115   if (th != NULL)
116     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
117   th = NULL;
118
119   if (p1 != NULL)
120     GNUNET_TRANSPORT_TESTING_stop_peer (p1);
121   if (p2 != NULL)
122     GNUNET_TRANSPORT_TESTING_stop_peer (p2);
123
124   ok = GNUNET_SYSERR;
125 }
126
127
128 static void
129 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
130                 const struct GNUNET_MessageHeader *message,
131                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
132                 uint32_t ats_count)
133 {
134   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
135               "Received message of type %d from peer %s!\n",
136               ntohs (message->type), GNUNET_i2s (peer));
137
138   if ((MTYPE == ntohs (message->type)) &&
139       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
140   {
141     ok = 0;
142     end ();
143   }
144   else
145   {
146     GNUNET_break (0);
147     ok = 1;
148     end ();
149   }
150 }
151
152
153 static size_t
154 notify_ready (void *cls, size_t size, void *buf)
155 {
156   struct PeerContext *p = cls;
157   struct GNUNET_MessageHeader *hdr;
158
159   th = NULL;
160
161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
162               "Transmitting message with %u bytes to peer %s\n",
163               sizeof (struct GNUNET_MessageHeader), GNUNET_i2s (&p->id));
164   GNUNET_assert (size >= 256);
165
166   if (buf != NULL)
167   {
168     hdr = buf;
169     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
170     hdr->type = htons (MTYPE);
171   }
172   return sizeof (struct GNUNET_MessageHeader);
173 }
174
175
176 static void
177 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
178                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
179                 uint32_t ats_count)
180 {
181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
182               GNUNET_i2s (peer), cls);
183 }
184
185
186 static void
187 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
188 {
189   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
190               GNUNET_i2s (peer), cls);
191 }
192
193 static void
194 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
195 {
196   send_task = GNUNET_SCHEDULER_NO_TASK;
197
198   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
199     return;
200
201   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, 0, TIMEOUT,
202                                                &notify_ready, &p1);
203 }
204
205 static void
206 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
207 {
208   cc = NULL;
209   char *p1_c = strdup (GNUNET_i2s (&p1->id));
210
211   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
212               GNUNET_i2s (&p2->id));
213   GNUNET_free (p1_c);
214
215   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
216   send_task =
217       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
218 }
219
220 static void
221 run (void *cls, char *const *args, const char *cfgfile,
222      const struct GNUNET_CONFIGURATION_Handle *cfg)
223 {
224   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
225
226   p1 = GNUNET_TRANSPORT_TESTING_start_peer (cfg_file_p1, &notify_receive,
227                                             &notify_connect, &notify_disconnect,
228                                             NULL);
229   p2 = GNUNET_TRANSPORT_TESTING_start_peer (cfg_file_p2, &notify_receive,
230                                             &notify_connect, &notify_disconnect,
231                                             NULL);
232   cc = GNUNET_TRANSPORT_TESTING_connect_peers (p1, p2, &testing_connect_cb,
233                                                NULL);
234 }
235
236 static int
237 check ()
238 {
239   static char *const argv[] = { "test-transport-api",
240     "-c",
241     "test_transport_api_data.conf",
242 #if VERBOSE
243     "-L", "DEBUG",
244 #endif
245     NULL
246   };
247   static struct GNUNET_GETOPT_CommandLineOption options[] = {
248     GNUNET_GETOPT_OPTION_END
249   };
250
251 #if WRITECONFIG
252   setTransportOptions ("test_transport_api_data.conf");
253 #endif
254   send_task = GNUNET_SCHEDULER_NO_TASK;
255
256   ok = 1;
257   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
258                       "test-transport-api", "nohelp", options, &run, &ok);
259
260   return ok;
261 }
262
263 int
264 main (int argc, char *argv[])
265 {
266   int ret;
267
268   GNUNET_log_setup ("test-transport-api",
269 #if VERBOSE
270                     "DEBUG",
271 #else
272                     "WARNING",
273 #endif
274                     NULL);
275
276   char *pch = strdup (argv[0]);
277   char *backup = pch;
278   char *filename = NULL;
279   char *dotexe;
280   int nat_res;
281
282   /* get executable filename */
283   pch = strtok (pch, "/");
284   while (pch != NULL)
285   {
286     pch = strtok (NULL, "/");
287     if (pch != NULL)
288       filename = pch;
289   }
290   /* remove "lt-" */
291   filename = strstr (filename, "tes");
292   if (NULL != (dotexe = strstr (filename, ".exe")))
293     dotexe[0] = '\0';
294
295   /* create cfg filename */
296   GNUNET_asprintf (&cfg_file_p1, "%s_peer1.conf", filename);
297   GNUNET_asprintf (&cfg_file_p2, "%s_peer2.conf", filename);
298   GNUNET_free (backup);
299
300   if ((strstr (argv[0], "tcp_nat") != NULL) || (strstr (argv[0], "udp_nat") != NULL))
301   {
302     nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server");
303     if (GNUNET_NO == nat_res)
304     {
305       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
306           "Cannot run NAT test: `%s' %s \n",
307           "gnunet-nat-server",
308            "SUID not set");
309       return 0;
310     }
311     if (GNUNET_SYSERR ==  nat_res)
312     {
313       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
314           "Cannot run NAT test: `%s' %s \n",
315           "gnunet-nat-server",
316           "file not found");
317       return 0;
318     }
319
320   }
321   ret = check ();
322
323   GNUNET_free (cfg_file_p1);
324   GNUNET_free (cfg_file_p2);
325
326   return ret;
327 }
328
329 /* end of test_transport_api.c */