aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/config/configuration.c
blob: f56ce73ced4543785cf7846f89bca6605490d7c2 (plain)
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
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
/*
 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */

#ifndef _WIN32
#include <arpa/inet.h>
#include <unistd.h>
#endif
#include <ctype.h>
#include <hicn/hicn-light/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <hicn/core/connection.h>
#include <hicn/core/connection_table.h>
#include <hicn/core/forwarder.h>
//#include <hicn/core/system.h>
#ifdef WITH_MAPME
#include <hicn/core/mapme.h>
#endif /* WITH_MAPME */

#include <hicn/core/listener.h>     //the listener list
#include <hicn/core/listener_table.h>
#include <hicn/ctrl/commands.h>
#include <hicn/utils/utils.h>
#include <hicn/utils/punting.h>
#include <hicn/util/log.h>
#include <hicn/face.h>

#define ETHERTYPE 0x0801
#define DEFAULT_COST 1
#define DEFAULT_PORT 1234

#define make_ack(msg)  ((msg_header_t *)msg)->header.message_type =  ACK_LIGHT
#define make_nack(msg) ((msg_header_t *)msg)->header.message_type = NACK_LIGHT

#define msg_malloc_list(msg, N)                                         \
do {                                                                    \
    msg = malloc(sizeof((msg)->header) + N * sizeof((msg)->payload));   \
    (msg)->header.message_type = RESPONSE_LIGHT;                         \
    (msg)->header.length = (uint16_t)(N);                               \
} while(0);

/*
 * XXX TODO
 *
 * Currently the strategy map only stores the strategy type, but it should be
 * extended with strategy options.
 *
 * Or maybe we simply remove this map like in VPP.
 *
 * prefix_str -> strategy_type
 */
KHASH_MAP_INIT_STR(strategy_map, unsigned);

struct configuration_s {
    forwarder_t * forwarder;

    size_t maximumContentObjectStoreSize;

    // map from prefix (parcString) to strategy (parcString)
    kh_strategy_map_t * strategy_map;

#if 0
    // translates between a symblic name and a connection id
    // XXX This might be moved as two indices in the listener and connection
    // tables to be widely reachable... this has nothing to do with
    // configuration.
    SymbolicNameTable *symbolic_nameTable;
#endif
};

// ========================================================================================

// conn_id = UINT_MAX when symbolic_name is not found
static inline
unsigned
_symbolic_to_conn_id(configuration_t * config, const char * symbolicOrConnid,
        bool allow_self, unsigned ingress_id)
{
    unsigned conn_id;
    const connection_table_t * table = forwarder_get_connection_table(config->forwarder);

    if (allow_self && strcmp(symbolicOrConnid, "SELF") == 0) {
        conn_id = ingress_id;
    } else if (utils_IsNumber(symbolicOrConnid)) {
        // case for conn_id as input
        // XXX type issue ! XXX No check, see man
        int id = atoi(symbolicOrConnid);
        if (id < 0)
            return CONNECTION_ID_UNDEFINED;
        conn_id = id;

        if (!connection_table_validate_id(table, conn_id)) {
            ERROR("ConnID not found, check list connections");
            conn_id = CONNECTION_ID_UNDEFINED;
        }
    } else {
        // case for symbolic as input: check if symbolic name can be resolved
        conn_id = connection_table_get_id_by_name(table, symbolicOrConnid);
        if (connection_id_is_valid(conn_id)) {
            DEBUG("Resolved symbolic name '%s' to conn_id %u", symbolicOrConnid, conn_id);
        } else {
            WARN("Symbolic name '%s' could not be resolved", symbolicOrConnid);
        }
    }

    return conn_id;
}

#define symbolic_to_conn_id(config, symbolic) _symbolic_to_conn_id(config, symbolic, false, 0)

#define symbolic_to_conn_id_self(config, symbolic, ingress_id) \
    _symbolic_to_conn_id(config, symbolic, true, ingress_id)

connection_t *
getConnectionBySymbolicOrId(configuration_t * config, const char * symbolicOrConnid)
{
    connection_table_t * table = forwarder_get_connection_table(config->forwarder);
    unsigned conn_id = symbolic_to_conn_id(config, symbolicOrConnid);
    if (!connection_id_is_valid(conn_id))
        return NULL;

    /* conn_id is assumed validated here */
    return connection_table_at(table, conn_id);
}

// ========================================================================================

configuration_t *
configuration_create(forwarder_t * forwarder)
{
    assert(forwarder);

    configuration_t * config = malloc(sizeof(configuration_t));
    if (!config)
        return NULL;

    config->forwarder = forwarder;
    config->maximumContentObjectStoreSize = 100000;
    config->strategy_map = kh_init_strategy_map();
#if 0
    config->symbolic_nameTable = symbolic_nameTable_Create();
#endif

    return config;
}

void
configuration_free(configuration_t * config)
{
    assert(config);

    kh_destroy_strategy_map(config->strategy_map);
#if 0
    symbolic_nameTable_Destroy(&config->symbolic_nameTable);
#endif
    free(config);
}

/* Listener */

uint8_t *
configuration_on_listener_add(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_listener_add_t * msg = (msg_listener_add_t *)packet;
    cmd_listener_add_t * control = &msg->payload;

    forwarder_t * forwarder = configuration_get_forwarder(config);
    assert(forwarder);

    listener_table_t * table = forwarder_get_listener_table(forwarder);
    assert(table);

    /* Verify that the listener DOES NOT exist */
    listener_t * listener = listener_table_get_by_name(table, control->symbolic);
    if (listener) {
        DEBUG("Listener %s already exists", control->symbolic);
        goto NACK;
    }

    address_t address;
    if (address_from_ip_port(&address, control->family, &control->address,
                control->port) < 0) {
        WARN("Unsupported address type for HICN (ingress id %u): "
                "must be either IPV4 or IPV6", ingress_id);
        goto NACK;
    }

    if (!face_type_is_defined(control->type)) {
        WARN("[configuration_on_listener_add] Invalid listener type");
        goto NACK;
    }

    // XXX validate that we use face_type everywhere, as we use the untyped
    // uint8_t for the control protocol
    face_type_t face_type = get_face_type_from_listener_type((hc_connection_type_t) control->type);
    if (!face_type_is_defined(face_type))
        goto NACK;

    // NOTE: interface_name is expected NULL for hICN listener

    listener = listener_create(face_type, &address, control->interface_name, control->symbolic, forwarder);
    if (!listener)
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_listener_remove(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_listener_remove_t * msg = (msg_listener_remove_t*)packet;
    cmd_listener_remove_t * control = &msg->payload;

    const char *symbolicOrListenerid = control->symbolicOrListenerid;
    off_t listener_id;
    listener_t * listener;

    listener_table_t * listener_table = forwarder_get_listener_table(config->forwarder);

    // Factor like for connections
    if (utils_IsNumber(symbolicOrListenerid)) {
        // XXX no check
        int id = atoi(symbolicOrListenerid);
        if (id < 0)
            goto NACK;
        listener_id = id;

        listener = listener_table_get_by_id(listener_table, listener_id);
        if (!listener) {
            ERROR("Listener Id not found, check list listeners");
            goto NACK;
        }
    } else {
        listener = listener_table_get_by_name(listener_table, symbolicOrListenerid);
        listener_id = listener_table_get_listener_id(listener_table, listener);
    }

    connection_table_t * table = forwarder_get_connection_table(config->forwarder);
    connection_t * connection;
    connection_table_foreach(table, connection, {
        const address_pair_t * pair = connection_get_pair(connection);
        if (!address_equals(listener_get_address(listener),
                    address_pair_get_local(pair)))
            continue;

        unsigned conn_id = connection_table_get_connection_id(table, connection);
        /* Remove connection from the FIB */
        forwarder_remove_connection_id_from_routes(config->forwarder, conn_id);

        /* Remove connection */
        connection_table_remove_by_id(table, conn_id);

#if 0
        const char *symbolicConnection =
                symbolic_nameTable_GetNameByIndex(config->symbolic_nameTable, conn_id);
        symbolic_nameTable_Remove(config->symbolic_nameTable, symbolicConnection);
#endif
    });

    /* Remove listener */
    listener_table_remove_by_id(listener_table, listener_id);

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

static inline
void
fill_listener_command(configuration_t * config, listener_t * listener,
        cmd_listener_list_item_t * cmd)
{
    assert(config);
    assert(listener);
    assert(cmd);

    struct sockaddr_in * sin;
    struct sockaddr_in6 * sin6;

    const address_t * addr = listener_get_address(listener);

    cmd->id = (uint32_t)listener_get_id(listener);
    cmd->type = (uint8_t)listener_get_type(listener);

    switch(addr->ss_family) {
        case AF_INET:
            sin = (struct sockaddr_in *) addr;
            cmd->family = AF_INET;
            cmd->address.v4.as_inaddr = sin->sin_addr;
            cmd->port = sin->sin_port;
            break;
        case AF_INET6:
            sin6 = (struct sockaddr_in6 *) addr;
            cmd->family = AF_INET6;
            cmd->address.v6.as_in6addr = sin6->sin6_addr;
            cmd->port = sin6->sin6_port;
            break;
        default:
            break;
    }

    const char * name = listener_get_name(listener);
    snprintf(cmd->name, SYMBOLIC_NAME_LEN, "%s", name);
    const char * interface_name = listener_get_interface_name(listener);
    snprintf(cmd->interface_name, SYMBOLIC_NAME_LEN, "%s", interface_name);
}

uint8_t *
configuration_on_listener_list(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    listener_table_t * table = forwarder_get_listener_table(config->forwarder);
    size_t n = listener_table_len(table);

    msg_listener_list_reply_t * msg;
    msg_malloc_list(msg, n)
    if (!msg)
        goto NACK;

    cmd_listener_list_item_t * payload = &msg->payload;
    listener_t * listener;
    listener_table_foreach(table, listener, {
        fill_listener_command(config, listener, payload);
        payload++;
    });

    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

/* Connection */

uint8_t *
configuration_on_connection_add(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_connection_add_t * msg = (msg_connection_add_t*)packet;
    cmd_connection_add_t * control = &msg->payload;

    const char *symbolic_name = control->symbolic;

    face_type_t face_type = get_face_type_from_listener_type((hc_connection_type_t) control->type);
    if (!face_type_is_defined(face_type))
        goto NACK;

    connection_table_t * table = forwarder_get_connection_table(config->forwarder);
    if (connection_table_get_by_name(table, symbolic_name)) {
        ERROR("Connection symbolic name already exists");
        goto NACK;
    }

    address_pair_t pair;
    if (address_pair_from_ip_port(&pair, control->family,
                &control->local_ip, control->local_port,
                &control->remote_ip, control->remote_port) < 0)
        goto NACK;

    connection_t * connection = connection_table_get_by_pair(table, &pair);
#ifdef WITH_MAPME
    connection_event_t event;
#endif /* WITH_MAPME */

    if (!connection) {
        connection = connection_create(face_type, symbolic_name, &pair, config->forwarder);
        if (!connection) {
            ERROR("Failed to create %s connection",
                    face_type_str(connection->type));
            goto NACK;
        }

#ifdef WITH_MAPME
        event = CONNECTION_EVENT_CREATE;
#endif /* WITH_MAPME */

    } else {
#ifdef WITH_POLICY
#ifdef WITH_MAPME
        event = CONNECTION_EVENT_UPDATE;
#endif /* WITH_MAPME */
#else
        ERROR("failed, symbolic name or connection already exist\n");
        goto NACK;
#endif /* WITH_POLICY */
    }

#ifdef WITH_POLICY
    connection_set_tags(connection, control->tags);
    connection_set_priority(connection, control->priority);
#endif /* WITH_POLICY */

    connection_set_admin_state(connection, control->admin_state);

#ifdef WITH_MAPME
    /* Hook: new connection created through the control protocol */
    forwarder_on_connection_event(config->forwarder, connection, event);
#endif /* WITH_MAPME */

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}


/**
 * Add an IP-based tunnel.
 *
 * The call can fail if the symbolic name is a duplicate.  It could also fail if
 * there's an problem creating the local side of the tunnel (i.e. the local
 * socket address is not usable).
 *
 * @return true Tunnel added
 * @return false Tunnel not added (an error)
 */

uint8_t *
configuration_on_connection_remove(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_connection_remove_t * msg = (msg_connection_remove_t*)packet;
    cmd_connection_remove_t * control = &msg->payload;

    unsigned conn_id = symbolic_to_conn_id_self(config, control->symbolicOrConnid,
            ingress_id);
    if (!connection_id_is_valid(conn_id))
        goto NACK;

    /* Remove connection from the FIB */
    forwarder_remove_connection_id_from_routes(config->forwarder, conn_id);

    /* Remove connection */
    connection_table_t *table = forwarder_get_connection_table(config->forwarder);
    connection_table_remove_by_id(table, conn_id);

#if 0
    /* Remove connection from symbolic_nameTable */
    const char *symbolicConnection = symbolic_nameTable_GetNameByIndex(config->symbolic_nameTable, conn_id);
    symbolic_nameTable_Remove(config->symbolic_nameTable, symbolicConnection);
#endif

#ifdef WITH_MAPME
    /* Hook: new connection created through the control protocol */
    forwarder_on_connection_event(config->forwarder, NULL, CONNECTION_EVENT_DELETE);
#endif /* WITH_MAPME */

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

static inline
void
tolower_str(char * str) {
    char * p = str;
    for (; *p; p++)
        *p = tolower(*p);
}

static inline
void
fill_connections_command(configuration_t * config, connection_t * connection,
        cmd_connection_list_item_t * cmd)
{

    assert(config);
    assert(connection);
    assert(cmd);

    struct sockaddr_in * sin;
    struct sockaddr_in6 * sin6;
    const address_pair_t * pair = connection_get_pair(connection);
#if 0
    const char *name = symbolic_nameTable_GetNameByIndex(config->symbolic_nameTable,
            connection_get_id(connection));
#endif

    *cmd = (cmd_connection_list_item_t) {
        .id = connection_get_id(connection),
        .state = connection_get_state(connection),
        .admin_state = connection_get_admin_state(connection),
        .type = connection_get_type(connection),
#ifdef WITH_POLICY
        .priority = connection_get_priority(connection),
        .tags = connection_get_tags(connection),
#endif /* WITH_POLICY */
    };

    snprintf(cmd->name, SYMBOLIC_NAME_LEN, "%s", connection_get_name(connection));
    tolower_str(cmd->name);

    snprintf(cmd->interface_name, SYMBOLIC_NAME_LEN, "%s",
            connection_get_interface_name(connection));

    switch(pair->local.ss_family) {
        case AF_INET:
            cmd->family = AF_INET;

            sin = (struct sockaddr_in *)(&pair->local);
            cmd->local_port = sin->sin_port;
            cmd->local_ip.v4.as_inaddr = sin->sin_addr;

            sin = (struct sockaddr_in *)(&pair->remote);
            cmd->remote_port = sin->sin_port;
            cmd->remote_ip.v4.as_inaddr = sin->sin_addr;
            break;

        case AF_INET6:
            cmd->family = AF_INET6;

            sin6 = (struct sockaddr_in6 *)(&pair->local);
            cmd->local_port = sin6->sin6_port;
            cmd->local_ip.v6.as_in6addr = sin6->sin6_addr;

            sin6 = (struct sockaddr_in6 *)(&pair->remote);
            cmd->remote_port = sin6->sin6_port;
            cmd->remote_ip.v6.as_in6addr = sin6->sin6_addr;
            break;

        default:
            break;
    }
}

uint8_t *
configuration_on_connection_list(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    connection_table_t *table = forwarder_get_connection_table(config->forwarder);
    size_t n = connection_table_len(table);

    msg_connection_list_reply_t * msg;
    msg_malloc_list(msg, n)
    if (!msg)
        goto NACK;

    cmd_connection_list_item_t * payload = &msg->payload;
    connection_t * connection;
    connection_table_foreach(table, connection, {
        fill_connections_command(config, connection, payload);
        payload++;
    });

    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_connection_set_admin_state(configuration_t * config,
        uint8_t * packet, unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_connection_set_admin_state_t * msg = (msg_connection_set_admin_state_t *)packet;
    cmd_connection_set_admin_state_t *control = &msg->payload;

    if ((control->admin_state != FACE_STATE_UP) &&
            (control->admin_state != FACE_STATE_DOWN))
        goto NACK;

    connection_t * conn = getConnectionBySymbolicOrId(config, control->symbolicOrConnid);
    if (!conn)
        goto NACK;

    connection_set_admin_state(conn, control->admin_state);

#ifdef WITH_MAPME
    /* Hook: connection event */
    forwarder_on_connection_event(config->forwarder, conn,
            control->admin_state == FACE_STATE_UP
            ? CONNECTION_EVENT_SET_UP
            : CONNECTION_EVENT_SET_DOWN);
#endif /* WITH_MAPME */

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}


uint8_t *
configuration_on_connection_update(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

#ifdef WITH_POLICY
    msg_connection_update_t * msg = (msg_connection_update_t *)packet;
    cmd_connection_update_t * control = &msg->payload;

    connection_t * conn = getConnectionBySymbolicOrId(config, control->symbolicOrConnid);
    if (!conn)
        goto NACK;

    connection_set_tags(conn, control->tags);
    connection_set_admin_state(conn, control->admin_state);
    if (control->priority > 0)
        connection_set_priority(conn, control->priority);

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
#endif /* WITH_POLICY */
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_connection_set_priority(configuration_t * config,
        uint8_t * packet, unsigned ingress_id)
{
    assert(config);
    assert(packet);

#ifdef WITH_POLICY
    msg_connection_set_priority_t * msg = (msg_connection_set_priority_t *)packet;
    cmd_connection_set_priority_t * control = &msg->payload;

    connection_t * conn = getConnectionBySymbolicOrId(config, control->symbolicOrConnid);
    if (!conn)
        goto NACK;

    connection_set_priority(conn, control->priority);

#ifdef WITH_MAPME
    /* Hook: connection event */
    forwarder_on_connection_event(config->forwarder, conn,
            CONNECTION_EVENT_PRIORITY_CHANGED);
#endif /* WITH_MAPME */

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
#endif /* WITH_POLICY */
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_connection_set_tags(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

#ifdef WITH_POLICY
    msg_connection_set_tags_t * msg = (msg_connection_set_tags_t *)packet;
    cmd_connection_set_tags_t * control = &msg->payload;

    connection_t * conn = getConnectionBySymbolicOrId(config, control->symbolicOrConnid);
    if (!conn)
        goto NACK;

    connection_set_tags(conn, control->tags);

#ifdef WITH_MAPME
    /* Hook: connection event */
    forwarder_on_connection_event(config->forwarder, conn,
            CONNECTION_EVENT_TAGS_CHANGED);
#endif /* WITH_MAPME */

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
#endif /* WITH_POLICY */
    make_nack(msg);
    return (uint8_t*)msg;
}


/* Route */

uint8_t *
configuration_on_route_add(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_route_add_t * msg = (msg_route_add_t *)packet;
    cmd_route_add_t * control = &msg->payload;

    unsigned conn_id = symbolic_to_conn_id_self(config,
            control->symbolicOrConnid, ingress_id);
    if (!connection_id_is_valid(conn_id))
        goto NACK;

    ip_prefix_t prefix = {
        .family = control->family,
        .address = control->address,
        .len = control->len
    };

    if (!forwarder_add_or_update_route(config->forwarder, &prefix, conn_id))
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_route_remove(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_route_remove_t * msg = (msg_route_remove_t *)packet;
    cmd_route_remove_t * control = &msg->payload;

    unsigned conn_id = symbolic_to_conn_id(config, control->symbolicOrConnid);
    if (!connection_id_is_valid(conn_id))
        goto NACK;

    ip_prefix_t prefix = {
        .family = control->family,
        .address = control->address,
        .len = control->len
    };

    if (!forwarder_remove_route(config->forwarder, &prefix, conn_id))
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_route_list(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    const fib_t * fib = forwarder_get_fib(config->forwarder);
    fib_entry_t * entry;

    /*
     * Two step approach to precompute the number of entries to allocate
     *
     * NOTE: we might have routes with no or multiple next hops.
     */
    size_t n = 0;
    fib_foreach_entry(fib, entry, {
        const nexthops_t * nexthops = fib_entry_get_nexthops(entry);
        assert(nexthops_get_len(nexthops) == nexthops_get_curlen(nexthops));
        n += nexthops_get_len(nexthops);
    });

    msg_route_list_reply_t * msg;
    msg_malloc_list(msg, n);
    if (!msg)
        goto NACK;

    cmd_route_list_item_t * payload = &msg->payload;
    fib_foreach_entry(fib, entry, {
        const nexthops_t * nexthops = fib_entry_get_nexthops(entry);
        assert(nexthops_get_len(nexthops) == nexthops_get_curlen(nexthops));
        size_t num_nexthops = nexthops_get_len(nexthops);

        if (num_nexthops == 0)
            continue;

        NameBitvector *prefix = name_GetContentName(fib_entry_get_prefix(entry));

        unsigned nexthop;
        nexthops_foreach(nexthops, nexthop, {

            address_t address;
            nameBitvector_ToAddress(prefix, &address);
            switch(address_family(&address)) {
                case AF_INET:
                    payload->family = AF_INET;
                    payload->address.v4.as_inaddr = address4_ip(&address);
                    break;
                case AF_INET6:
                    payload->family = AF_INET6;
                    payload->address.v6.as_in6addr = address6_ip(&address);
                    break;
                default:
                    break;
            }
            payload->connection_id = nexthop;
            payload->len = nameBitvector_GetLength(prefix);
            payload->cost = DEFAULT_COST;

            payload++;
        });
    });

    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}


/* Cache */

uint8_t *
configuration_on_cache_set_store(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_cache_set_store_t * msg = (msg_cache_set_store_t *)packet;
    cmd_cache_set_store_t * control = &msg->payload;

    if ((control->activate != 0) && (control->activate != 1))
        goto NACK;
    bool value = (bool)control->activate;

    forwarder_cs_set_store(config->forwarder, value);
    /* XXX Why do we need to check ? */
    if (forwarder_cs_get_store(config->forwarder) != value)
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_cache_set_serve(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_cache_set_serve_t * msg = (msg_cache_set_serve_t *)packet;
    cmd_cache_set_serve_t * control = &msg->payload;

    if ((control->activate != 0) && (control->activate != 1))
        goto NACK;
    bool value = (bool)control->activate;

    forwarder_cs_set_serve(config->forwarder, value);
    /* XXX Why do we need to check ? */
    if (forwarder_cs_get_serve(config->forwarder) != value)
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_cache_clear(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_cache_clear_t * msg = (msg_cache_clear_t *)packet;

    forwarder_cs_clear(config->forwarder);

    make_ack(msg);
    return (uint8_t*)msg;
}

/* Strategy */

strategy_type_t
configuration_get_strategy(configuration_t * config, const char *prefix)
{
    khiter_t k = kh_get_strategy_map(config->strategy_map, prefix);
    if (k == kh_end(config->strategy_map))
        return STRATEGY_TYPE_UNDEFINED;
    return kh_val(config->strategy_map, k);
}

uint8_t *
configuration_on_strategy_set(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_strategy_set_t * msg = (msg_strategy_set_t *)packet;
    cmd_strategy_set_t * control = &msg->payload;

    char prefix_s[MAXSZ_IP_PREFIX];
    ip_prefix_t prefix = {
        .family = control->family,
        .address = control->address,
        .len = control->len,
    };
    int rc = ip_prefix_snprintf(prefix_s, MAXSZ_IP_PREFIX, &prefix);
    assert(rc < MAXSZ_IP_PREFIX);
    if (rc < 0)
        goto NACK;

    strategy_type_t strategy = control->strategy_type;
    strategy_type_t existingFwdStrategy =
        configuration_get_strategy(config, prefix_s);

    strategy_options_t options;

    if (existingFwdStrategy == STRATEGY_TYPE_UNDEFINED ||
            strategy != existingFwdStrategy) {
        // means such a new strategy is not present in the hash table or has to be
        // updated
        int res;
        khiter_t k = kh_put_strategy_map(config->strategy_map, prefix_s, &res);
        kh_value(config->strategy_map, k) = strategy;

        Name *name_prefix = name_CreateFromAddress(control->family,
                control->address, control->len);
        // XXX TODO error handling

        switch(control->strategy_type) {
            case STRATEGY_TYPE_LOW_LATENCY:
                options.low_latency.related_prefixes_len = control->related_prefixes;
                Name **related_prefixes = options.low_latency.related_prefixes;

                if(control->related_prefixes != 0){
                    for(int i = 0; i < control->related_prefixes; i++){
                        related_prefixes[i] = name_CreateFromAddress(
                                control->low_latency.families[i],
                                control->low_latency.addresses[i],
                                control->low_latency.lens[i]);
                    }
                    // XXX TODO error handling
                }
                forwarder_set_strategy(config->forwarder, name_prefix, strategy, &options);

                if (control->related_prefixes != 0) {
                    for(int i = 0; i < control->related_prefixes; i++)
                        name_Release(&related_prefixes[i]);
                }
                break;
            default:
                break;
        }
        name_Release(&name_prefix);
    }

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

/* WLDR */

uint8_t *
configuration_on_wldr_set(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_wldr_set_t * msg = (msg_wldr_set_t *)packet;
    cmd_wldr_set_t * control = &msg->payload;

    if ((control->activate != 0) && (control->activate != 1))
        goto NACK;
    bool value = (bool)control->activate;

    unsigned conn_id = symbolic_to_conn_id(config, control->symbolicOrConnid);
    if (!connection_id_is_valid(conn_id))
        goto NACK;

    connection_table_t * table = forwarder_get_connection_table(config->forwarder);
    connection_t * conn = connection_table_at(table, conn_id);

    if (value)
        connection_wldr_enable(conn, value);

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

/* Punting */

uint8_t *
configuration_on_punting_add(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
// #if !defined(__APPLE__) && !defined(_WIN32) && defined(PUNTING)
    msg_punting_add_t * msg = (msg_punting_add_t *)packet;

#if !defined(__APPLE__) && !defined(_WIN32) && defined(PUNTING)
    cmd_punting_add_t * control = &msg->payload;
    if (ip_address_empty(&control->address))
        goto NACK;

    /* This is for hICN listeners only */
    // XXX add check !
    // comments:
    // EncapType: I use the Hicn encap since the punting is available only for
    // Hicn listeners LocalAddress: The only listern for which we need punting
    // rules is the main one, which has no address
    //              so I create a fake empty address. This need to be consistent
    //              with the address set at creation time
    address_t fakeaddr;
    memset(&fakeaddr, 0, sizeof(address_t));
    fakeaddr = ADDRESS_ANY(control->family, DEFAULT_PORT);

    forwarder_t * forwarder = configuration_get_forwarder(config);
    listener_table_t * table = forwarder_get_listener_table(forwarder);
    listener_t * listener = listener_table_get_by_address(table, FACE_TYPE_HICN, &fakeaddr);
    if (!listener) {
        ERROR("the main listener does not exist");
        goto NACK;
    }


    ip_prefix_t prefix = {
        .family = control->family,
        .address = control->address,
        .len = control->len
    };
    char prefix_s[MAXSZ_IP_PREFIX];
    int rc = ip_prefix_snprintf(prefix_s, MAXSZ_IP_PREFIX, &prefix);
    assert(rc < MAXSZ_IP_PREFIX);
    if (rc < 0)
        goto NACK;

    if (listener_punt(listener, prefix_s) < 0) {
        ERROR("error while adding the punting rule\n");
        goto NACK;
    }

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
#endif
    make_nack(msg);
    return (uint8_t*)msg;
}

/* MAP-Me */

uint8_t *
configuration_on_mapme_enable(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_mapme_enable_t * msg = (msg_mapme_enable_t *)packet;
    cmd_mapme_enable_t * control = &msg->payload;

    if ((control->activate != 0) && (control->activate != 1))
        goto NACK;
    bool value = (bool)control->activate;

    INFO("MAP-Me SET enable: %s", value ? "on" : "off");

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_mapme_set_discovery(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_mapme_set_discovery_t * msg = (msg_mapme_set_discovery_t *)packet;
    cmd_mapme_set_discovery_t * control = &msg->payload;

    if ((control->activate != 0) && (control->activate != 1))
        goto NACK;
    bool value = (bool)control->activate;

    INFO("MAP-Me SET discovery: %s", value ? "on" : "off");

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_mapme_set_timescale(configuration_t * config, uint8_t * packet,
    unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_mapme_set_timescale_t * msg = (msg_mapme_set_timescale_t *)packet;
    cmd_mapme_set_timescale_t * control = &msg->payload;

    INFO("MAP-Me SET timescale: %u", control->timePeriod);

    make_ack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_mapme_set_retx(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_mapme_set_retx_t * msg = (msg_mapme_set_retx_t *)packet;
    cmd_mapme_set_retx_t * control = &msg->payload;

    INFO("MAP-Me SET retx: %u", control->timePeriod);

    make_ack(msg);
    return (uint8_t*)msg;
}


uint8_t *
configuration_on_mapme_send_update(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    msg_mapme_send_update_t * msg = (msg_mapme_send_update_t *)packet;
    cmd_mapme_send_update_t * control = &msg->payload;

    fib_t * fib = forwarder_get_fib(config->forwarder);
    if (!fib)
        goto NACK;
    Name *prefix = name_CreateFromAddress(control->family, control->address,
            control->len);
    if (!prefix)
        goto NACK;
    fib_entry_t *entry = fib_contains(fib, prefix);
    name_Release(&prefix);
    if (!entry)
        goto NACK;

    /* The command is accepted iif triggered by (one of) the producer of this prefix */
    const nexthops_t * nexthops = fib_entry_get_nexthops(entry);

    unsigned nexthop;
    nexthops_foreach(nexthops, nexthop, {
        if (nexthop != ingress_id)
            continue;
        mapme_t * mapme = forwarder_get_mapme(config->forwarder);
        mapme_send_to_all_nexthops(mapme, entry);
        make_ack(msg);
        return (uint8_t*)msg;
    });

NACK:
    make_nack(msg);
    return (uint8_t*)msg;
}

/* Policy */

uint8_t *
configuration_on_policy_add(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

#ifdef WITH_POLICY
    msg_policy_add_t * msg = (msg_policy_add_t *)packet;
    cmd_policy_add_t * control = &msg->payload;

    ip_prefix_t prefix = {
        .family = control->family,
        .address = control->address,
        .len = control->len
    };

    if (!forwarder_add_or_update_policy(config->forwarder, &prefix, &control->policy))
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
#endif /* WITH_POLICY */
    make_nack(msg);
    return (uint8_t*)msg;
}


uint8_t *
configuration_on_policy_remove(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

#ifdef WITH_POLICY
    msg_policy_remove_t * msg = (msg_policy_remove_t *)packet;
    cmd_policy_remove_t * control = &msg->payload;

    ip_prefix_t prefix = {
        .family = control->family,
        .address = control->address,
        .len = control->len
    };

    if (!forwarder_remove_policy(config->forwarder, &prefix))
        goto NACK;

    make_ack(msg);
    return (uint8_t*)msg;

NACK:
#endif /* WITH_POLICY */
    make_nack(msg);
    return (uint8_t*)msg;
}

uint8_t *
configuration_on_policy_list(configuration_t * config, uint8_t * packet,
        unsigned ingress_id)
{
    assert(config);
    assert(packet);

    const fib_t * fib = forwarder_get_fib(config->forwarder);
    assert(fib);
    size_t n = fib_get_size(fib);

#ifdef WITH_POLICY
    msg_policy_list_reply_t * msg = (msg_policy_list_reply_t *)packet;
    msg_malloc_list(msg, n);
    if (!msg)
        goto NACK;

    cmd_policy_list_item_t * payload = &msg->payload;

    fib_entry_t * entry;

    fib_foreach_entry(fib, entry, {
        NameBitvector *prefix = name_GetContentName(fib_entry_get_prefix(entry));
        address_t address;
        nameBitvector_ToAddress(prefix, &address);

        switch(address_family(&address)) {
            case AF_INET:
                payload->family = AF_INET;
                payload->address.v4.as_inaddr = address4_ip(&address);
                break;

            case AF_INET6:
                payload->family = AF_INET6;
                payload->address.v6.as_in6addr = address6_ip(&address);
                break;

            default:
                break;
        }
        payload->len = nameBitvector_GetLength(prefix);
        payload->policy = fib_entry_get_policy(entry);

        payload++;
    });

    return (uint8_t*)msg;
#endif /* WITH_POLICY */

NACK:
    make_nack(msg);
    return (uint8_t *)msg;
}

size_t
configuration_cs_get_size(configuration_t * config)
{
    return config->maximumContentObjectStoreSize;
}

void
configuration_cs_set_size(configuration_t * config, size_t size)
{
    config->maximumContentObjectStoreSize = size;

    forwarder_cs_set_size(config->forwarder,
            config->maximumContentObjectStoreSize);
}

forwarder_t *
configuration_get_forwarder(const configuration_t * config) {
    return config->forwarder;
}


ssize_t
configuration_receive_command(configuration_t * config, msgbuf_t * msgbuf)
{
    assert(config);
    assert(msgbuf);

    uint8_t * packet = msgbuf_get_packet(msgbuf);
    unsigned ingress_id = msgbuf_get_connection_id(msgbuf);

    uint8_t * reply = NULL;

    /*
     * For most commands, the packet will simply be transformed into an ack.
     * For list commands, a new message will be allocated, and the return value
     * might eventually be NULL in case of an error. That is why the free the
     * reply at the end in these circumstances.
     *
     * XXX rework this part.
     */
    command_type_t command_type = msgbuf_get_command_type(msgbuf);
    switch (command_type) {
#define _(l, u)                                                         \
        case COMMAND_TYPE_ ## u:                                        \
            reply = configuration_on_ ## l(config, packet, ingress_id); \
            assert(reply);                                              \
            break;
    foreach_command_type
#undef _
        case COMMAND_TYPE_UNDEFINED:
        case COMMAND_TYPE_N:
            ERROR("Unexpected command type");
            reply = packet;
            make_nack(reply);
            break;
    }

    if (connection_id_is_valid(msgbuf->connection_id)) {
        connection_table_t * table = forwarder_get_connection_table(config->forwarder);
        const connection_t *connection = connection_table_at(table, ingress_id);
        connection_send_packet(connection, reply, sizeof(cmd_header_t));
    }

    switch (msgbuf->command.type) {
        case COMMAND_TYPE_LISTENER_LIST:
        case COMMAND_TYPE_CONNECTION_LIST:
        case COMMAND_TYPE_ROUTE_LIST:
        case COMMAND_TYPE_POLICY_LIST:
            /* Free replies that have been allocated (not NACK's) */
            if (((msg_header_t *)reply)->header.message_type != NACK_LIGHT)
                free(reply);
            break;
        default:
            break;
    }

    // XXX only if we consumed the whole packet.
    return (ssize_t)msgbuf_get_len(msgbuf);
}

face_type_t get_face_type_from_listener_type(hc_connection_type_t listener_type) {
    face_type_t face_type;
    switch (listener_type) {
        case CONNECTION_TYPE_TCP:
            face_type = FACE_TYPE_TCP_LISTENER;
            break;
        case CONNECTION_TYPE_UDP:
            face_type = FACE_TYPE_UDP_LISTENER;
            break;
        case CONNECTION_TYPE_HICN:
            face_type = FACE_TYPE_HICN_LISTENER;
            break;
        default:
            face_type = FACE_TYPE_UNDEFINED;
    }
    return face_type;
}