aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/connection_watchdog.c
blob: bcf9d03796d6c2a6262ffafbe40e38faef2f0137 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
/*
     This file is part of GNUnet.
     (C) 2009, 2010 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/
/**
 * @file integration-tests/connection_watchdog.c
 * @brief tool to monitor core and transport connections for consistency
 * @author Matthias Wachs
 */
#include "platform.h"
#include "gnunet_common.h"
#include "gnunet_constants.h"
#include "gnunet_arm_service.h"
#include "gnunet_core_service.h"
#include "gnunet_getopt_lib.h"
#include "gnunet_os_lib.h"
#include "gnunet_program_lib.h"
#include "gnunet_scheduler_lib.h"
#include "gnunet_transport_service.h"
#include "gnunet_statistics_service.h"


#define CHECK_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
#define STATS_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
#define REPEATED_STATS_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
#define STATS_VALUES 4

/**
 * Final status code.
 */
static int ret;
static int ping;

static int have_tcp;
static int have_udp;
static int have_http;
static int have_https;
static int have_unix;

static struct GNUNET_TRANSPORT_Handle *th;
static struct GNUNET_CORE_Handle *ch;
static struct GNUNET_PeerIdentity my_peer_id;
static const struct GNUNET_CONFIGURATION_Handle *mycfg;
static struct GNUNET_STATISTICS_Handle *stats;


static unsigned int transport_connections;
static unsigned int core_connections;

static GNUNET_SCHEDULER_TaskIdentifier check_task;
static GNUNET_SCHEDULER_TaskIdentifier statistics_task;

static uint64_t statistics_transport_connections;
static uint64_t statistics_transport_tcp_connections;
static uint64_t statistics_core_neighbour_entries;
static uint64_t statistics_core_entries_session_map;

int stat_check_running;

static struct GNUNET_CONTAINER_MultiHashMap *peers;

struct PeerContainer
{
  struct GNUNET_PeerIdentity id;
  int transport_connected;
  int core_connected;
  struct GNUNET_TRANSPORT_TransmitHandle *th_ping;
  struct GNUNET_CORE_TransmitHandle *ch_ping;

  struct GNUNET_TRANSPORT_TransmitHandle *th_pong;
  struct GNUNET_CORE_TransmitHandle *ch_pong;
};


enum protocol
{
  tcp,
  udp,
  unixdomain
};

struct TransportPlugin
{
  /**
   * This is a doubly-linked list.
   */
  struct TransportPlugin *next;

  /**
   * This is a doubly-linked list.
   */
  struct TransportPlugin *prev;

  /**
   * Short name for the plugin (i.e. "tcp").
   */
  char *short_name;

  int port;

  int protocol;
};

struct TransportPlugin *phead;
struct TransportPlugin *ptail;

static int 
map_check_it (void *cls,
	      const GNUNET_HashCode * key,
	      void *value)
{
  int *fail = cls;
  struct PeerContainer *pc = value;
  if (pc->core_connected != pc->transport_connected)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
     "Inconsistent peer `%s': TRANSPORT %s <-> CORE %s\n",
     GNUNET_i2s (&pc->id),
     (GNUNET_YES == pc->transport_connected) ? "YES" : "NO",
     (GNUNET_YES == pc->core_connected) ? "YES" : "NO");
    (*fail) ++;
  }

  return GNUNET_OK;
}


static int 
map_cleanup_it (void *cls,
		const GNUNET_HashCode * key,
		void *value)
{
  struct PeerContainer *pc = value;
  GNUNET_assert (GNUNET_OK == GNUNET_CONTAINER_multihashmap_remove(peers, key, value));
  if (NULL != pc->th_ping)
  {
    GNUNET_TRANSPORT_notify_transmit_ready_cancel(pc->th_ping);
    pc->th_ping = NULL;
  }
  if (NULL != pc->th_pong)
  {
    GNUNET_TRANSPORT_notify_transmit_ready_cancel(pc->th_pong);
    pc->th_pong = NULL;
  }
  if (NULL != pc->ch_ping)
  {
    GNUNET_CORE_notify_transmit_ready_cancel (pc->ch_ping);
    pc->ch_ping = NULL;
  }
  if (NULL != pc->ch_pong)
  {
    GNUNET_CORE_notify_transmit_ready_cancel(pc->ch_pong);
    pc->ch_pong = NULL;
  }
  GNUNET_free (pc);
  return GNUNET_OK;
}

static void
map_cleanup (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  GNUNET_CONTAINER_multihashmap_iterate (peers, &map_cleanup_it, NULL);
  GNUNET_CONTAINER_multihashmap_destroy(peers);
}

static void
map_check (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  int fail = 0;
  check_task = GNUNET_SCHEDULER_NO_TASK;
  GNUNET_CONTAINER_multihashmap_iterate (peers, &map_check_it, &fail);
  if (0 > fail)
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
       "Inconsistent peers after connection consistency check: %u\n", fail);
  else
    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
       "Inconsistent peers after connection consistency check: %u\n", fail);


  if (NULL != cls)
  {
    GNUNET_SCHEDULER_add_now (cls, NULL);
  }
}


static void
stats_check (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);

static int
check_lowlevel_connections (int port, int protocol)
{
  FILE *f;
  char * cmdline;
  char * proto;
  char line[1024];
  int count = -1;
#ifdef MINGW
  /* not supported */
  return count;
#else

  switch (protocol) {
    case tcp:
      proto = "-t";
      break;
    case udp:
      proto = "-u";
      break;
    case unixdomain:
      proto = "-x";
      break;
    default:
      proto = "";
      break;
  }

  /* Use netstat to get a numeric list of all connections on port 'port' in state 'ESTABLISHED' */
  GNUNET_asprintf(&cmdline, "netstat -n %s | grep %u | grep ESTABLISHED", proto, port);

  if (system ("netstat -n > /dev/null 2> /dev/null"))
    if (system ("netstat -n > /dev/null 2> /dev/null") == 0)
      f = popen (cmdline, "r");
    else
      f = NULL;
  else
    f = popen (cmdline, "r");
  if (!f)
  {
    GNUNET_log_strerror(GNUNET_ERROR_TYPE_ERROR, "ss");
    GNUNET_free (cmdline);
    return -1;
  }

  count = 0;
  while (NULL != fgets (line, sizeof (line), f))
  {
    /* read */
    //printf ("%s", line);
    count ++;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%i TCP connections established with port %u\n",
       count, port);

  pclose (f);
  GNUNET_free (cmdline);
  return count;
#endif
}


static struct TransportPlugin *
find_plugin (char * name)
{
  struct TransportPlugin *cur = NULL;

  for (cur = phead; cur != NULL; cur = cur->next)
  {
    if (0 == strcmp(name, cur->short_name))
      return cur;
  }
  return cur;
}

static int 
stats_check_cb (void *cls, const char *subsystem,
		const char *name, uint64_t value,
		int is_persistent)
{
  static int counter;

  uint64_t *val = cls;

  if (NULL != val)
    (*val) = value;

  counter ++;
  if ((STATS_VALUES == counter) || ((GNUNET_NO == have_tcp) && (STATS_VALUES - 1 == counter)))
  {
    int fail = GNUNET_NO;



    int low_level_connections_udp = check_lowlevel_connections (2086, udp);

    if (transport_connections != core_connections)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%u transport notifications <-> %u core notifications\n",
           transport_connections, core_connections);
      fail = GNUNET_YES;
    }

    if (transport_connections != statistics_transport_connections)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%u transport notifications <-> %u in statistics (peers connected)\n",
           transport_connections, statistics_transport_connections);
      fail = GNUNET_YES;
    }

    if (core_connections != statistics_core_entries_session_map)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%u core notifications <-> %u in statistics (entries session map)\n",
           core_connections, statistics_core_entries_session_map);
      fail = GNUNET_YES;
    }

    if (core_connections != statistics_core_neighbour_entries)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%u core notifications <-> %u in statistics (neighbour entries allocated)\n",
           core_connections, statistics_core_neighbour_entries);
      fail = GNUNET_YES;
    }

    if (GNUNET_NO == fail)
      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
         "Check successful : (%u transport / %u core) connections established\n", transport_connections, core_connections);

    /* TCP plugin specific checks */
    if (GNUNET_YES == have_tcp)
    {
      struct TransportPlugin * p = find_plugin ("tcp");
      int low_level_connections_tcp = check_lowlevel_connections (p->port, p->protocol);

      if (low_level_connections_tcp != -1)
      {
        if (statistics_transport_tcp_connections > low_level_connections_tcp)
        {
          GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
               "%u transport tcp sessions <-> %i established tcp connections\n",
               statistics_transport_tcp_connections, low_level_connections_tcp);
          fail = GNUNET_YES;
        }
        else if (low_level_connections_tcp != -1)
        {
          GNUNET_log (GNUNET_ERROR_TYPE_INFO,
               "%u TCP connections, %u UDP connections \n",
               low_level_connections_tcp, low_level_connections_udp);
        }
      }
      if (transport_connections > statistics_transport_tcp_connections)
      {
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
             "%u transport notifications <-> %u in statistics (statistics_transport_tcp_connections)\n",
             transport_connections, statistics_transport_tcp_connections);
        fail = GNUNET_YES;
      }
      else
      {
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
             " %u transport notifications <-> %u in statistics (statistics_transport_tcp_connections)\n",
             transport_connections, statistics_transport_tcp_connections);
      }
    }

    if (GNUNET_SCHEDULER_NO_TASK == statistics_task)
      statistics_task = GNUNET_SCHEDULER_add_delayed(REPEATED_STATS_DELAY, &stats_check, NULL);

    stat_check_running = GNUNET_NO;
    counter = 0;
  }

  return GNUNET_OK;
}

GNUNET_NETWORK_STRUCT_BEGIN

struct PING
{
  struct GNUNET_MessageHeader header;

  uint16_t src;
};

struct PONG
{
  struct GNUNET_MessageHeader header;

  uint16_t src;
};
GNUNET_NETWORK_STRUCT_END


static size_t 
send_transport_ping_cb (void *cls, size_t size, void *buf)
{
 struct PeerContainer * pc = cls;
 struct PING ping;
 size_t mlen = sizeof (struct PING);

 if (size < mlen)
 {
   GNUNET_break (0);
   return 0;
 }

 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
      "Sending transport ping to `%s'\n", GNUNET_i2s  (&pc->id));
 ping.header.size = htons (mlen);
 ping.header.type = htons (1234);
 ping.src = htons (0);

 pc->th_ping = NULL;

 memcpy (buf, &ping, mlen);
 return mlen;
}

size_t send_core_ping_cb (void *cls, size_t size, void *buf)
{
struct PeerContainer * pc = cls;
struct PING ping;
size_t mlen = sizeof (struct PING);

if (size < mlen)
{
  GNUNET_break (0);
  return 0;
}

GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
     "Sending core ping to `%s'\n", GNUNET_i2s  (&pc->id));
ping.header.size = htons (mlen);
ping.header.type = htons (1234);
ping.src = htons (1);

pc->ch_ping = NULL;

memcpy (buf, &ping, mlen);
return mlen;
}


int map_ping_it (void *cls,
                  const GNUNET_HashCode * key,
                  void *value)
{
  struct PeerContainer *pc = value;

  if (ping == GNUNET_YES)
  {
    if ((GNUNET_YES == pc->transport_connected) && (NULL == pc->th_ping))
      pc->th_ping = GNUNET_TRANSPORT_notify_transmit_ready(th, &pc->id,
          sizeof (struct PING), UINT_MAX,
          GNUNET_TIME_UNIT_FOREVER_REL, &send_transport_ping_cb, pc);
    else
      GNUNET_break(0);

    if ((GNUNET_YES == pc->core_connected) && (NULL == pc->ch_ping))
      pc->ch_ping = GNUNET_CORE_notify_transmit_ready(ch,
                                               GNUNET_NO, UINT_MAX,
						      GNUNET_TIME_UNIT_FOREVER_REL,
                                               &pc->id,
                                               sizeof (struct PING),
                                               send_core_ping_cb, pc);
    else
      GNUNET_break (0);
  }
  return GNUNET_OK;
}


static void
stats_check (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  statistics_task = GNUNET_SCHEDULER_NO_TASK;

  if (GNUNET_YES == stat_check_running)
  {
    statistics_task = GNUNET_SCHEDULER_add_delayed(STATS_DELAY, &stats_check, NULL);
  }

  GNUNET_CONTAINER_multihashmap_iterate (peers, &map_ping_it, NULL);

  stat_check_running = GNUNET_YES;

  statistics_transport_connections = 0 ;
  statistics_core_entries_session_map = 0;
  statistics_core_neighbour_entries = 0;

  GNUNET_STATISTICS_get (stats, "transport", "# peers connected", GNUNET_TIME_UNIT_MINUTES, NULL, &stats_check_cb, &statistics_transport_connections);
  GNUNET_STATISTICS_get (stats, "core", "# neighbour entries allocated", GNUNET_TIME_UNIT_MINUTES, NULL, &stats_check_cb, &statistics_core_neighbour_entries);
  GNUNET_STATISTICS_get (stats, "core", "# peers connected", GNUNET_TIME_UNIT_MINUTES, NULL, &stats_check_cb, &statistics_core_entries_session_map);

  /* TCP plugin specific checks */
  if (GNUNET_YES == have_tcp)
    GNUNET_STATISTICS_get (stats, "transport", "# TCP sessions active", GNUNET_TIME_UNIT_MINUTES, NULL, &stats_check_cb, &statistics_transport_tcp_connections);
}



size_t send_transport_pong_cb (void *cls, size_t size, void *buf)
{
 struct PeerContainer * pc = cls;
 struct PING ping;
 size_t mlen = sizeof (struct PING);

 if (size < mlen)
 {
   GNUNET_break (0);
   return 0;
 }

 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
      "Sending transport pong to `%s'\n", GNUNET_i2s  (&pc->id));
 ping.header.size = htons (mlen);
 ping.header.type = htons (4321);
 ping.src = htons (0);

 pc->th_pong = NULL;

 memcpy (buf, &ping, mlen);
 return mlen;
}

static size_t 
send_core_pong_cb (void *cls, size_t size, void *buf)
{
struct PeerContainer * pc = cls;
struct PING ping;
size_t mlen = sizeof (struct PING);

if (size < mlen)
{
  GNUNET_break (0);
  return 0;
}

GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
     "Sending core pong to `%s'\n", GNUNET_i2s  (&pc->id));
ping.header.size = htons (mlen);
ping.header.type = htons (4321);
ping.src = htons (1);

pc->ch_pong = NULL;

memcpy (buf, &ping, mlen);
return mlen;
}


static void
map_connect (const struct GNUNET_PeerIdentity *peer, void * source)
{
  struct PeerContainer * pc;
  if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(peers, &peer->hashPubKey))
  {
    pc = GNUNET_malloc (sizeof (struct PeerContainer));
    pc->id = *peer;
    pc->core_connected = GNUNET_NO;
    pc->transport_connected = GNUNET_NO;
    GNUNET_assert (GNUNET_OK == GNUNET_CONTAINER_multihashmap_put(peers, &peer->hashPubKey, pc, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
  }

  pc = GNUNET_CONTAINER_multihashmap_get(peers, &peer->hashPubKey);
  if (source == th)
  {
    if (GNUNET_NO == pc->transport_connected)
    {
      pc->transport_connected = GNUNET_YES;
      if (GNUNET_YES == ping)
      {
        if (NULL == pc->th_ping)
          pc->th_ping = GNUNET_TRANSPORT_notify_transmit_ready(th, peer, sizeof (struct PING), UINT_MAX, GNUNET_TIME_UNIT_FOREVER_REL, &send_transport_ping_cb, pc);
        else
          GNUNET_break(0);
      }
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%s notified multiple times about for peers `%s' (%s : %s)\n",
           "TRANSPORT",
           GNUNET_i2s (&pc->id),
           "CORE", (pc->core_connected == GNUNET_YES) ? "yes" : "no");
      GNUNET_break (0);
    }
  }
  if (source == ch)
  {
    if (GNUNET_NO == pc->core_connected)
    {
      pc->core_connected = GNUNET_YES;
      if (GNUNET_YES == ping)
      {
        if (NULL == pc->ch_ping)
          pc->ch_ping = GNUNET_CORE_notify_transmit_ready(ch,
                                                 GNUNET_NO, UINT_MAX,
							  GNUNET_TIME_UNIT_FOREVER_REL,
                                                 peer,
                                                 sizeof (struct PING),
                                                 send_core_ping_cb, pc);
        else
          GNUNET_break (0);
      }
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%s notified multiple times about for peers `%s' (%s : %s)\n",
           "CORE",
           GNUNET_i2s (&pc->id),
               "TRANSPORT", (pc->transport_connected == GNUNET_YES) ? "yes" : "no");
      GNUNET_break (0);
    }
  }
  if (GNUNET_SCHEDULER_NO_TASK != check_task)
    GNUNET_SCHEDULER_cancel(check_task);
  check_task = GNUNET_SCHEDULER_add_delayed(CHECK_DELAY, &map_check, NULL);

  if (GNUNET_SCHEDULER_NO_TASK != statistics_task)
    GNUNET_SCHEDULER_cancel(statistics_task);
  statistics_task = GNUNET_SCHEDULER_add_delayed(STATS_DELAY, &stats_check, NULL);
}


static void
map_disconnect (const struct GNUNET_PeerIdentity * peer, void * source)
{

  struct PeerContainer * pc;
  if (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(peers, &peer->hashPubKey))
  {
    if (source == th)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
         "%s disconnect notification for unknown peer `%s'\n",
         "TRANSPORT", GNUNET_i2s (peer));
      GNUNET_break (0);
      return;
    }
    if (source == ch)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
         "%s disconnect notification for unknown peer `%s'\n",
         "CORE", GNUNET_i2s (peer));
      return;
    }
  }

  pc = GNUNET_CONTAINER_multihashmap_get(peers, &peer->hashPubKey);
  if (source == th)
  {
    if (NULL != pc->th_ping)
    {
      GNUNET_TRANSPORT_notify_transmit_ready_cancel(pc->th_ping);
      pc->th_ping = NULL;
    }
    if (NULL != pc->th_pong)
    {
      GNUNET_TRANSPORT_notify_transmit_ready_cancel(pc->th_pong);
      pc->th_pong = NULL;
    }

    if (GNUNET_YES == pc->transport_connected)
    {
      pc->transport_connected = GNUNET_NO;
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%s notified for not connected peer `%s' (%s : %s)\n",
           "TRANSPORT",
           GNUNET_i2s (&pc->id),
           "CORE", (pc->core_connected == GNUNET_YES) ? "yes" : "no");
      GNUNET_break (0);
    }
  }
  if (source == ch)
  {
    if (NULL != pc->ch_ping)
    {
      GNUNET_CORE_notify_transmit_ready_cancel (pc->ch_ping);
      pc->ch_ping = NULL;
    }
    if (NULL != pc->ch_pong)
    {
      GNUNET_CORE_notify_transmit_ready_cancel (pc->ch_pong);
      pc->ch_pong = NULL;
    }

    if (GNUNET_YES == pc->core_connected)
    {
      pc->core_connected = GNUNET_NO;
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
           "%s notified for not connected peer `%s' (%s : %s)\n",
           "CORE",
           GNUNET_i2s (&pc->id),
           "TRANSPORT", (pc->transport_connected == GNUNET_YES) ? "yes" : "no");
      GNUNET_break (0);
    }
  }

  if ((GNUNET_NO == pc->core_connected) && (GNUNET_NO == pc->transport_connected))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Removing peer `%s'\n", GNUNET_i2s (&pc->id));
    GNUNET_assert (GNUNET_OK == GNUNET_CONTAINER_multihashmap_remove (peers, &peer->hashPubKey, pc));


    GNUNET_free (pc);
  }

  if (GNUNET_SCHEDULER_NO_TASK != check_task)
    GNUNET_SCHEDULER_cancel(check_task);
  check_task = GNUNET_SCHEDULER_add_delayed(CHECK_DELAY, &map_check, NULL);

  if (GNUNET_SCHEDULER_NO_TASK != statistics_task)
    GNUNET_SCHEDULER_cancel(statistics_task);
  statistics_task = GNUNET_SCHEDULER_add_delayed(STATS_DELAY, &stats_check, NULL);
}


static void
cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct TransportPlugin * cur = phead;

  if (NULL != th)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Disconnecting from transport service\n");
    GNUNET_TRANSPORT_disconnect (th);
    th = NULL;
  }


  if (NULL != ch)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Disconnecting from core service\n");
    GNUNET_CORE_disconnect (ch);
    ch = NULL;
  }

  if (GNUNET_SCHEDULER_NO_TASK != statistics_task)
  {
    GNUNET_SCHEDULER_cancel(statistics_task);
    statistics_task = GNUNET_SCHEDULER_NO_TASK;
  }

  if (GNUNET_SCHEDULER_NO_TASK != check_task)
  {
    GNUNET_SCHEDULER_cancel(check_task);
    check_task = GNUNET_SCHEDULER_NO_TASK;
  }

  for (cur = phead; cur != NULL; cur = phead)
  {
    GNUNET_CONTAINER_DLL_remove(phead, ptail, cur);
    GNUNET_free (cur->short_name);
    GNUNET_free (cur);
  }

  check_task = GNUNET_SCHEDULER_add_now (&map_check, &map_cleanup);
}

static void
transport_notify_connect_cb (void *cls,
                const struct GNUNET_PeerIdentity
                * peer,
                const struct
                GNUNET_ATS_Information * ats,
                uint32_t ats_count)
{
  transport_connections ++;
  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "TRANSPORT connect for peer `%s' (%u total)\n",
      GNUNET_i2s (peer), transport_connections);
  map_connect (peer, th);
}

/**
 * Function called to notify transport users that another
 * peer disconnected from us.
 *
 * @param cls closure
 * @param peer the peer that disconnected
 */
static void
transport_notify_disconnect_cb (void *cls,
                               const struct
                               GNUNET_PeerIdentity * peer)
{
  GNUNET_assert (transport_connections > 0);
  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "TRANSPORT disconnect for peer `%s' (%u total)\n",
      GNUNET_i2s (peer), transport_connections) ;
  map_disconnect (peer, th);
  transport_connections --;

}

static void
transport_notify_receive_cb (void *cls,
                            const struct
                            GNUNET_PeerIdentity * peer,
                            const struct
                            GNUNET_MessageHeader *
                            message,
                            const struct
                            GNUNET_ATS_Information * ats,
                            uint32_t ats_count)
{


  struct PeerContainer *pc = NULL;

  pc = GNUNET_CONTAINER_multihashmap_get(peers, &peer->hashPubKey);

  if (NULL == pc)
  {
    GNUNET_break (0);
    return;
  }

  if ((message->size == ntohs (sizeof (struct PING))) && (message->type == ntohs (1234)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received %s %s from peer `%s'\n",
        "TRANSPORT",
        "PING",
        GNUNET_i2s (peer)) ;
    if (GNUNET_YES == ping)
    {
      if (NULL == pc->th_pong)
        pc->th_pong = GNUNET_TRANSPORT_notify_transmit_ready(th,
          peer, sizeof (struct PONG),
							     UINT_MAX, GNUNET_TIME_UNIT_FOREVER_REL,
          &send_transport_pong_cb, pc);
      else
        GNUNET_break (0);
    }

  }
  if ((message->size == ntohs (sizeof (struct PONG))) && (message->type == ntohs (4321)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received %s %s from peer `%s'\n",
        "TRANSPORT",
        "PONG",
        GNUNET_i2s (peer));
  }
}

static int 
core_notify_receive_cb (void *cls,
			const struct GNUNET_PeerIdentity * peer,
			const struct GNUNET_MessageHeader * message,
			const struct GNUNET_ATS_Information* atsi,
			unsigned int atsi_count)
{
  struct PeerContainer *pc = NULL;

  pc = GNUNET_CONTAINER_multihashmap_get(peers, &peer->hashPubKey);

  if (NULL == pc)
  {
    if (0 == memcmp (peer, &my_peer_id, sizeof (my_peer_id)))
        return GNUNET_OK;

    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received unexpected message type %u from unknown peer `%s'\n",
        ntohs (message->type),
        GNUNET_i2s (peer));

    GNUNET_break (0);
    return GNUNET_OK;
  }

  if ((message->size == ntohs (sizeof (struct PING))) && (message->type == ntohs (1234)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received %s %s from peer `%s'\n",
        "CORE",
        "PING",
        GNUNET_i2s (peer));
    if (GNUNET_YES == ping)
    {
      if (NULL == pc->ch_pong)
        pc->ch_pong = GNUNET_CORE_notify_transmit_ready(ch,
                                               GNUNET_NO, UINT_MAX,
							GNUNET_TIME_UNIT_FOREVER_REL,
                                               peer,
                                               sizeof (struct PONG),
                                               send_core_pong_cb, pc);
      else
        GNUNET_break (0);
    }
  }

  if ((message->size == ntohs (sizeof (struct PONG))) && (message->type == ntohs (4321)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Received %s %s from peer `%s'\n",
        "CORE",
        "PONG",
        GNUNET_i2s (peer));

  }

  return GNUNET_OK;
}

static void
core_connect_cb (void *cls, const struct GNUNET_PeerIdentity *peer,
                      const struct GNUNET_ATS_Information *atsi,
                      unsigned int atsi_count)
{
  if (0 != memcmp (peer, &my_peer_id, sizeof (struct GNUNET_PeerIdentity)))
  {
    core_connections ++;
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "CORE      connect for peer `%s' (%u total)\n",
      GNUNET_i2s (peer), core_connections);
    map_connect (peer, ch);
  }
  else
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "CORE      connect for myself `%s' (%u total)\n",
      GNUNET_i2s (peer), core_connections);
  }
}

static void
core_disconnect_cb (void *cls,
                      const struct
                      GNUNET_PeerIdentity * peer)
{
  if (0 != memcmp (peer, &my_peer_id, sizeof (struct GNUNET_PeerIdentity)))
  {
    GNUNET_assert (core_connections > 0);
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "CORE      disconnect for peer `%s' (%u total)\n",
      GNUNET_i2s (peer), core_connections);
    map_disconnect (peer, ch);
    core_connections --;
  }
  else
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO, "CORE      disconnect for myself `%s' (%u total)\n",
      GNUNET_i2s (peer), core_connections);
  }

}

static void
core_init_cb (void *cls, struct GNUNET_CORE_Handle *server,
                   const struct GNUNET_PeerIdentity *my_identity)
{
  my_peer_id = *my_identity;
  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Connected to core service\n");
}


static void
init ()
{
  struct TransportPlugin * cur;
  char *plugs;
  char *pos;
  char *secname;
  int counter;
  unsigned long long port;

  have_tcp = GNUNET_NO;
  have_udp = GNUNET_NO;
  have_http = GNUNET_NO;
  have_https = GNUNET_NO;
  have_unix = GNUNET_NO;

  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (mycfg, "TRANSPORT", "PLUGINS", &plugs))
    return;
  counter = 0;
  for (pos = strtok (plugs, " "); pos != NULL; pos = strtok (NULL, " "))
  {
    counter++;

    GNUNET_asprintf(&secname, "transport-%s", pos);

    if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number (mycfg, secname, "PORT", &port))
    {
      GNUNET_free (secname);
      continue;
    }

    GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Transport plugin: `%s' port %llu\n"), pos, port);
    cur = GNUNET_malloc(sizeof (struct TransportPlugin));
    cur->short_name = GNUNET_strdup (pos);
    cur->port = port;
    if (0 == strcmp("tcp", pos))
    {
      have_tcp = GNUNET_YES;
      cur->protocol = tcp;
    }
    if (0 == strcmp("udp", pos))
    {
      have_udp = GNUNET_YES;
      cur->protocol = udp;
    }
    if (0 == strcmp("http", pos))
    {
      have_http = GNUNET_YES;
      cur->protocol = tcp;
    }
    if (0 == strcmp("https", pos))
    {
      have_https = GNUNET_YES;
      cur->protocol = tcp;
    }
    if (0 == strcmp("unix", pos))
    {
      have_unix = GNUNET_YES;
      cur->protocol = unixdomain;
    }

    GNUNET_CONTAINER_DLL_insert(phead, ptail, cur);
    GNUNET_free (secname);
  }
  GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Found %u transport plugins: `%s'\n"),
              counter, plugs);

  GNUNET_free (plugs);
}

/**
 * Main function that will be run by the scheduler.
 *
 * @param cls closure
 * @param args remaining command-line arguments
 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
 * @param cfg configuration
 */
static void
run (void *cls, char *const *args, const char *cfgfile,
     const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  transport_connections = 0;
  core_connections = 0;
  mycfg = cfg;

  init();

  stats = GNUNET_STATISTICS_create ("watchdog", cfg);
  peers = GNUNET_CONTAINER_multihashmap_create (20);

  th = GNUNET_TRANSPORT_connect(cfg, NULL, NULL,
                                &transport_notify_receive_cb,
                                &transport_notify_connect_cb,
                                &transport_notify_disconnect_cb);
  GNUNET_assert (th != NULL);
  GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Connected to transport service\n");
  ch =  GNUNET_CORE_connect (cfg, NULL,
                             &core_init_cb,
                             &core_connect_cb,
                             &core_disconnect_cb,
                             &core_notify_receive_cb, GNUNET_NO,
                             NULL, GNUNET_NO,
                             NULL);
  GNUNET_assert (ch != NULL);

  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup_task, NULL);

}


/**
 * The main function.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv)
{
  ping = GNUNET_NO;
  static const struct GNUNET_GETOPT_CommandLineOption options[] = {
   {'p', "ping", NULL, gettext_noop ("Send ping messages to test connectivity (default == NO)"),
    GNUNET_NO, &GNUNET_GETOPT_set_one, &ping},
    GNUNET_GETOPT_OPTION_END
  };

  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
    return 2;

  return (GNUNET_OK ==
          GNUNET_PROGRAM_run (argc, argv, "cn",
                              gettext_noop ("help text"), options, &run,
                              NULL)) ? ret : 1;
}

/* end of connection_watchdog.c */