- fix error messages
[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 {
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               sizeof (struct GNUNET_MessageHeader), GNUNET_i2s (&p->id));
167   GNUNET_assert (size >= 256);
168
169   if (buf != NULL)
170   {
171     hdr = buf;
172     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
173     hdr->type = htons (MTYPE);
174   }
175   return sizeof (struct GNUNET_MessageHeader);
176 }
177
178
179 static void
180 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
181 {
182   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n",
183               GNUNET_i2s (peer), cls);
184 }
185
186
187 static void
188 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
189 {
190   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n",
191               GNUNET_i2s (peer), cls);
192   if (th != NULL)
193     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
194   th = NULL;
195 }
196
197 static void
198 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
199 {
200   send_task = GNUNET_SCHEDULER_NO_TASK;
201
202   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
203     return;
204
205   th = GNUNET_TRANSPORT_notify_transmit_ready (p1->th, &p2->id, 256, 0, TIMEOUT,
206                                                &notify_ready, &p1);
207 }
208
209 static void
210 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
211 {
212   cc = NULL;
213   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
214
215   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c,
216               GNUNET_i2s (&p2->id));
217   GNUNET_free (p1_c);
218
219   // FIXME: THIS IS REQUIRED! SEEMS TO BE A BUG!
220   send_task =
221       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &sendtask, NULL);
222 }
223
224 static void
225 start_cb (struct PeerContext *p, void *cls)
226 {
227   static int started;
228
229   started++;
230
231   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
232               GNUNET_i2s (&p->id));
233
234   if (started != 2)
235     return;
236
237   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p2, p1, &testing_connect_cb,
238                                                NULL);
239
240 }
241
242 static void
243 run (void *cls, char *const *args, const char *cfgfile,
244      const struct GNUNET_CONFIGURATION_Handle *cfg)
245 {
246   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
247
248   tth = GNUNET_TRANSPORT_TESTING_init ();
249
250   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
251                                             &notify_receive, &notify_connect,
252                                             &notify_disconnect, &start_cb,
253                                             NULL);
254   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
255                                             &notify_receive, &notify_connect,
256                                             &notify_disconnect, &start_cb,
257                                             NULL);
258   if ((p1 == NULL) || (p2 == NULL))
259   {
260     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
261     if (die_task != GNUNET_SCHEDULER_NO_TASK)
262       GNUNET_SCHEDULER_cancel (die_task);
263     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
264     return;
265   }
266 }
267
268
269 static int
270 check ()
271 {
272   static char *const argv[] = { "test-transport-api",
273     "-c",
274     "test_transport_api_data.conf",
275     NULL
276   };
277   static struct GNUNET_GETOPT_CommandLineOption options[] = {
278     GNUNET_GETOPT_OPTION_END
279   };
280
281 #if WRITECONFIG
282   setTransportOptions ("test_transport_api_data.conf");
283 #endif
284   send_task = GNUNET_SCHEDULER_NO_TASK;
285
286   ok = 1;
287   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
288                       "nohelp", options, &run, &ok);
289
290   return ok;
291 }
292
293
294 int
295 main (int argc, char *argv[])
296 {
297   struct rlimit r_file_old;
298   struct rlimit r_file_new;
299   int res;
300   int ret = 0;
301
302   test_plugin = NULL;
303   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
304   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
305                                                  &test_plugin);
306   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
307   GNUNET_log_setup (test_name,
308                     "WARNING",
309                     NULL);
310
311   res = getrlimit (RLIMIT_NOFILE, &r_file_old);
312   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
313               "Maximum number of open files was: %u/%u\n", r_file_old.rlim_cur,
314               r_file_old.rlim_max);
315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
316               "Setting maximum number of open files to: %u\n", MAX_FILES);
317   r_file_new.rlim_cur = MAX_FILES;
318   r_file_new.rlim_max = r_file_old.rlim_max;
319   res = setrlimit (RLIMIT_NOFILE, &r_file_new);
320
321   if (res != 0)
322   {
323     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Setting limit failed!\n");
324     GNUNET_free (test_source);
325     GNUNET_free (test_plugin);
326     GNUNET_free (test_name);
327     return 0;
328   }
329
330   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
331   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
332   ret = check ();
333
334   GNUNET_free (cfg_file_p1);
335   GNUNET_free (cfg_file_p2);
336   GNUNET_free (test_source);
337   GNUNET_free (test_plugin);
338   GNUNET_free (test_name);
339   return ret;
340 }
341
342 #else
343 /* cannot setrlimit */
344
345
346 int
347 main (int argc, char *argv[])
348 {
349   fprintf (stderr, "Cannot run test on this system\n");
350   return 0;
351 }
352
353 #endif
354
355 /* end of test_transport_api_limited_sockets.c */
356