1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-24 06:54:22 +00:00
srs/trunk/src/app/srs_app_rtc_conn.hpp

418 lines
14 KiB
C++
Raw Normal View History

2020-02-28 15:18:39 +00:00
/**
* The MIT License (MIT)
*
2020-03-31 10:03:04 +00:00
* Copyright (c) 2013-2020 John
2020-02-28 15:18:39 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef SRS_APP_RTC_CONN_HPP
#define SRS_APP_RTC_CONN_HPP
#include <srs_core.hpp>
2020-03-07 16:30:31 +00:00
#include <srs_app_listener.hpp>
2020-03-06 15:01:48 +00:00
#include <srs_service_st.hpp>
#include <srs_kernel_utility.hpp>
#include <srs_rtmp_stack.hpp>
#include <srs_app_hybrid.hpp>
#include <srs_app_hourglass.hpp>
2020-05-11 04:07:55 +00:00
#include <srs_app_rtc_sdp.hpp>
#include <srs_app_reload.hpp>
2020-05-11 04:07:55 +00:00
#include <srs_kernel_rtc_rtp.hpp>
2020-05-19 10:14:48 +00:00
#include <srs_kernel_rtc_rtcp.hpp>
2020-05-11 04:07:55 +00:00
#include <srs_app_rtc_queue.hpp>
2020-06-02 11:00:31 +00:00
#include <srs_app_rtc_source.hpp>
2020-06-25 04:03:21 +00:00
#include <srs_app_rtc_dtls.hpp>
2020-02-28 15:18:39 +00:00
#include <string>
#include <map>
2020-03-02 14:47:40 +00:00
#include <vector>
2020-04-05 08:53:08 +00:00
#include <sys/socket.h>
2020-02-28 15:18:39 +00:00
class SrsUdpMuxSocket;
class SrsConsumer;
2020-02-28 15:18:39 +00:00
class SrsStunPacket;
class SrsRtcServer;
class SrsRtcConnection;
class SrsSharedPtrMessage;
2020-05-12 05:19:31 +00:00
class SrsRtcSource;
class SrsRtpPacket2;
class ISrsCodec;
2020-05-02 02:07:55 +00:00
class SrsRtpNackForReceiver;
class SrsRtpIncommingVideoFrame;
2020-05-14 10:33:31 +00:00
class SrsRtpRingBuffer;
2020-05-24 13:40:23 +00:00
class SrsRtcConsumer;
const uint8_t kSR = 200;
const uint8_t kRR = 201;
const uint8_t kSDES = 202;
const uint8_t kBye = 203;
const uint8_t kApp = 204;
// @see: https://tools.ietf.org/html/rfc4585#section-6.1
const uint8_t kRtpFb = 205;
const uint8_t kPsFb = 206;
2020-04-23 09:08:21 +00:00
const uint8_t kXR = 207;
// @see: https://tools.ietf.org/html/rfc4585#section-6.3
const uint8_t kPLI = 1;
const uint8_t kSLI = 2;
const uint8_t kRPSI = 3;
const uint8_t kAFB = 15;
2020-05-17 11:40:45 +00:00
// TODO: FIXME: Move to utility.
2020-05-05 23:37:00 +00:00
extern std::string gen_random_str(int len);
2020-04-23 09:08:21 +00:00
class SrsNtp
{
public:
uint64_t system_ms_;
uint64_t ntp_;
uint32_t ntp_second_;
uint32_t ntp_fractions_;
public:
SrsNtp();
virtual ~SrsNtp();
public:
static SrsNtp from_time_ms(uint64_t ms);
static SrsNtp to_time_ms(uint64_t ntp);
public:
static uint64_t kMagicNtpFractionalUnit;
};
enum SrsRtcConnectionStateType
2020-02-28 15:18:39 +00:00
{
// TODO: FIXME: Should prefixed by enum name.
2020-02-28 15:18:39 +00:00
INIT = -1,
2020-05-05 23:37:00 +00:00
WAITING_ANSWER = 1,
WAITING_STUN = 2,
DOING_DTLS_HANDSHAKE = 3,
ESTABLISHED = 4,
CLOSED = 5,
2020-02-28 15:18:39 +00:00
};
2020-06-25 04:03:21 +00:00
class SrsSecurityTransport : public ISrsDtlsCallback
2020-02-28 15:18:39 +00:00
{
2020-03-06 15:01:48 +00:00
private:
SrsRtcConnection* session_;
2020-06-25 04:03:21 +00:00
SrsDtls* dtls_;
2020-06-25 12:47:17 +00:00
SrsSRTP* srtp_;
2020-03-06 15:01:48 +00:00
bool handshake_done;
2020-02-28 15:18:39 +00:00
public:
SrsSecurityTransport(SrsRtcConnection* s);
2020-06-25 04:03:21 +00:00
virtual ~SrsSecurityTransport();
2020-03-06 15:01:48 +00:00
srs_error_t initialize(SrsSessionConfig* cfg);
// When play role of dtls client, it send handshake.
srs_error_t start_active_handshake();
2020-04-30 06:49:37 +00:00
srs_error_t on_dtls(char* data, int nb_data);
public:
2020-06-25 12:47:17 +00:00
// Encrypt the input plaintext to output cipher with nb_cipher bytes.
// @remark Note that the nb_cipher is the size of input plaintext, and
// it also is the length of output cipher when return.
srs_error_t protect_rtp(const char* plaintext, char* cipher, int& nb_cipher);
srs_error_t protect_rtcp(const char* plaintext, char* cipher, int& nb_cipher);
// Encrypt the input rtp_hdr with *len_ptr bytes.
// @remark the input plaintext and out cipher reuse rtp_hdr.
2020-04-13 07:24:41 +00:00
srs_error_t protect_rtp2(void* rtp_hdr, int* len_ptr);
2020-06-25 12:47:17 +00:00
// Decrypt the input cipher to output cipher with nb_cipher bytes.
// @remark Note that the nb_plaintext is the size of input cipher, and
// it also is the length of output plaintext when return.
srs_error_t unprotect_rtp(const char* cipher, char* plaintext, int& nb_plaintext);
srs_error_t unprotect_rtcp(const char* cipher, char* plaintext, int& nb_plaintext);
2020-06-25 04:03:21 +00:00
// implement ISrsDtlsCallback
public:
virtual srs_error_t on_dtls_handshake_done();
virtual srs_error_t on_dtls_application_data(const char* data, const int len);
virtual srs_error_t write_dtls_data(void* data, int size);
2020-03-07 16:30:31 +00:00
private:
srs_error_t srtp_initialize();
2020-03-06 15:01:48 +00:00
};
2020-05-03 05:49:53 +00:00
// A group of RTP packets for outgoing(send to players).
2020-05-13 12:13:25 +00:00
// TODO: FIXME: Rename to stat for RTP packets.
class SrsRtcOutgoingInfo
2020-04-13 08:50:24 +00:00
{
public:
2020-04-16 01:25:18 +00:00
#if defined(SRS_DEBUG)
// Debug id.
uint32_t debug_id;
#endif
2020-04-16 02:05:17 +00:00
public:
2020-04-17 08:36:56 +00:00
// The total bytes of AVFrame packets.
2020-04-13 08:50:24 +00:00
int nn_bytes;
2020-04-17 08:36:56 +00:00
// The total bytes of RTP packets.
int nn_rtp_bytes;
2020-04-16 02:05:17 +00:00
// The total padded bytes.
int nn_padding_bytes;
public:
2020-04-14 12:12:14 +00:00
// The RTP packets send out by sendmmsg or sendmsg. Note that if many packets group to
// one msghdr by GSO, it's only one RTP packet, because we only send once.
2020-04-13 08:50:24 +00:00
int nn_rtp_pkts;
2020-04-14 12:12:14 +00:00
// For video, the samples or NALUs.
2020-05-13 12:13:25 +00:00
// TODO: FIXME: Remove it because we may don't know.
2020-04-13 08:50:24 +00:00
int nn_samples;
2020-04-14 12:12:14 +00:00
// For audio, the generated extra audio packets.
// For example, when transcoding AAC to opus, may many extra payloads for a audio.
2020-05-13 12:13:25 +00:00
// TODO: FIXME: Remove it because we may don't know.
2020-04-13 09:11:46 +00:00
int nn_extras;
2020-04-14 12:12:14 +00:00
// The original audio messages.
2020-04-13 08:50:24 +00:00
int nn_audios;
2020-04-14 12:12:14 +00:00
// The original video messages.
2020-04-13 08:50:24 +00:00
int nn_videos;
2020-04-15 07:58:17 +00:00
// The number of padded packet.
int nn_paddings;
2020-04-13 08:50:24 +00:00
public:
SrsRtcOutgoingInfo();
virtual ~SrsRtcOutgoingInfo();
2020-04-13 08:50:24 +00:00
};
class SrsRtcPlayer : virtual public ISrsCoroutineHandler, virtual public ISrsReloadHandler
{
protected:
SrsContextId _parent_cid;
2020-05-04 06:47:58 +00:00
SrsCoroutine* trd;
SrsRtcConnection* session_;
2020-04-11 09:52:14 +00:00
private:
// TODO: FIXME: How to handle timestamp overflow?
2020-05-04 06:47:58 +00:00
// Information for audio.
uint32_t audio_ssrc;
uint16_t audio_payload_type;
// Information for video.
uint16_t video_payload_type;
uint32_t video_ssrc;
// NACK ARQ ring buffer.
2020-05-14 10:33:31 +00:00
SrsRtpRingBuffer* audio_queue_;
SrsRtpRingBuffer* video_queue_;
2020-05-04 06:47:58 +00:00
// Simulators.
int nn_simulate_nack_drop;
2020-04-17 06:24:24 +00:00
private:
2020-05-04 06:47:58 +00:00
// For merged-write messages.
int mw_msgs;
bool realtime;
2020-05-04 12:42:30 +00:00
// Whether enabled nack.
bool nack_enabled_;
public:
SrsRtcPlayer(SrsRtcConnection* s, SrsContextId parent_cid);
virtual ~SrsRtcPlayer();
2020-03-30 07:16:29 +00:00
public:
2020-07-02 06:51:32 +00:00
srs_error_t initialize(uint32_t vssrc, uint32_t assrc, uint16_t v_pt, uint16_t a_pt);
2020-04-13 08:50:24 +00:00
// interface ISrsReloadHandler
public:
virtual srs_error_t on_reload_vhost_play(std::string vhost);
virtual srs_error_t on_reload_vhost_realtime(std::string vhost);
public:
virtual SrsContextId cid();
public:
virtual srs_error_t start();
virtual void stop();
virtual void stop_loop();
2020-04-13 05:58:34 +00:00
public:
virtual srs_error_t cycle();
private:
2020-05-21 09:00:40 +00:00
srs_error_t send_packets(SrsRtcSource* source, const std::vector<SrsRtpPacket2*>& pkts, SrsRtcOutgoingInfo& info);
srs_error_t do_send_packets(const std::vector<SrsRtpPacket2*>& pkts, SrsRtcOutgoingInfo& info);
2020-05-04 06:47:58 +00:00
public:
void nack_fetch(std::vector<SrsRtpPacket2*>& pkts, uint32_t ssrc, uint16_t seq);
void simulate_nack_drop(int nn);
2020-05-04 12:42:30 +00:00
private:
void simulate_drop_packet(SrsRtpHeader* h, int nn_bytes);
2020-05-08 08:25:09 +00:00
public:
srs_error_t on_rtcp(char* data, int nb_data);
private:
srs_error_t on_rtcp_sr(char* buf, int nb_buf);
srs_error_t on_rtcp_xr(char* buf, int nb_buf);
srs_error_t on_rtcp_feedback(char* data, int nb_data);
srs_error_t on_rtcp_ps_feedback(char* data, int nb_data);
srs_error_t on_rtcp_rr(char* data, int nb_data);
};
2020-03-07 16:30:31 +00:00
2020-06-02 11:00:31 +00:00
class SrsRtcPublisher : virtual public ISrsHourGlass, virtual public ISrsRtpPacketDecodeHandler, virtual public ISrsRtcPublisher
2020-04-23 09:08:21 +00:00
{
2020-04-23 15:14:30 +00:00
private:
SrsHourGlass* report_timer;
2020-05-07 08:01:03 +00:00
uint64_t nn_audio_frames;
2020-04-23 09:08:21 +00:00
private:
SrsRtcConnection* session_;
2020-04-23 09:08:21 +00:00
uint32_t video_ssrc;
uint32_t audio_ssrc;
2020-06-29 02:59:39 +00:00
uint16_t pt_to_drop_;
// Whether enabled nack.
bool nack_enabled_;
2020-04-23 09:08:21 +00:00
private:
2020-05-14 10:33:31 +00:00
bool request_keyframe_;
SrsRtpRingBuffer* video_queue_;
2020-05-02 02:07:55 +00:00
SrsRtpNackForReceiver* video_nack_;
2020-05-14 10:33:31 +00:00
SrsRtpRingBuffer* audio_queue_;
2020-05-02 02:07:55 +00:00
SrsRtpNackForReceiver* audio_nack_;
2020-04-23 09:08:21 +00:00
private:
2020-04-26 08:12:23 +00:00
SrsRequest* req;
2020-05-12 05:19:31 +00:00
SrsRtcSource* source;
// Simulators.
int nn_simulate_nack_drop;
2020-04-23 15:14:30 +00:00
private:
std::map<uint32_t, uint64_t> last_sender_report_sys_time;
std::map<uint32_t, SrsNtp> last_sender_report_ntp;
2020-05-19 10:14:48 +00:00
private:
srs_utime_t last_twcc_feedback_time_;
2020-07-02 06:51:32 +00:00
int twcc_id_;
2020-05-19 10:14:48 +00:00
uint8_t twcc_fb_count_;
SrsRtcpTWCC rtcp_twcc_;
2020-06-26 07:24:37 +00:00
SrsRtpExtensionTypes extension_types_;
2020-04-23 09:08:21 +00:00
public:
SrsRtcPublisher(SrsRtcConnection* session);
2020-04-23 09:08:21 +00:00
virtual ~SrsRtcPublisher();
public:
2020-07-02 06:51:32 +00:00
srs_error_t initialize(uint32_t vssrc, uint32_t assrc, int twcc_id, SrsRequest* req);
2020-04-23 15:14:30 +00:00
private:
2020-05-02 02:07:55 +00:00
void check_send_nacks(SrsRtpNackForReceiver* nack, uint32_t ssrc);
2020-05-14 10:33:31 +00:00
srs_error_t send_rtcp_rr(uint32_t ssrc, SrsRtpRingBuffer* rtp_queue);
2020-04-30 06:49:37 +00:00
srs_error_t send_rtcp_xr_rrtr(uint32_t ssrc);
srs_error_t send_rtcp_fb_pli(uint32_t ssrc);
2020-04-30 02:00:07 +00:00
public:
2020-04-30 06:49:37 +00:00
srs_error_t on_rtp(char* buf, int nb_buf);
2020-05-14 06:26:19 +00:00
virtual void on_before_decode_payload(SrsRtpPacket2* pkt, SrsBuffer* buf, ISrsRtpPayloader** ppayload);
2020-04-23 09:08:21 +00:00
private:
srs_error_t on_audio(SrsRtpPacket2* pkt);
srs_error_t on_video(SrsRtpPacket2* pkt);
2020-05-14 10:33:31 +00:00
srs_error_t on_nack(SrsRtpPacket2* pkt);
2020-06-28 06:01:58 +00:00
srs_error_t send_periodic_twcc();
public:
srs_error_t on_rtcp(char* data, int nb_data);
private:
2020-05-08 08:25:09 +00:00
srs_error_t on_rtcp_sr(char* buf, int nb_buf);
srs_error_t on_rtcp_xr(char* buf, int nb_buf);
srs_error_t on_rtcp_feedback(char* data, int nb_data);
srs_error_t on_rtcp_ps_feedback(char* data, int nb_data);
srs_error_t on_rtcp_rr(char* data, int nb_data);
2020-04-23 15:14:30 +00:00
public:
void request_keyframe();
2020-04-23 15:14:30 +00:00
// interface ISrsHourGlass
public:
virtual srs_error_t notify(int type, srs_utime_t interval, srs_utime_t tick);
2020-05-04 06:47:58 +00:00
public:
void simulate_nack_drop(int nn);
2020-05-04 12:42:30 +00:00
private:
void simulate_drop_packet(SrsRtpHeader* h, int nn_bytes);
2020-05-19 10:14:48 +00:00
private:
srs_error_t on_twcc(uint16_t sn);
2020-04-23 09:08:21 +00:00
};
// A RTC Peer Connection, SDP level object.
class SrsRtcConnection
2020-03-06 15:01:48 +00:00
{
2020-06-25 04:03:21 +00:00
friend class SrsSecurityTransport;
friend class SrsRtcPlayer;
2020-04-23 09:08:21 +00:00
friend class SrsRtcPublisher;
2020-05-21 13:59:30 +00:00
public:
bool disposing_;
2020-02-28 15:18:39 +00:00
private:
2020-05-03 05:49:53 +00:00
SrsRtcServer* server_;
SrsRtcConnectionStateType state_;
2020-06-25 04:03:21 +00:00
SrsSecurityTransport* transport_;
2020-05-03 05:49:53 +00:00
SrsRtcPlayer* player_;
SrsRtcPublisher* publisher_;
bool is_publisher_;
2020-04-30 06:49:37 +00:00
private:
SrsUdpMuxSocket* sendonly_skt;
2020-05-04 06:47:58 +00:00
std::string username_;
std::string peer_id_;
2020-04-30 06:49:37 +00:00
private:
// The timeout of session, keep alive by STUN ping pong.
srs_utime_t sessionStunTimeout;
srs_utime_t last_stun_time;
private:
// For each RTC session, we use a specified cid for debugging logs.
SrsContextId cid;
// For each RTC session, whether requires encrypt.
// Read config value, rtc_server.encrypt, default to on.
// Sepcifies by HTTP API, query encrypt, optional.
// TODO: FIXME: Support reload.
bool encrypt;
2020-04-30 06:49:37 +00:00
SrsRequest* req;
2020-05-12 05:19:31 +00:00
SrsRtcSource* source_;
2020-04-30 06:49:37 +00:00
SrsSdp remote_sdp;
SrsSdp local_sdp;
public:
// User debugging parameters, overwrite config.
std::string sequence_startup;
std::string sequence_delta;
std::string sequence_keep;
2020-04-27 01:35:50 +00:00
private:
bool blackhole;
sockaddr_in* blackhole_addr;
srs_netfd_t blackhole_stfd;
public:
SrsRtcConnection(SrsRtcServer* s);
virtual ~SrsRtcConnection();
2020-03-07 16:30:31 +00:00
public:
SrsSdp* get_local_sdp();
2020-03-30 07:16:29 +00:00
void set_local_sdp(const SrsSdp& sdp);
SrsSdp* get_remote_sdp();
void set_remote_sdp(const SrsSdp& sdp);
SrsRtcConnectionStateType state();
void set_state(SrsRtcConnectionStateType state);
2020-05-04 06:47:58 +00:00
std::string id();
std::string peer_id();
void set_peer_id(std::string v);
std::string username();
void set_encrypt(bool v);
void switch_to_context();
SrsContextId context_id();
public:
// Before initialize, user must set the local SDP, which is used to inititlize DTLS.
srs_error_t initialize(SrsRtcSource* source, SrsRequest* r, bool is_publisher, std::string username, SrsContextId context_id);
2020-04-30 06:49:37 +00:00
// The peer address may change, we can identify that by STUN messages.
srs_error_t on_stun(SrsUdpMuxSocket* skt, SrsStunPacket* r);
srs_error_t on_dtls(char* data, int nb_data);
srs_error_t on_rtp(char* data, int nb_data);
2020-05-08 08:25:09 +00:00
srs_error_t on_rtcp(char* data, int nb_data);
2020-04-30 06:49:37 +00:00
public:
srs_error_t on_connection_established();
srs_error_t start_play();
srs_error_t start_publish();
bool is_stun_timeout();
2020-04-30 06:49:37 +00:00
void update_sendonly_socket(SrsUdpMuxSocket* skt);
2020-05-04 06:47:58 +00:00
public:
// Simulate the NACK to drop nn packets.
void simulate_nack_drop(int nn);
2020-03-07 16:30:31 +00:00
private:
2020-04-30 06:49:37 +00:00
srs_error_t on_binding_request(SrsStunPacket* r);
};
2020-05-22 10:14:15 +00:00
class ISrsRtcHijacker
{
public:
ISrsRtcHijacker();
virtual ~ISrsRtcHijacker();
public:
// When start publisher by RTC.
virtual srs_error_t on_start_publish(SrsRtcConnection* session, SrsRtcPublisher* publisher, SrsRequest* req) = 0;
// When got RTP plaintext packet.
virtual srs_error_t on_rtp_packet(SrsRtcConnection* session, SrsRtcPublisher* publisher, SrsRequest* req, SrsRtpPacket2* pkt) = 0;
2020-05-24 13:40:23 +00:00
// When start player by RTC.
virtual srs_error_t on_start_play(SrsRtcConnection* session, SrsRtcPlayer* player, SrsRequest* req) = 0;
2020-05-24 13:40:23 +00:00
// When start consuming for player for RTC.
virtual srs_error_t on_start_consume(SrsRtcConnection* session, SrsRtcPlayer* player, SrsRequest* req, SrsRtcConsumer* consumer) = 0;
2020-05-22 10:14:15 +00:00
};
extern ISrsRtcHijacker* _srs_rtc_hijacker;
2020-02-28 15:18:39 +00:00
#endif