71b842522920afc5b097f1c6502cb0f76bc35904
[oweals/gnunet.git] / src / core / test_core_quota_compliance.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 core/test_core_quota_compliance.c
22  * @brief testcase for core_api.c focusing quota compliance on core level
23  */
24 #include "platform.h"
25 #include "gnunet_arm_service.h"
26 #include "gnunet_core_service.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_os_lib.h"
29 #include "gnunet_program_lib.h"
30 #include "gnunet_scheduler_lib.h"
31 #include "gnunet_transport_service.h"
32 #include "gnunet_statistics_service.h"
33
34
35 #define SYMMETRIC 0
36 #define ASYMMETRIC_SEND_LIMITED 1
37 #define ASYMMETRIC_RECV_LIMITED 2
38
39 /**
40  * Note that this value must not significantly exceed
41  * 'MAX_PENDING' in 'gnunet-service-transport.c', otherwise
42  * messages may be dropped even for a reliable transport.
43  */
44 #define TOTAL_MSGS (60000 * 10)
45
46 /**
47  * How long until we give up on transmitting the message?
48  */
49 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
50
51 /**
52  * What delay do we request from the core service for transmission?
53  */
54 #define FAST_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 150)
55
56 #define MTYPE 12345
57 #define MESSAGESIZE 1024
58 #define MEASUREMENT_LENGTH GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
59
60 static unsigned long long total_bytes_sent;
61 static unsigned long long total_bytes_recv;
62
63 static struct GNUNET_TIME_Absolute start_time;
64
65 static GNUNET_SCHEDULER_TaskIdentifier err_task;
66
67 static GNUNET_SCHEDULER_TaskIdentifier measure_task;
68
69 static GNUNET_SCHEDULER_TaskIdentifier connect_task;
70
71
72 struct PeerContext
73 {
74   struct GNUNET_CONFIGURATION_Handle *cfg;
75   struct GNUNET_CORE_Handle *ch;
76   struct GNUNET_CORE_TransmitHandle *nth;
77   struct GNUNET_PeerIdentity id;
78   struct GNUNET_TRANSPORT_Handle *th;
79   struct GNUNET_MessageHeader *hello;
80   struct GNUNET_STATISTICS_Handle *stats;
81   struct GNUNET_TRANSPORT_GetHelloHandle *ghh;
82   int connect_status;
83   struct GNUNET_OS_Process *arm_proc;
84 };
85
86 static struct PeerContext p1;
87 static struct PeerContext p2;
88
89 static unsigned long long current_quota_p1_in;
90 static unsigned long long current_quota_p1_out;
91 static unsigned long long current_quota_p2_in;
92 static unsigned long long current_quota_p2_out;
93
94 static int ok;
95 static int test;
96 static int32_t tr_n;
97
98 static int running;
99
100
101 #if VERBOSE
102 #define OKPP do { ok++; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
103 #else
104 #define OKPP do { ok++; } while (0)
105 #endif
106
107 struct TestMessage
108 {
109   struct GNUNET_MessageHeader header;
110   uint32_t num;
111 };
112
113 static void
114 process_hello (void *cls, const struct GNUNET_MessageHeader *message);
115
116 static void
117 terminate_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
118 {
119   struct GNUNET_CORE_Handle *ch;
120
121   err_task = GNUNET_SCHEDULER_NO_TASK;
122   GNUNET_STATISTICS_destroy (p1.stats, GNUNET_NO);
123   GNUNET_STATISTICS_destroy (p2.stats, GNUNET_NO);
124   GNUNET_TRANSPORT_get_hello_cancel (p2.ghh);
125   GNUNET_TRANSPORT_get_hello_cancel (p1.ghh);
126   if (p1.nth != NULL)
127   {
128     GNUNET_CORE_notify_transmit_ready_cancel (p1.nth);
129     p1.nth = NULL;
130   }
131   if (connect_task != GNUNET_SCHEDULER_NO_TASK)
132     GNUNET_SCHEDULER_cancel (connect_task);
133   ch = p1.ch;
134   p1.ch = NULL;
135   GNUNET_CORE_disconnect (ch);
136   ch = p2.ch;
137   p2.ch = NULL;
138   GNUNET_CORE_disconnect (ch);
139   GNUNET_TRANSPORT_disconnect (p1.th);
140   p1.th = NULL;
141   GNUNET_TRANSPORT_disconnect (p2.th);
142   p2.th = NULL;
143   GNUNET_free_non_null (p1.hello);
144   GNUNET_free_non_null (p2.hello);
145 }
146
147
148 static void
149 terminate_task_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
150 {
151   err_task = GNUNET_SCHEDULER_NO_TASK;
152
153   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
154     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Testcase failed!\n");
155   //GNUNET_break (0);
156   if (p1.nth != NULL)
157   {
158     GNUNET_CORE_notify_transmit_ready_cancel (p1.nth);
159     p1.nth = NULL;
160   }
161   if (measure_task != GNUNET_SCHEDULER_NO_TASK)
162     GNUNET_SCHEDULER_cancel (measure_task);
163   if (connect_task != GNUNET_SCHEDULER_NO_TASK)
164     GNUNET_SCHEDULER_cancel (connect_task);
165
166   GNUNET_TRANSPORT_get_hello_cancel (p1.ghh);
167   GNUNET_TRANSPORT_get_hello_cancel (p2.ghh);
168   if (NULL != p1.ch)
169     GNUNET_CORE_disconnect (p1.ch);
170   p1.ch = NULL;
171   if (NULL != p2.ch)
172     GNUNET_CORE_disconnect (p2.ch);
173   p2.ch = NULL;
174   if (NULL != p1.th)
175     GNUNET_TRANSPORT_disconnect (p1.th);
176   p1.th = NULL;
177   if (NULL != p2.th)
178     GNUNET_TRANSPORT_disconnect (p2.th);
179   p2.th = NULL;
180   ok = 42;
181 }
182
183
184 static void
185 try_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
186 {
187   connect_task =
188       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &try_connect,
189                                     NULL);
190   GNUNET_TRANSPORT_try_connect (p1.th, &p2.id, NULL, NULL); /*FIXME TRY_CONNECT change */
191   GNUNET_TRANSPORT_try_connect (p2.th, &p1.id, NULL, NULL); /*FIXME TRY_CONNECT change */
192 }
193
194 /**
195  * Callback function to process statistic values.
196  *
197  * @param cls closure
198  * @param subsystem name of subsystem that created the statistic
199  * @param name the name of the datum
200  * @param value the current value
201  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
202  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
203  */
204 static int
205 print_stat (void *cls, const char *subsystem, const char *name, uint64_t value,
206             int is_persistent)
207 {
208   if (cls == &p1)
209     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer1 %50s = %12llu\n", name,
210                 (unsigned long long) value);
211   if (cls == &p2)
212     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer2 %50s = %12llu\n", name,
213                 (unsigned long long) value);
214   return GNUNET_OK;
215 }
216
217 static void
218 measurement_stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
219 {
220   unsigned long long delta;
221   unsigned long long throughput_out;
222   unsigned long long throughput_in;
223   unsigned long long max_quota_in;
224   unsigned long long max_quota_out;
225   unsigned long long quota_delta;
226   enum GNUNET_ErrorType kind = GNUNET_ERROR_TYPE_DEBUG;
227
228   measure_task = GNUNET_SCHEDULER_NO_TASK;
229   FPRINTF (stdout, "%s",  "\n");
230   running = GNUNET_NO;
231
232   delta = GNUNET_TIME_absolute_get_duration (start_time).rel_value_us;
233
234   throughput_out = total_bytes_sent * 1000000LL / delta;     /* convert to bytes/s */
235   throughput_in = total_bytes_recv * 1000000LL / delta;      /* convert to bytes/s */
236
237   max_quota_in = GNUNET_MIN (current_quota_p1_in, current_quota_p2_in);
238   max_quota_out = GNUNET_MIN (current_quota_p1_out, current_quota_p2_out);
239   if (max_quota_out < max_quota_in)
240     quota_delta = max_quota_in / 3;
241   else
242     quota_delta = max_quota_out / 3;
243
244   if ((throughput_out > (max_quota_out + quota_delta)) ||
245       (throughput_in > (max_quota_in + quota_delta)))
246     ok = 1; /* fail */
247   else
248     ok = 0; /* pass */
249   GNUNET_STATISTICS_get (p1.stats, "core", "# discarded CORE_SEND requests",
250                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p1);
251
252   GNUNET_STATISTICS_get (p1.stats, "core",
253                          "# discarded CORE_SEND request bytes",
254                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p1);
255   GNUNET_STATISTICS_get (p1.stats, "core",
256                          "# discarded lower priority CORE_SEND requests",
257                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, NULL);
258   GNUNET_STATISTICS_get (p1.stats, "core",
259                          "# discarded lower priority CORE_SEND request bytes",
260                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p1);
261   GNUNET_STATISTICS_get (p2.stats, "core", "# discarded CORE_SEND requests",
262                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p2);
263
264   GNUNET_STATISTICS_get (p2.stats, "core",
265                          "# discarded CORE_SEND request bytes",
266                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p2);
267   GNUNET_STATISTICS_get (p2.stats, "core",
268                          "# discarded lower priority CORE_SEND requests",
269                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p2);
270   GNUNET_STATISTICS_get (p2.stats, "core",
271                          "# discarded lower priority CORE_SEND request bytes",
272                          GNUNET_TIME_UNIT_FOREVER_REL, NULL, &print_stat, &p2);
273
274   if (ok != 0)
275     kind = GNUNET_ERROR_TYPE_ERROR;
276   switch (test)
277   {
278   case SYMMETRIC:
279     GNUNET_log (kind, "Core quota compliance test with symmetric quotas: %s\n",
280                 (0 == ok) ? "PASSED" : "FAILED");
281     break;
282   case ASYMMETRIC_SEND_LIMITED:
283     GNUNET_log (kind,
284                 "Core quota compliance test with limited sender quota: %s\n",
285                 (0 == ok) ? "PASSED" : "FAILED");
286     break;
287   case ASYMMETRIC_RECV_LIMITED:
288     GNUNET_log (kind,
289                 "Core quota compliance test with limited receiver quota: %s\n",
290                 (0 == ok) ? "PASSED" : "FAILED");
291     break;
292   };
293   GNUNET_log (kind, "Peer 1 send  rate: %llu b/s (%llu bytes in %llu ms)\n",
294               throughput_out, total_bytes_sent, delta);
295   GNUNET_log (kind, "Peer 1 send quota: %llu b/s\n", current_quota_p1_out);
296   GNUNET_log (kind, "Peer 2 receive  rate: %llu b/s (%llu bytes in %llu ms)\n",
297               throughput_in, total_bytes_recv, delta);
298   GNUNET_log (kind, "Peer 2 receive quota: %llu b/s\n", current_quota_p2_in);
299 /*
300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Max. inbound  quota allowed: %llu b/s\n",max_quota_in );
301   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Max. outbound quota allowed: %llu b/s\n",max_quota_out);
302 */
303   GNUNET_SCHEDULER_cancel (err_task);
304   err_task = GNUNET_SCHEDULER_add_now (&terminate_task, NULL);
305
306 }
307
308 static size_t
309 transmit_ready (void *cls, size_t size, void *buf)
310 {
311   char *cbuf = buf;
312   struct TestMessage hdr;
313   unsigned int ret;
314
315   p1.nth = NULL;
316   GNUNET_assert (size <= GNUNET_CONSTANTS_MAX_ENCRYPTED_MESSAGE_SIZE);
317   if (buf == NULL)
318   {
319     if ((p1.ch != NULL) && (p1.connect_status == 1))
320       GNUNET_break (NULL !=
321                     (p1.nth =
322                      GNUNET_CORE_notify_transmit_ready (p1.ch, GNUNET_NO, 0,
323                                                         FAST_TIMEOUT, &p2.id,
324                                                         MESSAGESIZE,
325                                                         &transmit_ready, &p1)));
326     return 0;
327   }
328   GNUNET_assert (tr_n < TOTAL_MSGS);
329   ret = 0;
330   GNUNET_assert (size >= MESSAGESIZE);
331   GNUNET_assert (buf != NULL);
332   cbuf = buf;
333   do
334   {
335     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
336                 "Sending message %u of size %u at offset %u\n", tr_n,
337                 MESSAGESIZE, ret);
338     hdr.header.size = htons (MESSAGESIZE);
339     hdr.header.type = htons (MTYPE);
340     hdr.num = htonl (tr_n);
341     memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage));
342     ret += sizeof (struct TestMessage);
343     memset (&cbuf[ret], tr_n, MESSAGESIZE - sizeof (struct TestMessage));
344     ret += MESSAGESIZE - sizeof (struct TestMessage);
345     tr_n++;
346     if (0 == GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16))
347       break;                    /* sometimes pack buffer full, sometimes not */
348   }
349   while (size - ret >= MESSAGESIZE);
350   GNUNET_SCHEDULER_cancel (err_task);
351   err_task =
352       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &terminate_task_error, NULL);
353
354   total_bytes_sent += ret;
355   return ret;
356 }
357
358
359
360 static void
361 connect_notify (void *cls, const struct GNUNET_PeerIdentity *peer)
362 {
363   struct PeerContext *pc = cls;
364
365   if (0 == memcmp (&pc->id, peer, sizeof (struct GNUNET_PeerIdentity)))
366     return;                     /* loopback */
367   GNUNET_assert (pc->connect_status == 0);
368   pc->connect_status = 1;
369   if (pc == &p1)
370   {
371     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
372                 "Encrypted connection established to peer `%4s'\n",
373                 GNUNET_i2s (peer));
374     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
375                 "Asking core (1) for transmission to peer `%4s'\n",
376                 GNUNET_i2s (&p2.id));
377     if (err_task != GNUNET_SCHEDULER_NO_TASK)
378       GNUNET_SCHEDULER_cancel (err_task);
379     err_task =
380         GNUNET_SCHEDULER_add_delayed (TIMEOUT, &terminate_task_error, NULL);
381     start_time = GNUNET_TIME_absolute_get ();
382     running = GNUNET_YES;
383     measure_task =
384         GNUNET_SCHEDULER_add_delayed (MEASUREMENT_LENGTH, &measurement_stop,
385                                       NULL);
386
387     GNUNET_break (NULL !=
388                   (p1.nth =
389                    GNUNET_CORE_notify_transmit_ready (p1.ch, GNUNET_NO, 0,
390                                                       TIMEOUT, &p2.id,
391                                                       MESSAGESIZE,
392                                                       &transmit_ready, &p1)));
393   }
394 }
395
396
397 static void
398 disconnect_notify (void *cls, const struct GNUNET_PeerIdentity *peer)
399 {
400   struct PeerContext *pc = cls;
401
402   if (0 == memcmp (&pc->id, peer, sizeof (struct GNUNET_PeerIdentity)))
403     return;                     /* loopback */
404   pc->connect_status = 0;
405   if (GNUNET_SCHEDULER_NO_TASK != measure_task)
406   {
407     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
408                 "Measurement aborted due to disconnect!\n");
409     GNUNET_SCHEDULER_cancel (measure_task);
410     measure_task = GNUNET_SCHEDULER_NO_TASK;
411   }
412   if (pc->nth != NULL)
413   {
414     GNUNET_CORE_notify_transmit_ready_cancel (pc->nth);
415     pc->nth = NULL;
416   }
417   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Encrypted connection to `%4s' cut\n",
418               GNUNET_i2s (peer));
419 }
420
421
422 static int
423 inbound_notify (void *cls, const struct GNUNET_PeerIdentity *other,
424                 const struct GNUNET_MessageHeader *message)
425 {
426   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
427               "Core provides inbound data from `%4s' %llu.\n",
428               GNUNET_i2s (other), ntohs (message->size));
429   total_bytes_recv += ntohs (message->size);
430   return GNUNET_OK;
431 }
432
433
434 static int
435 outbound_notify (void *cls, const struct GNUNET_PeerIdentity *other,
436                  const struct GNUNET_MessageHeader *message)
437 {
438   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
439               "Core notifies about outbound data for `%4s'.\n",
440               GNUNET_i2s (other));
441   return GNUNET_OK;
442 }
443
444
445 static size_t
446 transmit_ready (void *cls, size_t size, void *buf);
447
448 static int
449 process_mtype (void *cls, const struct GNUNET_PeerIdentity *peer,
450                const struct GNUNET_MessageHeader *message)
451 {
452   static int n;
453   const struct TestMessage *hdr;
454
455   hdr = (const struct TestMessage *) message;
456   if (MTYPE != ntohs (message->type))
457     return GNUNET_SYSERR;
458   if (ntohs (message->size) != MESSAGESIZE)
459   {
460     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
461                 "Expected message %u of size %u, got %u bytes of message %u\n",
462                 n, MESSAGESIZE, ntohs (message->size), ntohl (hdr->num));
463     GNUNET_SCHEDULER_cancel (err_task);
464     err_task = GNUNET_SCHEDULER_add_now (&terminate_task_error, NULL);
465     return GNUNET_SYSERR;
466   }
467   if (ntohl (hdr->num) != n)
468   {
469     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
470                 "Expected message %u of size %u, got %u bytes of message %u\n",
471                 n, MESSAGESIZE, ntohs (message->size), ntohl (hdr->num));
472     GNUNET_SCHEDULER_cancel (err_task);
473     err_task = GNUNET_SCHEDULER_add_now (&terminate_task_error, NULL);
474     return GNUNET_SYSERR;
475   }
476   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got message %u of size %u\n",
477               ntohl (hdr->num), ntohs (message->size));
478   n++;
479   if (0 == (n % 10))
480     FPRINTF (stderr, "%s",  ".");
481
482
483   if (running == GNUNET_YES)
484     GNUNET_break (NULL !=
485                   GNUNET_CORE_notify_transmit_ready (p1.ch, GNUNET_NO, 0,
486                                                      FAST_TIMEOUT, &p2.id,
487                                                      MESSAGESIZE,
488                                                      &transmit_ready, &p1));
489   return GNUNET_OK;
490 }
491
492
493 static struct GNUNET_CORE_MessageHandler handlers[] = {
494   {&process_mtype, MTYPE, 0},
495   {NULL, 0, 0}
496 };
497
498
499
500 static void
501 init_notify (void *cls,
502              const struct GNUNET_PeerIdentity *my_identity)
503 {
504   struct PeerContext *p = cls;
505
506   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
507               "Connection to CORE service of `%4s' established\n",
508               GNUNET_i2s (my_identity));
509   GNUNET_assert (NULL != my_identity);
510   p->id = *my_identity;
511   if (cls == &p1)
512   {
513     GNUNET_assert (ok == 2);
514     OKPP;
515     /* connect p2 */
516     p2.ch =
517         GNUNET_CORE_connect (p2.cfg, &p2, &init_notify, &connect_notify,
518                              &disconnect_notify, &inbound_notify, GNUNET_YES,
519                              &outbound_notify, GNUNET_YES, handlers);
520   }
521   else
522   {
523     GNUNET_assert (ok == 3);
524     OKPP;
525     GNUNET_assert (cls == &p2);
526     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
527                 "Asking core (1) to connect to peer `%4s'\n",
528                 GNUNET_i2s (&p2.id));
529     connect_task = GNUNET_SCHEDULER_add_now (&try_connect, NULL);
530   }
531 }
532
533
534 static void
535 process_hello (void *cls, const struct GNUNET_MessageHeader *message)
536 {
537   struct PeerContext *p = cls;
538
539   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
540               "Received (my) `%s' from transport service\n", "HELLO");
541   GNUNET_assert (message != NULL);
542   p->hello = GNUNET_malloc (ntohs (message->size));
543   memcpy (p->hello, message, ntohs (message->size));
544   if ((p == &p1) && (p2.th != NULL))
545     GNUNET_TRANSPORT_offer_hello (p2.th, message, NULL, NULL);
546   if ((p == &p2) && (p1.th != NULL))
547     GNUNET_TRANSPORT_offer_hello (p1.th, message, NULL, NULL);
548
549   if ((p == &p1) && (p2.hello != NULL))
550     GNUNET_TRANSPORT_offer_hello (p1.th, p2.hello, NULL, NULL);
551   if ((p == &p2) && (p1.hello != NULL))
552     GNUNET_TRANSPORT_offer_hello (p2.th, p1.hello, NULL, NULL);
553 }
554
555
556
557 static void
558 setup_peer (struct PeerContext *p, const char *cfgname)
559 {
560   char *binary;
561
562   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-service-arm");
563   p->cfg = GNUNET_CONFIGURATION_create ();
564   p->arm_proc =
565     GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, binary,
566                                "gnunet-service-arm",
567                                "-c", cfgname, NULL);
568   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
569   p->stats = GNUNET_STATISTICS_create ("core", p->cfg);
570   GNUNET_assert (p->stats != NULL);
571   p->th = GNUNET_TRANSPORT_connect (p->cfg, NULL, p, NULL, NULL, NULL);
572   GNUNET_assert (p->th != NULL);
573   p->ghh = GNUNET_TRANSPORT_get_hello (p->th, &process_hello, p);
574   GNUNET_free (binary);
575 }
576
577
578 static void
579 run (void *cls, char *const *args, const char *cfgfile,
580      const struct GNUNET_CONFIGURATION_Handle *cfg)
581 {
582   GNUNET_assert (ok == 1);
583   OKPP;
584   err_task =
585       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &terminate_task_error, NULL);
586   if (test == SYMMETRIC)
587   {
588     setup_peer (&p1, "test_core_quota_peer1.conf");
589     setup_peer (&p2, "test_core_quota_peer2.conf");
590   }
591   else if (test == ASYMMETRIC_SEND_LIMITED)
592   {
593     setup_peer (&p1, "test_core_quota_asymmetric_send_limit_peer1.conf");
594     setup_peer (&p2, "test_core_quota_asymmetric_send_limit_peer2.conf");
595   }
596   else if (test == ASYMMETRIC_RECV_LIMITED)
597   {
598     setup_peer (&p1, "test_core_quota_asymmetric_recv_limited_peer1.conf");
599     setup_peer (&p2, "test_core_quota_asymmetric_recv_limited_peer2.conf");
600   }
601
602   GNUNET_assert (test != -1);
603   GNUNET_assert (GNUNET_SYSERR !=
604                  GNUNET_CONFIGURATION_get_value_size (p1.cfg, "ATS",
605                                                       "WAN_QUOTA_IN",
606                                                       &current_quota_p1_in));
607   GNUNET_assert (GNUNET_SYSERR !=
608                  GNUNET_CONFIGURATION_get_value_size (p2.cfg, "ATS",
609                                                       "WAN_QUOTA_IN",
610                                                       &current_quota_p2_in));
611   GNUNET_assert (GNUNET_SYSERR !=
612                  GNUNET_CONFIGURATION_get_value_size (p1.cfg, "ATS",
613                                                       "WAN_QUOTA_OUT",
614                                                       &current_quota_p1_out));
615   GNUNET_assert (GNUNET_SYSERR !=
616                  GNUNET_CONFIGURATION_get_value_size (p2.cfg, "ATS",
617                                                       "WAN_QUOTA_OUT",
618                                                       &current_quota_p2_out));
619
620   p1.ch =
621       GNUNET_CORE_connect (p1.cfg, &p1, &init_notify, &connect_notify,
622                            &disconnect_notify, &inbound_notify, GNUNET_YES,
623                            &outbound_notify, GNUNET_YES, handlers);
624 }
625
626
627 static void
628 stop_arm (struct PeerContext *p)
629 {
630   if (0 != GNUNET_OS_process_kill (p->arm_proc, GNUNET_TERM_SIG))
631     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
632   if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
633     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
634   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
635               GNUNET_OS_process_get_pid (p->arm_proc));
636   GNUNET_OS_process_destroy (p->arm_proc);
637   p->arm_proc = NULL;
638   GNUNET_CONFIGURATION_destroy (p->cfg);
639 }
640
641
642 static int
643 check ()
644 {
645   char *const argv[] = { "test-core-quota-compliance",
646     "-c",
647     "test_core_api_data.conf",
648     NULL
649   };
650   struct GNUNET_GETOPT_CommandLineOption options[] = {
651     GNUNET_GETOPT_OPTION_END
652   };
653   ok = 1;
654   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
655                       "test-core-quota-compliance", "nohelp", options, &run,
656                       &ok);
657   stop_arm (&p1);
658   stop_arm (&p2);
659   return ok;
660 }
661
662
663 int
664 main (int argc, char *argv[])
665 {
666   int ret;
667
668   test = -1;
669   if (strstr (argv[0], "_symmetric") != NULL)
670   {
671     test = SYMMETRIC;
672   }
673   else if (strstr (argv[0], "_asymmetric_send") != NULL)
674   {
675     test = ASYMMETRIC_SEND_LIMITED;
676   }
677   else if (strstr (argv[0], "_asymmetric_recv") != NULL)
678   {
679     test = ASYMMETRIC_RECV_LIMITED;
680   }
681   GNUNET_assert (test != -1);
682   if (test == SYMMETRIC)
683   {
684     GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-quota-sym-peer-1/");
685     GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-quota-sym-peer-2/");
686   }
687   else if (test == ASYMMETRIC_SEND_LIMITED)
688   {
689     GNUNET_DISK_directory_remove
690         ("/tmp/test-gnunet-core-quota-asym-send-lim-peer-1/");
691     GNUNET_DISK_directory_remove
692         ("/tmp/test-gnunet-core-quota-asym-send-lim-peer-2/");
693   }
694   else if (test == ASYMMETRIC_RECV_LIMITED)
695   {
696     GNUNET_DISK_directory_remove
697         ("/tmp/test-gnunet-core-quota-asym-recv-lim-peer-1/");
698     GNUNET_DISK_directory_remove
699         ("/tmp/test-gnunet-core-quota-asym-recv-lim-peer-2/");
700   }
701
702   GNUNET_log_setup ("test-core-quota-compliance",
703                     "WARNING",
704                     NULL);
705   ret = check ();
706   if (test == SYMMETRIC)
707   {
708     GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-quota-sym-peer-1/");
709     GNUNET_DISK_directory_remove ("/tmp/test-gnunet-core-quota-sym-peer-2/");
710   }
711   else if (test == ASYMMETRIC_SEND_LIMITED)
712   {
713     GNUNET_DISK_directory_remove
714         ("/tmp/test-gnunet-core-quota-asym-send-lim-peer-1/");
715     GNUNET_DISK_directory_remove
716         ("/tmp/test-gnunet-core-quota-asym-send-lim-peer-2/");
717   }
718   else if (test == ASYMMETRIC_RECV_LIMITED)
719   {
720     GNUNET_DISK_directory_remove
721         ("/tmp/test-gnunet-core-quota-asym-recv-lim-peer-1/");
722     GNUNET_DISK_directory_remove
723         ("/tmp/test-gnunet-core-quota-asym-recv-lim-peer-2/");
724   }
725   return ret;
726 }
727
728 /* end of test_core_quota_compliance.c */