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

182 lines
5.5 KiB
C++
Raw Normal View History

2020-02-28 15:18:39 +00:00
/**
* The MIT License (MIT)
*
* Copyright (c) 2013-2020 Winlin
*
* 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-06 15:01:48 +00:00
#include <srs_service_st.hpp>
2020-02-28 15:18:39 +00:00
#include <string>
#include <map>
2020-03-02 14:47:40 +00:00
#include <vector>
2020-02-28 15:18:39 +00:00
2020-03-06 15:01:48 +00:00
#include <openssl/ssl.h>
#include <srtp2/srtp.h>
2020-02-28 15:18:39 +00:00
class SrsServer;
class SrsStunPacket;
class SrsCandidate
{
private:
public:
SrsCandidate();
virtual ~SrsCandidate();
static std::vector<std::string> get_candidate_ips();
};
2020-03-02 14:47:40 +00:00
class SrsSdpMediaInfo
2020-02-28 15:18:39 +00:00
{
private:
public:
2020-03-02 14:47:40 +00:00
SrsSdpMediaInfo();
virtual ~SrsSdpMediaInfo();
};
class SrsSdp
{
private:
std::string sdp;
int version;
std::string ice_ufrag;
std::string ice_pwd;
std::string fingerprint;
std::string setup;
std::vector<SrsSdpMediaInfo> media_infos;
public:
SrsSdp();
virtual ~SrsSdp();
2020-03-06 15:01:48 +00:00
srs_error_t decode(const std::string& sdp_str);
srs_error_t encode(std::string& sdp_str);
std::string get_ice_ufrag() const { return ice_ufrag; }
std::string get_ice_pwd() const { return ice_pwd; }
void set_ice_ufrag(const std::string& u) { ice_ufrag = u; }
void set_ice_pwd(const std::string& p) { ice_pwd = p; }
2020-03-02 14:47:40 +00:00
private:
srs_error_t parse_attr(const std::string& line);
2020-02-28 15:18:39 +00:00
};
enum SrsRtcSessionStateType
{
INIT = -1,
WAITING_STUN = 1,
DOING_DTLS_HANDSHAKE = 2,
ESTABLISHED = 3,
CLOSED = 4,
};
2020-03-06 15:01:48 +00:00
class SrsDtlsSession
2020-02-28 15:18:39 +00:00
{
2020-03-06 15:01:48 +00:00
private:
SSL* dtls;
BIO* bio_in;
BIO* bio_out;
std::string client_key;
std::string server_key;
srtp_t srtp_send;
srtp_t srtp_recv;
srs_netfd_t fd;
const sockaddr* from;
int fromlen;
bool handshake_done;
2020-02-28 15:18:39 +00:00
public:
2020-03-06 15:01:48 +00:00
SrsDtlsSession(srs_netfd_t lfd, const sockaddr* f, int fl);
virtual ~SrsDtlsSession();
srs_error_t on_dtls(const char* data, const int len);
srs_error_t on_dtls_application_data(const char* data, const int len);
void send_client_hello();
srs_error_t handshake();
srs_error_t srtp_init();
srs_error_t srtp_sender_side_init();
srs_error_t srtp_receiver_side_init();
};
class SrsRtcSession
{
2020-02-28 15:18:39 +00:00
private:
2020-03-06 15:01:48 +00:00
SrsSdp remote_sdp;
SrsSdp local_sdp;
2020-02-28 15:18:39 +00:00
SrsRtcSessionStateType session_state;
2020-03-06 15:01:48 +00:00
SrsDtlsSession* dtls_session;
2020-02-28 15:18:39 +00:00
public:
SrsRtcSession();
virtual ~SrsRtcSession();
2020-03-06 15:01:48 +00:00
SrsSdp* get_local_sdp() { return &local_sdp; }
SrsSdp* get_remote_sdp() { return &remote_sdp; }
SrsRtcSessionStateType get_session_state() { return session_state; }
void set_local_sdp(const SrsSdp& sdp) { local_sdp = sdp; }
void set_remote_sdp(const SrsSdp& sdp) { remote_sdp = sdp; }
void set_session_state(SrsRtcSessionStateType state) { session_state = state; }
2020-02-28 15:18:39 +00:00
srs_error_t on_udp_packet(const std::string& peer_ip, const int peer_port, const char* data, const int size);
2020-03-06 15:01:48 +00:00
srs_error_t on_binding_request(const SrsStunPacket& stun_packet, const std::string& peer_ip, const uint16_t peer_port,
SrsStunPacket& stun_binding_response);
srs_error_t on_dtls(const char* buf, const int nb_buf);
srs_error_t send_client_hello(srs_netfd_t fd, const sockaddr* from, int fromlen);
2020-02-28 15:18:39 +00:00
srs_error_t send_packet();
};
class SrsRtcServer
{
private:
SrsServer* server;
2020-03-06 15:01:48 +00:00
std::map<std::string, SrsRtcSession*> map_ufrag_sessions;
std::map<std::string, SrsRtcSession*> map_ip_port_sessions;
2020-02-28 15:18:39 +00:00
public:
SrsRtcServer(SrsServer* svr);
virtual ~SrsRtcServer();
public:
virtual srs_error_t initialize();
2020-03-06 15:01:48 +00:00
virtual srs_error_t on_udp_packet(srs_netfd_t fd, const std::string& peer_ip, const int peer_port,
const sockaddr* from, const int fromlen, const char* data, const int size);
SrsRtcSession* create_rtc_session(const SrsSdp& remote_sdp, SrsSdp& local_sdp);
bool insert_into_ip_port_sessions(const std::string& peer_ip, const uint16_t peer_port, SrsRtcSession* rtc_session);
2020-02-28 15:18:39 +00:00
private:
2020-03-06 15:01:48 +00:00
srs_error_t on_stun(srs_netfd_t fd, const std::string& peer_ip, const int peer_port, const sockaddr* from, const int fromlen, const char* data, const int size);
srs_error_t on_dtls(srs_netfd_t fd, const std::string& peer_ip, const int peer_port, const sockaddr* from, const int fromlen, const char* data, const int size);
srs_error_t on_rtp_or_rtcp(srs_netfd_t fd, const std::string& peer_ip, const int peer_port,
const sockaddr* from, const int fromlen, const char* data, const int size);
2020-02-28 15:18:39 +00:00
private:
2020-03-06 15:01:48 +00:00
SrsRtcSession* find_rtc_session_by_ufrag(const std::string& ufrag);
SrsRtcSession* find_rtc_session_by_ip_port(const std::string& peer_ip, const uint16_t peer_port);
2020-02-28 15:18:39 +00:00
};
#endif