fix
[oweals/gnunet.git] / src / transport / test_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 transport/test_quota_compliance.c
22  * @brief base test case for transport implementations
23  *
24  * This test case tests quota compliance both on core and transport level
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_hello_lib.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_server_lib.h"
34 #include "gnunet_transport_service.h"
35 #include "transport.h"
36
37 #define VERBOSE GNUNET_NO
38
39 #define VERBOSE_ARM GNUNET_NO
40
41 #define START_ARM GNUNET_YES
42 #define DEBUG_MEASUREMENT GNUNET_NO
43 #define DEBUG_CONNECTIONS GNUNET_NO
44
45 #define MEASUREMENT_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 2)
46 #define MEASUREMENT_MSG_SIZE 1024
47 #define MEASUREMENT_MSG_SIZE_BIG 32768
48 #define MEASUREMENT_MAX_QUOTA 1024 * 1024 * 1024
49 #define MEASUREMENT_MIN_QUOTA 1024
50 #define SEND_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
51 #define MEASUREMENT_SOFT_LIMIT 1024
52
53 /**
54  * Testcase timeout
55  */
56 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 200)
57
58
59
60 #define MTYPE 11111
61
62 struct PeerContext
63 {
64   struct GNUNET_CONFIGURATION_Handle *cfg;
65   struct GNUNET_TRANSPORT_Handle *th;
66   struct GNUNET_PeerIdentity id;
67 #if START_ARM
68   struct GNUNET_OS_Process *arm_proc;
69 #endif
70 };
71
72 /**
73  * Handle for a transmission-ready request.
74  */
75 struct GNUNET_TRANSPORT_TransmitHandle
76 {
77
78   /**
79    * Neighbour for this handle, NULL for control-traffic.
80    */
81   struct NeighbourList *neighbour;
82
83   /**
84    * Function to call when notify_size bytes are available
85    * for transmission.
86    */
87   GNUNET_CONNECTION_TransmitReadyNotify notify;
88
89   /**
90    * Closure for notify.
91    */
92   void *notify_cls;
93
94   /**
95    * transmit_ready task Id.  The task is used to introduce the
96    * artificial delay that may be required to maintain the bandwidth
97    * limits.  Later, this will be the ID of the "transmit_timeout"
98    * task which is used to signal a timeout if the transmission could
99    * not be done in a timely fashion.
100    */
101   GNUNET_SCHEDULER_TaskIdentifier notify_delay_task;
102
103   /**
104    * Timeout for this request.
105    */
106   struct GNUNET_TIME_Absolute timeout;
107
108   /**
109    * How many bytes is our notify callback waiting for?
110    */
111   size_t notify_size;
112
113   /**
114    * How important is this message?
115    */
116   unsigned int priority;
117
118 };
119
120 static struct PeerContext p1;
121
122 static struct PeerContext p2;
123
124 static int ok;
125
126 static int connected;
127 static int measurement_running;
128 static int send_running;
129 static int recv_running;
130
131 static unsigned long long total_bytes_sent;
132 static unsigned long long last_msg_sent;
133 static unsigned long long last_msg_recv;
134 static unsigned long long current_quota_p1;
135 static unsigned long long current_quota_p2;
136
137 static int is_tcp;
138 static int is_tcp_nat;
139 static int is_http;
140 static int is_https;
141 static int is_udp;
142 static int is_asymmetric_send_constant;
143 static int is_asymmetric_recv_constant;
144
145 static struct GNUNET_TIME_Absolute start_time;
146
147 static GNUNET_SCHEDULER_TaskIdentifier die_task;
148 static GNUNET_SCHEDULER_TaskIdentifier measurement_task;
149 static GNUNET_SCHEDULER_TaskIdentifier measurement_counter_task;
150
151 struct GNUNET_TRANSPORT_TransmitHandle * transmit_handle;
152
153 #define OKPP do { ok++; } while (0)
154
155
156
157 static void
158 end_send ()
159 {
160
161 }
162
163 static void
164 end ()
165 {
166   GNUNET_SCHEDULER_cancel (die_task);
167   die_task = GNUNET_SCHEDULER_NO_TASK;
168
169   if (measurement_task != GNUNET_SCHEDULER_NO_TASK)
170   {
171             GNUNET_SCHEDULER_cancel (measurement_task);
172             measurement_task = GNUNET_SCHEDULER_NO_TASK;
173   }
174   if (measurement_counter_task != GNUNET_SCHEDULER_NO_TASK)
175   {
176             GNUNET_SCHEDULER_cancel (measurement_counter_task);
177             measurement_counter_task = GNUNET_SCHEDULER_NO_TASK;
178   }
179   GNUNET_SCHEDULER_shutdown ();
180 #if DEBUG_CONNECTIONS
181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from transports!\n");
182 #endif
183   GNUNET_TRANSPORT_disconnect (p1.th);
184   GNUNET_TRANSPORT_disconnect (p2.th);
185 #if DEBUG_CONNECTIONS
186   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
187               "Transports disconnected, returning success!\n");
188 #endif
189   GNUNET_SCHEDULER_shutdown ();
190 }
191
192
193
194 static void
195 stop_arm (struct PeerContext *p)
196 {
197 #if START_ARM
198   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
199     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
200   GNUNET_OS_process_wait (p->arm_proc);
201   GNUNET_OS_process_close (p->arm_proc);
202   p->arm_proc = NULL;
203 #endif
204   GNUNET_CONFIGURATION_destroy (p->cfg);
205 }
206
207
208 static void
209 end_badly (void *cls,
210            const struct GNUNET_SCHEDULER_TaskContext *tc)
211 {
212   if (measurement_task != GNUNET_SCHEDULER_NO_TASK)
213   {
214             GNUNET_SCHEDULER_cancel (measurement_task);
215             measurement_task = GNUNET_SCHEDULER_NO_TASK;
216   }
217   if (measurement_counter_task != GNUNET_SCHEDULER_NO_TASK)
218   {
219             GNUNET_SCHEDULER_cancel (measurement_counter_task);
220             measurement_counter_task = GNUNET_SCHEDULER_NO_TASK;
221   }
222   GNUNET_break (0);
223   if (p1.th != NULL)
224           GNUNET_TRANSPORT_disconnect (p1.th);
225   if (p2.th != NULL)
226           GNUNET_TRANSPORT_disconnect (p2.th);
227   ok = 1;
228 }
229
230 struct TestMessage
231 {
232   struct GNUNET_MessageHeader header;
233   uint32_t num;
234 };
235
236 static unsigned int
237 get_size (void)
238 {
239   return MEASUREMENT_MSG_SIZE + sizeof (struct TestMessage);
240 }
241
242 static void
243 notify_receive_new (void *cls,
244                 const struct GNUNET_PeerIdentity *peer,
245                 const struct GNUNET_MessageHeader *message,
246                 struct GNUNET_TIME_Relative latency,
247                 uint32_t distance)
248 {
249   unsigned int s;
250   const struct TestMessage *hdr;
251
252   hdr = (const struct TestMessage*) message;
253   s = get_size ();
254   if (measurement_running == GNUNET_NO)
255           return;
256   if (MTYPE != ntohs (message->type))
257     return;
258
259 #if DEBUG_MEASUREMENT
260   if (ntohl(hdr->num) % 5000 == 0)
261     {
262       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
263                   "Got message %u of size %u\n",
264                   ntohl (hdr->num),
265                   ntohs (message->size));
266     }
267 #endif
268   /*
269   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
270               "Got message %u\n",
271               ntohl (hdr->num));*/
272   last_msg_recv = ntohl (hdr->num);
273 }
274
275 static size_t
276 notify_ready (void *cls, size_t size, void *buf)
277 {
278   char *cbuf = buf;
279   struct TestMessage hdr;
280   unsigned int s;
281   unsigned int ret;
282
283   transmit_handle = NULL;
284
285   if (measurement_task == GNUNET_SCHEDULER_NO_TASK)
286           return 0;
287
288   if (buf == NULL)
289     {
290       ok = 42;
291       return 0;
292     }
293
294   if (measurement_running != GNUNET_YES)
295   {
296           send_running = GNUNET_NO;
297           end_send();
298           return 0;
299   }
300
301   send_running = GNUNET_YES;
302   ret = 0;
303   s = get_size ();
304   GNUNET_assert (size >= s);
305   GNUNET_assert (buf != NULL);
306   last_msg_sent++;
307   cbuf = buf;
308   do
309     {
310       hdr.header.size = htons (s);
311       hdr.header.type = htons (MTYPE);
312       hdr.num = htonl (last_msg_sent);
313       memcpy (&cbuf[ret], &hdr, sizeof (struct TestMessage));
314       ret += sizeof (struct TestMessage);
315       memset (&cbuf[ret], last_msg_sent, s - sizeof (struct TestMessage));
316       ret += s - sizeof (struct TestMessage);
317 #if DEBUG_MEASUREMENT
318       if (n % 5000 == 0)
319        {
320           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
321                       "Sending message %u\n",n);
322        }
323 #endif
324
325     /*      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
326                       "Sending message %u\n",last_msg_sent);*/
327
328       s = get_size ();
329       if (0 == GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 16))
330         break; /* sometimes pack buffer full, sometimes not */
331     }
332   while (size - ret >= s);
333   transmit_handle = GNUNET_TRANSPORT_notify_transmit_ready (p2.th,
334                                             &p1.id,
335                                             s, 0, SEND_TIMEOUT,
336                                             &notify_ready,
337                                             NULL);
338   total_bytes_sent += s;
339   return ret;
340 }
341
342 static void measure (unsigned long long quota_p1, unsigned long long quota_p2 );
343
344 static void measurement_counter
345  (void *cls,
346            const struct GNUNET_SCHEDULER_TaskContext *tc)
347 {
348   measurement_counter_task = GNUNET_SCHEDULER_NO_TASK;
349
350   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
351         return;
352
353 #if VERBOSE
354   fprintf(stderr,".");
355 #endif
356   measurement_counter_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
357                                                            &measurement_counter,
358                                                            NULL);
359 }
360
361 static void
362 measurement_end (void *cls,
363            const struct GNUNET_SCHEDULER_TaskContext *tc)
364 {
365   static int strike_counter;
366   unsigned long long  quota_allowed = 0;
367   int delta = 0;
368
369   measurement_task  = GNUNET_SCHEDULER_NO_TASK;
370   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
371         return;
372
373   measurement_running = GNUNET_NO;
374   struct GNUNET_TIME_Relative duration = GNUNET_TIME_absolute_get_difference(start_time, GNUNET_TIME_absolute_get());
375
376
377   if (measurement_counter_task != GNUNET_SCHEDULER_NO_TASK)
378   {
379     GNUNET_SCHEDULER_cancel (measurement_counter_task);
380     measurement_counter_task = GNUNET_SCHEDULER_NO_TASK;
381   }
382 #if VERBOSE
383   fprintf(stderr,"\n");
384 #endif
385
386   if (transmit_handle != NULL)
387   {
388           GNUNET_TRANSPORT_notify_transmit_ready_cancel(transmit_handle);
389           transmit_handle = NULL;
390   }
391
392   if (current_quota_p1 < current_quota_p2)
393           quota_allowed = current_quota_p1;
394   else
395           quota_allowed = current_quota_p2;
396
397
398   if (MEASUREMENT_SOFT_LIMIT > (quota_allowed/10))
399           delta = MEASUREMENT_SOFT_LIMIT;
400   else
401           delta = (quota_allowed/10);
402
403   if ((total_bytes_sent/(duration.rel_value / 1000)) > (quota_allowed + delta))
404   {
405           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
406                           "\nQuota compliance failed: \n"\
407                           "Hard quota limit allowed: %10llu kB/s (%llu B/s)\n"\
408                           "Soft quota limit allowed: %10llu kB/s (%llu B/s)\n"\
409                           "Throughput              : %10llu kB/s (%llu B/s)\n", 
410                           (quota_allowed / (1024)), quota_allowed, 
411                           ((quota_allowed+delta) / (1024)),  quota_allowed+delta, 
412                           (total_bytes_sent/(duration.rel_value / 1000)/1024), 
413                           total_bytes_sent/(duration.rel_value / 1000));
414           ok = 1;
415           end();
416           return;
417   }
418   else
419   {
420           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
421                           "\nQuota compliance ok: \n"\
422                           "Quota allowed: %10llu kB/s\n"\
423                           "Throughput   : %10llu kB/s\n", (quota_allowed / (1024)) , (total_bytes_sent/(duration.rel_value / 1000)/1024));
424           ok = 0;
425   }
426
427   if ((quota_allowed) > (2 *(total_bytes_sent/(duration.rel_value / 1000))))
428   {
429           strike_counter++;
430           if (strike_counter == 2)
431           {
432                   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
433                                   "Maximum transmission rate reached, stopping test\n");
434                   end();
435                   return;
436           }
437   }
438   else
439   {
440           strike_counter = 0;
441   }
442
443   if (quota_allowed == MEASUREMENT_MAX_QUOTA)
444   {
445           end();
446           return;
447   }
448
449   if (is_asymmetric_send_constant == GNUNET_YES)
450   {
451    if ((quota_allowed * 2) < MEASUREMENT_MAX_QUOTA)
452           measure (current_quota_p1 * 2, MEASUREMENT_MAX_QUOTA);
453    else
454            measure (MEASUREMENT_MAX_QUOTA, MEASUREMENT_MAX_QUOTA);
455   }
456   else if (is_asymmetric_recv_constant == GNUNET_YES)
457   {
458    if ((quota_allowed * 2) < MEASUREMENT_MAX_QUOTA)
459           measure (MEASUREMENT_MAX_QUOTA, current_quota_p2 * 2);
460    else
461            measure (MEASUREMENT_MAX_QUOTA, MEASUREMENT_MAX_QUOTA);
462   }
463   else
464   {
465    if ((quota_allowed * 2) < MEASUREMENT_MAX_QUOTA)
466           measure ((current_quota_p1) * 2, (current_quota_p2) * 2);
467    else
468            measure (MEASUREMENT_MAX_QUOTA, MEASUREMENT_MAX_QUOTA);
469   }
470 }
471
472 static void measure (unsigned long long quota_p1, unsigned long long quota_p2 )
473 {
474           current_quota_p1 = quota_p1;
475           current_quota_p2 = quota_p2;
476 #if VERBOSE
477   if ((is_asymmetric_send_constant == GNUNET_YES) || (is_asymmetric_recv_constant == GNUNET_YES))
478           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
479               "Starting transport level measurement for %u seconds, receiving peer quota %llu kB/s, sending peer quota %llu kB/s\n", MEASUREMENT_INTERVALL.rel_value / 1000 , current_quota_p1 / 1024, current_quota_p2 / 1024);
480   else
481           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
482               "Starting transport level measurement for %u seconds, symmetric quota %llu kB/s\n", MEASUREMENT_INTERVALL.rel_value / 1000 , current_quota_p2 / 1024);
483
484 #endif
485                 GNUNET_TRANSPORT_set_quota (p1.th,
486                           &p2.id,
487                           GNUNET_BANDWIDTH_value_init (current_quota_p1 ),
488                           GNUNET_BANDWIDTH_value_init (current_quota_p1 ),
489                           GNUNET_TIME_UNIT_FOREVER_REL,
490                           NULL, NULL);
491                 GNUNET_TRANSPORT_set_quota (p2.th,
492                           &p1.id,
493                           GNUNET_BANDWIDTH_value_init (current_quota_p2),
494                           GNUNET_BANDWIDTH_value_init (current_quota_p2),
495                           GNUNET_TIME_UNIT_FOREVER_REL,
496                           NULL, NULL);
497
498                 GNUNET_SCHEDULER_cancel (die_task);
499                 die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
500                                                    &end_badly,
501                                                    NULL);
502                 if (measurement_counter_task != GNUNET_SCHEDULER_NO_TASK)
503                   GNUNET_SCHEDULER_cancel (measurement_counter_task);
504                 measurement_counter_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
505                                                                    &measurement_counter,
506                                                                    NULL);
507                 measurement_task = GNUNET_SCHEDULER_add_delayed (MEASUREMENT_INTERVALL,
508                                                    &measurement_end,
509                                                    NULL);
510                 total_bytes_sent = 0;
511                 last_msg_sent = 0;
512                 last_msg_recv = 0;
513                 measurement_running = GNUNET_YES;
514                 start_time = GNUNET_TIME_absolute_get ();
515
516                 if (transmit_handle != NULL)
517                           GNUNET_TRANSPORT_notify_transmit_ready_cancel(transmit_handle);
518                 transmit_handle = GNUNET_TRANSPORT_notify_transmit_ready (p2.th,
519                                                                                           &p1.id,
520                                                                                           get_size (), 0, SEND_TIMEOUT,
521                                                                                           &notify_ready,
522                                                                                           NULL);
523 }
524
525 static void
526 notify_connect (void *cls,
527                 const struct GNUNET_PeerIdentity *peer,
528                 struct GNUNET_TIME_Relative latency,
529                 uint32_t distance)
530 {
531   if (cls == &p1)
532     {
533 #if DEBUG_CONNECTIONS
534   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
535               "Peer 1 `%4s' connected to us (%p)!\n", GNUNET_i2s (peer), cls);
536 #endif
537           connected++;
538     }
539   else
540     {
541 #if DEBUG_CONNECTIONS
542   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
543               "Peer 2 `%4s' connected to us (%p)!\n", GNUNET_i2s (peer), cls);
544 #endif
545       connected++;
546     }
547   if (connected == 2)
548     {
549            if (is_asymmetric_send_constant == GNUNET_YES)
550                    measure (MEASUREMENT_MIN_QUOTA, MEASUREMENT_MAX_QUOTA);
551            else if (is_asymmetric_recv_constant == GNUNET_YES)
552                    measure (MEASUREMENT_MAX_QUOTA, MEASUREMENT_MIN_QUOTA);
553            else
554                    measure (MEASUREMENT_MIN_QUOTA, MEASUREMENT_MIN_QUOTA);
555     }
556 }
557
558
559 static void
560 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
561 {
562 #if DEBUG_CONNECTIONS
563   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
564               "Peer `%4s' disconnected (%p)!\n",
565               GNUNET_i2s (peer), cls);
566 #endif
567 }
568
569
570 static void
571 setup_peer (struct PeerContext *p, const char *cfgname)
572 {
573   p->cfg = GNUNET_CONFIGURATION_create ();
574 #if START_ARM
575   p->arm_proc = GNUNET_OS_start_process (NULL, NULL,
576                                         "gnunet-service-arm",
577                                         "gnunet-service-arm",
578 #if VERBOSE_ARM
579                                         "-L", "DEBUG",
580 #endif
581                                         "-c", cfgname, NULL);
582 #endif
583
584   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
585   p->th = GNUNET_TRANSPORT_connect (p->cfg, NULL,
586                                     p,
587                                     &notify_receive_new,
588                                     &notify_connect,
589                                     &notify_disconnect);
590   GNUNET_assert (p->th != NULL);
591 }
592
593
594 static void
595 exchange_hello_last (void *cls,
596                      const struct GNUNET_MessageHeader *message)
597 {
598   struct PeerContext *me = cls;
599
600   GNUNET_TRANSPORT_get_hello_cancel (p2.th, &exchange_hello_last, me);
601
602   GNUNET_assert (ok >= 3);
603   OKPP;
604   GNUNET_assert (message != NULL);
605   GNUNET_assert (GNUNET_OK ==
606                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
607                                       message, &me->id));
608   /* both HELLOs exchanged, get ready to test transmission! */
609 }
610
611
612 static void
613 exchange_hello (void *cls,
614                 const struct GNUNET_MessageHeader *message)
615 {
616   struct PeerContext *me = cls;
617
618   GNUNET_TRANSPORT_get_hello_cancel (p1.th, &exchange_hello, me);
619   GNUNET_assert (ok >= 2);
620   OKPP;
621   GNUNET_assert (message != NULL);
622   GNUNET_assert (GNUNET_OK ==
623                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
624                                       message, &me->id));
625   GNUNET_TRANSPORT_offer_hello (p2.th, message);
626   GNUNET_TRANSPORT_get_hello (p2.th, &exchange_hello_last, &p2);
627 }
628
629 static void
630 run (void *cls,
631      char *const *args,
632      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
633 {
634   GNUNET_assert (ok == 1);
635   OKPP;
636
637   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
638                                            &end_badly,
639                                            NULL);
640   measurement_running = GNUNET_NO;
641   send_running = GNUNET_NO;
642   recv_running = GNUNET_NO;
643
644   if (is_tcp)
645     {
646           if (is_asymmetric_recv_constant == GNUNET_YES)
647                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (receiver quota constant) for TCP transport plugin\n");
648           else if (is_asymmetric_send_constant == GNUNET_YES)
649                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (sender quota constant) for TCP transport plugin\n");
650           else
651                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing symmetric quota compliance for TCP transport plugin\n");
652       setup_peer (&p1, "test_quota_compliance_tcp_peer1.conf");
653       setup_peer (&p2, "test_quota_compliance_tcp_peer2.conf");
654     }
655   else if (is_http)
656     {
657           if (is_asymmetric_recv_constant == GNUNET_YES)
658                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (receiver quota constant) for HTTP transport plugin\n");
659           else if (is_asymmetric_send_constant == GNUNET_YES)
660                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (sender quota constant) for HTTP transport plugin\n");
661           else
662                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing symmetric quota compliance for HTTP transport plugin\n");
663       setup_peer (&p1, "test_quota_compliance_http_peer1.conf");
664       setup_peer (&p2, "test_quota_compliance_http_peer2.conf");
665     }
666   else if (is_https)
667     {
668           if (is_asymmetric_recv_constant == GNUNET_YES)
669                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (receiver quota constant) for HTTPS transport plugin\n");
670           else if (is_asymmetric_send_constant == GNUNET_YES)
671                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (sender quota constant) for HTTPS transport plugin\n");
672           else
673                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing symmetric quota compliance for HTTPS transport plugin\n");
674       setup_peer (&p1, "test_quota_compliance_https_peer1.conf");
675       setup_peer (&p2, "test_quota_compliance_https_peer2.conf");
676     }
677   else if (is_udp)
678     {
679           if (is_asymmetric_recv_constant == GNUNET_YES)
680                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (receiver quota constant) for UDP transport plugin\n");
681           else if (is_asymmetric_send_constant == GNUNET_YES)
682                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (sender quota constant) for UDP transport plugin\n");
683           else
684                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing symmetric quota compliance for UDP transport plugin\n");
685       setup_peer (&p1, "test_quota_compliance_udp_peer1.conf");
686       setup_peer (&p2, "test_quota_compliance_udp_peer2.conf");
687     }
688   else if (is_tcp_nat)
689     {
690           if (is_asymmetric_recv_constant == GNUNET_YES)
691                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (receiver quota constant) for TCP NAT transport plugin\n");
692           else if (is_asymmetric_send_constant == GNUNET_YES)
693                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing asymmetric quota compliance (sender quota constant) for TCP NAT transport plugin\n");
694           else
695                   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing symmetric quota compliance for TCP NAT transport plugin\n");
696       setup_peer (&p1, "test_quota_compliance_tcp_peer1.conf");
697       setup_peer (&p2, "test_quota_compliance_tcp_peer2.conf");
698     }
699   else
700     GNUNET_assert (0);
701
702   GNUNET_assert(p1.th != NULL);
703   GNUNET_assert(p2.th != NULL);
704   GNUNET_TRANSPORT_get_hello (p1.th, &exchange_hello, &p1);
705 }
706
707 int
708 main (int argc, char *argv[])
709 {
710   int ret = 0;
711 #ifdef MINGW
712   return GNUNET_SYSERR;
713 #endif
714   if (strstr(argv[0], "tcp_nat") != NULL)
715     {
716       is_tcp_nat = GNUNET_YES;
717     }
718   else if (strstr(argv[0], "tcp") != NULL)
719     {
720       is_tcp = GNUNET_YES;
721     }
722   else if (strstr(argv[0], "https") != NULL)
723     {
724       is_https = GNUNET_YES;
725     }
726   else if (strstr(argv[0], "http") != NULL)
727     {
728       is_http = GNUNET_YES;
729     }
730   else if (strstr(argv[0], "udp") != NULL)
731     {
732       is_udp = GNUNET_YES;
733     }
734
735   if (strstr(argv[0], "asymmetric_recv") != NULL)
736   {
737       is_asymmetric_recv_constant = GNUNET_YES;
738   }
739   else
740           is_asymmetric_recv_constant = GNUNET_NO;
741   if (strstr(argv[0], "asymmetric_send") != NULL)
742   {
743       is_asymmetric_send_constant = GNUNET_YES;
744   }
745   else
746           is_asymmetric_send_constant = GNUNET_NO;
747
748   char * logger;
749   if (is_tcp == GNUNET_YES)
750   {
751           if (is_asymmetric_recv_constant == GNUNET_YES)
752                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","tcp","asymmetric_recv_constant");
753           else if (is_asymmetric_send_constant == GNUNET_YES)
754                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","tcp","asymmetric_send_constant");
755           else
756                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","tcp","symmetric");
757   }
758   if (is_udp == GNUNET_YES)
759   {
760           if (is_asymmetric_recv_constant == GNUNET_YES)
761                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","udp","asymmetric_recv_constant");
762           else if (is_asymmetric_send_constant == GNUNET_YES)
763                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","udp","asymmetric_send_constant");
764           else
765                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","udp","symmetric");
766   }
767   if (is_http == GNUNET_YES)
768   {
769           if (is_asymmetric_recv_constant == GNUNET_YES)
770                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","http","asymmetric_recv_constant");
771           else if (is_asymmetric_send_constant == GNUNET_YES)
772                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","http","asymmetric_send_constant");
773           else
774                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","http","symmetric");
775   }
776   if (is_https == GNUNET_YES)
777   {
778           if (is_asymmetric_recv_constant == GNUNET_YES)
779                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","https","asymmetric_recv_constant");
780           else if (is_asymmetric_send_constant == GNUNET_YES)
781                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","https","asymmetric_send_constant");
782           else
783                   GNUNET_asprintf(&logger, "test-quota-compliance-%s-%s","https","symmetric");
784   }
785   fprintf(stderr,  "Running `%s'\n", logger);
786   GNUNET_log_setup ("test-quota-compliance",
787 #if VERBOSE
788                     "DEBUG",
789 #else
790                     "WARNING",
791 #endif
792                     NULL);
793   char *const argv1[] = { "test-quota-compliance",
794     "-c",
795     "test_quota_compliance_data.conf",
796 #if VERBOSE
797     "-L", "DEBUG",
798 #endif
799     NULL
800   };
801   struct GNUNET_GETOPT_CommandLineOption options[] = {
802     GNUNET_GETOPT_OPTION_END
803   };
804   ok = 1;
805   GNUNET_PROGRAM_run ((sizeof (argv1) / sizeof (char *)) - 1,
806                       argv1, logger , "nohelp",
807                       options, &run, &ok);
808   ret = ok;
809   stop_arm (&p1);
810   stop_arm (&p2);
811   GNUNET_free(logger);
812   GNUNET_DISK_directory_remove ("/tmp/test_quota_compliance_peer1");
813   GNUNET_DISK_directory_remove ("/tmp/test_quota_compliance_peer2");
814   return ret;
815 }
816
817 /* end of test_quota_compliance.c */