- verboser log, faster start
[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_limited_sockets.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_transport_service.h"
31 #include "transport-testing.h"
32
33 /**
34  * How long until we give up on transmitting the message?
35  */
36 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
37
38 /**
39  * How long until we give up on transmitting the message?
40  */
41 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
42
43 #define MTYPE 12345
44
45 #define MAX_FILES 50
46
47
48 #if HAVE_SETRLIMIT
49
50 static char *test_source;
51
52 static char *test_plugin;
53
54 static char *test_name;
55
56 static int ok;
57
58 static GNUNET_SCHEDULER_TaskIdentifier die_task;
59
60 static GNUNET_SCHEDULER_TaskIdentifier send_task;
61
62 static struct PeerContext *p1;
63
64 static struct PeerContext *p2;
65
66 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
67
68 static struct GNUNET_TRANSPORT_TransmitHandle *th;
69
70 static struct GNUNET_TRANSPORT_TESTING_handle *tth;
71
72 static char *cfg_file_p1;
73
74 static 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 (tth, p1);
99   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
100   GNUNET_TRANSPORT_TESTING_done (tth);
101
102 }
103
104 static void
105 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   die_task = GNUNET_SCHEDULER_NO_TASK;
108
109   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
110
111   if (send_task != GNUNET_SCHEDULER_NO_TASK)
112     GNUNET_SCHEDULER_cancel (send_task);
113
114   if (cc != NULL)
115     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
116
117   if (th != NULL)
118     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
119   th = NULL;
120
121   if (p1 != NULL)
122     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
123   if (p2 != NULL)
124     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
125
126   if (NULL != th)
127     GNUNET_TRANSPORT_TESTING_done (tth);
128
129   ok = GNUNET_SYSERR;
130 }
131
132
133 static void
134 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
135                 const struct GNUNET_MessageHeader *message,
136                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
137 {
138   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
139               "Received message of type %d from peer %s!\n",
140               ntohs (message->type), GNUNET_i2s (peer));
141
142   if ((MTYPE == ntohs (message->type)) &&
143       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
144   {
145     ok = 0;
146     end ();
147   }
148   else
149   {
150     GNUNET_break (0);
151     ok = 1;
152     end ();
153   }
154 }
155
156
157 static size_t
158 notify_ready (void *cls, size_t size, void *buf)
159 {
160   struct PeerContext *p = cls;
161   struct GNUNET_MessageHeader *hdr;
162
163   th = NULL;
164
165   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
166               "Transmitting message with %u bytes to peer %s\n",
167               sizeof (struct GNUNET_MessageHeader), GNUNET_i2s (&p->id));
168   GNUNET_assert (size >= 256);
169
170   if (buf != NULL)
171   {
172     hdr = buf;
173     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
174     hdr->type = htons (MTYPE);
175   }
176   return sizeof (struct GNUNET_MessageHeader);
177 }
178
179
180 static void
181 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
182                 const struct GNUNET_ATS_Information *ats, uint32_t ats_count)
183 {
184   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
185               GNUNET_i2s (peer), cls);
186 }
187
188
189 static void
190 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
191 {
192   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
193               GNUNET_i2s (peer), cls);
194   if (th != NULL)
195     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
196   th = NULL;
197 }
198
199 static void
200 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
201 {
202   send_task = GNUNET_SCHEDULER_NO_TASK;
203
204   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
205     return;
206
207   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, 0, TIMEOUT,
208                                                &notify_ready, &p1);
209 }
210
211 static void
212 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
213 {
214   cc = NULL;
215   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
216
217   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
218               GNUNET_i2s (&p2->id));
219   GNUNET_free (p1_c);
220
221   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
222   send_task =
223       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
224 }
225
226 static void
227 start_cb (struct PeerContext *p, void *cls)
228 {
229   static int started;
230
231   started++;
232
233   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
234               GNUNET_i2s (&p->id));
235
236   if (started != 2)
237     return;
238
239   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p2, p1, &testing_connect_cb,
240                                                NULL);
241
242 }
243
244 static void
245 run (void *cls, char *const *args, const char *cfgfile,
246      const struct GNUNET_CONFIGURATION_Handle *cfg)
247 {
248   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
249
250   tth = GNUNET_TRANSPORT_TESTING_init ();
251
252   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
253                                             &notify_receive, &notify_connect,
254                                             &notify_disconnect, &start_cb,
255                                             NULL);
256   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
257                                             &notify_receive, &notify_connect,
258                                             &notify_disconnect, &start_cb,
259                                             NULL);
260   if ((p1 == NULL) || (p2 == NULL))
261   {
262     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
263     if (die_task != GNUNET_SCHEDULER_NO_TASK)
264       GNUNET_SCHEDULER_cancel (die_task);
265     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
266     return;
267   }
268 }
269
270
271 static int
272 check ()
273 {
274   static char *const argv[] = { "test-transport-api",
275     "-c",
276     "test_transport_api_data.conf",
277     NULL
278   };
279   static struct GNUNET_GETOPT_CommandLineOption options[] = {
280     GNUNET_GETOPT_OPTION_END
281   };
282
283 #if WRITECONFIG
284   setTransportOptions ("test_transport_api_data.conf");
285 #endif
286   send_task = GNUNET_SCHEDULER_NO_TASK;
287
288   ok = 1;
289   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
290                       "nohelp", options, &run, &ok);
291
292   return ok;
293 }
294
295
296 int
297 main (int argc, char *argv[])
298 {
299   struct rlimit r_file_old;
300   struct rlimit r_file_new;
301   int res;
302   int ret = 0;
303
304   test_plugin = NULL;
305   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
306   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
307                                                  &test_plugin);
308   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
309   GNUNET_log_setup (test_name,
310                     "WARNING",
311                     NULL);
312
313   res = getrlimit (RLIMIT_NOFILE, &r_file_old);
314   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
315               "Maximum number of open files was: %u/%u\n", r_file_old.rlim_cur,
316               r_file_old.rlim_max);
317   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
318               "Setting maximum number of open files to: %u\n", MAX_FILES);
319   r_file_new.rlim_cur = MAX_FILES;
320   r_file_new.rlim_max = r_file_old.rlim_max;
321   res = setrlimit (RLIMIT_NOFILE, &r_file_new);
322
323   if (res != 0)
324   {
325     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Setting limit failed!\n");
326     GNUNET_free (test_source);
327     GNUNET_free (test_plugin);
328     GNUNET_free (test_name);
329     return 0;
330   }
331
332   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
333   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
334   ret = check ();
335
336   GNUNET_free (cfg_file_p1);
337   GNUNET_free (cfg_file_p2);
338   GNUNET_free (test_source);
339   GNUNET_free (test_plugin);
340   GNUNET_free (test_name);
341   return ret;
342 }
343
344 #else 
345 /* cannot setrlimit */
346
347
348 int
349 main (int argc, char *argv[])
350 {
351   fprintf (stderr, "Cannot run test on this system\n");
352   return 0;
353 }
354
355 #endif
356
357 /* end of test_transport_api_limited_sockets.c */
358