eXtl_udp.c 48.3 KB
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 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
/*
  eXosip - This is the eXtended osip library.
  Copyright (C) 2001-2020 Aymeric MOIZARD amoizard@antisip.com

  eXosip 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 2 of the License, or
  (at your option) any later version.

  eXosip 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 this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

  In addition, as a special exception, the copyright holders give
  permission to link the code of portions of this program with the
  OpenSSL library under certain conditions as described in each
  individual source file, and distribute linked combinations
  including the two.
  You must obey the GNU General Public License in all respects
  for all of the code used other than OpenSSL.  If you modify
  file(s) with this exception, you may extend this exception to your
  version of the file(s), but you are not obligated to do so.  If you
  do not wish to do so, delete this exception statement from your
  version.  If you delete this exception statement from all source
  files in the program, then also delete it here.
*/

#include "eXosip2.h"
#include "eXtransport.h"

#if !defined(HAVE_INET_NTOP)
#include "inet_ntop.h"
#endif

#if !defined(_WIN32_WCE)
#include <errno.h>
#endif

#if defined(HAVE_WINSOCK2_H)
#define ex_errno WSAGetLastError()
#define is_wouldblock_error(r) ((r) == WSAEINTR || (r) == WSAEWOULDBLOCK)
#define is_connreset_error(r) ((r) == WSAECONNRESET || (r) == WSAECONNABORTED || (r) == WSAETIMEDOUT || (r) == WSAENETRESET || (r) == WSAENOTCONN)
#else
#define ex_errno errno
#endif
#ifndef is_wouldblock_error
#define is_wouldblock_error(r) ((r) == EINTR || (r) == EWOULDBLOCK || (r) == EAGAIN)
#define is_connreset_error(r) ((r) == ECONNRESET || (r) == ECONNABORTED || (r) == ETIMEDOUT || (r) == ENETRESET || (r) == ENOTCONN)
#endif

#ifdef __APPLE_CC__
#include "TargetConditionals.h"
#endif

#ifdef ENABLE_SIP_QOS
#include <delayimp.h>
#undef ExternC
#include <QOS2.h>
#endif

struct _udp_stream {
  char remote_host[256];
  char remote_ip[64];
  int remote_port;
  int out_socket;
};

/* recv on long message returns -1 with errno=0 */
#if !defined(HAVE_WINSOCK2_H)
#define SOCKET_OPTION_VALUE void *
static size_t udp_message_max_length = SIP_MESSAGE_MAX_LENGTH;
#else
static int udp_message_max_length = SIP_MESSAGE_MAX_LENGTH;

#define SOCKET_OPTION_VALUE char *
#endif

struct eXtludp {
  int udp_socket;
  struct sockaddr_storage ai_addr;
  int udp_socket_family;
  char *buf;
  void *QoSHandle;
  unsigned long QoSFlowID;

  int udp_socket_oc;
  struct sockaddr_storage ai_addr_oc;
  int udp_socket_oc_family;

  struct _udp_stream socket_tab[EXOSIP_MAX_SOCKETS];
};

static int udp_tl_init(struct eXosip_t *excontext) {
  struct eXtludp *reserved = (struct eXtludp *) osip_malloc(sizeof(struct eXtludp));

  if (reserved == NULL)
    return OSIP_NOMEM;

  memset(reserved, 0, sizeof(struct eXtludp));
  reserved->udp_socket = -1;
  reserved->udp_socket_oc = -1;

  excontext->eXtludp_reserved = reserved;
  return OSIP_SUCCESS;
}

static int udp_tl_free(struct eXosip_t *excontext) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved == NULL)
    return OSIP_SUCCESS;

#ifdef ENABLE_SIP_QOS

  if (reserved->QoSFlowID != 0) {
    OSVERSIONINFOEX ovi;

    memset(&ovi, 0, sizeof(ovi));
    ovi.dwOSVersionInfoSize = sizeof(ovi);
    GetVersionEx((LPOSVERSIONINFO) &ovi);

    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [qos] check OS support for qwave.lib: [v%i.%i.%i]\n", ovi.dwMajorVersion, ovi.dwMinorVersion, ovi.dwBuildNumber));

    if (ovi.dwMajorVersion > 5) {
      HRESULT hr = E_FAIL;

      __try {
        hr = __HrLoadAllImportsForDll("qwave.dll");

      } __except (EXCEPTION_EXECUTE_HANDLER) {
        hr = E_FAIL;
      }

      if (!SUCCEEDED(hr)) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_WARNING, NULL, "[eXosip] [UDP] [qos] failed to load qwave.dll: no QoS available\n"));

      } else {
        BOOL QoSResult;

        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [qos] QoS API detected\n"));
        QoSResult = QOSRemoveSocketFromFlow(reserved->QoSHandle, 0, reserved->QoSFlowID, 0);

        if (QoSResult != TRUE) {
          OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] [qos] QOSRemoveSocketFromFlow failed to end a flow with error\n"));
        }

        reserved->QoSFlowID = 0;
      }
    }
  }

  if (reserved->QoSHandle != NULL) {
    QOSCloseHandle(reserved->QoSHandle);
    reserved->QoSHandle = NULL;
  }

#endif

  memset(&reserved->ai_addr, 0, sizeof(struct sockaddr_storage));

  if (reserved->udp_socket >= 0)
    _eXosip_closesocket(reserved->udp_socket);

  if (reserved->udp_socket_oc >= 0)
    _eXosip_closesocket(reserved->udp_socket_oc);

  if (reserved->buf != NULL)
    osip_free(reserved->buf);

  osip_free(reserved);
  excontext->eXtludp_reserved = NULL;
  return OSIP_SUCCESS;
}

#ifdef ENABLE_SIP_QOS
static int _udp_tl_transport_set_dscp_qos(struct eXosip_t *excontext, struct sockaddr *rem_addr, int rem_addrlen) {
  int res = 0;
  QOS_TRAFFIC_TYPE tos;
  OSVERSIONINFOEX ovi;

  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] [qos] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (excontext->dscp <= 0)
    return 0;

  memset(&ovi, 0, sizeof(ovi));
  ovi.dwOSVersionInfoSize = sizeof(ovi);
  GetVersionEx((LPOSVERSIONINFO) &ovi);

  if (ovi.dwMajorVersion > 5) {
    HRESULT hr = E_FAIL;

    if (excontext->dscp <= 0x8)
      tos = QOSTrafficTypeBackground;

    else if (excontext->dscp <= 0x28)
      tos = QOSTrafficTypeAudioVideo;

    else if (excontext->dscp <= 0x38)
      tos = QOSTrafficTypeVoice;

    else
      tos = QOSTrafficTypeExcellentEffort; /* 0x28 */

    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [qos] check OS support for qwave.lib: [v%i.%i.%i]\n", ovi.dwMajorVersion, ovi.dwMinorVersion, ovi.dwBuildNumber));

    __try {
      hr = __HrLoadAllImportsForDll("qwave.dll");

    } __except (EXCEPTION_EXECUTE_HANDLER) {
      hr = E_FAIL;
    }

    if (!SUCCEEDED(hr)) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_WARNING, NULL, "[eXosip] [UDP] [qos] failed to load qwave.dll: no QoS available\n"));

    } else {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] QoS API detected\n"));

      if (excontext->dscp == 0)
        tos = QOSTrafficTypeBestEffort;

      else if (excontext->dscp <= 0x8)
        tos = QOSTrafficTypeBackground;

      else if (excontext->dscp <= 0x28)
        tos = QOSTrafficTypeAudioVideo;

      else if (excontext->dscp <= 0x38)
        tos = QOSTrafficTypeVoice;

      else
        tos = QOSTrafficTypeExcellentEffort; /* 0x28 */

      if (reserved->QoSHandle == NULL) {
        QOS_VERSION version;
        BOOL QoSResult;

        version.MajorVersion = 1;
        version.MinorVersion = 0;

        QoSResult = QOSCreateHandle(&version, &reserved->QoSHandle);

        if (QoSResult != TRUE) {
          OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] [qos] QOSCreateHandle failed to create handle with error\n"));
          res = -1;
        }
      }

      if (reserved->QoSHandle != NULL && rem_addrlen > 0) {
        BOOL QoSResult;

        QoSResult = QOSAddSocketToFlow(reserved->QoSHandle, reserved->udp_socket, rem_addr, tos, QOS_NON_ADAPTIVE_FLOW, &reserved->QoSFlowID);

        if (QoSResult != TRUE) {
          OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] [qos] QOSAddSocketToFlow failed to add a flow with error\n"));
          res = -1;
        }
      }
    }

    if (res < 0)
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] [qos] failed to set DSCP value on socket\n"));

    return res;
  }

  return OSIP_SUCCESS;
}
#endif

int _eXosip_transport_set_dscp(struct eXosip_t *excontext, int family, int sock) {
#ifdef IPPROTO_IP
  int res;

  if (family == AF_INET) {
    int tos = (excontext->dscp << 2) & 0xFC;

    res = setsockopt(sock, IPPROTO_IP, IP_TOS, (SOCKET_OPTION_VALUE) &tos, sizeof(tos));

  } else {
    int tos = (excontext->dscp << 2) & 0xFC;

#ifdef IPV6_TCLASS
    res = setsockopt(sock, IPPROTO_IPV6, IPV6_TCLASS, (SOCKET_OPTION_VALUE) &tos, sizeof(tos));
#else
    res = setsockopt(sock, IPPROTO_IPV6, IP_TOS, (SOCKET_OPTION_VALUE) &tos, sizeof(tos));
#endif
  }

  return res;
#else
  return 0;
#endif
}

static int _udp_tl_open(struct eXosip_t *excontext, int force_family) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  int res;
  struct addrinfo *addrinfo = NULL;
  struct addrinfo *curinfo;
  int sock = -1;
  char *node = NULL;
  char eb[ERRBSIZ];

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  excontext->eXtl_transport.proto_local_port = excontext->eXtl_transport.proto_port;

  if (excontext->eXtl_transport.proto_local_port < 0)
    excontext->eXtl_transport.proto_local_port = 5060;

  if (osip_strcasecmp(excontext->eXtl_transport.proto_ifs, "0.0.0.0") != 0 && osip_strcasecmp(excontext->eXtl_transport.proto_ifs, "::") != 0)
    node = excontext->eXtl_transport.proto_ifs;

  res = _eXosip_get_addrinfo(excontext, &addrinfo, node, excontext->eXtl_transport.proto_local_port, excontext->eXtl_transport.proto_num);

  if (res)
    return -1;

  for (curinfo = addrinfo; curinfo; curinfo = curinfo->ai_next) {
    socklen_t len;
    int type;

    if (curinfo->ai_protocol && curinfo->ai_protocol != excontext->eXtl_transport.proto_num) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO3, NULL, "[eXosip] [UDP] skipping protocol [%d]\n", curinfo->ai_protocol));
      continue;
    }

    if (force_family > 0 && force_family != curinfo->ai_family)
      continue;

    type = curinfo->ai_socktype;
#if defined(SOCK_CLOEXEC)
    type = SOCK_CLOEXEC | type;
#endif

    sock = (int) socket(curinfo->ai_family, type, curinfo->ai_protocol);

    if (sock < 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot create socket %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      continue;
    }

    if (curinfo->ai_family == AF_INET6) {
#ifdef IPV6_V6ONLY

      if (setsockopt_ipv6only(sock)) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot set socket option %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
        _eXosip_closesocket(sock);
        sock = -1;
        continue;
      }

#endif /* IPV6_V6ONLY */
    }

    {
      int valopt = 1;

      setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *) &valopt, sizeof(valopt));
    }

#if SO_NOSIGPIPE
    {
      int val;

      val = 1;
      setsockopt(sock, SOL_SOCKET, SO_NOSIGPIPE, (void *) &val, sizeof(int));
    }
#endif

    res = bind(sock, curinfo->ai_addr, (socklen_t) curinfo->ai_addrlen);

    if (res < 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot bind socket [%s][%s] %s\n", excontext->eXtl_transport.proto_ifs, (curinfo->ai_family == AF_INET) ? "AF_INET" : "AF_INET6", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      _eXosip_closesocket(sock);
      sock = -1;
      continue;
    }

    len = sizeof(reserved->ai_addr);
    res = getsockname(sock, (struct sockaddr *) &reserved->ai_addr, &len);

    if (res != 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot get socket name %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      memcpy(&reserved->ai_addr, curinfo->ai_addr, curinfo->ai_addrlen);
    }

    reserved->udp_socket_family = curinfo->ai_family;
    break;
  }

  _eXosip_freeaddrinfo(addrinfo);

  if (sock < 0) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot bind on port [%i]\n", excontext->eXtl_transport.proto_local_port));
    return -1;
  }

  reserved->udp_socket = sock;

  _eXosip_transport_set_dscp(excontext, reserved->udp_socket_family, sock);

  if (excontext->eXtl_transport.proto_local_port == 0) {
    /* get port number from socket */
    if (reserved->udp_socket_family == AF_INET)
      excontext->eXtl_transport.proto_local_port = ntohs(((struct sockaddr_in *) &reserved->ai_addr)->sin_port);

    else
      excontext->eXtl_transport.proto_local_port = ntohs(((struct sockaddr_in6 *) &reserved->ai_addr)->sin6_port);

    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] binding on port [%i]\n", excontext->eXtl_transport.proto_local_port));
  }

#ifdef HAVE_SYS_EPOLL_H

  if (excontext->poll_method == EXOSIP_USE_EPOLL_LT) {
    struct epoll_event ev;
    memset(&ev, 0, sizeof(struct epoll_event));
    ev.events = EPOLLIN;
    ev.data.fd = sock;
    res = epoll_ctl(excontext->epfd, EPOLL_CTL_ADD, sock, &ev);

    if (res < 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot poll on main udp socket [%i]\n", excontext->eXtl_transport.proto_local_port));
      _eXosip_closesocket(sock);
      reserved->udp_socket = -1;
      return -1;
    }
  }

#endif

  return OSIP_SUCCESS;
}

static int _udp_tl_open_oc(struct eXosip_t *excontext, int force_family) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  int res;
  struct addrinfo *addrinfo = NULL;
  struct addrinfo *curinfo;
  int sock = -1;
  char eb[ERRBSIZ];

  if (excontext->oc_local_address[0] == '\0')
    return OSIP_SUCCESS;

  res = _eXosip_get_addrinfo(excontext, &addrinfo, excontext->oc_local_address, excontext->oc_local_port_range[0], excontext->eXtl_transport.proto_num);

  if (res)
    return -1;

  for (curinfo = addrinfo; curinfo; curinfo = curinfo->ai_next) {
    socklen_t len;
    int type;

    if (curinfo->ai_protocol && curinfo->ai_protocol != excontext->eXtl_transport.proto_num) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO3, NULL, "[eXosip] [UDP] skipping protocol %d\n", curinfo->ai_protocol));
      continue;
    }

    if (force_family > 0 && force_family == curinfo->ai_family)
      continue;

    type = curinfo->ai_socktype;
#if defined(SOCK_CLOEXEC)
    type = SOCK_CLOEXEC | type;
#endif
    sock = (int) socket(curinfo->ai_family, type, curinfo->ai_protocol);

    if (sock < 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot create socket %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      continue;
    }

    if (curinfo->ai_family == AF_INET6) {
#ifdef IPV6_V6ONLY

      if (setsockopt_ipv6only(sock)) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot set socket option %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
        _eXosip_closesocket(sock);
        sock = -1;
        continue;
      }

#endif /* IPV6_V6ONLY */
    }

    {
      int valopt = 1;

      setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void *) &valopt, sizeof(valopt));
    }

#if SO_NOSIGPIPE
    {
      int val;

      val = 1;
      setsockopt(sock, SOL_SOCKET, SO_NOSIGPIPE, (void *) &val, sizeof(int));
    }
#endif

    res = bind(sock, curinfo->ai_addr, (socklen_t) curinfo->ai_addrlen);

    if (res < 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot bind socket [%s][%s] %s\n", excontext->eXtl_transport.proto_ifs, (curinfo->ai_family == AF_INET) ? "AF_INET" : "AF_INET6", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      _eXosip_closesocket(sock);
      sock = -1;
      continue;
    }

    len = sizeof(reserved->ai_addr_oc);
    res = getsockname(sock, (struct sockaddr *) &reserved->ai_addr_oc, &len);

    if (res != 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot get socket name %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      memcpy(&reserved->ai_addr_oc, curinfo->ai_addr, curinfo->ai_addrlen);
    }

    reserved->udp_socket_oc_family = curinfo->ai_family;
    break;
  }

  _eXosip_freeaddrinfo(addrinfo);

  if (sock < 0) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot bind on oc port [%i]\n", excontext->oc_local_port_range[0]));
    return -1;
  }

  reserved->udp_socket_oc = sock;

  _eXosip_transport_set_dscp(excontext, reserved->udp_socket_oc_family, sock);

#ifdef HAVE_SYS_EPOLL_H

  if (excontext->poll_method == EXOSIP_USE_EPOLL_LT) {
    struct epoll_event ev;
    memset(&ev, 0, sizeof(struct epoll_event));
    ev.events = EPOLLIN;
    ev.data.fd = sock;
    res = epoll_ctl(excontext->epfd, EPOLL_CTL_ADD, sock, &ev);

    if (res < 0) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot poll on oc udp socket [%i]\n", excontext->eXtl_transport.proto_local_port));
      _eXosip_closesocket(sock);
      reserved->udp_socket_oc = -1;
      return -1;
    }
  }

#endif

  return OSIP_SUCCESS;
}

static int udp_tl_open(struct eXosip_t *excontext) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  int res;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  res = _udp_tl_open(excontext, 0);
  _udp_tl_open_oc(excontext, 0);
  return res;
}

static int _udp_tl_reset(struct eXosip_t *excontext, int af_family) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved->udp_socket >= 0)
    _eXosip_closesocket(reserved->udp_socket);

  reserved->udp_socket = -1;
  return _udp_tl_open(excontext, af_family);
}

static int _udp_tl_reset_oc(struct eXosip_t *excontext, int af_family) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved->udp_socket_oc >= 0)
    _eXosip_closesocket(reserved->udp_socket_oc);

  reserved->udp_socket_oc = -1;
  return _udp_tl_open_oc(excontext, af_family);
}

static int udp_tl_set_fdset(struct eXosip_t *excontext, fd_set *osip_fdset, fd_set *osip_wrset, fd_set *osip_exceptset, int *fd_max, int *osip_fd_table) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  int pos_fd = 0;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (reserved->udp_socket < 0)
    return -1;

  if (osip_fdset != NULL)
    eXFD_SET(reserved->udp_socket, osip_fdset);
  osip_fd_table[pos_fd] = reserved->udp_socket;
  pos_fd++;

  if (reserved->udp_socket > *fd_max)
    *fd_max = reserved->udp_socket;

  if (reserved->udp_socket_oc >= 0) {
    if (osip_fdset != NULL)
      eXFD_SET(reserved->udp_socket_oc, osip_fdset);
    osip_fd_table[pos_fd] = reserved->udp_socket_oc;
    pos_fd++;

    if (reserved->udp_socket_oc > *fd_max)
      *fd_max = reserved->udp_socket_oc;
  }

  return OSIP_SUCCESS;
}

static void _stun_decode_xor_address_ipv4(const unsigned char *tr_id, uint16_t *xor_port, uint32_t *xor_addr) {
  uint32_t cookie = 0x2112A442;
  uint16_t cookie16 = 0x2112A442 >> 16;
  *xor_port = (*xor_port) ^ cookie16;
  *xor_addr = (*xor_addr) ^ cookie;
}

static void _stun_decode_xor_address_ipv6(const unsigned char *tr_id, uint16_t *xor_port, uint8_t *xor_addr) {
  uint16_t cookie16 = 0x2112A442 >> 16;
  uint8_t xorId[16];
  xorId[0] = 0x21;
  xorId[1] = 0x12;
  xorId[2] = 0xA4;
  xorId[3] = 0x42;
  memcpy(xorId + 4, tr_id, 12);

  *xor_port = (*xor_port) ^ cookie16;

  xor_addr[0] = xor_addr[0] ^ xorId[0];
  xor_addr[1] = xor_addr[1] ^ xorId[1];
  xor_addr[2] = xor_addr[2] ^ xorId[2];
  xor_addr[3] = xor_addr[3] ^ xorId[3];
  xor_addr[4] = xor_addr[4] ^ xorId[4];
  xor_addr[5] = xor_addr[5] ^ xorId[5];
  xor_addr[6] = xor_addr[6] ^ xorId[6];
  xor_addr[7] = xor_addr[7] ^ xorId[7];
  xor_addr[8] = xor_addr[8] ^ xorId[8];
  xor_addr[9] = xor_addr[9] ^ xorId[9];
  xor_addr[10] = xor_addr[10] ^ xorId[10];
  xor_addr[11] = xor_addr[11] ^ xorId[11];
  xor_addr[12] = xor_addr[12] ^ xorId[12];
  xor_addr[13] = xor_addr[13] ^ xorId[13];
  xor_addr[14] = xor_addr[14] ^ xorId[14];
  xor_addr[15] = xor_addr[15] ^ xorId[15];
}

static int _udp_read_udp_main_socket(struct eXosip_t *excontext) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  socklen_t slen;
  struct sockaddr_storage sa;
  int i;
  char eb[ERRBSIZ];

  if (reserved->udp_socket_family == AF_INET)
    slen = sizeof(struct sockaddr_in);

  else
    slen = sizeof(struct sockaddr_in6);

  if (reserved->buf == NULL)
    reserved->buf = (char *) osip_malloc(udp_message_max_length * sizeof(char) + 1);

  if (reserved->buf == NULL)
    return OSIP_NOMEM;

  i = (int) recvfrom(reserved->udp_socket, reserved->buf, udp_message_max_length, 0, (struct sockaddr *) &sa, &slen);

  if (i >= 32) {
    char src6host[64];
    int recvport = 0;

    reserved->buf[i] = '\0';

    memset(src6host, 0, 64);
    recvport = _eXosip_getport((struct sockaddr *) &sa);
    _eXosip_getnameinfo((struct sockaddr *) &sa, slen, src6host, 64, NULL, 0, NI_NUMERICHOST);

    if ((reserved->buf[0] == 0 || reserved->buf[0] == 1)) {
      eXosip_reg_t *jr;
      struct osip_stun *data = (struct osip_stun *) reserved->buf;
      if (ntohs(data->length) + 20 != i) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_WARNING, NULL, "[eXosip] [UDP] data rejected - received from [%s][%d] [wrong stun length] [length=%i]\n", src6host, recvport, i));
        return OSIP_SUCCESS;
      }

      for (jr = excontext->j_reg; jr != NULL; jr = jr->next) {
        if (memcmp(reserved->buf + sizeof(uint32_t), jr->stun_binding.tr_id, 12)) {
          struct osip_stun_atr {
            uint16_t atr_typ;
            uint16_t atr_len;
            uint8_t atr_reserved;
            uint8_t atr_family;
          };
          struct osip_stun_atr *atr = (struct osip_stun_atr *) (reserved->buf + 20);
          uint16_t atr_len = ntohs(atr->atr_len);
          uint16_t atr_typ = ntohs(atr->atr_typ);
          if ((atr_typ == 0x0020 || atr_typ == 0x8020) && (atr_len == 8 || atr_len == 20)) {
            /* 0x8020 is non standard from an old draft */
            char ipbuf[INET6_ADDRSTRLEN];

            uint16_t nport;
            if (atr->atr_family != 0x01 && atr->atr_family != 0x02)
              break;

            memcpy(&nport, reserved->buf + 26, 2);
            nport = ntohs(nport);

            if (atr_len == 8) {
              uint32_t naddr;
              memcpy(&naddr, reserved->buf + 28, 4);
              naddr = ntohl(naddr);
              _stun_decode_xor_address_ipv4(jr->stun_binding.tr_id, &nport, &naddr);
              naddr = htonl(naddr);
              inet_ntop(AF_INET, &naddr, ipbuf, sizeof(ipbuf));
            } else {
              uint8_t naddr[16];
              memcpy(naddr, reserved->buf + 28, sizeof(naddr));
              _stun_decode_xor_address_ipv6(jr->stun_binding.tr_id, &nport, naddr);
              inet_ntop(AF_INET6, &naddr, ipbuf, sizeof(ipbuf));
            }
            OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] [STUN answer] received from [%s][%d] [length=%i] [XOR=%s %i]\n", src6host, recvport, i, ipbuf, nport));
            jr->ping_rfc5626 = 0;
            if (jr->stun_nport == 0) {
              jr->stun_nport = nport;
              memcpy(jr->stun_ipbuf, ipbuf, sizeof(jr->stun_ipbuf));
              jr->pong_supported = 1;
            } else if (jr->stun_nport != nport || osip_strcasecmp(jr->stun_ipbuf, ipbuf) != 0) {
              OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] [STUN answer] received from [%s][%d] [length=%i] [NEW XOR=%s %i]\n", src6host, recvport, i, ipbuf, nport));
              jr->stun_nport = nport;
              memcpy(jr->stun_ipbuf, ipbuf, sizeof(jr->stun_ipbuf));
              if (jr->r_last_tr->orig_request == NULL || jr->r_last_tr->orig_request->call_id == NULL || jr->r_last_tr->orig_request->call_id->number == NULL)
                break;
              _eXosip_mark_registration_expired(excontext, jr->r_last_tr->orig_request->call_id->number);
            }
            return OSIP_SUCCESS;
          }
          break;
        }
      }
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_WARNING, NULL, "[eXosip] [UDP] data rejected - received from [%s][%d] [bad stun] [length=%i]\n", src6host, recvport, i));
      return OSIP_SUCCESS;
    }

    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] message received from [%s][%d]\n", src6host, recvport));

    _eXosip_handle_incoming_message(excontext, reserved->buf, i, reserved->udp_socket, src6host, recvport, NULL, NULL);

    /* if we have a second socket for outbound connection, save information about inbound traffic initiated by receiving data on udp_socket */
    if (reserved->udp_socket_oc >= 0) {
      int pos;

      for (pos = 0; pos < EXOSIP_MAX_SOCKETS; pos++) {
        /* does the entry already exist? */
        if (reserved->socket_tab[pos].remote_port == recvport && osip_strcasecmp(reserved->socket_tab[pos].remote_ip, src6host) == 0) {
          OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] inbound traffic/connection already in table\n"));
          break;
        }
      }

      if (pos == EXOSIP_MAX_SOCKETS) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] inbound traffic/new connection detected [%s][%d]\n", src6host, recvport));

        for (pos = 0; pos < EXOSIP_MAX_SOCKETS; pos++) {
          if (reserved->socket_tab[pos].out_socket == -1) {
            reserved->socket_tab[pos].out_socket = reserved->udp_socket;
            snprintf(reserved->socket_tab[pos].remote_ip, sizeof(reserved->socket_tab[pos].remote_ip), "%s", src6host);
            reserved->socket_tab[pos].remote_port = recvport;
            OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] inbound traffic/new connection added in table\n"));
            break;
          }
        }
      }
    }

  } else if (i < 0) {
    int valopt = ex_errno;
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot read socket [%i] %s\n", i, _ex_strerror(valopt, eb, ERRBSIZ)));

    if (valopt == 0 || valopt == 34 || valopt == 10040 /* WSAEMSGSIZE */ ) {
      if (udp_message_max_length < 65536) {
        udp_message_max_length = udp_message_max_length * 2;

        if (udp_message_max_length > 65536)
          udp_message_max_length = 65536;

        osip_free(reserved->buf);
        reserved->buf = (char *) osip_malloc(udp_message_max_length * sizeof(char) + 1);
      }
    }

    if (valopt == 57) {
      _udp_tl_reset(excontext, reserved->udp_socket_family);
    }

  } else {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] dummy SIP message received\n"));
  }

  return OSIP_SUCCESS;
}

static int _udp_read_udp_oc_socket(struct eXosip_t *excontext) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  socklen_t slen;
  struct sockaddr_storage sa;
  int i;
  char eb[ERRBSIZ];

  if (reserved->buf == NULL)
    reserved->buf = (char *) osip_malloc(udp_message_max_length * sizeof(char) + 1);

  if (reserved->buf == NULL)
    return OSIP_NOMEM;

  if (reserved->udp_socket_oc_family == AF_INET)
    slen = sizeof(struct sockaddr_in);

  else
    slen = sizeof(struct sockaddr_in6);

  i = (int) recvfrom(reserved->udp_socket_oc, reserved->buf, udp_message_max_length, 0, (struct sockaddr *) &sa, &slen);

  if (i > 32) {
    char src6host[NI_MAXHOST];
    int recvport = 0;

    reserved->buf[i] = '\0';

    memset(src6host, 0, NI_MAXHOST);
    recvport = _eXosip_getport((struct sockaddr *) &sa);
    _eXosip_getnameinfo((struct sockaddr *) &sa, slen, src6host, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] message received from: [%s][%d]\n", src6host, recvport));

    _eXosip_handle_incoming_message(excontext, reserved->buf, i, reserved->udp_socket_oc, src6host, recvport, NULL, NULL);

  } else if (i < 0) {
    int valopt = ex_errno;
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] cannot read socket [%i] %s\n", i, _ex_strerror(valopt, eb, ERRBSIZ)));

    if (valopt == 0 || valopt == 34) {
      if (udp_message_max_length < 65536) {
        udp_message_max_length = udp_message_max_length * 2;

        if (udp_message_max_length > 65536)
          udp_message_max_length = 65536;

        osip_free(reserved->buf);
        reserved->buf = (char *) osip_malloc(udp_message_max_length * sizeof(char) + 1);
      }
    }

    if (valopt == 57) {
      _udp_tl_reset_oc(excontext, reserved->udp_socket_oc_family);
    }

  } else {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] dummy SIP message received\n"));
  }

  return OSIP_SUCCESS;
}

#ifdef HAVE_SYS_EPOLL_H

static int udp_tl_epoll_read_message(struct eXosip_t *excontext, int nfds, struct epoll_event *ep_array) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  int n;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (reserved->udp_socket < 0)
    return -1;

  for (n = 0; n < nfds; ++n) {
    if (ep_array[n].data.fd == reserved->udp_socket) {
      _udp_read_udp_main_socket(excontext);
    }

    if (reserved->udp_socket_oc >= 0 && ep_array[n].data.fd == reserved->udp_socket_oc) {
      _udp_read_udp_oc_socket(excontext);
    }
  }

  return OSIP_SUCCESS;
}

#endif

static int udp_tl_read_message(struct eXosip_t *excontext, fd_set *osip_fdset, fd_set *osip_wrset, fd_set *osip_exceptset) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (reserved->udp_socket < 0)
    return -1;

  if (FD_ISSET(reserved->udp_socket, osip_fdset)) {
    _udp_read_udp_main_socket(excontext);
  }

  if (reserved->udp_socket_oc >= 0 && FD_ISSET(reserved->udp_socket_oc, osip_fdset)) {
    _udp_read_udp_oc_socket(excontext);
  }

  return OSIP_SUCCESS;
}

static int udp_tl_update_contact(struct eXosip_t *excontext, osip_message_t *req) {
  req->application_data = (void *) 0x1; /* request for masquerading */
  return OSIP_SUCCESS;
}

static int _udp_tl_update_contact(struct eXosip_t *excontext, osip_message_t *req) {
  struct eXosip_account_info *ainfo = NULL;
  char *proxy = NULL;
  int i;
  osip_via_t *via = NULL;

  if (req->application_data != (void *) 0x1)
    return OSIP_SUCCESS;

  req->application_data = (void *) 0x0; /* avoid doing twice */

  if (MSG_IS_REQUEST(req)) {
    if (req->from != NULL && req->from->url != NULL && req->from->url->host != NULL)
      proxy = req->from->url->host;

    osip_message_get_via(req, 0, &via);

  } else {
    if (req->to != NULL && req->to->url != NULL && req->to->url->host != NULL)
      proxy = req->to->url->host;
  }

  if (proxy != NULL) {
    for (i = 0; i < MAX_EXOSIP_ACCOUNT_INFO; i++) {
      if (excontext->account_entries[i].proxy[0] != '\0') {
        if (strstr(excontext->account_entries[i].proxy, proxy) != NULL || strstr(proxy, excontext->account_entries[i].proxy) != NULL) {
          /* use ainfo */
          if (excontext->account_entries[i].nat_ip[0] != '\0') {
            ainfo = &excontext->account_entries[i];
            break;
          }
        }
      }
    }
  }

  if (excontext->udp_firewall_ip[0] != '\0' || excontext->auto_masquerade_contact > 0) {
    osip_list_iterator_t it;
    osip_contact_t *co = (osip_contact_t *) osip_list_get_first(&req->contacts, &it);

    while (co != NULL) {
      if (co != NULL && co->url != NULL && co->url->host != NULL) {
        if (ainfo == NULL) {
          if (excontext->udp_firewall_port[0] == '\0') {
          } else if (co->url->port == NULL && 0 != osip_strcasecmp(excontext->udp_firewall_port, "5060")) {
            co->url->port = osip_strdup(excontext->udp_firewall_port);
            osip_message_force_update(req);

          } else if (co->url->port != NULL && 0 != osip_strcasecmp(excontext->udp_firewall_port, co->url->port)) {
            osip_free(co->url->port);
            co->url->port = osip_strdup(excontext->udp_firewall_port);
            osip_message_force_update(req);
          }

        } else {
          if (co->url->port == NULL && ainfo->nat_port != 5060) {
            co->url->port = osip_malloc(10);

            if (co->url->port == NULL)
              return OSIP_NOMEM;

            snprintf(co->url->port, 9, "%i", ainfo->nat_port);
            osip_message_force_update(req);

          } else if (co->url->port != NULL && ainfo->nat_port != atoi(co->url->port)) {
            osip_free(co->url->port);
            co->url->port = osip_malloc(10);

            if (co->url->port == NULL)
              return OSIP_NOMEM;

            snprintf(co->url->port, 9, "%i", ainfo->nat_port);
            osip_message_force_update(req);
          }

#if 1

          if (ainfo->nat_ip[0] != '\0') {
            osip_free(co->url->host);
            co->url->host = osip_strdup(ainfo->nat_ip);
            osip_message_force_update(req);
          }

#endif
        }
      }

      co = (osip_contact_t *) osip_list_get_next(&it);
    }
  }

  if (excontext->masquerade_via)
    if (via != NULL) {
      if (ainfo == NULL) {
        if (excontext->udp_firewall_port[0] == '\0') {
        } else if (via->port == NULL && 0 != osip_strcasecmp(excontext->udp_firewall_port, "5060")) {
          via->port = osip_strdup(excontext->udp_firewall_port);
          osip_message_force_update(req);

        } else if (via->port != NULL && 0 != osip_strcasecmp(excontext->udp_firewall_port, via->port)) {
          osip_free(via->port);
          via->port = osip_strdup(excontext->udp_firewall_port);
          osip_message_force_update(req);
        }

      } else {
        if (via->port == NULL && ainfo->nat_port != 5060) {
          via->port = osip_malloc(10);

          if (via->port == NULL)
            return OSIP_NOMEM;

          snprintf(via->port, 9, "%i", ainfo->nat_port);
          osip_message_force_update(req);

        } else if (via->port != NULL && ainfo->nat_port != atoi(via->port)) {
          osip_free(via->port);
          via->port = osip_malloc(10);

          if (via->port == NULL)
            return OSIP_NOMEM;

          snprintf(via->port, 9, "%i", ainfo->nat_port);
          osip_message_force_update(req);
        }

#if 1

        if (ainfo->nat_ip[0] != '\0') {
          osip_free(via->host);
          via->host = osip_strdup(ainfo->nat_ip);
          osip_message_force_update(req);
        }

#endif
      }
    }

  return OSIP_SUCCESS;
}

#ifndef INET6_ADDRSTRLEN
#define INET6_ADDRSTRLEN 65
#endif

static int udp_tl_send_message(struct eXosip_t *excontext, osip_transaction_t *tr, osip_message_t *sip, char *host, int port, int out_socket) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  socklen_t len = 0;
  size_t length = 0;
  struct addrinfo *addrinfo;
  struct __eXosip_sockaddr addr;
  char *message = NULL;

  char ipbuf[INET6_ADDRSTRLEN];
  int i;
  osip_naptr_t *naptr_record = NULL;
  int sock;
  struct sockaddr_storage *local_ai_addr;
  int local_port;
  int tid = -1;

  if (tr != NULL)
    tid = tr->transactionid;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] [tid=%i] wrong state: create transport layer first\n", tid));
    return OSIP_WRONG_STATE;
  }

  if (reserved->udp_socket < 0)
    return -1;

  if (host == NULL) {
    host = sip->req_uri->host;

    if (sip->req_uri->port != NULL)
      port = osip_atoi(sip->req_uri->port);

    else
      port = 5060;
  }

  i = _tl_resolv_naptr_destination(excontext, tr, sip, &host, &port, &naptr_record);
  if (i == OSIP_SUCCESS + 1)
    return i;
  if (i < OSIP_SUCCESS)
    return i;

  i = _eXosip_get_addrinfo(excontext, &addrinfo, host, port, IPPROTO_UDP);

  if (i != 0) {
    if (MSG_IS_REGISTER(sip)) {
      _eXosip_mark_registration_expired(excontext, sip->call_id->number);
    }

    return -1;
  }

  /* search for an IP similar to reserved->udp_socket_family */
  {
    struct addrinfo *curinfo = NULL;

    for (curinfo = addrinfo; curinfo; curinfo = curinfo->ai_next) {
      if (curinfo->ai_family == reserved->udp_socket_family) {
        break;
      }
    }

    if (excontext->ipv6_enable > 1 && curinfo == NULL) {
      /* search for an IP similar to reserved->udp_socket_family */
      curinfo = addrinfo;
      
      if (curinfo) {
        if (curinfo->ai_family == AF_INET && reserved->udp_socket_family == AF_INET6) {
          /* switch to another family */
          OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [tid=%i] switching to IPv4\n", tid));
          _udp_tl_reset(excontext, curinfo->ai_family);
          return OSIP_SUCCESS;
        }

        if (curinfo->ai_family == AF_INET6 && reserved->udp_socket_family == AF_INET) {
          /* switch to another family */
          OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [tid=%i] switching to IPv6\n", tid));
          _udp_tl_reset(excontext, curinfo->ai_family);
          return OSIP_SUCCESS;
        }
      }
    }

    if (curinfo == NULL) {
      OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_BUG, NULL, "[eXosip] [UDP] [tid=%i] missing matching family\n", tid));
      return -1;
    }

    memcpy(&addr, curinfo->ai_addr, curinfo->ai_addrlen);
    len = (socklen_t) curinfo->ai_addrlen;
  }

  _eXosip_freeaddrinfo(addrinfo);

  /* default socket used */
  sock = reserved->udp_socket;
  local_port = excontext->eXtl_transport.proto_local_port;
  local_ai_addr = &reserved->ai_addr;

  switch (((struct sockaddr *) &addr)->sa_family) {
  case AF_INET:
    inet_ntop(((struct sockaddr *) &addr)->sa_family, &(((struct sockaddr_in *) &addr)->sin_addr), ipbuf, sizeof(ipbuf));
    break;

  case AF_INET6:
    inet_ntop(((struct sockaddr *) &addr)->sa_family, &(((struct sockaddr_in6 *) &addr)->sin6_addr), ipbuf, sizeof(ipbuf));
    break;

  default:
    strncpy(ipbuf, "(unknown)", sizeof(ipbuf));
    break;
  }

  /* if we have a second socket for outbound connection, re-use the incoming socket (udp_socket) for any message sent there */
  if (reserved->udp_socket_oc >= 0) {
    int pos;

    sock = reserved->udp_socket_oc;
    local_port = excontext->oc_local_port_range[0];
    local_ai_addr = &reserved->ai_addr_oc;

    for (pos = 0; pos < EXOSIP_MAX_SOCKETS; pos++) {
      if (reserved->socket_tab[pos].out_socket == -1)
        continue;

      /* we insert in table ONLY incoming transaction that we want to remember: so any entry in the table refer to incoming udp_socket */
      if (reserved->socket_tab[pos].remote_port == port && osip_strcasecmp(reserved->socket_tab[pos].remote_ip, ipbuf) == 0) {
        sock = reserved->socket_tab[pos].out_socket;
        local_port = excontext->eXtl_transport.proto_local_port;
        local_ai_addr = &reserved->ai_addr;
        break;
      }
    }
  }

  _eXosip_request_viamanager(excontext, sip, addr.ss_family, IPPROTO_UDP, local_ai_addr, local_port, sock, ipbuf);
  _eXosip_message_contactmanager(excontext, sip, addr.ss_family, IPPROTO_UDP, local_ai_addr, local_port, sock, ipbuf);
  _udp_tl_update_contact(excontext, sip);

  /* remove preloaded route if there is no tag in the To header
   */
  {
    osip_route_t *route = NULL;
    osip_generic_param_t *tag = NULL;

    if (excontext->remove_prerouteset > 0) {
      osip_message_get_route(sip, 0, &route);
      osip_to_get_tag(sip->to, &tag);

      if (tag == NULL && route != NULL && route->url != NULL) {
        osip_list_remove(&sip->routes, 0);
        osip_message_force_update(sip);
      }
    }

    i = osip_message_to_str(sip, &message, &length);

    if (tag == NULL && route != NULL && route->url != NULL) {
      osip_list_add(&sip->routes, route, 0);
    }
  }

  if (i != 0 || length <= 0) {
    osip_free(message);
    return -1;
  }

  OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] [tid=%i] message sent [len=%d] to [%s][%d]\n%s\n", tid, length, ipbuf, port, message));

  if (excontext->enable_dns_cache == 1 && osip_strcasecmp(host, ipbuf) != 0 && MSG_IS_REQUEST(sip)) {
    if (MSG_IS_REGISTER(sip)) {
      struct eXosip_dns_cache entry;

      memset(&entry, 0, sizeof(struct eXosip_dns_cache));
      snprintf(entry.host, sizeof(entry.host), "%s", host);
      snprintf(entry.ip, sizeof(entry.ip), "%s", ipbuf);
      eXosip_set_option(excontext, EXOSIP_OPT_ADD_DNS_CACHE, (void *) &entry);
    }
  }

  if (tr != NULL) {
    if (tr->ict_context != NULL)
      osip_ict_set_destination(tr->ict_context, osip_strdup(ipbuf), port);

    if (tr->nict_context != NULL)
      osip_nict_set_destination(tr->nict_context, osip_strdup(ipbuf), port);
  }

#ifdef ENABLE_SIP_QOS
  _udp_tl_transport_set_dscp_qos(excontext, (struct sockaddr *) &addr, len);
#endif

#ifdef HAVE_WINSOCK2_H
#define CAST_RECV_LEN(L) ((int) (L))
#else
#define CAST_RECV_LEN(L) L
#endif

  i = (int) sendto(sock, (const void *) message, CAST_RECV_LEN(length), 0, (struct sockaddr *) &addr, len);

  if (i < 0) {
    char eb[ERRBSIZ];
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] [tid=%i] [%s][%d] failure %s\n", tid, host, port, _ex_strerror(ex_errno, eb, ERRBSIZ)));
    if (MSG_IS_REGISTER(sip)) {
      _eXosip_mark_registration_expired(excontext, sip->call_id->number);
    }

    /* SIP_NETWORK_ERROR; */
    osip_free(message);
    return -1;
  }

  if (excontext->ka_interval > 0) {
    if (MSG_IS_REGISTER(sip)) {
      eXosip_reg_t *reg = NULL;

      if (_eXosip_reg_find(excontext, &reg, tr) == 0) {
        memcpy(&(reg->stun_addr), &addr, len);
        reg->stun_len = len;
        reg->stun_nport = 0; /* reset detection to avoid new registration */
        reg->ping_rfc5626 = 0;
      }
    }
  }

  if (naptr_record != NULL) {
    if (tr != NULL && MSG_IS_REGISTER(sip) && tr->last_response == NULL) {
      /* failover for outgoing transaction */
      time_t now;

      now = osip_getsystemtime(NULL);

      if (tr != NULL && now - tr->birth_time > 10) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [tid=%i] [%s][%d] timeout\n", tid, host, port));
        _eXosip_mark_registration_expired(excontext, sip->call_id->number);
        osip_free(message);
        return -1;
      }
    }
  }

  osip_free(message);
  return OSIP_SUCCESS;
}

static int udp_tl_keepalive(struct eXosip_t *excontext) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;
  eXosip_reg_t *jr;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (excontext->ka_interval <= 0) {
    return 0;
  }

  if (reserved->udp_socket < 0)
    return OSIP_UNDEFINED_ERROR;

  for (jr = excontext->j_reg; jr != NULL; jr = jr->next) {
    if (jr->stun_len > 0) {
      int idx;

      jr->stun_binding.type = htons(0x0001);  // STUN_METHOD_BINDING|STUN_REQUEST
      jr->stun_binding.length = htons(0);
      jr->stun_binding.magic_cookie = htonl(0x2112A442);

      for (idx = 0; idx < 12; idx = idx + 4) {
        /* assert(i+3<16); */
        int r = osip_build_random_number();
        jr->stun_binding.tr_id[idx + 0] = r >> 0;
        jr->stun_binding.tr_id[idx + 1] = r >> 8;
        jr->stun_binding.tr_id[idx + 2] = r >> 16;
        jr->stun_binding.tr_id[idx + 3] = r >> 24;
      }

      if (sendto(reserved->udp_socket, (const void *) &jr->stun_binding, sizeof(jr->stun_binding), 0, (struct sockaddr *) &(jr->stun_addr), jr->stun_len) > 0) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] [keepalive] STUN sent on UDP\n"));
        jr->ping_rfc5626 = osip_getsystemtime(NULL) + 9;
      } else {
        char eb[ERRBSIZ];
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO1, NULL, "[eXosip] [UDP] [keepalive] failure %s\n", _ex_strerror(ex_errno, eb, ERRBSIZ)));
      }
    }
  }

  return OSIP_SUCCESS;
}

static int udp_tl_set_socket(struct eXosip_t *excontext, int socket) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  reserved->udp_socket = socket;

  return OSIP_SUCCESS;
}

static int udp_tl_masquerade_contact(struct eXosip_t *excontext, const char *public_address, int port) {
  if (public_address == NULL || public_address[0] == '\0') {
    memset(excontext->udp_firewall_ip, '\0', sizeof(excontext->udp_firewall_ip));
    memset(excontext->udp_firewall_port, '\0', sizeof(excontext->udp_firewall_port));
    return OSIP_SUCCESS;
  }

  snprintf(excontext->udp_firewall_ip, sizeof(excontext->udp_firewall_ip), "%s", public_address);

  if (port > 0) {
    snprintf(excontext->udp_firewall_port, sizeof(excontext->udp_firewall_port), "%i", port);
  }

  return OSIP_SUCCESS;
}

static int udp_tl_get_masquerade_contact(struct eXosip_t *excontext, char *ip, int ip_size, char *port, int port_size) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  memset(ip, 0, ip_size);
  memset(port, 0, port_size);

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (excontext->udp_firewall_ip[0] != '\0')
    snprintf(ip, ip_size, "%s", excontext->udp_firewall_ip);

  if (excontext->udp_firewall_port[0] != '\0')
    snprintf(port, port_size, "%s", excontext->udp_firewall_port);

  return OSIP_SUCCESS;
}

static int udp_tl_check_connection(struct eXosip_t *excontext, int socket) {
  struct eXtludp *reserved = (struct eXtludp *) excontext->eXtludp_reserved;

  if (reserved == NULL) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] [UDP] wrong state: create transport layer first\n"));
    return OSIP_WRONG_STATE;
  }

  if (socket == -1) {
    eXosip_reg_t *jr;

    time_t now = osip_getsystemtime(NULL);

    for (jr = excontext->j_reg; jr != NULL; jr = jr->next) {
      if (jr->ping_rfc5626 > 0 && now > jr->ping_rfc5626 && jr->pong_supported > 0) {
        OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_INFO2, NULL, "[eXosip] [UDP] [checkall] no pong[STUN] for ping[STUN]\n"));

        if (jr->r_last_tr->orig_request == NULL || jr->r_last_tr->orig_request->call_id == NULL || jr->r_last_tr->orig_request->call_id->number == NULL)
          continue;

        jr->ping_rfc5626 = 0;
        jr->stun_nport = 0;
        _eXosip_mark_registration_expired(excontext, jr->r_last_tr->orig_request->call_id->number);

        continue;
      }
    }
    return OSIP_SUCCESS;
  }

  return OSIP_SUCCESS;
}

static struct eXtl_protocol eXtl_udp = {1,
                                        5060,
                                        "UDP",
                                        "0.0.0.0",
                                        IPPROTO_UDP,
                                        AF_INET,
                                        0,
                                        0,
                                        0,

                                        &udp_tl_init,
                                        &udp_tl_free,
                                        &udp_tl_open,
                                        &udp_tl_set_fdset,
                                        &udp_tl_read_message,
#ifdef HAVE_SYS_EPOLL_H
                                        &udp_tl_epoll_read_message,
#endif
                                        &udp_tl_send_message,
                                        &udp_tl_keepalive,
                                        &udp_tl_set_socket,
                                        &udp_tl_masquerade_contact,
                                        &udp_tl_get_masquerade_contact,
                                        &udp_tl_update_contact,
                                        NULL,
                                        &udp_tl_check_connection};

void eXosip_transport_udp_init(struct eXosip_t *excontext) {
  memcpy(&excontext->eXtl_transport, &eXtl_udp, sizeof(struct eXtl_protocol));
}