fixing resource leaks
[oweals/gnunet.git] / src / ats / test_ats_solver_alternative_after_delete_address.c
1 /*
2   if (NULL == (perf_ats = GNUNET_ATS_performance_init (cfg, &ats_perf_cb, NULL)))
3   {
4     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
5         "Failed to connect to performance API\n");
6     GNUNET_SCHEDULER_add_now (end_badly, NULL);
7   }
8  This file is part of GNUnet.
9  (C) 2010-2013 Christian Grothoff (and other contributing authors)
10
11  GNUnet is free software; you can redistribute it and/or modify
12  it under the terms of the GNU General Public License as published
13  by the Free Software Foundation; either version 3, or (at your
14  option) any later version.
15
16  GNUnet is distributed in the hope that it will be useful, but
17  WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  General Public License for more details.
20
21  You should have received a copy of the GNU General Public License
22  along with GNUnet; see the file COPYING.  If not, write to the
23  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  Boston, MA 02111-1307, USA.
25  */
26 /**
27  * @file ats/test_ats_solver_add_address.c
28  * @brief solver test:  add 2 addresses, request address, delete, expect alternative
29  * @author Christian Grothoff
30  * @author Matthias Wachs
31  */
32 #include "platform.h"
33 #include "gnunet_util_lib.h"
34 #include "gnunet_testbed_service.h"
35 #include "gnunet_ats_service.h"
36 #include "test_ats_api_common.h"
37
38 /**
39  * Timeout task
40  */
41 static GNUNET_SCHEDULER_TaskIdentifier die_task;
42
43 /**
44  * Statistics handle
45  */
46 struct GNUNET_STATISTICS_Handle *stats;
47
48 /**
49  * Scheduling handle
50  */
51 static struct GNUNET_ATS_SchedulingHandle *sched_ats;
52
53 /**
54  * Return value
55  */
56 static int ret;
57
58 /**
59  * Test address
60  */
61 static struct Test_Address test_addr;
62
63 /**
64  * Alternative test address
65  */
66 static struct Test_Address alt_test_addr;
67
68 /**
69  * Test peer
70  */
71 static struct PeerContext p;
72
73 /**
74  * HELLO address
75  */
76 static struct GNUNET_HELLO_Address test_hello_address;
77
78 /**
79  * HELLO address
80  */
81 static struct GNUNET_HELLO_Address alt_test_hello_address;
82
83 /**
84  * Session
85  */
86 static void *test_session;
87
88 /**
89  * Test ats info
90  */
91 static struct GNUNET_ATS_Information test_ats_info[2];
92
93 /**
94  * Test ats count
95  */
96 static uint32_t test_ats_count;
97
98 /**
99  * Test state
100  */
101 int addresses_added = GNUNET_NO;
102
103 int first_address_suggested = GNUNET_NO;
104
105 int first_address_deleted = GNUNET_NO;
106
107 int second_address_deleted = GNUNET_NO;
108
109 int second_address_suggested = GNUNET_YES;
110
111 static struct GNUNET_HELLO_Address *first_suggestion = NULL;
112
113 static struct GNUNET_HELLO_Address *second_suggestion = NULL;
114
115
116 static int
117 stat_cb(void *cls, const char *subsystem, const char *name, uint64_t value,
118         int is_persistent);
119
120 static void
121 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
122 {
123   if (die_task != GNUNET_SCHEDULER_NO_TASK)
124   {
125     GNUNET_SCHEDULER_cancel (die_task);
126     die_task = GNUNET_SCHEDULER_NO_TASK;
127   }
128
129   if (NULL != sched_ats)
130   {
131     GNUNET_ATS_scheduling_done (sched_ats);
132     sched_ats = NULL;
133   }
134
135   GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
136   if (NULL != stats)
137   {
138     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
139     stats = NULL;
140   }
141
142   free_test_address (&test_addr);
143   GNUNET_free_non_null (first_suggestion);
144   GNUNET_free_non_null (second_suggestion);
145   ret = 0;
146 }
147
148
149 static void
150 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
151 {
152
153   die_task = GNUNET_SCHEDULER_NO_TASK;
154   end ( NULL, NULL);
155   ret = GNUNET_SYSERR;
156 }
157
158 static void
159 end_badly_now ()
160 {
161   if (GNUNET_SCHEDULER_NO_TASK != die_task)
162   {
163     GNUNET_SCHEDULER_cancel (die_task);
164     die_task = GNUNET_SCHEDULER_NO_TASK;
165   }
166   GNUNET_SCHEDULER_add_now (&end_badly, NULL);
167 }
168
169 static void
170 address_suggest_cb (void *cls,
171                     const struct GNUNET_PeerIdentity *peer,
172                     const struct GNUNET_HELLO_Address *address,
173                     struct Session *session,
174                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
175                     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
176                     const struct GNUNET_ATS_Information *atsi,
177                     uint32_t ats_count)
178 {
179   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received a sugggestion for peer `%s' : `%s'\n",
180     GNUNET_i2s (&address->peer), (char *) address->address);
181
182   if (GNUNET_NO == first_address_suggested)
183   {
184     if  (NULL == first_suggestion)
185     {
186       if ((NULL == address) || (NULL != session))
187       {
188         GNUNET_break (0);
189         end_badly_now ();
190         return;
191       }
192       if ((ntohl(bandwidth_in.value__) == 0) ||
193           (ntohl(bandwidth_out.value__) == 0))
194       {
195         GNUNET_break (0);
196         end_badly_now ();
197         return;
198       }
199
200       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received 1st sugggestion for peer `%s' : `%s'\n",
201         GNUNET_i2s (&address->peer), (char *) address->address);
202
203       first_suggestion = GNUNET_HELLO_address_copy (address);
204       first_address_suggested = GNUNET_YES;
205
206
207       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Deleting 1st address for peer `%s' : `%s'\n",
208         GNUNET_i2s (&address->peer), (char *) address->address);
209       GNUNET_ATS_address_destroyed (sched_ats, address, session);
210       first_address_deleted = GNUNET_YES;
211
212       return;
213     }
214   }
215   if (GNUNET_YES == first_address_deleted)
216   {
217     if (NULL == second_suggestion)
218     {
219       if ((NULL == address) || (NULL != session))
220       {
221         GNUNET_break (0);
222         end_badly_now ();
223         return;
224       }
225
226       if (0 == memcmp (address->address, first_suggestion->address,
227           (first_suggestion->address_length < address->address_length) ? first_suggestion->address_length : address->address_length))
228       {
229         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Deleted 1st address for peer `%s' was suggested after deletion: `%s' `%s'\n",
230           GNUNET_i2s (&address->peer), (char *) address->address, first_suggestion->address);
231         GNUNET_break (0);
232         end_badly_now ();
233         return;
234       }
235
236       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received 2nd sugggestion for peer `%s' : `%s'\n",
237         GNUNET_i2s (&address->peer), (char *) address->address);
238       second_suggestion = GNUNET_HELLO_address_copy (address);
239       second_address_suggested = GNUNET_YES;
240
241       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Deleting 2nd address for peer `%s' : `%s'\n",
242         GNUNET_i2s (&address->peer), (char *) address->address);
243       GNUNET_ATS_address_destroyed (sched_ats, address, session);
244       second_address_deleted = GNUNET_YES;
245       return;
246     }
247
248   }
249   if (GNUNET_YES == second_address_deleted)
250   {
251     /* Expecting disconnect */
252     if ((ntohl(bandwidth_in.value__) == 0) &&
253         (ntohl(bandwidth_out.value__) == 0))
254     {
255       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS tells me to disconnect\n");
256       GNUNET_SCHEDULER_add_now (&end, NULL);
257       return;
258     }
259     else
260     {
261       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Expected disconnect but received address `%s' with bandwidth \n",
262           (char *) address->address);
263     }
264   }
265   return;
266 }
267
268
269 static int
270 stat_cb(void *cls, const char *subsystem,
271         const char *name, uint64_t value,
272         int is_persistent)
273 {
274   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
275       subsystem,name, value);
276   if ((GNUNET_NO == addresses_added) && (value == 2))
277   {
278     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "All addresses added, requesting....\n");
279     /* We have 2 addresses, so we can request */
280     addresses_added = GNUNET_YES;
281     GNUNET_ATS_suggest_address (sched_ats, &p.id, NULL, NULL);
282   }
283   return GNUNET_OK;
284 }
285
286 static void
287 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *mycfg,
288     struct GNUNET_TESTING_Peer *peer)
289 {
290   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
291   stats = GNUNET_STATISTICS_create ("ats", mycfg);
292   GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
293
294
295   /* Connect to ATS scheduling */
296   sched_ats = GNUNET_ATS_scheduling_init (mycfg, &address_suggest_cb, NULL);
297   if (sched_ats == NULL)
298   {
299     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
300     end_badly_now ();
301     return;
302   }
303
304   /* Set up peer */
305   memset (&p.id, '1', sizeof (p.id));
306   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
307               GNUNET_i2s_full(&p.id));
308
309   /* Prepare ATS Information */
310   test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
311   test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
312   test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
313   test_ats_info[1].value = htonl(1);
314   test_ats_count = 2;
315
316   /* Adding address without session */
317   test_session = NULL;
318   create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
319   test_hello_address.peer = p.id;
320   test_hello_address.transport_name = test_addr.plugin;
321   test_hello_address.address = test_addr.addr;
322   test_hello_address.address_length = test_addr.addr_len;
323
324   /* Adding alternative address without session */
325   test_session = NULL;
326   create_test_address (&alt_test_addr, "test", test_session, "alt_test", strlen ("alt_test") + 1);
327   alt_test_hello_address.peer = p.id;
328   alt_test_hello_address.transport_name = alt_test_addr.plugin;
329   alt_test_hello_address.address = alt_test_addr.addr;
330   alt_test_hello_address.address_length = alt_test_addr.addr_len;
331
332
333   /* Adding address */
334   GNUNET_ATS_address_add (sched_ats, &test_hello_address, NULL, test_ats_info, test_ats_count);
335   /* Adding alternative address */
336   GNUNET_ATS_address_add (sched_ats, &alt_test_hello_address, NULL, test_ats_info, test_ats_count);
337 }
338
339
340 int
341 main (int argc, char *argv[])
342 {
343   char *sep;
344   char *src_filename = GNUNET_strdup (__FILE__);
345   char *test_filename = GNUNET_strdup (argv[0]);
346   char *config_file;
347   char *solver;
348
349   ret = 0;
350
351   if (NULL == (sep  = (strstr (src_filename,".c"))))
352   {
353     GNUNET_break (0);
354     return -1;
355   }
356   sep[0] = '\0';
357
358   if (NULL != (sep = strstr (test_filename, ".exe")))
359     sep[0] = '\0';
360
361   if (NULL == (solver = strstr (test_filename, src_filename)))
362   {
363     GNUNET_break (0);
364     return -1;
365   }
366   solver += strlen (src_filename) +1;
367
368   if (0 == strcmp(solver, "proportional"))
369   {
370     config_file = "test_ats_solver_proportional.conf";
371   }
372   else if (0 == strcmp(solver, "mlp"))
373   {
374     config_file = "test_ats_solver_mlp.conf";
375   }
376   else if ((0 == strcmp(solver, "ril")))
377   {
378     config_file = "test_ats_solver_ril.conf";
379   }
380   else
381   {
382     GNUNET_break (0);
383     GNUNET_free (src_filename);
384     GNUNET_free (test_filename);
385     return 1;
386   }
387
388   GNUNET_free (src_filename);
389   GNUNET_free (test_filename);
390
391   if (0 != GNUNET_TESTING_peer_run ("test-ats-solver",
392       config_file, &run, NULL ))
393     return GNUNET_SYSERR;
394
395   return ret;
396 }
397
398 /* end of file test_ats_solver_add_address.c */