Receiving multiple multicast feeds on the same port - C, Linux

前端 未结 8 1098
予麋鹿
予麋鹿 2020-11-29 04:59

I have an application that is receiving data from multiple multicast sources on the same port. I am able to receive the data. However, I am trying to account for statistics

相关标签:
8条回答
  • 2020-11-29 05:23

    [Edited to clarify that bind() may in fact include a multicast address.]

    So the application is joining several multicast groups, and receiving messages sent to any of them, to the same port. SO_REUSEPORT allows you to bind several sockets to the same port. Besides the port, bind() needs an IP address. INADDR_ANY is a catch-all address, but an IP address may also be used, including a multicast one. In that case, only packets sent to that IP will be delivered to the socket. I.e. you can create several sockets, one for each multicast group. bind() each socket to the (group_addr, port), AND join group_addr. Then data addressed to different groups will show up on different sockets, and you'll be able to distinguish it that way.

    I tested that the following works on FreeBSD:

    #include <sys/socket.h>
    #include <stdio.h>
    #include <string.h>
    #include <arpa/inet.h>
    #include <netinet/in.h>
    #include <sys/param.h>
    #include <unistd.h>
    #include <errno.h>
    
    int main(int argc, const char *argv[])
    {
        const char *group = argv[1];
    
        int s = socket(AF_INET, SOCK_DGRAM, 0);
        int reuse = 1;
        if (setsockopt(s, SOL_SOCKET, SO_REUSEPORT, &reuse, sizeof(reuse)) == -1) {
            fprintf(stderr, "setsockopt: %d\n", errno);
            return 1;
        }
    
        /* construct a multicast address structure */
        struct sockaddr_in mc_addr;
        memset(&mc_addr, 0, sizeof(mc_addr));
        mc_addr.sin_family = AF_INET;
        mc_addr.sin_addr.s_addr = inet_addr(group);
        mc_addr.sin_port = htons(19283);
    
        if (bind(s, (struct sockaddr*) &mc_addr, sizeof(mc_addr)) == -1) {
            fprintf(stderr, "bind: %d\n", errno);
            return 1;
        }
    
        struct ip_mreq mreq;
        mreq.imr_multiaddr.s_addr = inet_addr(group);
        mreq.imr_interface.s_addr = INADDR_ANY;
        setsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq));
    
        char buf[1024];
        int n = 0;
        while ((n = read(s, buf, 1024)) > 0) {
            printf("group %s fd %d len %d: %.*s\n", group, s, n, n, buf);
        }
    }
    

    If you run several such processes, for different multicast addresses, and send a message to one of the addresses, only the relevant process will receive it. Of course, in your case, you probably will want to have all the sockets in one process, and you'll have to use select or poll or equivalent to read them all.

    0 讨论(0)
  • 2020-11-29 05:23

    IIRC recvfrom() gives you a different read address/port for each sender.

    You can also put a header in each packet identifying the source sender.

    0 讨论(0)
  • 2020-11-29 05:23

    You can separate the multicast streams by looking at the destination IP addresses of the received packets (which will always be the multicast addresses). It is somewhat involved to do this:

    Bind to INADDR_ANY and set the IP_PKTINFO socket option. You then have to use recvmsg() to receive your multicast UDP packets and to scan for the IP_PKTINFO control message. This gives you some side band information of the received UDP packet:

    struct in_pktinfo {
        unsigned int   ipi_ifindex;  /* Interface index */
        struct in_addr ipi_spec_dst; /* Local address */
        struct in_addr ipi_addr;     /* Header Destination address */
    };
    

    Look at ipi_addr: This will be the multicast address of the UDP packet you just received. You can now handle the received packets specific for each multicast stream (multicast address) you are receiving.

    0 讨论(0)
  • 2020-11-29 05:30

    I have had to use multiple sockets each looking at different multicast group addresses, and then count statistics on each socket individually.

    If there is a way to see the "receiver's address" as mentioned in the answer above, I can't figure it out.

    One important point that also took me awhile - when I bound each of my individual sockets to a blank address like most python examples do:

    sock[i].bind(('', MC_PORT[i])
    

    I got all the multicast packets (from all multicast groups) on each socket, which didn't help. To fix this, I bound each socket to it's own multicast group

    sock[i].bind((MC_GROUP[i], MC_PORT[i]))
    

    And it then worked.

    0 讨论(0)
  • 2020-11-29 05:35

    Replace

    mc_addr.sin_addr.s_addr = htonl(INADDR_ANY);

    with

    mc_addr.sin_addr.s_addr = inet_addr (mc_addr_str);

    it's help for me (linux), for each application i receive separate mcast stream from separate mcast group on one port.

    Also you can look into VLC player source, it show many mcast iptv channel from different mcast group on one port, but i dont know, how it separetes channel.

    0 讨论(0)
  • 2020-11-29 05:39

    Use setsockopt() and IP_PKTINFO or IP_RECVDSTADDR depending on your platform, assuming IPv4. This combined with recvmsg() or WSARecvMsg() allows you to find the source and destination address of every packet.

    Unix/Linux, note FreeBSD uses IP_RECVDSTADDR whilst both support IP6_PKTINFO for IPv6.

    • http://www.kernel.org/doc/man-pages/online/pages/man7/ip.7.html

    Windows, also has IP_ORIGINAL_ARRIVAL_IF

    • http://msdn.microsoft.com/en-us/library/ms741645(v=VS.85).aspx
    0 讨论(0)
提交回复
热议问题