sapenc.c 8.3 KB
Newer Older
1 2 3 4
/*
 * Session Announcement Protocol (RFC 2974) muxer
 * Copyright (c) 2010 Martin Storsjo
 *
5
 * This file is part of Libav.
6
 *
7
 * Libav is free software; you can redistribute it and/or
8 9 10 11
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
12
 * Libav is distributed in the hope that it will be useful,
13 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with Libav; if not, write to the Free Software
19 20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "avformat.h"
23
#include "libavutil/parseutils.h"
24 25 26
#include "libavutil/random_seed.h"
#include "libavutil/avstring.h"
#include "libavutil/intreadwrite.h"
27
#include "libavutil/time.h"
28 29
#include "internal.h"
#include "network.h"
30
#include "os_support.h"
31
#include "rtpenc_chain.h"
A
Anton Khirnov 已提交
32
#include "url.h"
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50

struct SAPState {
    uint8_t    *ann;
    int         ann_size;
    URLContext *ann_fd;
    int64_t     last_time;
};

static int sap_write_close(AVFormatContext *s)
{
    struct SAPState *sap = s->priv_data;
    int i;

    for (i = 0; i < s->nb_streams; i++) {
        AVFormatContext *rtpctx = s->streams[i]->priv_data;
        if (!rtpctx)
            continue;
        av_write_trailer(rtpctx);
51
        avio_close(rtpctx->pb);
52
        avformat_free_context(rtpctx);
53 54 55 56 57
        s->streams[i]->priv_data = NULL;
    }

    if (sap->last_time && sap->ann && sap->ann_fd) {
        sap->ann[0] |= 4; /* Session deletion*/
A
Anton Khirnov 已提交
58
        ffurl_write(sap->ann_fd, sap->ann, sap->ann_size);
59 60 61 62
    }

    av_freep(&sap->ann);
    if (sap->ann_fd)
A
Anton Khirnov 已提交
63
        ffurl_close(sap->ann_fd);
64 65 66 67 68 69 70 71 72
    ff_network_close();
    return 0;
}

static int sap_write_header(AVFormatContext *s)
{
    struct SAPState *sap = s->priv_data;
    char host[1024], path[1024], url[1024], announce_addr[50] = "";
    char *option_list;
73
    int port = 9875, base_port = 5004, i, pos = 0, same_port = 0, ttl = 255;
74 75 76 77 78 79 80 81 82 83
    AVFormatContext **contexts = NULL;
    int ret = 0;
    struct sockaddr_storage localaddr;
    socklen_t addrlen = sizeof(localaddr);
    int udp_fd;

    if (!ff_network_init())
        return AVERROR(EIO);

    /* extract hostname and port */
84
    av_url_split(NULL, 0, NULL, 0, host, sizeof(host), &base_port,
85
                 path, sizeof(path), s->filename);
86 87
    if (base_port < 0)
        base_port = 5004;
88 89 90 91 92

    /* search for options */
    option_list = strrchr(path, '?');
    if (option_list) {
        char buf[50];
93
        if (av_find_info_tag(buf, sizeof(buf), "announce_port", option_list)) {
94
            port = strtol(buf, NULL, 10);
95
        }
96
        if (av_find_info_tag(buf, sizeof(buf), "same_port", option_list)) {
97 98
            same_port = strtol(buf, NULL, 10);
        }
99
        if (av_find_info_tag(buf, sizeof(buf), "ttl", option_list)) {
100 101
            ttl = strtol(buf, NULL, 10);
        }
102
        if (av_find_info_tag(buf, sizeof(buf), "announce_addr", option_list)) {
103 104 105 106 107
            av_strlcpy(announce_addr, buf, sizeof(announce_addr));
        }
    }

    if (!announce_addr[0]) {
108
        struct addrinfo hints = { 0 }, *ai = NULL;
109
        hints.ai_family = AF_UNSPEC;
110 111 112 113 114 115 116 117
        if (getaddrinfo(host, NULL, &hints, &ai)) {
            av_log(s, AV_LOG_ERROR, "Unable to resolve %s\n", host);
            ret = AVERROR(EIO);
            goto fail;
        }
        if (ai->ai_family == AF_INET) {
            /* Also known as sap.mcast.net */
            av_strlcpy(announce_addr, "224.2.127.254", sizeof(announce_addr));
118
#if HAVE_STRUCT_SOCKADDR_IN6
119 120 121 122 123
        } else if (ai->ai_family == AF_INET6) {
            /* With IPv6, you can use the same destination in many different
             * multicast subnets, to choose how far you want it routed.
             * This one is intended to be routed globally. */
            av_strlcpy(announce_addr, "ff0e::2:7ffe", sizeof(announce_addr));
124
#endif
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
        } else {
            freeaddrinfo(ai);
            av_log(s, AV_LOG_ERROR, "Host %s resolved to unsupported "
                                    "address family\n", host);
            ret = AVERROR(EIO);
            goto fail;
        }
        freeaddrinfo(ai);
    }

    contexts = av_mallocz(sizeof(AVFormatContext*) * s->nb_streams);
    if (!contexts) {
        ret = AVERROR(ENOMEM);
        goto fail;
    }

    s->start_time_realtime = av_gettime();
    for (i = 0; i < s->nb_streams; i++) {
        URLContext *fd;

        ff_url_join(url, sizeof(url), "rtp", NULL, host, base_port,
                    "?ttl=%d", ttl);
        if (!same_port)
            base_port += 2;
149
        ret = ffurl_open(&fd, url, AVIO_FLAG_WRITE, &s->interrupt_callback, NULL);
150 151 152 153
        if (ret) {
            ret = AVERROR(EIO);
            goto fail;
        }
154 155 156 157
        ret = ff_rtp_chain_mux_open(&contexts[i], s, s->streams[i], fd, 0);
        if (ret < 0)
            goto fail;
        s->streams[i]->priv_data = contexts[i];
158 159 160 161 162
        av_strlcpy(contexts[i]->filename, url, sizeof(contexts[i]->filename));
    }

    ff_url_join(url, sizeof(url), "udp", NULL, announce_addr, port,
                "?ttl=%d&connect=1", ttl);
163 164
    ret = ffurl_open(&sap->ann_fd, url, AVIO_FLAG_WRITE,
                     &s->interrupt_callback, NULL);
165 166 167 168 169
    if (ret) {
        ret = AVERROR(EIO);
        goto fail;
    }

170
    udp_fd = ffurl_get_file_handle(sap->ann_fd);
171 172 173 174
    if (getsockname(udp_fd, (struct sockaddr*) &localaddr, &addrlen)) {
        ret = AVERROR(EIO);
        goto fail;
    }
175 176 177 178 179
    if (localaddr.ss_family != AF_INET
#if HAVE_STRUCT_SOCKADDR_IN6
        && localaddr.ss_family != AF_INET6
#endif
        ) {
180 181 182 183 184 185 186 187 188 189
        av_log(s, AV_LOG_ERROR, "Unsupported protocol family\n");
        ret = AVERROR(EIO);
        goto fail;
    }
    sap->ann_size = 8192;
    sap->ann = av_mallocz(sap->ann_size);
    if (!sap->ann) {
        ret = AVERROR(EIO);
        goto fail;
    }
190 191 192 193 194 195
    sap->ann[pos] = (1 << 5);
#if HAVE_STRUCT_SOCKADDR_IN6
    if (localaddr.ss_family == AF_INET6)
        sap->ann[pos] |= 0x10;
#endif
    pos++;
196 197 198 199 200 201 202
    sap->ann[pos++] = 0; /* Authentication length */
    AV_WB16(&sap->ann[pos], av_get_random_seed());
    pos += 2;
    if (localaddr.ss_family == AF_INET) {
        memcpy(&sap->ann[pos], &((struct sockaddr_in*)&localaddr)->sin_addr,
               sizeof(struct in_addr));
        pos += sizeof(struct in_addr);
203
#if HAVE_STRUCT_SOCKADDR_IN6
204 205 206 207
    } else {
        memcpy(&sap->ann[pos], &((struct sockaddr_in6*)&localaddr)->sin6_addr,
               sizeof(struct in6_addr));
        pos += sizeof(struct in6_addr);
208
#endif
209 210 211 212 213
    }

    av_strlcpy(&sap->ann[pos], "application/sdp", sap->ann_size - pos);
    pos += strlen(&sap->ann[pos]) + 1;

214
    if (av_sdp_create(contexts, s->nb_streams, &sap->ann[pos],
M
Martin Storsjö 已提交
215
                      sap->ann_size - pos)) {
216 217 218 219 220 221 222 223
        ret = AVERROR_INVALIDDATA;
        goto fail;
    }
    av_freep(&contexts);
    av_log(s, AV_LOG_VERBOSE, "SDP:\n%s\n", &sap->ann[pos]);
    pos += strlen(&sap->ann[pos]);
    sap->ann_size = pos;

224
    if (sap->ann_size > sap->ann_fd->max_packet_size) {
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
        av_log(s, AV_LOG_ERROR, "Announcement too large to send in one "
                                "packet\n");
        goto fail;
    }

    return 0;

fail:
    av_free(contexts);
    sap_write_close(s);
    return ret;
}

static int sap_write_packet(AVFormatContext *s, AVPacket *pkt)
{
    AVFormatContext *rtpctx;
    struct SAPState *sap = s->priv_data;
    int64_t now = av_gettime();

    if (!sap->last_time || now - sap->last_time > 5000000) {
A
Anton Khirnov 已提交
245
        int ret = ffurl_write(sap->ann_fd, sap->ann, sap->ann_size);
246
        /* Don't abort even if we get "Destination unreachable" */
247
        if (ret < 0 && ret != AVERROR(ECONNREFUSED))
248 249 250 251 252 253 254
            return ret;
        sap->last_time = now;
    }
    rtpctx = s->streams[pkt->stream_index]->priv_data;
    return ff_write_chained(rtpctx, 0, pkt, s);
}

255
AVOutputFormat ff_sap_muxer = {
256 257 258 259 260 261 262 263
    .name              = "sap",
    .long_name         = NULL_IF_CONFIG_SMALL("SAP output format"),
    .priv_data_size    = sizeof(struct SAPState),
    .audio_codec       = CODEC_ID_AAC,
    .video_codec       = CODEC_ID_MPEG4,
    .write_header      = sap_write_header,
    .write_packet      = sap_write_packet,
    .write_trailer     = sap_write_close,
264
    .flags             = AVFMT_NOFILE | AVFMT_GLOBALHEADER,
265
};