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