move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_
[oweals/gnunet.git] / src / transport / test_transport_api_limited_sockets.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_EXTRA_LOGGING
41
42 #define VERBOSE_ARM GNUNET_EXTRA_LOGGING
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 #define MAX_FILES 50
59
60 static char *test_source;
61
62 static char *test_plugin;
63
64 static char *test_name;
65
66 static int ok;
67
68 static GNUNET_SCHEDULER_TaskIdentifier die_task;
69
70 static GNUNET_SCHEDULER_TaskIdentifier send_task;
71
72 struct PeerContext *p1;
73
74 struct PeerContext *p2;
75
76 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
77
78 struct GNUNET_TRANSPORT_TransmitHandle *th;
79
80 struct GNUNET_TRANSPORT_TESTING_handle * tth;
81
82 char *cfg_file_p1;
83
84 char *cfg_file_p2;
85
86 #if VERBOSE
87 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
88 #else
89 #define OKPP do { ok++; } while (0)
90 #endif
91
92
93 static void
94 end ()
95 {
96   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
97
98   if (send_task != GNUNET_SCHEDULER_NO_TASK)
99     GNUNET_SCHEDULER_cancel (send_task);
100
101   if (die_task != GNUNET_SCHEDULER_NO_TASK)
102     GNUNET_SCHEDULER_cancel (die_task);
103
104   if (th != NULL)
105     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
106   th = NULL;
107
108   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
109   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
110 }
111
112 static void
113 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
114 {
115   die_task = GNUNET_SCHEDULER_NO_TASK;
116
117   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
118
119   if (send_task != GNUNET_SCHEDULER_NO_TASK)
120     GNUNET_SCHEDULER_cancel (send_task);
121
122   if (cc != NULL)
123     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
124
125   if (th != NULL)
126     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
127   th = NULL;
128
129   if (p1 != NULL)
130     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
131   if (p2 != NULL)
132     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
133
134   ok = GNUNET_SYSERR;
135 }
136
137
138 static void
139 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
140                 const struct GNUNET_MessageHeader *message,
141                 const struct GNUNET_ATS_Information *ats,
142                 uint32_t ats_count)
143 {
144   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
145               "Received message of type %d from peer %s!\n",
146               ntohs (message->type), GNUNET_i2s (peer));
147
148   if ((MTYPE == ntohs (message->type)) &&
149       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
150   {
151     ok = 0;
152     end ();
153   }
154   else
155   {
156     GNUNET_break (0);
157     ok = 1;
158     end ();
159   }
160 }
161
162
163 static size_t
164 notify_ready (void *cls, size_t size, void *buf)
165 {
166   struct PeerContext *p = cls;
167   struct GNUNET_MessageHeader *hdr;
168
169   th = NULL;
170
171   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
172               "Transmitting message with %u bytes to peer %s\n",
173               sizeof (struct GNUNET_MessageHeader), GNUNET_i2s (&p->id));
174   GNUNET_assert (size >= 256);
175
176   if (buf != NULL)
177   {
178     hdr = buf;
179     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
180     hdr->type = htons (MTYPE);
181   }
182   return sizeof (struct GNUNET_MessageHeader);
183 }
184
185
186 static void
187 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
188                 const struct GNUNET_ATS_Information *ats,
189                 uint32_t ats_count)
190 {
191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
192               GNUNET_i2s (peer), cls);
193 }
194
195
196 static void
197 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
198 {
199   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
200               GNUNET_i2s (peer), cls);
201   if (th != NULL)
202     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
203   th = NULL;
204 }
205
206 static void
207 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
208 {
209   send_task = GNUNET_SCHEDULER_NO_TASK;
210
211   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
212     return;
213
214   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, 0, TIMEOUT,
215                                                &notify_ready, &p1);
216 }
217
218 static void
219 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
220 {
221   cc = NULL;
222   char *p1_c = strdup (GNUNET_i2s (&p1->id));
223
224   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
225               GNUNET_i2s (&p2->id));
226   GNUNET_free (p1_c);
227
228   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
229   send_task =
230       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
231 }
232
233 void start_cb (struct PeerContext * p,
234                void *cls)
235 {
236   static int started;
237   started++;
238
239   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n",
240        p->no,
241        GNUNET_i2s (&p->id));
242
243   if (started != 2)
244     return;
245
246   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
247                                                NULL);
248
249 }
250
251 static void
252 run (void *cls, char *const *args, const char *cfgfile,
253      const struct GNUNET_CONFIGURATION_Handle *cfg)
254 {
255   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
256
257   tth = GNUNET_TRANSPORT_TESTING_init ();
258
259   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
260                                             &notify_receive,
261                                             &notify_connect, &notify_disconnect,
262                                             &start_cb,
263                                             NULL);
264   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
265                                             &notify_receive,
266                                             &notify_connect, &notify_disconnect,
267                                             &start_cb,
268                                             NULL);
269   if ((p1 == NULL) || (p2 == NULL))
270   {
271     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
272     if (die_task != GNUNET_SCHEDULER_NO_TASK)
273       GNUNET_SCHEDULER_cancel (die_task);
274     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
275     return;
276   }
277 }
278
279
280 static int
281 check ()
282 {
283   static char *const argv[] = { "test-transport-api",
284     "-c",
285     "test_transport_api_data.conf",
286 #if VERBOSE
287     "-L", "DEBUG",
288 #endif
289     NULL
290   };
291   static struct GNUNET_GETOPT_CommandLineOption options[] = {
292     GNUNET_GETOPT_OPTION_END
293   };
294
295 #if WRITECONFIG
296   setTransportOptions ("test_transport_api_data.conf");
297 #endif
298   send_task = GNUNET_SCHEDULER_NO_TASK;
299
300   ok = 1;
301   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
302                       "nohelp", options, &run, &ok);
303
304   return ok;
305 }
306
307 int
308 main (int argc, char *argv[])
309 {
310   int ret = 0;
311   int nat_res;
312
313   test_plugin = NULL;
314
315   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
316   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
317                                                  &test_plugin);
318   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
319
320   GNUNET_log_setup (test_name,
321 #if VERBOSE
322                     "DEBUG",
323 #else
324                     "WARNING",
325 #endif
326                     NULL);
327
328   if ((test_plugin != NULL) &&
329       ((strcmp (test_plugin, "tcp_nat") == 0) ||
330        (strcmp (test_plugin, "udp_nat") == 0)))
331   {
332     nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server");
333     if (GNUNET_NO == nat_res)
334     {
335       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Cannot run NAT test: `%s' %s \n",
336                   "gnunet-nat-server", "SUID not set");
337       return 0;
338     }
339     if (GNUNET_SYSERR == nat_res)
340     {
341       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Cannot run NAT test: `%s' %s \n",
342                   "gnunet-nat-server", "file not found");
343       return 0;
344     }
345   }
346
347 #if !HAVE_SETRLIMIT
348   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Cannot run test on this system\n");
349
350   GNUNET_free (test_source);
351   GNUNET_free (test_plugin);
352   GNUNET_free (test_name);
353
354   return 0;
355 #else
356   struct rlimit r_file_old;
357   struct rlimit r_file_new;
358   int res;
359
360   res = getrlimit (RLIMIT_NOFILE, &r_file_old);
361   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
362               "Maximum number of open files was: %u/%u\n", r_file_old.rlim_cur,
363               r_file_old.rlim_max);
364
365   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
366               "Setting maximum number of open files to: %u\n", MAX_FILES);
367   r_file_new.rlim_cur = MAX_FILES;
368   r_file_new.rlim_max = r_file_old.rlim_max;
369   res = setrlimit (RLIMIT_NOFILE, &r_file_new);
370
371   if (res != 0)
372   {
373     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Setting limit failed!\n");
374     GNUNET_free (test_source);
375     GNUNET_free (test_plugin);
376     GNUNET_free (test_name);
377     return 0;
378   }
379
380   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
381   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
382   ret = check ();
383 #endif
384
385
386   GNUNET_free (cfg_file_p1);
387   GNUNET_free (cfg_file_p2);
388
389   GNUNET_free (test_source);
390   GNUNET_free (test_plugin);
391   GNUNET_free (test_name);
392
393 #if HAVE_SETRLIMIT
394   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
395               "Restoring previous value maximum number of open files\n");
396   res = setrlimit (RLIMIT_NOFILE, &r_file_old);
397   if (res != 0)
398   {
399     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Restoring limit failed!\n");
400     return 0;
401   }
402 #endif
403
404   return ret;
405 }
406
407 /* end of test_transport_api.c */