mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-01 17:11:31 +08:00
6045b1b8f8
优化代码
469 lines
14 KiB
C++
469 lines
14 KiB
C++
//
|
||
// Created by xzl on 2019/3/27.
|
||
//
|
||
|
||
#include "Util/MD5.h"
|
||
#include "Util/base64.h"
|
||
#include "RtspPusher.h"
|
||
#include "RtspSession.h"
|
||
|
||
using namespace mediakit::Client;
|
||
|
||
namespace mediakit {
|
||
|
||
static int kSockFlags = SOCKET_DEFAULE_FLAGS | FLAG_MORE;
|
||
|
||
RtspPusher::RtspPusher(const RtspMediaSource::Ptr &src) {
|
||
_pMediaSrc = src;
|
||
}
|
||
|
||
RtspPusher::~RtspPusher() {
|
||
teardown();
|
||
DebugL << endl;
|
||
}
|
||
|
||
void RtspPusher::teardown() {
|
||
if (alive()) {
|
||
sendRtspRequest("TEARDOWN" ,_strContentBase);
|
||
shutdown();
|
||
}
|
||
|
||
reset();
|
||
CLEAR_ARR(_apUdpSock);
|
||
_rtspMd5Nonce.clear();
|
||
_rtspRealm.clear();
|
||
_aTrackInfo.clear();
|
||
_strSession.clear();
|
||
_strContentBase.clear();
|
||
_strSession.clear();
|
||
_uiCseq = 1;
|
||
_pPublishTimer.reset();
|
||
_pBeatTimer.reset();
|
||
_pRtspReader.reset();
|
||
_aTrackInfo.clear();
|
||
_onHandshake = nullptr;
|
||
}
|
||
|
||
void RtspPusher::publish(const string &strUrl) {
|
||
auto userAndPwd = FindField(strUrl.data(),"://","@");
|
||
Rtsp::eRtpType eType = (Rtsp::eRtpType)(int)(*this)[ kRtpType];
|
||
if(userAndPwd.empty()){
|
||
publish(strUrl,"","",eType);
|
||
return;
|
||
}
|
||
auto suffix = FindField(strUrl.data(),"@",nullptr);
|
||
auto url = StrPrinter << "rtsp://" << suffix << endl;
|
||
if(userAndPwd.find(":") == string::npos){
|
||
publish(url,userAndPwd,"",eType);
|
||
return;
|
||
}
|
||
auto user = FindField(userAndPwd.data(),nullptr,":");
|
||
auto pwd = FindField(userAndPwd.data(),":",nullptr);
|
||
publish(url,user,pwd,eType);
|
||
}
|
||
|
||
void RtspPusher::onPublishResult(const SockException &ex) {
|
||
if(_pPublishTimer){
|
||
//播放结果回调
|
||
_pPublishTimer.reset();
|
||
if(_onPublished){
|
||
_onPublished(ex);
|
||
}
|
||
} else {
|
||
//播放成功后异常断开回调
|
||
if(_onShutdown){
|
||
_onShutdown(ex);
|
||
}
|
||
}
|
||
|
||
if(ex){
|
||
teardown();
|
||
}
|
||
}
|
||
|
||
void RtspPusher::publish(const string & strUrl, const string &strUser, const string &strPwd, Rtsp::eRtpType eType ) {
|
||
DebugL << strUrl << " "
|
||
<< (strUser.size() ? strUser : "null") << " "
|
||
<< (strPwd.size() ? strPwd:"null") << " "
|
||
<< eType;
|
||
teardown();
|
||
|
||
if(strUser.size()){
|
||
(*this)[kRtspUser] = strUser;
|
||
}
|
||
if(strPwd.size()){
|
||
(*this)[kRtspPwd] = strPwd;
|
||
(*this)[kRtspPwdIsMD5] = false;
|
||
}
|
||
|
||
_eType = eType;
|
||
|
||
auto ip = FindField(strUrl.data(), "://", "/");
|
||
if (!ip.size()) {
|
||
ip = FindField(strUrl.data(), "://", NULL);
|
||
}
|
||
auto port = atoi(FindField(ip.data(), ":", NULL).data());
|
||
if (port <= 0) {
|
||
//rtsp 默认端口554
|
||
port = 554;
|
||
} else {
|
||
//服务器域名
|
||
ip = FindField(ip.data(), NULL, ":");
|
||
}
|
||
|
||
_strUrl = strUrl;
|
||
|
||
weak_ptr<RtspPusher> weakSelf = dynamic_pointer_cast<RtspPusher>(shared_from_this());
|
||
float playTimeOutSec = (*this)[kTimeoutMS].as<int>() / 1000.0;
|
||
_pPublishTimer.reset( new Timer(playTimeOutSec, [weakSelf]() {
|
||
auto strongSelf=weakSelf.lock();
|
||
if(!strongSelf) {
|
||
return false;
|
||
}
|
||
strongSelf->onPublishResult(SockException(Err_timeout,"publish rtsp timeout"));
|
||
return false;
|
||
},getPoller()));
|
||
|
||
if(!(*this)[kNetAdapter].empty()){
|
||
setNetAdapter((*this)[kNetAdapter]);
|
||
}
|
||
startConnect(ip, port , playTimeOutSec);
|
||
}
|
||
|
||
void RtspPusher::onErr(const SockException &ex) {
|
||
onPublishResult(ex);
|
||
}
|
||
|
||
void RtspPusher::onConnect(const SockException &err) {
|
||
if(err) {
|
||
onPublishResult(err);
|
||
return;
|
||
}
|
||
sendAnnounce();
|
||
}
|
||
|
||
void RtspPusher::onRecv(const Buffer::Ptr &pBuf){
|
||
try {
|
||
input(pBuf->data(), pBuf->size());
|
||
} catch (exception &e) {
|
||
SockException ex(Err_other, e.what());
|
||
onPublishResult(ex);
|
||
}
|
||
}
|
||
|
||
void RtspPusher::onWholeRtspPacket(Parser &parser) {
|
||
decltype(_onHandshake) fun;
|
||
_onHandshake.swap(fun);
|
||
if(fun){
|
||
fun(parser);
|
||
}
|
||
parser.Clear();
|
||
}
|
||
|
||
|
||
void RtspPusher::sendAnnounce() {
|
||
auto src = _pMediaSrc.lock();
|
||
if (!src) {
|
||
throw std::runtime_error("the media source was released");
|
||
}
|
||
//解析sdp
|
||
_sdpAttr.load(src->getSdp());
|
||
_aTrackInfo = _sdpAttr.getAvailableTrack();
|
||
|
||
if (_aTrackInfo.empty()) {
|
||
throw std::runtime_error("无有效的Sdp Track");
|
||
}
|
||
|
||
_onHandshake = std::bind(&RtspPusher::handleResAnnounce,this, placeholders::_1);
|
||
sendRtspRequest("ANNOUNCE",_strUrl,{},src->getSdp());
|
||
}
|
||
|
||
void RtspPusher::handleResAnnounce(const Parser &parser) {
|
||
string authInfo = parser["WWW-Authenticate"];
|
||
//发送DESCRIBE命令后的回复
|
||
if ((parser.Url() == "401") && handleAuthenticationFailure(authInfo)) {
|
||
sendAnnounce();
|
||
return;
|
||
}
|
||
if(parser.Url() == "302"){
|
||
auto newUrl = parser["Location"];
|
||
if(newUrl.empty()){
|
||
throw std::runtime_error("未找到Location字段(跳转url)");
|
||
}
|
||
publish(newUrl);
|
||
return;
|
||
}
|
||
if (parser.Url() != "200") {
|
||
throw std::runtime_error(StrPrinter << "ANNOUNCE:" << parser.Url() << " " << parser.Tail());
|
||
}
|
||
_strContentBase = parser["Content-Base"];
|
||
|
||
if(_strContentBase.empty()){
|
||
_strContentBase = _strUrl;
|
||
}
|
||
if (_strContentBase.back() == '/') {
|
||
_strContentBase.pop_back();
|
||
}
|
||
|
||
sendSetup(0);
|
||
}
|
||
|
||
bool RtspPusher::handleAuthenticationFailure(const string ¶msStr) {
|
||
if(!_rtspRealm.empty()){
|
||
//已经认证过了
|
||
return false;
|
||
}
|
||
|
||
char *realm = new char[paramsStr.size()];
|
||
char *nonce = new char[paramsStr.size()];
|
||
char *stale = new char[paramsStr.size()];
|
||
onceToken token(nullptr,[&](){
|
||
delete[] realm;
|
||
delete[] nonce;
|
||
delete[] stale;
|
||
});
|
||
|
||
if (sscanf(paramsStr.data(), "Digest realm=\"%[^\"]\", nonce=\"%[^\"]\", stale=%[a-zA-Z]", realm, nonce, stale) == 3) {
|
||
_rtspRealm = (const char *)realm;
|
||
_rtspMd5Nonce = (const char *)nonce;
|
||
return true;
|
||
}
|
||
if (sscanf(paramsStr.data(), "Digest realm=\"%[^\"]\", nonce=\"%[^\"]\"", realm, nonce) == 2) {
|
||
_rtspRealm = (const char *)realm;
|
||
_rtspMd5Nonce = (const char *)nonce;
|
||
return true;
|
||
}
|
||
if (sscanf(paramsStr.data(), "Basic realm=\"%[^\"]\"", realm) == 1) {
|
||
_rtspRealm = (const char *)realm;
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
|
||
void RtspPusher::sendSetup(unsigned int trackIndex) {
|
||
_onHandshake = std::bind(&RtspPusher::handleResSetup,this, placeholders::_1,trackIndex);
|
||
auto &track = _aTrackInfo[trackIndex];
|
||
auto baseUrl = _strContentBase + "/" + track->_control_surffix;
|
||
switch (_eType) {
|
||
case Rtsp::RTP_TCP: {
|
||
sendRtspRequest("SETUP",baseUrl,{"Transport",StrPrinter << "RTP/AVP/TCP;unicast;interleaved=" << track->_type * 2 << "-" << track->_type * 2 + 1});
|
||
}
|
||
break;
|
||
case Rtsp::RTP_UDP: {
|
||
_apUdpSock[trackIndex].reset(new Socket());
|
||
if (!_apUdpSock[trackIndex]->bindUdpSock(0, get_local_ip().data())) {
|
||
_apUdpSock[trackIndex].reset();
|
||
throw std::runtime_error("open udp sock err");
|
||
}
|
||
int port = _apUdpSock[trackIndex]->get_local_port();
|
||
sendRtspRequest("SETUP",baseUrl,{"Transport",StrPrinter << "RTP/AVP;unicast;client_port=" << port << "-" << port + 1});
|
||
}
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
}
|
||
|
||
void RtspPusher::handleResSetup(const Parser &parser, unsigned int uiTrackIndex) {
|
||
if (parser.Url() != "200") {
|
||
throw std::runtime_error(
|
||
StrPrinter << "SETUP:" << parser.Url() << " " << parser.Tail() << endl);
|
||
}
|
||
if (uiTrackIndex == 0) {
|
||
_strSession = parser["Session"];
|
||
_strSession.append(";");
|
||
_strSession = FindField(_strSession.data(), nullptr, ";");
|
||
}
|
||
|
||
auto strTransport = parser["Transport"];
|
||
if(strTransport.find("TCP") != string::npos){
|
||
_eType = Rtsp::RTP_TCP;
|
||
string interleaved = FindField( FindField((strTransport + ";").data(), "interleaved=", ";").data(), NULL, "-");
|
||
_aTrackInfo[uiTrackIndex]->_interleaved = atoi(interleaved.data());
|
||
}else if(strTransport.find("multicast") != string::npos){
|
||
throw std::runtime_error("SETUP rtsp pusher can not support multicast!");
|
||
}else{
|
||
_eType = Rtsp::RTP_UDP;
|
||
const char *strPos = "server_port=" ;
|
||
auto port_str = FindField((strTransport + ";").data(), strPos, ";");
|
||
uint16_t port = atoi(FindField(port_str.data(), NULL, "-").data());
|
||
auto &pUdpSockRef = _apUdpSock[uiTrackIndex];
|
||
if(!pUdpSockRef){
|
||
pUdpSockRef.reset(new Socket());
|
||
}
|
||
|
||
struct sockaddr_in rtpto;
|
||
rtpto.sin_port = ntohs(port);
|
||
rtpto.sin_family = AF_INET;
|
||
rtpto.sin_addr.s_addr = inet_addr(get_peer_ip().data());
|
||
pUdpSockRef->setSendPeerAddr((struct sockaddr *)&(rtpto));
|
||
}
|
||
|
||
RtspSplitter::enableRecvRtp(_eType == Rtsp::RTP_TCP);
|
||
|
||
if (uiTrackIndex < _aTrackInfo.size() - 1) {
|
||
//需要继续发送SETUP命令
|
||
sendSetup(uiTrackIndex + 1);
|
||
return;
|
||
}
|
||
|
||
sendRecord();
|
||
}
|
||
|
||
void RtspPusher::sendOptions() {
|
||
_onHandshake = [this](const Parser& parser){};
|
||
sendRtspRequest("OPTIONS",_strContentBase);
|
||
}
|
||
|
||
inline void RtspPusher::sendRtpPacket(const RtpPacket::Ptr & pkt) {
|
||
//InfoL<<(int)pkt.Interleaved;
|
||
switch (_eType) {
|
||
case Rtsp::RTP_TCP: {
|
||
BufferRtp::Ptr buffer(new BufferRtp(pkt));
|
||
send(buffer);
|
||
}
|
||
break;
|
||
case Rtsp::RTP_UDP: {
|
||
int iTrackIndex = getTrackIndexByTrackType(pkt->type);
|
||
auto &pSock = _apUdpSock[iTrackIndex];
|
||
if (!pSock) {
|
||
shutdown();
|
||
return;
|
||
}
|
||
BufferRtp::Ptr buffer(new BufferRtp(pkt,4));
|
||
pSock->send(buffer);
|
||
}
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
}
|
||
|
||
inline int RtspPusher::getTrackIndexByTrackType(TrackType type) {
|
||
for (unsigned int i = 0; i < _aTrackInfo.size(); i++) {
|
||
if (type == _aTrackInfo[i]->_type) {
|
||
return i;
|
||
}
|
||
}
|
||
return -1;
|
||
}
|
||
|
||
|
||
void RtspPusher::sendRecord() {
|
||
_onHandshake = [this](const Parser& parser){
|
||
auto src = _pMediaSrc.lock();
|
||
if (!src) {
|
||
throw std::runtime_error("the media source was released");
|
||
}
|
||
|
||
_pRtspReader = src->getRing()->attach(getPoller());
|
||
weak_ptr<RtspPusher> weakSelf = dynamic_pointer_cast<RtspPusher>(shared_from_this());
|
||
_pRtspReader->setReadCB([weakSelf](const RtpPacket::Ptr &pkt){
|
||
auto strongSelf = weakSelf.lock();
|
||
if(!strongSelf) {
|
||
return;
|
||
}
|
||
strongSelf->sendRtpPacket(pkt);
|
||
});
|
||
_pRtspReader->setDetachCB([weakSelf](){
|
||
auto strongSelf = weakSelf.lock();
|
||
if(strongSelf){
|
||
strongSelf->onPublishResult(SockException(Err_other,"媒体源被释放"));
|
||
}
|
||
});
|
||
if(_eType != Rtsp::RTP_TCP){
|
||
/////////////////////////心跳/////////////////////////////////
|
||
weak_ptr<RtspPusher> weakSelf = dynamic_pointer_cast<RtspPusher>(shared_from_this());
|
||
_pBeatTimer.reset(new Timer((*this)[kBeatIntervalMS].as<int>() / 1000.0, [weakSelf](){
|
||
auto strongSelf = weakSelf.lock();
|
||
if (!strongSelf){
|
||
return false;
|
||
}
|
||
strongSelf->sendOptions();
|
||
return true;
|
||
},getPoller()));
|
||
}
|
||
onPublishResult(SockException(Err_success,"success"));
|
||
//提高发送性能
|
||
(*this) << SocketFlags(kSockFlags);
|
||
SockUtil::setNoDelay(_sock->rawFD(),false);
|
||
};
|
||
sendRtspRequest("RECORD",_strContentBase,{"Range","npt=0.000-"});
|
||
}
|
||
|
||
void RtspPusher::sendRtspRequest(const string &cmd, const string &url, const std::initializer_list<string> &header,const string &sdp ) {
|
||
string key;
|
||
StrCaseMap header_map;
|
||
int i = 0;
|
||
for(auto &val : header){
|
||
if(++i % 2 == 0){
|
||
header_map.emplace(key,val);
|
||
}else{
|
||
key = val;
|
||
}
|
||
}
|
||
sendRtspRequest(cmd,url,header_map,sdp);
|
||
}
|
||
void RtspPusher::sendRtspRequest(const string &cmd, const string &url,const StrCaseMap &header_const,const string &sdp ) {
|
||
auto header = header_const;
|
||
header.emplace("CSeq",StrPrinter << _uiCseq++);
|
||
header.emplace("User-Agent",SERVER_NAME "(build in " __DATE__ " " __TIME__ ")");
|
||
|
||
if(!_strSession.empty()){
|
||
header.emplace("Session",_strSession);
|
||
}
|
||
|
||
if(!_rtspRealm.empty() && !(*this)[kRtspUser].empty()){
|
||
if(!_rtspMd5Nonce.empty()){
|
||
//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];
|
||
if(!(*this)[kRtspPwdIsMD5].as<bool>()){
|
||
encrypted_pwd = MD5((*this)[kRtspUser]+ ":" + _rtspRealm + ":" + encrypted_pwd).hexdigest();
|
||
}
|
||
auto response = MD5( encrypted_pwd + ":" + _rtspMd5Nonce + ":" + MD5(cmd + ":" + url).hexdigest()).hexdigest();
|
||
_StrPrinter printer;
|
||
printer << "Digest ";
|
||
printer << "username=\"" << (*this)[kRtspUser] << "\", ";
|
||
printer << "realm=\"" << _rtspRealm << "\", ";
|
||
printer << "nonce=\"" << _rtspMd5Nonce << "\", ";
|
||
printer << "uri=\"" << url << "\", ";
|
||
printer << "response=\"" << response << "\"";
|
||
header.emplace("Authorization",printer);
|
||
}else if(!(*this)[kRtspPwdIsMD5].as<bool>()){
|
||
//base64认证
|
||
string authStr = StrPrinter << (*this)[kRtspUser] << ":" << (*this)[kRtspPwd];
|
||
char authStrBase64[1024] = {0};
|
||
av_base64_encode(authStrBase64,sizeof(authStrBase64),(uint8_t *)authStr.data(),authStr.size());
|
||
header.emplace("Authorization",StrPrinter << "Basic " << authStrBase64 );
|
||
}
|
||
}
|
||
|
||
if(!sdp.empty()){
|
||
header.emplace("Content-Length",StrPrinter << sdp.size());
|
||
header.emplace("Content-Type","application/sdp");
|
||
}
|
||
|
||
_StrPrinter printer;
|
||
printer << cmd << " " << url << " RTSP/1.0\r\n";
|
||
for (auto &pr : header){
|
||
printer << pr.first << ": " << pr.second << "\r\n";
|
||
}
|
||
|
||
printer << "\r\n";
|
||
|
||
if(!sdp.empty()){
|
||
printer << sdp;
|
||
}
|
||
send(printer);
|
||
}
|
||
|
||
|
||
} /* namespace mediakit */ |