-fix format warning
[oweals/gnunet.git] / src / transport / test_transport_api_limited_sockets.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_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 struct GNUNET_SCHEDULER_Task * die_task;
59
60 static struct GNUNET_SCHEDULER_Task * send_task;
61
62 static struct PeerContext *p1;
63
64 static struct PeerContext *p2;
65
66 static struct 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 != NULL)
89     GNUNET_SCHEDULER_cancel (send_task);
90
91   if (die_task != NULL)
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)
106 {
107   die_task = NULL;
108
109   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
110
111   if (send_task != NULL)
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 {
137   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
138               "Received message of type %d from peer %s!\n",
139               ntohs (message->type), GNUNET_i2s (peer));
140
141   if ((MTYPE == ntohs (message->type)) &&
142       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
143   {
144     ok = 0;
145     end ();
146   }
147   else
148   {
149     GNUNET_break (0);
150     ok = 1;
151     end ();
152   }
153 }
154
155
156 static size_t
157 notify_ready (void *cls, size_t size, void *buf)
158 {
159   struct PeerContext *p = cls;
160   struct GNUNET_MessageHeader *hdr;
161
162   th = NULL;
163
164   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
165               "Transmitting message with %u bytes to peer %s\n",
166               (unsigned int) sizeof (struct GNUNET_MessageHeader),
167               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 {
183   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
184               GNUNET_i2s (peer), cls);
185 }
186
187
188 static void
189 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
190 {
191   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
192               GNUNET_i2s (peer), cls);
193   if (th != NULL)
194     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
195   th = NULL;
196 }
197
198
199 static void
200 sendtask (void *cls)
201 {
202   send_task = NULL;
203   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, TIMEOUT,
204                                                &notify_ready, &p1);
205 }
206
207
208 static void
209 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
210 {
211   cc = NULL;
212   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
213
214   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
215               GNUNET_i2s (&p2->id));
216   GNUNET_free (p1_c);
217
218   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
219   send_task =
220       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
221 }
222
223 static void
224 start_cb (struct PeerContext *p, void *cls)
225 {
226   static int started;
227
228   started++;
229
230   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
231               GNUNET_i2s (&p->id));
232
233   if (started != 2)
234     return;
235
236   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p2, p1, &testing_connect_cb,
237                                                NULL);
238
239 }
240
241 static void
242 run (void *cls, char *const *args, const char *cfgfile,
243      const struct GNUNET_CONFIGURATION_Handle *cfg)
244 {
245   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
246
247   tth = GNUNET_TRANSPORT_TESTING_init ();
248
249   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
250                                             &notify_receive, &notify_connect,
251                                             &notify_disconnect, &start_cb,
252                                             NULL);
253   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
254                                             &notify_receive, &notify_connect,
255                                             &notify_disconnect, &start_cb,
256                                             NULL);
257   if ((p1 == NULL) || (p2 == NULL))
258   {
259     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
260     if (die_task != NULL)
261       GNUNET_SCHEDULER_cancel (die_task);
262     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
263     return;
264   }
265 }
266
267
268 static int
269 check ()
270 {
271   static char *const argv[] = { "test-transport-api",
272     "-c",
273     "test_transport_api_data.conf",
274     NULL
275   };
276   static struct GNUNET_GETOPT_CommandLineOption options[] = {
277     GNUNET_GETOPT_OPTION_END
278   };
279
280 #if WRITECONFIG
281   setTransportOptions ("test_transport_api_data.conf");
282 #endif
283   send_task = NULL;
284
285   ok = 1;
286   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
287                       "nohelp", options, &run, &ok);
288
289   return ok;
290 }
291
292
293 int
294 main (int argc, char *argv[])
295 {
296   struct rlimit r_file_old;
297   struct rlimit r_file_new;
298   int res;
299   int ret = 0;
300
301   test_plugin = NULL;
302   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
303   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
304                                                  &test_plugin);
305   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
306   GNUNET_log_setup (test_name,
307                     "WARNING",
308                     NULL);
309
310   res = getrlimit (RLIMIT_NOFILE, &r_file_old);
311   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
312               "Maximum number of open files was: %u/%u\n",
313               (unsigned int) r_file_old.rlim_cur,
314               (unsigned int) r_file_old.rlim_max);
315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
316               "Setting maximum number of open files to: %u\n",
317               MAX_FILES);
318   r_file_new.rlim_cur = MAX_FILES;
319   r_file_new.rlim_max = r_file_old.rlim_max;
320   res = setrlimit (RLIMIT_NOFILE, &r_file_new);
321
322   if (res != 0)
323   {
324     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Setting limit failed!\n");
325     GNUNET_free (test_source);
326     GNUNET_free (test_plugin);
327     GNUNET_free (test_name);
328     return 0;
329   }
330
331   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
332   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
333   ret = check ();
334
335   GNUNET_free (cfg_file_p1);
336   GNUNET_free (cfg_file_p2);
337   GNUNET_free (test_source);
338   GNUNET_free (test_plugin);
339   GNUNET_free (test_name);
340   return ret;
341 }
342
343 #else
344 /* cannot setrlimit */
345
346
347 int
348 main (int argc, char *argv[])
349 {
350   fprintf (stderr, "Cannot run test on this system\n");
351   return 0;
352 }
353
354 #endif
355
356 /* end of test_transport_api_limited_sockets.c */