RtspPusher.cpp 19.4 KB
Newer Older
xiongziliang committed
1 2 3
/*
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5 6 7 8 9
 *
 * Use of this source code is governed by MIT license that can be found in the
 * LICENSE file in the root of the source tree. All contributing project authors
 * may be found in the AUTHORS file in the root of the source tree.
 */
xiongziliang committed
10 11 12 13 14 15

#include "Util/MD5.h"
#include "Util/base64.h"
#include "RtspPusher.h"
#include "RtspSession.h"

xiongziliang committed
16 17
using namespace mediakit::Client;

xiongziliang committed
18 19
namespace mediakit {

xiongziliang committed
20 21
RtspPusher::RtspPusher(const EventPoller::Ptr &poller, const RtspMediaSource::Ptr &src) : TcpClient(poller) {
    _push_src = src;
xiongziliang committed
22 23 24 25 26 27 28
}

RtspPusher::~RtspPusher() {
    teardown();
    DebugL << endl;
}

xiongziliang committed
29
void RtspPusher::sendTeardown(){
xiongziliang committed
30
    if (alive()) {
xiongziliang committed
31 32 33
        if (!_content_base.empty()) {
            sendRtspRequest("TEARDOWN", _content_base);
        }
xiongziliang committed
34
        shutdown(SockException(Err_shutdown, "teardown"));
xiongziliang committed
35
    }
xiongziliang committed
36
}
xiongziliang committed
37

xiongziliang committed
38 39
void RtspPusher::teardown() {
    sendTeardown();
xiongziliang committed
40
    reset();
xiongziliang committed
41 42
    CLEAR_ARR(_rtp_sock);
    CLEAR_ARR(_rtcp_sock);
xiongziliang committed
43 44 45 46 47 48 49 50 51 52 53 54
    _nonce.clear();
    _realm.clear();
    _track_vec.clear();
    _session_id.clear();
    _content_base.clear();
    _session_id.clear();
    _cseq = 1;
    _publish_timer.reset();
    _beat_timer.reset();
    _rtsp_reader.reset();
    _track_vec.clear();
    _on_res_func = nullptr;
xiongziliang committed
55 56
}

xiongziliang committed
57
void RtspPusher::publish(const string &url_str) {
58
    RtspUrl url;
xiongziliang committed
59 60
    if (!url.parse(url_str)) {
        onPublishResult(SockException(Err_other, StrPrinter << "illegal rtsp url:" << url_str), false);
xiongziliang committed
61 62
        return;
    }
xiongziliang committed
63

xiongziliang committed
64 65
    teardown();

66 67
    if (url._user.size()) {
        (*this)[kRtspUser] = url._user;
xiongziliang committed
68
    }
69 70
    if (url._passwd.size()) {
        (*this)[kRtspPwd] = url._passwd;
xiongziliang committed
71
        (*this)[kRtspPwdIsMD5] = false;
xiongziliang committed
72 73
    }

xiongziliang committed
74 75 76 77
    _url = url_str;
    _rtp_type = (Rtsp::eRtpType) (int) (*this)[kRtpType];
    DebugL << url._url << " " << (url._user.size() ? url._user : "null") << " "
           << (url._passwd.size() ? url._passwd : "null") << " " << _rtp_type;
xiongziliang committed
78

xiongziliang committed
79
    weak_ptr<RtspPusher> weak_self = dynamic_pointer_cast<RtspPusher>(shared_from_this());
80
    float publish_timeout_sec = (*this)[kTimeoutMS].as<int>() / 1000.0f;
xiongziliang committed
81 82 83
    _publish_timer.reset(new Timer(publish_timeout_sec, [weak_self]() {
        auto strong_self = weak_self.lock();
        if (!strong_self) {
xiongziliang committed
84 85
            return false;
        }
xiongziliang committed
86
        strong_self->onPublishResult(SockException(Err_timeout, "publish rtsp timeout"), false);
xiongziliang committed
87
        return false;
xiongziliang committed
88
    }, getPoller()));
xiongziliang committed
89

xiongziliang committed
90
    if (!(*this)[kNetAdapter].empty()) {
xiongziliang committed
91 92
        setNetAdapter((*this)[kNetAdapter]);
    }
93

xiongziliang committed
94
    startConnect(url._host, url._port, publish_timeout_sec);
95 96
}

xiongziliang committed
97 98 99 100 101 102
void RtspPusher::onPublishResult(const SockException &ex, bool handshake_done) {
    if (ex.getErrCode() == Err_shutdown) {
        //主动shutdown的,不触发回调
        return;
    }
    if (!handshake_done) {
103
        //播放结果回调
xiongziliang committed
104 105 106
        _publish_timer.reset();
        if (_on_published) {
            _on_published(ex);
107 108 109
        }
    } else {
        //播放成功后异常断开回调
xiongziliang committed
110 111
        if (_on_shutdown) {
            _on_shutdown(ex);
112 113 114
        }
    }

xiongziliang committed
115
    if (ex) {
xiongziliang committed
116
        sendTeardown();
117
    }
xiongziliang committed
118 119 120
}

void RtspPusher::onErr(const SockException &ex) {
121
    //定时器_pPublishTimer为空后表明握手结束了
xiongziliang committed
122
    onPublishResult(ex, !_publish_timer);
xiongziliang committed
123 124 125
}

void RtspPusher::onConnect(const SockException &err) {
xiongziliang committed
126 127
    if (err) {
        onPublishResult(err, false);
xiongziliang committed
128 129 130 131 132
        return;
    }
    sendAnnounce();
}

xiongziliang committed
133
void RtspPusher::onRecv(const Buffer::Ptr &buf){
xiongziliang committed
134
    try {
xiongziliang committed
135
        input(buf->data(), buf->size());
xiongziliang committed
136 137
    } catch (exception &e) {
        SockException ex(Err_other, e.what());
138
        //定时器_pPublishTimer为空后表明握手结束了
xiongziliang committed
139
        onPublishResult(ex, !_publish_timer);
xiongziliang committed
140 141 142 143
    }
}

void RtspPusher::onWholeRtspPacket(Parser &parser) {
xiongziliang committed
144 145 146 147
    decltype(_on_res_func) func;
    _on_res_func.swap(func);
    if (func) {
        func(parser);
xiongziliang committed
148 149 150 151
    }
    parser.Clear();
}

xiongziliang committed
152 153 154 155 156
void RtspPusher::onRtpPacket(const char *data, size_t len) {
    int trackIdx = -1;
    uint8_t interleaved = data[1];
    if (interleaved % 2 != 0) {
        trackIdx = getTrackIndexByInterleaved(interleaved - 1);
xiongziliang committed
157
        onRtcpPacket(trackIdx, _track_vec[trackIdx], (uint8_t *) data + RtpPacket::kRtpTcpHeaderSize, len - RtpPacket::kRtpTcpHeaderSize);
xiongziliang committed
158 159 160 161 162 163 164 165 166 167
    }
}

void RtspPusher::onRtcpPacket(int track_idx, SdpTrack::Ptr &track, uint8_t *data, size_t len){
    auto rtcp_arr = RtcpHeader::loadFromBytes((char *) data, len);
    for (auto &rtcp : rtcp_arr) {
        _rtcp_context[track_idx]->onRtcp(rtcp);
    }
}

xiongziliang committed
168
void RtspPusher::sendAnnounce() {
xiongziliang committed
169
    auto src = _push_src.lock();
xiongziliang committed
170 171 172 173
    if (!src) {
        throw std::runtime_error("the media source was released");
    }
    //解析sdp
xiongziliang committed
174 175 176
    _sdp_parser.load(src->getSdp());
    _track_vec = _sdp_parser.getAvailableTrack();
    if (_track_vec.empty()) {
xiongziliang committed
177 178
        throw std::runtime_error("无有效的Sdp Track");
    }
179
    _rtcp_context.clear();
xiongziliang committed
180
    for (auto &track : _track_vec) {
xiongziliang committed
181
        _rtcp_context.emplace_back(std::make_shared<RtcpContext>(track->_samplerate, false));
xiongziliang committed
182
    }
xiongziliang committed
183 184
    _on_res_func = std::bind(&RtspPusher::handleResAnnounce, this, placeholders::_1);
    sendRtspRequest("ANNOUNCE", _url, {}, src->getSdp());
xiongziliang committed
185 186 187 188 189 190 191 192 193
}

void RtspPusher::handleResAnnounce(const Parser &parser) {
    string authInfo = parser["WWW-Authenticate"];
    //发送DESCRIBE命令后的回复
    if ((parser.Url() == "401") && handleAuthenticationFailure(authInfo)) {
        sendAnnounce();
        return;
    }
xiongziliang committed
194
    if (parser.Url() == "302") {
xiongziliang committed
195
        auto newUrl = parser["Location"];
xiongziliang committed
196
        if (newUrl.empty()) {
xiongziliang committed
197 198 199 200 201 202 203 204
            throw std::runtime_error("未找到Location字段(跳转url)");
        }
        publish(newUrl);
        return;
    }
    if (parser.Url() != "200") {
        throw std::runtime_error(StrPrinter << "ANNOUNCE:" << parser.Url() << " " << parser.Tail());
    }
xiongziliang committed
205
    _content_base = parser["Content-Base"];
xiongziliang committed
206

xiongziliang committed
207 208
    if (_content_base.empty()) {
        _content_base = _url;
xiongziliang committed
209
    }
xiongziliang committed
210 211
    if (_content_base.back() == '/') {
        _content_base.pop_back();
xiongziliang committed
212 213 214 215 216
    }

    sendSetup(0);
}

xiongziliang committed
217 218
bool RtspPusher::handleAuthenticationFailure(const string &params_str) {
    if (!_realm.empty()) {
xiongziliang committed
219 220 221 222
        //已经认证过了
        return false;
    }

xiongziliang committed
223 224 225 226
    char *realm = new char[params_str.size()];
    char *nonce = new char[params_str.size()];
    char *stale = new char[params_str.size()];
    onceToken token(nullptr, [&]() {
xiongziliang committed
227 228 229 230 231
        delete[] realm;
        delete[] nonce;
        delete[] stale;
    });

xiongziliang committed
232 233 234
    if (sscanf(params_str.data(), "Digest realm=\"%[^\"]\", nonce=\"%[^\"]\", stale=%[a-zA-Z]", realm, nonce, stale) == 3) {
        _realm = (const char *) realm;
        _nonce = (const char *) nonce;
xiongziliang committed
235 236
        return true;
    }
xiongziliang committed
237 238 239
    if (sscanf(params_str.data(), "Digest realm=\"%[^\"]\", nonce=\"%[^\"]\"", realm, nonce) == 2) {
        _realm = (const char *) realm;
        _nonce = (const char *) nonce;
xiongziliang committed
240 241
        return true;
    }
xiongziliang committed
242 243
    if (sscanf(params_str.data(), "Basic realm=\"%[^\"]\"", realm) == 1) {
        _realm = (const char *) realm;
xiongziliang committed
244 245 246 247 248
        return true;
    }
    return false;
}

xiongziliang committed
249
//有必要的情况下创建udp端口
250
void RtspPusher::createUdpSockIfNecessary(int track_idx){
xiongziliang committed
251 252 253 254 255 256 257
    auto &rtpSockRef = _rtp_sock[track_idx];
    auto &rtcpSockRef = _rtcp_sock[track_idx];
    if (!rtpSockRef || !rtcpSockRef) {
        std::pair<Socket::Ptr, Socket::Ptr> pr = std::make_pair(createSocket(), createSocket());
        makeSockPair(pr, get_local_ip());
        rtpSockRef = pr.first;
        rtcpSockRef = pr.second;
258 259 260
    }
}

xiongziliang committed
261 262 263 264
void RtspPusher::sendSetup(unsigned int track_idx) {
    _on_res_func = std::bind(&RtspPusher::handleResSetup, this, placeholders::_1, track_idx);
    auto &track = _track_vec[track_idx];
    auto base_url = _content_base + "/" + track->_control_surffix;
265 266 267
    if (track->_control.find("://") != string::npos) {
        base_url = track->_control;
    }
xiongziliang committed
268
    switch (_rtp_type) {
xiongziliang committed
269
        case Rtsp::RTP_TCP: {
xiongziliang committed
270 271 272
            sendRtspRequest("SETUP", base_url, {"Transport",
                                                StrPrinter << "RTP/AVP/TCP;unicast;interleaved=" << track->_type * 2
                                                           << "-" << track->_type * 2 + 1});
xiongziliang committed
273
        }
xiongziliang committed
274
            break;
xiongziliang committed
275
        case Rtsp::RTP_UDP: {
xiongziliang committed
276
            createUdpSockIfNecessary(track_idx);
xiongziliang committed
277
            int port = _rtp_sock[track_idx]->get_local_port();
xiongziliang committed
278 279
            sendRtspRequest("SETUP", base_url,
                            {"Transport", StrPrinter << "RTP/AVP;unicast;client_port=" << port << "-" << port + 1});
xiongziliang committed
280
        }
xiongziliang committed
281
            break;
xiongziliang committed
282
        default:
xiongziliang committed
283
            break;
xiongziliang committed
284 285 286
    }
}

xiongziliang committed
287
void RtspPusher::handleResSetup(const Parser &parser, unsigned int track_idx) {
xiongziliang committed
288
    if (parser.Url() != "200") {
xiongziliang committed
289
        throw std::runtime_error(StrPrinter << "SETUP:" << parser.Url() << " " << parser.Tail() << endl);
xiongziliang committed
290
    }
xiongziliang committed
291 292 293 294
    if (track_idx == 0) {
        _session_id = parser["Session"];
        _session_id.append(";");
        _session_id = FindField(_session_id.data(), nullptr, ";");
xiongziliang committed
295 296
    }

xiongziliang committed
297 298 299 300 301 302
    auto transport = parser["Transport"];
    if (transport.find("TCP") != string::npos || transport.find("interleaved") != string::npos) {
        _rtp_type = Rtsp::RTP_TCP;
        string interleaved = FindField(FindField((transport + ";").data(), "interleaved=", ";").data(), NULL, "-");
        _track_vec[track_idx]->_interleaved = atoi(interleaved.data());
    } else if (transport.find("multicast") != string::npos) {
xiongziliang committed
303
        throw std::runtime_error("SETUP rtsp pusher can not support multicast!");
xiongziliang committed
304 305 306 307 308
    } else {
        _rtp_type = Rtsp::RTP_UDP;
        createUdpSockIfNecessary(track_idx);
        const char *strPos = "server_port=";
        auto port_str = FindField((transport + ";").data(), strPos, ";");
xiongziliang committed
309 310 311 312 313
        uint16_t rtp_port = atoi(FindField(port_str.data(), NULL, "-").data());
        uint16_t rtcp_port = atoi(FindField(port_str.data(), "-", NULL).data());
        auto &rtp_sock = _rtp_sock[track_idx];
        auto &rtcp_sock = _rtcp_sock[track_idx];

xiongziliang committed
314
        struct sockaddr_in rtpto;
xiongziliang committed
315 316 317 318 319 320 321 322
        //设置rtp发送目标,为后续发送rtp做准备
        rtpto.sin_port = ntohs(rtp_port);
        rtpto.sin_family = AF_INET;
        rtpto.sin_addr.s_addr = inet_addr(get_peer_ip().data());
        rtp_sock->setSendPeerAddr((struct sockaddr *) &(rtpto));

        //设置rtcp发送目标,为后续发送rtcp做准备
        rtpto.sin_port = ntohs(rtcp_port);
xiongziliang committed
323 324
        rtpto.sin_family = AF_INET;
        rtpto.sin_addr.s_addr = inet_addr(get_peer_ip().data());
xiongziliang committed
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
        rtcp_sock->setSendPeerAddr((struct sockaddr *)&(rtpto));

        auto srcIP = inet_addr(get_peer_ip().data());
        weak_ptr<RtspPusher> weakSelf = dynamic_pointer_cast<RtspPusher>(shared_from_this());
        if(rtcp_sock) {
            //设置rtcp over udp接收回调处理函数
            rtcp_sock->setOnRead([srcIP, track_idx, weakSelf](const Buffer::Ptr &buf, struct sockaddr *addr , int addr_len) {
                auto strongSelf = weakSelf.lock();
                if (!strongSelf) {
                    return;
                }
                if (((struct sockaddr_in *) addr)->sin_addr.s_addr != srcIP) {
                    WarnL << "收到其他地址的rtcp数据:" << SockUtil::inet_ntoa(((struct sockaddr_in *) addr)->sin_addr);
                    return;
                }
                strongSelf->onRtcpPacket(track_idx, strongSelf->_track_vec[track_idx], (uint8_t *) buf->data(), buf->size());
            });
        }
xiongziliang committed
343 344
    }

xiongziliang committed
345
    RtspSplitter::enableRecvRtp(_rtp_type == Rtsp::RTP_TCP);
xiongziliang committed
346

xiongziliang committed
347
    if (track_idx < _track_vec.size() - 1) {
xiongziliang committed
348
        //需要继续发送SETUP命令
xiongziliang committed
349
        sendSetup(track_idx + 1);
xiongziliang committed
350 351 352 353 354 355
        return;
    }

    sendRecord();
}

xiongziliang committed
356
void RtspPusher::sendOptions() {
xiongziliang committed
357
    _on_res_func = [](const Parser &parser) {};
xiongziliang committed
358
    sendRtspRequest("OPTIONS", _content_base);
xiongziliang committed
359 360
}

xiongziliang committed
361 362 363 364
void RtspPusher::updateRtcpContext(const RtpPacket::Ptr &rtp){
    int track_index = getTrackIndexByTrackType(rtp->type);
    auto &ticker = _rtcp_send_ticker[track_index];
    auto &rtcp_ctx = _rtcp_context[track_index];
xiongziliang committed
365
    rtcp_ctx->onRtp(rtp->getSeq(), rtp->getStampMS(), rtp->size() - RtpPacket::kRtpTcpHeaderSize);
xiongziliang committed
366 367 368 369 370 371 372 373 374 375 376 377 378 379

    //send rtcp every 5 second
    if (ticker.elapsedTime() > 5 * 1000) {
        ticker.resetTime();
        static auto send_rtcp = [](RtspPusher *thiz, int index, Buffer::Ptr ptr) {
            if (thiz->_rtp_type == Rtsp::RTP_TCP) {
                auto &track = thiz->_track_vec[index];
                thiz->send(makeRtpOverTcpPrefix((uint16_t) (ptr->size()), track->_interleaved + 1));
                thiz->send(std::move(ptr));
            } else {
                thiz->_rtcp_sock[index]->send(std::move(ptr));
            }
        };

xiongziliang committed
380 381
        auto ssrc = rtp->getSSRC();
        auto rtcp = rtcp_ctx->createRtcpSR(ssrc + 1);
xiongziliang committed
382 383
        auto rtcp_sdes = RtcpSdes::create({SERVER_NAME});
        rtcp_sdes->items.type = (uint8_t) SdesType::RTCP_SDES_CNAME;
xiongziliang committed
384
        rtcp_sdes->items.ssrc = htonl(ssrc);
xiongziliang committed
385 386 387 388 389 390
        send_rtcp(this, track_index, std::move(rtcp));
        send_rtcp(this, track_index, RtcpHeader::toBuffer(rtcp_sdes));
    }
}

void RtspPusher::sendRtpPacket(const RtspMediaSource::RingDataType &pkt) {
xiongziliang committed
391
    switch (_rtp_type) {
xiongziliang committed
392
        case Rtsp::RTP_TCP: {
393 394
            size_t i = 0;
            auto size = pkt->size();
395 396
            setSendFlushFlag(false);
            pkt->for_each([&](const RtpPacket::Ptr &rtp) {
xiongziliang committed
397
                updateRtcpContext(rtp);
398 399 400
                if (++i == size) {
                    setSendFlushFlag(true);
                }
xia-chu committed
401
                send(rtp);
402
            });
xiongziliang committed
403
            break;
xiongziliang committed
404 405
        }

xiongziliang committed
406
        case Rtsp::RTP_UDP: {
407 408
            size_t i = 0;
            auto size = pkt->size();
409
            pkt->for_each([&](const RtpPacket::Ptr &rtp) {
xiongziliang committed
410
                updateRtcpContext(rtp);
411
                int iTrackIndex = getTrackIndexByTrackType(rtp->type);
xiongziliang committed
412
                auto &pSock = _rtp_sock[iTrackIndex];
413
                if (!pSock) {
xiongziliang committed
414
                    shutdown(SockException(Err_shutdown, "udp sock not opened yet"));
415 416 417
                    return;
                }

xia-chu committed
418
                pSock->send(std::make_shared<BufferRtp>(rtp, RtpPacket::kRtpTcpHeaderSize), nullptr, 0, ++i == size);
419
            });
xiongziliang committed
420
            break;
xiongziliang committed
421 422
        }
        default : break;
xiongziliang committed
423 424 425
    }
}

xiongziliang committed
426 427 428 429 430 431 432 433 434 435 436 437 438 439
int RtspPusher::getTrackIndexByInterleaved(int interleaved) const {
    for (int i = 0; i < (int)_track_vec.size(); ++i) {
        if (_track_vec[i]->_interleaved == interleaved) {
            return i;
        }
    }
    if (_track_vec.size() == 1) {
        return 0;
    }
    throw SockException(Err_shutdown, StrPrinter << "no such track with interleaved:" << interleaved);
}

int RtspPusher::getTrackIndexByTrackType(TrackType type) const{
    for (int i = 0; i < (int)_track_vec.size(); ++i) {
xiongziliang committed
440
        if (type == _track_vec[i]->_type) {
xiongziliang committed
441 442 443
            return i;
        }
    }
xiongziliang committed
444
    if (_track_vec.size() == 1) {
xiongziliang committed
445 446
        return 0;
    }
447
    throw SockException(Err_shutdown, StrPrinter << "no such track with type:" << (int) type);
xiongziliang committed
448 449
}

xiongziliang committed
450
void RtspPusher::sendRecord() {
xiongziliang committed
451 452
    _on_res_func = [this](const Parser &parser) {
        auto src = _push_src.lock();
xiongziliang committed
453 454 455 456
        if (!src) {
            throw std::runtime_error("the media source was released");
        }

xiongziliang committed
457 458 459 460 461
        _rtsp_reader = src->getRing()->attach(getPoller());
        weak_ptr<RtspPusher> weak_self = dynamic_pointer_cast<RtspPusher>(shared_from_this());
        _rtsp_reader->setReadCB([weak_self](const RtspMediaSource::RingDataType &pkt) {
            auto strong_self = weak_self.lock();
            if (!strong_self) {
xiongziliang committed
462 463
                return;
            }
xiongziliang committed
464
            strong_self->sendRtpPacket(pkt);
xiongziliang committed
465
        });
xiongziliang committed
466 467 468 469
        _rtsp_reader->setDetachCB([weak_self]() {
            auto strong_self = weak_self.lock();
            if (strong_self) {
                strong_self->onPublishResult(SockException(Err_other, "媒体源被释放"), !strong_self->_publish_timer);
xiongziliang committed
470 471
            }
        });
xiongziliang committed
472
        if (_rtp_type != Rtsp::RTP_TCP) {
xiongziliang committed
473
            /////////////////////////心跳/////////////////////////////////
474
            _beat_timer.reset(new Timer((*this)[kBeatIntervalMS].as<int>() / 1000.0f, [weak_self]() {
xiongziliang committed
475 476
                auto strong_self = weak_self.lock();
                if (!strong_self) {
xiongziliang committed
477 478
                    return false;
                }
xiongziliang committed
479
                strong_self->sendOptions();
xiongziliang committed
480
                return true;
xiongziliang committed
481
            }, getPoller()));
xiongziliang committed
482
        }
xiongziliang committed
483
        onPublishResult(SockException(Err_success, "success"), false);
484 485
        //提升发送性能
        setSocketFlags();
xiongziliang committed
486
    };
xiongziliang committed
487
    sendRtspRequest("RECORD", _content_base, {"Range", "npt=0.000-"});
xiongziliang committed
488 489
}

490
void RtspPusher::setSocketFlags(){
xiongziliang committed
491 492
    GET_CONFIG(int, merge_write_ms, General::kMergeWriteMS);
    if (merge_write_ms > 0) {
493
        //提高发送性能
xiongziliang committed
494
        setSendFlags(SOCKET_DEFAULE_FLAGS | FLAG_MORE);
495
        SockUtil::setNoDelay(getSock()->rawFD(), false);
496 497 498
    }
}

xiongziliang committed
499
void RtspPusher::sendRtspRequest(const string &cmd, const string &url, const std::initializer_list<string> &header,const string &sdp ) {
xiongziliang committed
500 501 502
    string key;
    StrCaseMap header_map;
    int i = 0;
xiongziliang committed
503 504 505 506
    for (auto &val : header) {
        if (++i % 2 == 0) {
            header_map.emplace(key, val);
        } else {
xiongziliang committed
507 508 509
            key = val;
        }
    }
xiongziliang committed
510
    sendRtspRequest(cmd, url, header_map, sdp);
xiongziliang committed
511
}
xiongziliang committed
512
void RtspPusher::sendRtspRequest(const string &cmd, const string &url,const StrCaseMap &header_const,const string &sdp ) {
xiongziliang committed
513
    auto header = header_const;
xiongziliang committed
514 515
    header.emplace("CSeq", StrPrinter << _cseq++);
    header.emplace("User-Agent", SERVER_NAME);
xiongziliang committed
516

xiongziliang committed
517 518
    if (!_session_id.empty()) {
        header.emplace("Session", _session_id);
xiongziliang committed
519 520
    }

xiongziliang committed
521 522
    if (!_realm.empty() && !(*this)[kRtspUser].empty()) {
        if (!_nonce.empty()) {
xiongziliang committed
523 524 525 526 527 528 529 530 531 532
            //MD5认证
            /*
            response计算方法如下:
            RTSP客户端应该使用username + password并计算response如下:
            (1)当password为MD5编码,则
                response = md5( password:nonce:md5(public_method:url)  );
            (2)当password为ANSI字符串,则
                response= md5( md5(username:realm:password):nonce:md5(public_method:url) );
             */
            string encrypted_pwd = (*this)[kRtspPwd];
xiongziliang committed
533 534
            if (!(*this)[kRtspPwdIsMD5].as<bool>()) {
                encrypted_pwd = MD5((*this)[kRtspUser] + ":" + _realm + ":" + encrypted_pwd).hexdigest();
xiongziliang committed
535
            }
xiongziliang committed
536
            auto response = MD5(encrypted_pwd + ":" + _nonce + ":" + MD5(cmd + ":" + url).hexdigest()).hexdigest();
xiongziliang committed
537 538 539
            _StrPrinter printer;
            printer << "Digest ";
            printer << "username=\"" << (*this)[kRtspUser] << "\", ";
xiongziliang committed
540 541
            printer << "realm=\"" << _realm << "\", ";
            printer << "nonce=\"" << _nonce << "\", ";
xiongziliang committed
542 543
            printer << "uri=\"" << url << "\", ";
            printer << "response=\"" << response << "\"";
xiongziliang committed
544 545
            header.emplace("Authorization", printer);
        } else if (!(*this)[kRtspPwdIsMD5].as<bool>()) {
xiongziliang committed
546 547 548
            //base64认证
            string authStr = StrPrinter << (*this)[kRtspUser] << ":" << (*this)[kRtspPwd];
            char authStrBase64[1024] = {0};
549
            av_base64_encode(authStrBase64, sizeof(authStrBase64), (uint8_t *) authStr.data(), (int)authStr.size());
xiongziliang committed
550
            header.emplace("Authorization", StrPrinter << "Basic " << authStrBase64);
xiongziliang committed
551 552 553
        }
    }

xiongziliang committed
554 555 556
    if (!sdp.empty()) {
        header.emplace("Content-Length", StrPrinter << sdp.size());
        header.emplace("Content-Type", "application/sdp");
xiongziliang committed
557 558 559 560
    }

    _StrPrinter printer;
    printer << cmd << " " << url << " RTSP/1.0\r\n";
xiongziliang committed
561
    for (auto &pr : header) {
xiongziliang committed
562 563 564 565 566
        printer << pr.first << ": " << pr.second << "\r\n";
    }

    printer << "\r\n";

xiongziliang committed
567
    if (!sdp.empty()) {
xiongziliang committed
568 569
        printer << sdp;
    }
570
    SockSender::send(std::move(printer));
xiongziliang committed
571 572 573 574
}


} /* namespace mediakit */