fixing coverity 10465: Resource leak
[oweals/gnunet.git] / src / transport / test_transport_api_disconnect.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_disconnect.c
22  * @brief base test case for transport implementations
23  *
24  * This test case tests disconnect notifications in peer shutdown
25  */
26 #include "platform.h"
27 #include "gnunet_transport_service.h"
28 #include "transport-testing.h"
29
30 /**
31  * How long until we give up on transmitting the message?
32  */
33 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
34
35 /**
36  * How long until we give up on transmitting the message?
37  */
38 #define TIMEOUT_TRANSMIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
39
40 #define MTYPE 12345
41
42 static char *test_source;
43
44 static char *test_plugin;
45
46 static char *test_name;
47
48 static int ok;
49
50 static GNUNET_SCHEDULER_TaskIdentifier die_task;
51
52 static GNUNET_SCHEDULER_TaskIdentifier send_task;
53
54 struct PeerContext *p1;
55
56 struct PeerContext *p2;
57
58 static GNUNET_TRANSPORT_TESTING_ConnectRequest cc;
59
60 struct GNUNET_TRANSPORT_TransmitHandle *th;
61
62 struct GNUNET_TRANSPORT_TESTING_handle *tth;
63
64 int shutdown_;
65
66 char *cfg_file_p1;
67
68 char *cfg_file_p2;
69
70 #if VERBOSE
71 #define OKPP do { ok++; FPRINTF (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
72 #else
73 #define OKPP do { ok++; } while (0)
74 #endif
75
76
77 static void
78 end ()
79 {
80   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peers\n");
81
82   if (send_task != GNUNET_SCHEDULER_NO_TASK)
83   {
84     GNUNET_SCHEDULER_cancel (send_task);
85     send_task = GNUNET_SCHEDULER_NO_TASK;
86   }
87
88   if (die_task != GNUNET_SCHEDULER_NO_TASK)
89   {
90     GNUNET_SCHEDULER_cancel (die_task);
91     die_task = GNUNET_SCHEDULER_NO_TASK;
92   }
93
94   if (th != NULL)
95     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
96   th = NULL;
97
98   if (p1 != NULL)
99     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
100   p1 = NULL;
101
102   if (p2 != NULL)
103     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
104   p2 = NULL;
105
106   /* success */
107   ok = 0;
108 }
109
110 static void
111 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112 {
113   die_task = GNUNET_SCHEDULER_NO_TASK;
114
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Fail! Stopping peers\n");
116
117   if (cc != NULL)
118   {
119     GNUNET_TRANSPORT_TESTING_connect_peers_cancel (tth, cc);
120     cc = NULL;
121   }
122
123   if (send_task != GNUNET_SCHEDULER_NO_TASK)
124   {
125     GNUNET_SCHEDULER_cancel (send_task);
126     send_task = GNUNET_SCHEDULER_NO_TASK;
127   }
128
129   if (th != NULL)
130     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
131   th = NULL;
132
133   if (p1 != NULL)
134     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p1);
135   if (p2 != NULL)
136     GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
137
138   ok = GNUNET_SYSERR;
139 }
140
141 static void
142 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
143 {
144   struct PeerContext *p = cls;
145   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
146
147   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
148               "Peer %u (`%4s'): peer (`%s') disconnected from me!\n", p->no, ps,
149               GNUNET_i2s (peer));
150   GNUNET_free (ps);
151
152   if (th != NULL)
153     GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
154   th = NULL;
155
156   if (shutdown_ == GNUNET_YES)
157   {
158     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Complete, shutting down...\n");
159     GNUNET_SCHEDULER_add_now (&end, NULL);
160   }
161 }
162
163
164 static void
165 stop_peer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
166 {
167   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
168     return;
169
170   struct PeerContext *p = cls;
171
172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down peer %u (`%s')\n", p->no,
173               GNUNET_i2s (&p->id));
174   shutdown_ = GNUNET_YES;
175   GNUNET_TRANSPORT_TESTING_stop_peer (tth, p2);
176   p2 = NULL;
177   GNUNET_assert (p2 == NULL);
178 }
179
180 static void
181 notify_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
182                 const struct GNUNET_MessageHeader *message)
183 {
184   struct PeerContext *p = cls;
185   struct PeerContext *t = NULL;
186
187   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
188     t = p1;
189   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
190     t = p2;
191   GNUNET_assert (t != NULL);
192
193   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
194
195   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
196               "Peer %u (`%4s') received message of type %d and size %u size from peer %u (`%4s')!\n",
197               p->no, ps, ntohs (message->type), ntohs (message->size), t->no,
198               GNUNET_i2s (&t->id));
199
200   if ((MTYPE == ntohs (message->type)) &&
201       (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size)))
202   {
203     ok = 1;
204     GNUNET_SCHEDULER_add_now (stop_peer, p2);
205     return;
206   }
207 }
208
209
210 static size_t
211 notify_ready (void *cls, size_t size, void *buf)
212 {
213   struct PeerContext *p = cls;
214   struct GNUNET_MessageHeader *hdr;
215
216   th = NULL;
217
218   if (buf == NULL)
219   {
220     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
221                 "Timeout occurred while waiting for transmit_ready\n");
222     if (GNUNET_SCHEDULER_NO_TASK != die_task)
223       GNUNET_SCHEDULER_cancel (die_task);
224     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
225     ok = 42;
226     return 0;
227   }
228
229   GNUNET_assert (size >= 256);
230
231   if (buf != NULL)
232   {
233     hdr = buf;
234     hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
235     hdr->type = htons (MTYPE);
236   }
237   char *ps = GNUNET_strdup (GNUNET_i2s (&p2->id));
238
239   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
240               "Peer %u (`%4s') sending message with type %u and size %u bytes to peer %u (`%4s')\n",
241               p2->no, ps, ntohs (hdr->type), ntohs (hdr->size), p->no,
242               GNUNET_i2s (&p->id));
243   GNUNET_free (ps);
244   return sizeof (struct GNUNET_MessageHeader);
245 }
246
247
248 static void
249 sendtask (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
250 {
251   send_task = GNUNET_SCHEDULER_NO_TASK;
252
253   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
254     return;
255   char *receiver_s = GNUNET_strdup (GNUNET_i2s (&p1->id));
256
257   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
258               "Sending message from peer %u (`%4s') -> peer %u (`%s') !\n",
259               p2->no, GNUNET_i2s (&p2->id), p1->no, receiver_s);
260   GNUNET_free (receiver_s);
261
262   th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, 256, 0,
263                                                TIMEOUT_TRANSMIT, &notify_ready,
264                                                p1);
265 }
266
267
268 static void
269 notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
270 {
271   static int c;
272
273   c++;
274   struct PeerContext *p = cls;
275   struct PeerContext *t = NULL;
276
277   if (0 == memcmp (peer, &p1->id, sizeof (struct GNUNET_PeerIdentity)))
278     t = p1;
279   if (0 == memcmp (peer, &p2->id, sizeof (struct GNUNET_PeerIdentity)))
280     t = p2;
281   GNUNET_assert (t != NULL);
282
283   char *ps = GNUNET_strdup (GNUNET_i2s (&p->id));
284
285   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
286               "Peer %u (`%4s'): peer %u (`%s') connected to me!\n", p->no, ps,
287               t->no, GNUNET_i2s (peer));
288   GNUNET_free (ps);
289 }
290
291
292 static void
293 testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
294 {
295   cc = NULL;
296   char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
297
298   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %u (%s) <-> %u (%s)\n",
299               p1->no, p1_c, p2->no, GNUNET_i2s (&p2->id));
300   GNUNET_free (p1_c);
301
302   send_task = GNUNET_SCHEDULER_add_now (&sendtask, NULL);
303 }
304
305
306
307 void
308 start_cb (struct PeerContext *p, void *cls)
309 {
310   static int started;
311
312   started++;
313
314   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no,
315               GNUNET_i2s (&p->id));
316
317   if (started != 2)
318     return;
319
320   char *sender_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
321
322   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
323               "Test tries to connect peer %u (`%s') -> peer %u (`%s')\n",
324               p1->no, sender_c, p2->no, GNUNET_i2s (&p2->id));
325
326   cc = GNUNET_TRANSPORT_TESTING_connect_peers (tth, p1, p2, &testing_connect_cb,
327                                                NULL);
328
329 }
330
331 static void
332 run (void *cls, char *const *args, const char *cfgfile,
333      const struct GNUNET_CONFIGURATION_Handle *cfg)
334 {
335   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
336
337   p1 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p1, 1,
338                                             &notify_receive, &notify_connect,
339                                             &notify_disconnect, &start_cb,
340                                             NULL);
341
342   p2 = GNUNET_TRANSPORT_TESTING_start_peer (tth, cfg_file_p2, 2,
343                                             &notify_receive, &notify_connect,
344                                             &notify_disconnect, &start_cb,
345                                             NULL);
346
347   if ((p1 == NULL) || (p2 == NULL))
348   {
349     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Fail! Could not start peers!\n");
350     if (die_task != GNUNET_SCHEDULER_NO_TASK)
351       GNUNET_SCHEDULER_cancel (die_task);
352     die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
353     return;
354   }
355 }
356
357
358 static int
359 check ()
360 {
361   static char *const argv[] = { "test-transport-api",
362     "-c",
363     "test_transport_api_data.conf",
364     NULL
365   };
366   static struct GNUNET_GETOPT_CommandLineOption options[] = {
367     GNUNET_GETOPT_OPTION_END
368   };
369
370   send_task = GNUNET_SCHEDULER_NO_TASK;
371
372   ok = 1;
373   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, test_name,
374                       "nohelp", options, &run, &ok);
375
376   return ok;
377 }
378
379 int
380 main (int argc, char *argv[])
381 {
382   int ret;
383
384   GNUNET_TRANSPORT_TESTING_get_test_name (argv[0], &test_name);
385
386   GNUNET_log_setup (test_name,
387                     "WARNING",
388                     NULL);
389
390   GNUNET_TRANSPORT_TESTING_get_test_source_name (__FILE__, &test_source);
391   GNUNET_TRANSPORT_TESTING_get_test_plugin_name (argv[0], test_source,
392                                                  &test_plugin);
393
394   tth = GNUNET_TRANSPORT_TESTING_init ();
395
396   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p1, 1);
397   GNUNET_TRANSPORT_TESTING_get_config_name (argv[0], &cfg_file_p2, 2);
398
399   ret = check ();
400
401   GNUNET_free (cfg_file_p1);
402   GNUNET_free (cfg_file_p2);
403
404   GNUNET_free (test_source);
405   GNUNET_free (test_plugin);
406   GNUNET_free (test_name);
407
408   GNUNET_TRANSPORT_TESTING_done (tth);
409
410   return ret;
411 }
412
413 /* end of test_transport_api.c */