aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport.c
blob: cd131ae39f0b4216504f14432ae7c6443b5d5497 (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
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
/*
 This file is part of GNUnet.
 (C) 2010,2011 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 transport/gnunet-service-transport.c
 * @brief
 * @author Christian Grothoff
 */
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_hello_lib.h"
#include "gnunet_statistics_service.h"
#include "gnunet_transport_service.h"
#include "gnunet_peerinfo_service.h"
#include "gnunet_ats_service.h"
#include "gnunet-service-transport.h"
#include "gnunet-service-transport_blacklist.h"
#include "gnunet-service-transport_clients.h"
#include "gnunet-service-transport_hello.h"
#include "gnunet-service-transport_neighbours.h"
#include "gnunet-service-transport_plugins.h"
#include "gnunet-service-transport_validation.h"
#include "gnunet-service-transport_manipulation.h"
#include "transport.h"

/**
 * Information we need for an asynchronous session kill.
 */
struct SessionKiller
{
  /**
   * Kept in a DLL.
   */
  struct SessionKiller *next;

  /**
   * Kept in a DLL.
   */
  struct SessionKiller *prev;

  /**
   * Session to kill.
   */
  struct Session *session;

  /**
   * Plugin for the session.
   */
  struct GNUNET_TRANSPORT_PluginFunctions *plugin;

  /**
   * The kill task.
   */
  struct GNUNET_SCHEDULER_Task * task;
};

struct BlacklistCheckContext
{
  struct BlacklistCheckContext *prev;
  struct BlacklistCheckContext *next;


  struct GST_BlacklistCheck *blc;

  struct GNUNET_HELLO_Address *address;
  struct Session *session;
  struct GNUNET_MessageHeader *msg;
  struct GNUNET_ATS_Information *ats;
  uint32_t ats_count;
};

/* globals */

/**
 * Statistics handle.
 */
struct GNUNET_STATISTICS_Handle *GST_stats;

/**
 * Configuration handle.
 */
const struct GNUNET_CONFIGURATION_Handle *GST_cfg;

/**
 * Configuration handle.
 */
struct GNUNET_PeerIdentity GST_my_identity;

/**
 * Handle to peerinfo service.
 */
struct GNUNET_PEERINFO_Handle *GST_peerinfo;

/**
 * Handle to our service's server.
 */
static struct GNUNET_SERVER_Handle *GST_server;

/**
 * Our private key.
 */
struct GNUNET_CRYPTO_EddsaPrivateKey *GST_my_private_key;

/**
 * ATS handle.
 */
struct GNUNET_ATS_SchedulingHandle *GST_ats;

/**
 * Hello address expiration
 */
struct GNUNET_TIME_Relative hello_expiration;

/**
 * DEBUGGING connection counter
 */
static int connections;

/**
 * Head of DLL of asynchronous tasks to kill sessions.
 */
static struct SessionKiller *sk_head;

/**
 * Tail of DLL of asynchronous tasks to kill sessions.
 */
static struct SessionKiller *sk_tail;

struct BlacklistCheckContext *bc_head;
struct BlacklistCheckContext *bc_tail;


/**
 * Transmit our HELLO message to the given (connected) neighbour.
 *
 * @param cls the 'HELLO' message
 * @param target a connected neighbour
 * @param address the address
 * @param state current state this peer is in
 * @param state_timeout timeout for the current state of the peer
 * @param bandwidth_in inbound quota in NBO
 * @param bandwidth_out outbound quota in NBO
 */
static void
transmit_our_hello (void *cls, const struct GNUNET_PeerIdentity *target,
    const struct GNUNET_HELLO_Address *address,
    enum GNUNET_TRANSPORT_PeerState state,
    struct GNUNET_TIME_Absolute state_timeout,
    struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
    struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
{
  const struct GNUNET_MessageHeader *hello = cls;

  if (GNUNET_NO == GST_neighbours_test_connected (target))
    return;

  GST_neighbours_send (target, hello, ntohs (hello->size), hello_expiration,
      NULL, NULL );
}

/**
 * My HELLO has changed. Tell everyone who should know.
 *
 * @param cls unused
 * @param hello new HELLO
 */
static void
process_hello_update (void *cls, const struct GNUNET_MessageHeader *hello)
{
  GST_clients_broadcast (hello, GNUNET_NO);
  GST_neighbours_iterate (&transmit_our_hello, (void *) hello);
}

/**
 * We received some payload.  Prepare to pass it on to our clients.
 *
 * @param peer (claimed) identity of the other peer
 * @param address the address
 * @param session session used
 * @param message the message to process
 * @return how long the plugin should wait until receiving more data
 */
static struct GNUNET_TIME_Relative
process_payload (const struct GNUNET_PeerIdentity *peer,
    const struct GNUNET_HELLO_Address *address, struct Session *session,
    const struct GNUNET_MessageHeader *message)
{
  struct GNUNET_TIME_Relative ret;
  int do_forward;
  struct InboundMessage *im;
  size_t msg_size = ntohs (message->size);
  size_t size = sizeof(struct InboundMessage) + msg_size;
  char buf[size] GNUNET_ALIGN;

  do_forward = GNUNET_SYSERR;
  ret = GST_neighbours_calculate_receive_delay (peer, msg_size, &do_forward);
  if (!GST_neighbours_test_connected (peer))
  {
    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
        "Discarded %u bytes type %u payload from peer `%s'\n", msg_size,
        ntohs (message->type), GNUNET_i2s (peer));
    GNUNET_STATISTICS_update (GST_stats, gettext_noop
    ("# bytes payload discarded due to not connected peer"), msg_size,
        GNUNET_NO);
    return ret;
  }

  GST_ats_add_address (address, session, NULL, 0);

  if (GNUNET_YES != do_forward)
    return ret;
  im = (struct InboundMessage *) buf;
  im->header.size = htons (size);
  im->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_RECV);
  im->peer = *peer;
  memcpy (&im[1], message, ntohs (message->size));
  GST_clients_broadcast (&im->header, GNUNET_YES);
  return ret;
}

/**
 * Task to asynchronously terminate a session.
 *
 * @param cls the `struct SessionKiller` with the information for the kill
 * @param tc scheduler context
 */
static void
kill_session_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct SessionKiller *sk = cls;

  sk->task = NULL;
  GNUNET_CONTAINER_DLL_remove(sk_head, sk_tail, sk);
  sk->plugin->disconnect_session (sk->plugin->cls, sk->session);
  GNUNET_free(sk);
}

static void
cancel_pending_blacklist_checks (const struct GNUNET_HELLO_Address *address, struct Session *session)
{
  struct BlacklistCheckContext *blctx;
  struct BlacklistCheckContext *next;
  next = bc_head;
  for (blctx = next; NULL != blctx; blctx = next)
  {
    next = blctx->next;
    if ((NULL != blctx->address) && (0 == GNUNET_HELLO_address_cmp(blctx->address, address)) && (blctx->session == session))
    {
      GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
      if (NULL != blctx->blc)
      {
        GST_blacklist_test_cancel (blctx->blc);
        blctx->blc = NULL;
      }
      GNUNET_HELLO_address_free (blctx->address);
      GNUNET_free_non_null (blctx->msg);
      GNUNET_free_non_null (blctx->ats);
      GNUNET_free (blctx);
    }
  }
}

/**
 * Force plugin to terminate session due to communication
 * issue.
 *
 * @param plugin_name name of the plugin
 * @param session session to termiante
 */
static void
kill_session (const char *plugin_name, struct Session *session)
{
  struct GNUNET_TRANSPORT_PluginFunctions *plugin;
  struct SessionKiller *sk;

  for (sk = sk_head; NULL != sk; sk = sk->next)
    if (sk->session == session)
      return;
  plugin = GST_plugins_find (plugin_name);
  if (NULL == plugin)
  {
    GNUNET_break(0);
    return;
  }
  /* need to issue disconnect asynchronously */
  sk = GNUNET_new (struct SessionKiller);
  sk->session = session;
  sk->plugin = plugin;
  sk->task = GNUNET_SCHEDULER_add_now (&kill_session_task, sk);
  GNUNET_CONTAINER_DLL_insert(sk_head, sk_tail, sk);
}



/**
 * Black list check result for try_connect call
 * If connection to the peer is allowed request adddress and
 *
 * @param cls blc_ctx bl context
 * @param peer the peer
 * @param result the result
 */
static void
connect_bl_check_cont (void *cls,
    const struct GNUNET_PeerIdentity *peer, int result)
{
  struct BlacklistCheckContext *blctx = cls;

  GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
  blctx->blc = NULL;

  if (GNUNET_OK == result)
  {
    /* Blacklist allows to speak to this peer, forward SYN to neighbours  */
    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "Received SYN message from peer `%s' with `%s' %p\n",
                GNUNET_i2s (peer), GST_plugins_a2s (blctx->address), blctx->session);

    if (GNUNET_OK != GST_neighbours_handle_session_syn (blctx->msg,
        &blctx->address->peer))
    {
      cancel_pending_blacklist_checks (blctx->address, blctx->session);
      kill_session (blctx->address->transport_name, blctx->session);
    }
  }
  else
  {
    /* Blacklist denies to speak to this peer */

    GNUNET_log(GNUNET_ERROR_TYPE_INFO,
        "Discarding SYN message from `%s' due to denied blacklist check\n",
        GNUNET_i2s (peer));
    cancel_pending_blacklist_checks (blctx->address, blctx->session);
    kill_session (blctx->address->transport_name, blctx->session);
  }

  if (NULL != blctx->address)
    GNUNET_HELLO_address_free (blctx->address);
  GNUNET_free (blctx->msg);
  GNUNET_free (blctx);
}

/**
 * Black list check result for try_connect call
 * If connection to the peer is allowed request adddress and
 *
 * @param cls blc_ctx bl context
 * @param peer the peer
 * @param result the result
 */
static void
connect_transport_bl_check_cont (void *cls,
    const struct GNUNET_PeerIdentity *peer, int result)
{
  struct BlacklistCheckContext *blctx = cls;

  GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
  blctx->blc = NULL;

  if (GNUNET_OK == result)
  {
    /* Blacklist allows to speak to this transport */
    GST_ats_add_address(blctx->address, blctx->session, blctx->ats, blctx->ats_count);
  }

  if (NULL != blctx->address)
    GNUNET_HELLO_address_free (blctx->address);
  GNUNET_free (blctx->msg);
  GNUNET_free (blctx);
}


/**
 * Function called by the transport for each received message.
 *
 * @param cls closure, const char* with the name of the plugin we received the message from
 * @param address address and (claimed) identity of the other peer
 * @param message the message, NULL if we only care about
 *                learning about the delay until we should receive again
 * @param session identifier used for this session (NULL for plugins
 *                that do not offer bi-directional communication to the sender
 *                using the same "connection")
 * @return how long the plugin should wait until receiving more data
 *         (plugins that do not support this, can ignore the return value)
 */
struct GNUNET_TIME_Relative
GST_receive_callback (void *cls,
                      const struct GNUNET_HELLO_Address *address,
                      struct Session *session,
                      const struct GNUNET_MessageHeader *message)
{
  const char *plugin_name = cls;
  struct GNUNET_TIME_Relative ret;
  struct BlacklistCheckContext *blctx;
  struct GST_BlacklistCheck *blc;
  uint16_t type;

  ret = GNUNET_TIME_UNIT_ZERO;
  if (NULL == message)
    goto end;
  type = ntohs (message->type);
  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
      "Received Message with type %u from peer `%s'\n", type,
      GNUNET_i2s (&address->peer));

  GNUNET_STATISTICS_update (GST_stats, gettext_noop
  ("# bytes total received"), ntohs (message->size), GNUNET_NO);
  GST_neighbours_notify_data_recv (&address->peer, address, session, message);

  switch (type)
  {
  case GNUNET_MESSAGE_TYPE_HELLO_LEGACY:
    /* Legacy HELLO message, discard  */
    return ret;
  case GNUNET_MESSAGE_TYPE_HELLO:
    if (GNUNET_OK != GST_validation_handle_hello (message))
    {
      GNUNET_break_op(0);
      cancel_pending_blacklist_checks (address, session);
    }
    return ret;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_PING:
    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
        "Processing `%s' from `%s'\n", "PING", GST_plugins_a2s (address));
    if (GNUNET_OK
        != GST_validation_handle_ping (&address->peer, message, address, session))
    {
      cancel_pending_blacklist_checks (address, session);
      kill_session (plugin_name, session);
    }
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_PONG:
    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
        "Processing `%s' from `%s'\n", "PONG",
        GST_plugins_a2s (address));
    if (GNUNET_OK != GST_validation_handle_pong (&address->peer, message))
    {
      GNUNET_break_op(0);
      cancel_pending_blacklist_checks (address, session);
      kill_session (plugin_name, session);
    }
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_SYN:
    /* Do blacklist check if communication with this peer is allowed */
    blctx = GNUNET_new (struct BlacklistCheckContext);
    blctx->address = GNUNET_HELLO_address_copy (address);
    blctx->session = session;
    blctx->msg = GNUNET_malloc (ntohs(message->size));
    memcpy (blctx->msg, message, ntohs(message->size));
    GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, blctx);
    if (NULL != (blc = GST_blacklist_test_allowed (&address->peer, NULL,
          &connect_bl_check_cont, blctx)))
    {
      blctx->blc = blc;
    }

    blctx = GNUNET_new (struct BlacklistCheckContext);
    blctx->address = GNUNET_HELLO_address_copy (address);
    blctx->session = session;
    blctx->msg = GNUNET_malloc (ntohs(message->size));
    memcpy (blctx->msg, message, ntohs(message->size));
    GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, blctx);
    if (NULL != (blc = GST_blacklist_test_allowed (&address->peer,
        address->transport_name, &connect_transport_bl_check_cont, blctx)))
    {
      blctx->blc = blc;
    }
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_SYN_ACK:
    if (GNUNET_OK != GST_neighbours_handle_session_syn_ack (message,
        &address->peer, address, session))
    {
      cancel_pending_blacklist_checks (address, session);
      kill_session (plugin_name, session);
    }
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_ACK:
    if (GNUNET_OK
        != GST_neighbours_handle_session_ack (message, &address->peer, address, session))
    {
      GNUNET_break_op(0);
      cancel_pending_blacklist_checks (address, session);
      kill_session (plugin_name, session);
    }
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_DISCONNECT:
    GST_neighbours_handle_disconnect_message (&address->peer, message);
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE:
    GST_neighbours_keepalive (&address->peer, message);
    break;
  case GNUNET_MESSAGE_TYPE_TRANSPORT_SESSION_KEEPALIVE_RESPONSE:
    GST_neighbours_keepalive_response (&address->peer, message);
    break;
  default:
    /* should be payload */
    GNUNET_STATISTICS_update (GST_stats, gettext_noop
    ("# bytes payload received"), ntohs (message->size), GNUNET_NO);
    GST_neighbours_notify_payload_recv (&address->peer, address, session, message);
    ret = process_payload (&address->peer, address, session, message);
    break;
  }
  end:
  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
      "Allowing receive from peer %s to continue in %s\n", GNUNET_i2s (&address->peer),
      GNUNET_STRINGS_relative_time_to_string (ret, GNUNET_YES));
  return ret;
}

/**
 * Function that will be called for each address the transport
 * is aware that it might be reachable under.  Update our HELLO.
 *
 * @param cls name of the plugin (const char*)
 * @param add_remove should the address added (YES) or removed (NO) from the
 *                   set of valid addresses?
 * @param address the address to add or remove
 */
static void
plugin_env_address_change_notification (void *cls, int add_remove,
    const struct GNUNET_HELLO_Address *address)
{
  static int addresses = 0;
  struct GNUNET_STATISTICS_Handle *cfg = GST_stats;

  if (GNUNET_YES == add_remove)
  {
    addresses ++;
    GNUNET_STATISTICS_update (cfg, "# transport addresses", 1, GNUNET_NO);
  }
  else if (GNUNET_NO == add_remove)
  {
    if (0 == addresses)
      GNUNET_break (0);
    else
    {
      addresses --;
      GNUNET_STATISTICS_update (cfg, "# transport addresses", -1, GNUNET_NO);
    }
  }

  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
      "Transport now has %u addresses to communicate\n", addresses);

  GST_hello_modify_addresses (add_remove, address);
}

/**
 * Function that will be called whenever the plugin internally
 * cleans up a session pointer and hence the service needs to
 * discard all of those sessions as well.  Plugins that do not
 * use sessions can simply omit calling this function and always
 * use NULL wherever a session pointer is needed.  This function
 * should be called BEFORE a potential "TransmitContinuation"
 * from the "TransmitFunction".
 *
 * @param cls closure
 * @param address which address was the session for
 * @param session which session is being destoyed
 */
static void
plugin_env_session_end (void *cls, const struct GNUNET_HELLO_Address *address,
    struct Session *session)
{
  struct SessionKiller *sk;

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

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

  GNUNET_assert(strlen (address->transport_name) > 0);
  GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Session %p to peer `%s' ended \n",
      session, GNUNET_i2s (&address->peer));

  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
      "Notification from plugin `%s' about terminated %s session %p from peer `%s' address `%s'\n",
      address->transport_name,
      GNUNET_HELLO_address_check_option (address,
          GNUNET_HELLO_ADDRESS_INFO_INBOUND) ? "inbound" : "outbound", session,
      GNUNET_i2s (&address->peer), GST_plugins_a2s (address));

  GST_neighbours_session_terminated (&address->peer, session);

  GNUNET_log_from(GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
      "transport-ats", "Telling ATS to destroy session %p from peer %s\n",
      session, GNUNET_i2s (&address->peer));

  /* Tell ATS that session has ended */
  GNUNET_ATS_address_destroyed (GST_ats, address, session);

  cancel_pending_blacklist_checks (address, session);

  for (sk = sk_head; NULL != sk; sk = sk->next)
  {
    if (sk->session == session)
    {
      GNUNET_CONTAINER_DLL_remove(sk_head, sk_tail, sk);
      GNUNET_SCHEDULER_cancel (sk->task);
      GNUNET_free(sk);
      break;
    }
  }
}

/**
 * Function that will be called to figure if an address is an loopback,
 * LAN, WAN etc. address
 *
 * @param cls closure
 * @param addr binary address
 * @param addrlen length of the address
 * @return ATS Information containing the network type
 */
static struct GNUNET_ATS_Information
plugin_env_address_to_type (void *cls, const struct sockaddr *addr,
    size_t addrlen)
{
  struct GNUNET_ATS_Information ats;

  ats.type = htonl (GNUNET_ATS_NETWORK_TYPE);
  ats.value = htonl (GNUNET_ATS_NET_UNSPECIFIED);
  if (NULL == GST_ats)
  {
    GNUNET_break(0);
    return ats;
  }
  if (((addr->sa_family != AF_INET) && (addrlen != sizeof(struct sockaddr_in)))
      && ((addr->sa_family != AF_INET6)
          && (addrlen != sizeof(struct sockaddr_in6)))
      && (addr->sa_family != AF_UNIX))
  {
    GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
        "Malformed address with length %u `%s'\n", addrlen,
        GNUNET_a2s (addr, addrlen));
    GNUNET_break(0);
    return ats;
  }
  return GNUNET_ATS_address_get_type (GST_ats, addr, addrlen);
}

/**
 * Notify ATS about the new address including the network this address is
 * located in.
 *
 * @param address the address
 * @param session the session
 * @param ats ats information
 * @param ats_count number of @a ats information
 */
void
GST_ats_add_address (const struct GNUNET_HELLO_Address *address,
    struct Session *session, const struct GNUNET_ATS_Information *ats,
    uint32_t ats_count)
{
  struct GNUNET_TRANSPORT_PluginFunctions *papi;
  struct GNUNET_ATS_Information ats2[ats_count + 1];
  uint32_t net;

  /* valid new address, let ATS know! */
  if (NULL == address->transport_name)
  {
    GNUNET_break(0);
    return;
  }
  if (NULL == (papi = GST_plugins_find (address->transport_name)))
  {
    /* we don't have the plugin for this address */
    GNUNET_break(0);
    return;
  }

  if (GNUNET_YES == GNUNET_ATS_session_known (GST_ats, address, session))
  {
    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
        "ATS already knows the address, not passing it on again\n");
    return;
  }

  net = papi->get_network (papi->cls, session);
  if (GNUNET_ATS_NET_UNSPECIFIED == net)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
        _("Could not obtain a valid network for `%s' %s (%s)\n"),
        GNUNET_i2s (&address->peer), GST_plugins_a2s (address),
        address->transport_name);
    return;
  }
  ats2[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
  ats2[0].value = htonl (net);
  memcpy (&ats2[1], ats, sizeof(struct GNUNET_ATS_Information) * ats_count);
  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
      "Notifying ATS about peer `%s''s new address `%s' session %p in network %s\n",
      GNUNET_i2s (&address->peer),
      (0 == address->address_length) ? "<inbound>" : GST_plugins_a2s (address),
      session, GNUNET_ATS_print_network_type (net));
  GNUNET_ATS_address_add (GST_ats, address, session, ats2, ats_count + 1);
}

/**
 * Notify ATS about property changes to an address
 *
 * @param peer the peer
 * @param address the address
 * @param session the session
 * @param ats performance information
 * @param ats_count number of elements in @a ats
 */
void
GST_ats_update_metrics (const struct GNUNET_PeerIdentity *peer,
                        const struct GNUNET_HELLO_Address *address,
                        struct Session *session,
                        const struct GNUNET_ATS_Information *ats,
                        uint32_t ats_count)
{
  struct GNUNET_ATS_Information *ats_new;

  if (GNUNET_NO == GNUNET_ATS_session_known (GST_ats, address, session))
    return;

  /* Call to manipulation to manipulate ATS information */
  ats_new = GST_manipulation_manipulate_metrics (peer, address, session, ats,
      ats_count);
  if (NULL == ats_new)
  {
    GNUNET_break(0);
    return;
  }
  if (GNUNET_NO == GNUNET_ATS_address_update (GST_ats, address, session,
        ats_new, ats_count))
  {
    GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
        _("Address or session unknown: failed to update properties for peer `%s' plugin `%s' address `%s' session %p\n"),
        GNUNET_i2s (peer), address->transport_name, GST_plugins_a2s (address),
        session);
  }
  GNUNET_free(ats_new);
}

/**
 * Function that will be called to update metrics for an address
 *
 * @param cls closure
 * @param address address to update metrics for
 * @param session the session
 * @param ats the ats information to update
 * @param ats_count the number of @a ats elements
 */
static void
plugin_env_update_metrics (void *cls,
                           const struct GNUNET_HELLO_Address *address,
                           struct Session *session,
                           const struct GNUNET_ATS_Information *ats,
                           uint32_t ats_count)
{
  if ((NULL == ats) || (0 == ats_count))
    return;
  GNUNET_assert(NULL != GST_ats);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Updating metrics for peer `%s' address %s session %p\n",
              GNUNET_i2s (&address->peer),
              GST_plugins_a2s (address),
              session);
  GST_ats_update_metrics (&address->peer,
                          address,
                          session,
                          ats, ats_count);
}


/**
 * Black list check result for try_connect call
 * If connection to the peer is allowed request adddress and
 *
 * @param cls blc_ctx bl context
 * @param peer the peer
 * @param result the result
 */
static void
plugin_env_session_start_bl_check_cont (void *cls,
    const struct GNUNET_PeerIdentity *peer, int result)
{
  struct BlacklistCheckContext *blctx = cls;

  GNUNET_CONTAINER_DLL_remove (bc_head, bc_tail, blctx);
  blctx->blc = NULL;

  if (GNUNET_OK == result)
  {
    GST_ats_add_address (blctx->address, blctx->session,
        blctx->ats, blctx->ats_count);
  }
  else
  {
    cancel_pending_blacklist_checks (blctx->address, blctx->session);
    kill_session (blctx->address->transport_name, blctx->session);
  }

  GNUNET_HELLO_address_free (blctx->address);
  GNUNET_free_non_null (blctx->ats);
  GNUNET_free (blctx);
}


/**
 * Plugin tells transport service about a new inbound session
 *
 * @param cls unused
 * @param address the address
 * @param session the new session
 * @param ats ats information
 * @param ats_count number of @a ats information
 */
static void
plugin_env_session_start (void *cls,
                          struct GNUNET_HELLO_Address *address,
                          struct Session *session,
                          const struct GNUNET_ATS_Information *ats,
                          uint32_t ats_count)
{
  struct BlacklistCheckContext *blctx;
  struct GST_BlacklistCheck *blc;
  int c;

  if (NULL == address)
  {
    GNUNET_break(0);
    return;
  }
  if (NULL == session)
  {
    GNUNET_break(0);
    return;
  }
  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
      "Notification from plugin `%s' about new %s session %p from peer `%s' address `%s'\n",
      address->transport_name,
      GNUNET_HELLO_address_check_option (address,
          GNUNET_HELLO_ADDRESS_INFO_INBOUND) ? "inbound" : "outbound",
      session, GNUNET_i2s (&address->peer), GST_plugins_a2s (address));

  /* Do blacklist check if communication with this peer is allowed */
  blctx = GNUNET_new (struct BlacklistCheckContext);
  blctx->address = GNUNET_HELLO_address_copy (address);
  blctx->session = session;
  if (ats_count > 0)
  {
    blctx->ats = GNUNET_malloc (ats_count * sizeof (struct GNUNET_ATS_Information));
    for (c = 0; c < ats_count; c++)
    {
      blctx->ats[c].type = ats[c].type;
      blctx->ats[c].value = ats[c].value;
    }
  }

  GNUNET_CONTAINER_DLL_insert (bc_head, bc_tail, blctx);
  if (NULL != (blc = GST_blacklist_test_allowed (&address->peer, address->transport_name,
        &plugin_env_session_start_bl_check_cont, blctx)))
  {
    blctx->blc = blc;
  }
}


/**
 * Function called by ATS to notify the callee that the
 * assigned bandwidth or address for a given peer was changed.  If the
 * callback is called with address/bandwidth assignments of zero, the
 * ATS disconnect function will still be called once the disconnect
 * actually happened.
 *
 * @param cls closure
 * @param peer the peer this address is intended for
 * @param address address to use (for peer given in address)
 * @param session session to use (if available)
 * @param bandwidth_out assigned outbound bandwidth for the connection in NBO,
 * 	0 to disconnect from peer
 * @param bandwidth_in assigned inbound bandwidth for the connection in NBO,
 * 	0 to disconnect from peer
 * @param ats ATS information
 * @param ats_count number of @a ats elements
 */
static void
ats_request_address_change (void *cls,
                            const struct GNUNET_PeerIdentity *peer,
                            const struct GNUNET_HELLO_Address *address,
                            struct Session *session,
                            struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
                            struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
                            const struct GNUNET_ATS_Information *ats,
                            uint32_t ats_count)
{
  uint32_t bw_in = ntohl (bandwidth_in.value__);
  uint32_t bw_out = ntohl (bandwidth_out.value__);

  /* ATS tells me to disconnect from peer */
  if ((0 == bw_in) && (0 == bw_out))
  {
    GNUNET_log(GNUNET_ERROR_TYPE_INFO,
        "ATS tells me to disconnect from peer `%s'\n",
        GNUNET_i2s (&address->peer));
    GST_neighbours_force_disconnect (&address->peer);
    return;
  }

  GST_neighbours_switch_to_address (&address->peer, address, session, ats,
      ats_count, bandwidth_in, bandwidth_out);
}

/**
 * Function called to notify transport users that another
 * peer connected to us.
 *
 * @param cls closure
 * @param peer the peer that connected
 * @param bandwidth_in inbound bandwidth in NBO
 * @param bandwidth_out outbound bandwidth in NBO
 */
static void
neighbours_connect_notification (void *cls,
    const struct GNUNET_PeerIdentity *peer,
    struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
    struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
{
  size_t len = sizeof(struct ConnectInfoMessage);
  char buf[len] GNUNET_ALIGN;
  struct ConnectInfoMessage *connect_msg = (struct ConnectInfoMessage *) buf;

  connections++;
  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
      "We are now connected to peer `%s' and %u peers in total\n",
      GNUNET_i2s (peer), connections);
  connect_msg->header.size = htons (sizeof(buf));
  connect_msg->header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_CONNECT);
  connect_msg->id = *peer;
  connect_msg->quota_in = bandwidth_in;
  connect_msg->quota_out = bandwidth_out;
  GST_clients_broadcast (&connect_msg->header, GNUNET_NO);
}


/**
 * Function called to notify transport users that another
 * peer disconnected from us.
 *
 * @param cls closure
 * @param peer the peer that disconnected
 */
static void
neighbours_disconnect_notification (void *cls,
                                    const struct GNUNET_PeerIdentity *peer)
{
  struct DisconnectInfoMessage disconnect_msg;

  connections--;
  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
      "Peer `%s' disconnected and we are connected to %u peers\n",
      GNUNET_i2s (peer), connections);

  GST_manipulation_peer_disconnect (peer);
  disconnect_msg.header.size = htons (sizeof(struct DisconnectInfoMessage));
  disconnect_msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_DISCONNECT);
  disconnect_msg.reserved = htonl (0);
  disconnect_msg.peer = *peer;
  GST_clients_broadcast (&disconnect_msg.header, GNUNET_NO);
}


/**
 * Function called to notify transport users that a neighbour peer changed its
 * active address.
 *
 * @param cls closure
 * @param peer peer this update is about (never NULL)
 * @param address address, NULL on disconnect
 * @param state current state this peer is in
 * @param state_timeout timeout for the current state of the peer
 * @param bandwidth_in bandwidth assigned inbound
 * @param bandwidth_out bandwidth assigned outbound
 */
static void
neighbours_changed_notification (void *cls,
                                 const struct GNUNET_PeerIdentity *peer,
                                 const struct GNUNET_HELLO_Address *address,
                                 enum GNUNET_TRANSPORT_PeerState state,
                                 struct GNUNET_TIME_Absolute state_timeout,
                                 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
                                 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
{
  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
             "Notifying about change for peer `%s' with address `%s' in state `%s' timing out at %s\n",
             GNUNET_i2s (peer),
             (NULL != address) ? GST_plugins_a2s (address) : "<none>",
             GNUNET_TRANSPORT_ps2s (state),
             GNUNET_STRINGS_absolute_time_to_string (state_timeout));

  GST_clients_broadcast_peer_notification (peer,
                                           address,
                                           state,
                                           state_timeout);
}


/**
 * Function called when the service shuts down.  Unloads our plugins
 * and cancels pending validations.
 *
 * @param cls closure, unused
 * @param tc task context (unused)
 */
static void
shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  GST_neighbours_stop ();
  GST_validation_stop ();
  GST_plugins_unload ();

  GNUNET_ATS_scheduling_done (GST_ats);
  GST_ats = NULL;
  GST_clients_stop ();
  GST_blacklist_stop ();
  GST_hello_stop ();
  GST_manipulation_stop ();

  if (NULL != GST_peerinfo)
  {
    GNUNET_PEERINFO_disconnect (GST_peerinfo);
    GST_peerinfo = NULL;
  }
  if (NULL != GST_stats)
  {
    GNUNET_STATISTICS_destroy (GST_stats, GNUNET_NO);
    GST_stats = NULL;
  }
  if (NULL != GST_my_private_key)
  {
    GNUNET_free(GST_my_private_key);
    GST_my_private_key = NULL;
  }
  GST_server = NULL;
}


/**
 * Initiate transport service.
 *
 * @param cls closure
 * @param server the initialized server
 * @param c configuration to use
 */
static void
run (void *cls, struct GNUNET_SERVER_Handle *server,
    const struct GNUNET_CONFIGURATION_Handle *c)
{
  char *keyfile;
  struct GNUNET_CRYPTO_EddsaPrivateKey *pk;
  long long unsigned int max_fd_cfg;
  int max_fd_rlimit;
  int max_fd;
  int friend_only;

  /* setup globals */
  GST_cfg = c;
  if (GNUNET_OK
      != GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
          &keyfile))
  {
    GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
        _("Transport service is lacking key configuration settings. Exiting.\n"));
    GNUNET_SCHEDULER_shutdown ();
    return;
  }
  if (GNUNET_OK !=
      GNUNET_CONFIGURATION_get_value_time (c,
                                           "transport",
                                           "HELLO_EXPIRATION",
                                           &hello_expiration))
  {
    hello_expiration = GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION;
  }
  GST_server = server;
  pk = GNUNET_CRYPTO_eddsa_key_create_from_file (keyfile);
  GNUNET_free (keyfile);
  GNUNET_assert (NULL != pk);
  GST_my_private_key = pk;

  GST_stats = GNUNET_STATISTICS_create ("transport", GST_cfg);
  GST_peerinfo = GNUNET_PEERINFO_connect (GST_cfg);
  GNUNET_CRYPTO_eddsa_key_get_public (GST_my_private_key,
      &GST_my_identity.public_key);
  GNUNET_assert(NULL != GST_my_private_key);

  GNUNET_log(GNUNET_ERROR_TYPE_INFO,
             "My identity is `%4s'\n",
             GNUNET_i2s_full (&GST_my_identity));

  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
      NULL );
  if (NULL == GST_peerinfo)
  {
    GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
        _("Could not access PEERINFO service.  Exiting.\n"));
    GNUNET_SCHEDULER_shutdown ();
    return;
  }

  max_fd_rlimit = 0;
  max_fd_cfg = 0;
#if HAVE_GETRLIMIT
  struct rlimit r_file;
  if (0 == getrlimit (RLIMIT_NOFILE, &r_file))
  {
    max_fd_rlimit = r_file.rlim_cur;
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
        "Maximum number of open files was: %u/%u\n",
        r_file.rlim_cur,
        r_file.rlim_max);
  }
  max_fd_rlimit = (9 * max_fd_rlimit) / 10; /* Keep 10% for rest of transport */
#endif
  GNUNET_CONFIGURATION_get_value_number (GST_cfg, "transport", "MAX_FD",
      &max_fd_cfg);

  if (max_fd_cfg > max_fd_rlimit)
    max_fd = max_fd_cfg;
  else
    max_fd = max_fd_rlimit;
  if (max_fd < DEFAULT_MAX_FDS)
    max_fd = DEFAULT_MAX_FDS;

  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
      "Limiting number of sockets to %u: validation %u, neighbors: %u\n",
      max_fd, (max_fd / 3), (max_fd / 3) * 2);

  friend_only = GNUNET_CONFIGURATION_get_value_yesno (GST_cfg, "topology",
      "FRIENDS-ONLY");
  if (GNUNET_SYSERR == friend_only)
    friend_only = GNUNET_NO; /* According to topology defaults */
  /* start subsystems */
  GST_hello_start (friend_only, &process_hello_update, NULL );
  GNUNET_assert(NULL != GST_hello_get());
  GST_blacklist_start (GST_server, GST_cfg, &GST_my_identity);
  GST_ats = GNUNET_ATS_scheduling_init (GST_cfg, &ats_request_address_change,
      NULL );
  GST_manipulation_init (GST_cfg);
  GST_plugins_load (&GST_manipulation_recv,
                    &GST_neighbours_register_quota_notification,
                    &GST_neighbours_unregister_quota_notification,
                    &plugin_env_address_change_notification,
                    &plugin_env_session_start,
                    &plugin_env_session_end,
                    &plugin_env_address_to_type,
                    &plugin_env_update_metrics);
  GST_neighbours_start (NULL,
                        &neighbours_connect_notification,
                        &neighbours_disconnect_notification,
                        &neighbours_changed_notification,
                        (max_fd / 3) * 2);
  GST_clients_start (GST_server);
  GST_validation_start ((max_fd / 3));
}


/**
 * The main function for the transport service.
 *
 * @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)
{
  return
      (GNUNET_OK
          == GNUNET_SERVICE_run (argc, argv, "transport",
              GNUNET_SERVICE_OPTION_NONE, &run, NULL )) ? 0 : 1;
}

/* end of file gnunet-service-transport.c */