pgm_link.c 13.5 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
/*******************************************************************************
    OpenAirInterface 
    Copyright(c) 1999 - 2014 Eurecom

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


    OpenAirInterface 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 OpenAirInterface.The full GNU General Public License is 
   included in this distribution in the file called "COPYING". If not, 
   see <http://www.gnu.org/licenses/>.

  Contact Information
  OpenAirInterface Admin: openair_admin@eurecom.fr
  OpenAirInterface Tech : openair_tech@eurecom.fr
  OpenAirInterface Dev  : openair4g-devel@eurecom.fr
  
  Address      : Eurecom, Compus SophiaTech 450, route des chappes, 06451 Biot, France.

 *******************************************************************************/
#include <pthread.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>

#include <arpa/inet.h>

#if defined(ENABLE_PGM_TRANSPORT)

#include <pgm/pgm.h>

#include "assertions.h"

#include "pgm_link.h"
#include "multicast_link.h"

#include "UTIL/OCG/OCG.h"
#include "UTIL/OCG/OCG_extern.h"

#include "UTIL/LOG/log.h"

// #define ENABLE_PGM_DEBUG

typedef struct {
    pgm_sock_t *sock;
    uint16_t port;
    uint8_t  rx_buffer[40000];
} pgm_multicast_group_t;

pgm_multicast_group_t pgm_multicast_group[MULTICAST_LINK_NUM_GROUPS];

static
int pgm_create_socket(int index, const char *if_addr);

unsigned int pgm_would_block = 1;

#if defined(ENABLE_PGM_DEBUG)
static void
log_handler (
    const int         log_level,
    const char*       message,
    void*             closure
)
{
    printf("%s\n", message);
}
#endif

int pgm_oai_init(char *if_addr)
{
    pgm_error_t* pgm_err = NULL;

    memset(pgm_multicast_group, 0,
           MULTICAST_LINK_NUM_GROUPS * sizeof(pgm_multicast_group_t));

#if defined(ENABLE_PGM_DEBUG)
    pgm_messages_init();
    pgm_min_log_level = PGM_LOG_LEVEL_DEBUG;
    pgm_log_mask = 0xFFF;

    pgm_log_set_handler(log_handler, NULL);
#endif

    if (!pgm_init(&pgm_err)) {
        LOG_E(EMU, "Unable to start PGM engine: %s\n", pgm_err->message);
        pgm_error_free (pgm_err);
        exit(EXIT_FAILURE);
    }

    return pgm_create_socket(oai_emulation.info.multicast_group, if_addr);
}

int pgm_recv_msg(int group, uint8_t *buffer, uint32_t length,
                 unsigned int frame, unsigned int next_slot)
{
    size_t                num_bytes = 0;
    int                   status    = 0;
    pgm_error_t*          pgm_err   = NULL;
    struct pgm_sockaddr_t from;
    socklen_t             fromlen   = sizeof(from);
    uint32_t              timeout   = 0;
    int                   flags     = 0;

    if (pgm_would_block == 0) {
        flags = MSG_DONTWAIT;
    }

    DevCheck((group <= MULTICAST_LINK_NUM_GROUPS) && (group >= 0),
             group, MULTICAST_LINK_NUM_GROUPS, 0);

#ifdef DEBUG_EMU
    LOG_I(EMU, "[PGM] Entering recv function for group %d\n", group);
#endif
    do {
        status = pgm_recvfrom(pgm_multicast_group[group].sock,
                            buffer,
                            length,
                            flags,
                            &num_bytes,
                            &from,
                            &fromlen,
                            &pgm_err);

        if (PGM_IO_STATUS_NORMAL == status) {
#ifdef DEBUG_EMU
            LOG_D(EMU, "[PGM] Received %d bytes for group %d\n", num_bytes, group);
#endif
            return num_bytes;
        } else if (PGM_IO_STATUS_TIMER_PENDING == status) {
            if (pgm_would_block == 0) {
                /* We sleep for 50 usec */
                usleep(50);

                timeout ++;

                if (timeout == (1000000 / 50))
                {
                    LOG_W(EMU, "[PGM] A packet has been lost -> ask for retransmit\n");
                    /* If we do not receive a packet after 10000usec
                    * -> send a NACK */
                    bypass_tx_nack(frame, next_slot);
                    timeout = 0;
                }
            }
        } else if (PGM_IO_STATUS_RESET == status) {
            LOG_W(EMU, "[PGM] Got session reset\n");
        } else {
#ifdef DEBUG_EMU
            LOG_D(EMU, "[PGM] Got status %d\n", status);
#endif
            if (pgm_err) {
                LOG_E(EMU, "[PGM] recvform failed: %s", pgm_err->message);
                pgm_error_free (pgm_err);
                pgm_err = NULL;
            }
        }
    } while(status != PGM_IO_STATUS_NORMAL);
    return -1;
}

int pgm_link_send_msg(int group, uint8_t *data, uint32_t len)
{
    int status;
    size_t bytes_written = 0;

    do {
        status = pgm_send(pgm_multicast_group[group].sock, data, len, &bytes_written);
    } while(status == PGM_IO_STATUS_WOULD_BLOCK);

    if (status != PGM_IO_STATUS_NORMAL) {
        return -1;
    }
    return bytes_written;
}

static
int pgm_create_socket(int index, const char *if_addr)
{
    struct pgm_addrinfo_t* res = NULL;
    pgm_error_t*          pgm_err        = NULL;
    sa_family_t           sa_family      = AF_INET;
    int                   udp_encap_port = 46014 + index;
    int                   max_tpdu       = 1500;
    int                   sqns           = 100;
    int                   port           = 0;
    struct pgm_sockaddr_t addr;
    int                   blocking       = 1;
    int                   multicast_loop = 0;
    int                   multicast_hops = 0;
    int                   dscp, i;

    port = udp_encap_port;

    /* Use PGM */
    udp_encap_port = 0;

    LOG_D(EMU, "[PGM] Preparing socket for group %d and address %s\n",
          index, if_addr);

    if (!pgm_getaddrinfo(if_addr, NULL, &res, &pgm_err)) {
        LOG_E(EMU, "Parsing network parameter: %s\n", pgm_err->message);
        goto err_abort;
    }

    if (udp_encap_port) {
        LOG_I(EMU, "[PGM] Creating PGM/UDP socket for encapsulated port %d\n",
              udp_encap_port);
        if (!pgm_socket (&pgm_multicast_group[index].sock, sa_family,
            SOCK_SEQPACKET, IPPROTO_UDP, &pgm_err)) {
            LOG_E(EMU, "[PGM] Socket: %s\n", pgm_err->message);
            goto err_abort;
        }
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_UDP_ENCAP_UCAST_PORT, &udp_encap_port,
                       sizeof(udp_encap_port));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_UDP_ENCAP_MCAST_PORT, &udp_encap_port,
                       sizeof(udp_encap_port));
    } else {
        LOG_I(EMU, "[PGM] Creating PGM/IP socket\n");
        if (!pgm_socket(&pgm_multicast_group[index].sock, sa_family,
            SOCK_SEQPACKET, IPPROTO_PGM, &pgm_err)) {
            LOG_E(EMU, "Creating PGM/IP socket: %s\n", pgm_err->message);
            goto err_abort;
        }
    }

    {
        /* Use RFC 2113 tagging for PGM Router Assist */
        const int no_router_assist = 0;
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_IP_ROUTER_ALERT, &no_router_assist,
                       sizeof(no_router_assist));
    }

//     pgm_drop_superuser();

    {
        /* set PGM parameters */
        const int recv_only = 0,
            passive = 0,
            peer_expiry = pgm_secs (300),
            spmr_expiry = pgm_msecs (250),
            nak_bo_ivl = pgm_msecs (10),
            nak_rpt_ivl = pgm_secs (2),
            nak_rdata_ivl = pgm_secs (2),
            nak_data_retries = 50,
            nak_ncf_retries = 50,
            ambient_spm = pgm_secs(30);
        const int heartbeat_spm[] = {
            pgm_msecs (100),
            pgm_msecs (100),
            pgm_msecs (100),
            pgm_msecs (100),
            pgm_msecs (1300),
            pgm_secs  (7),
            pgm_secs  (16),
            pgm_secs  (25),
            pgm_secs  (30)
        };

        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_RECV_ONLY, &recv_only, sizeof(recv_only));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_PASSIVE, &passive, sizeof(passive));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_MTU, &max_tpdu, sizeof(max_tpdu));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_RXW_SQNS, &sqns, sizeof(sqns));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_PEER_EXPIRY, &peer_expiry, sizeof(peer_expiry));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_SPMR_EXPIRY, &spmr_expiry, sizeof(spmr_expiry));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_NAK_BO_IVL, &nak_bo_ivl, sizeof(nak_bo_ivl));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_NAK_RPT_IVL, &nak_rpt_ivl, sizeof(nak_rpt_ivl));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_NAK_RDATA_IVL, &nak_rdata_ivl, sizeof(nak_rdata_ivl));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_NAK_DATA_RETRIES, &nak_data_retries, sizeof(nak_data_retries));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_NAK_NCF_RETRIES, &nak_ncf_retries, sizeof(nak_ncf_retries));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_AMBIENT_SPM, &ambient_spm, sizeof(ambient_spm));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_HEARTBEAT_SPM, &heartbeat_spm, sizeof(heartbeat_spm));
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                       PGM_TXW_SQNS, &sqns, sizeof(sqns));
    }

    /* create global session identifier */
    memset (&addr, 0, sizeof(addr));
    /* sa_port should be in host byte order */
    addr.sa_port = port;
    addr.sa_addr.sport = DEFAULT_DATA_SOURCE_PORT + index;
    if (!pgm_gsi_create_from_hostname(&addr.sa_addr.gsi, &pgm_err)) {
        LOG_E(EMU, "[PGM] Creating GSI: %s\n", pgm_err->message);
        goto err_abort;
    }

    LOG_D(EMU, "[PGM] Created GSI %s\n", pgm_tsi_print(&addr.sa_addr));

    /* assign socket to specified address */
    {
        struct pgm_interface_req_t if_req;
        memset (&if_req, 0, sizeof(if_req));
        if_req.ir_interface = res->ai_recv_addrs[0].gsr_interface;
        if_req.ir_scope_id  = 0;
        if (AF_INET6 == sa_family) {
            struct sockaddr_in6 sa6;
            memcpy (&sa6, &res->ai_recv_addrs[0].gsr_group, sizeof(sa6));
            if_req.ir_scope_id = sa6.sin6_scope_id;
        }
        if (!pgm_bind3(pgm_multicast_group[index].sock, &addr, sizeof(addr),
                       &if_req, sizeof(if_req),        /* tx interface */
                       &if_req, sizeof(if_req),        /* rx interface */
                       &pgm_err))
        {
            LOG_E(EMU, "[PGM] Error: %s\n", pgm_err->message);
            goto err_abort;
        }
    }

    /* join IP multicast groups */
    {
        struct group_req req;
        struct sockaddr_in addr_in;

        memset(&req, 0, sizeof(req));

        /* Interface index */
        req.gr_interface = res->ai_recv_addrs[0].gsr_interface;

        addr_in.sin_family = AF_INET;
        addr_in.sin_port = htons(port);

        for (i = 0; i < MULTICAST_LINK_NUM_GROUPS; i++) {
            addr_in.sin_addr.s_addr = inet_addr(multicast_group_list[i]);
            memcpy(&req.gr_group, &addr_in, sizeof(addr_in));

            pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                            PGM_JOIN_GROUP, &req,
                            sizeof(struct group_req));
        }

        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                        PGM_SEND_GROUP, &req,
                        sizeof(struct group_req));
    }

    pgm_freeaddrinfo(res);
    res = NULL;

    /* set IP parameters */
    multicast_hops = 64;
    dscp = 0x2e << 2;             /* Expedited Forwarding PHB for network elements, no ECN. */

    pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                   PGM_MULTICAST_LOOP, &multicast_loop, sizeof(multicast_loop));
    pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM,
                   PGM_MULTICAST_HOPS, &multicast_hops, sizeof(multicast_hops));
    if (AF_INET6 != sa_family)
        pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM, PGM_TOS,
                       &dscp, sizeof(dscp));
    pgm_setsockopt(pgm_multicast_group[index].sock, IPPROTO_PGM, PGM_NOBLOCK,
                   &blocking, sizeof(blocking));

    if (!pgm_connect(pgm_multicast_group[index].sock, &pgm_err)) {
        LOG_E(EMU, "[PGM] Connecting socket: %s\n", pgm_err->message);
        goto err_abort;
    }

    return 0;

err_abort:
    if (NULL != pgm_multicast_group[index].sock) {
        pgm_close(pgm_multicast_group[index].sock, FALSE);
        pgm_multicast_group[index].sock = NULL;
    }
    if (NULL != res) {
        pgm_freeaddrinfo(res);
        res = NULL;
    }
    if (NULL != pgm_err) {
        pgm_error_free(pgm_err);
        pgm_err = NULL;
    }

    exit(EXIT_FAILURE);
}

#endif