Skip to content

Commit f068540

Browse files
committed
Threads-SRTP: Config and add files for the async-srtp
1. If configed the async srtp, use a new object. 2. Allow sync and async srtp, by config.
1 parent 2367483 commit f068540

7 files changed

+76
-4
lines changed

trunk/conf/full.conf

+3
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ threads {
121121
# The thread pool manager cycle interval, in seconds.
122122
# Default: 5
123123
interval 5;
124+
# Whether enable the ASYNC SRTP, codec in dedicate threads.
125+
# Default: off
126+
async_srtp off;
124127
}
125128

126129
#############################################################################################

trunk/src/app/srs_app_config.cpp

+17
Original file line numberDiff line numberDiff line change
@@ -4127,6 +4127,23 @@ srs_utime_t SrsConfig::get_threads_interval()
41274127
return v * SRS_UTIME_SECONDS;
41284128
}
41294129

4130+
bool SrsConfig::get_threads_async_srtp()
4131+
{
4132+
static bool DEFAULT = false;
4133+
4134+
SrsConfDirective* conf = root->get("threads");
4135+
if (!conf) {
4136+
return DEFAULT;
4137+
}
4138+
4139+
conf = conf->get("async_srtp");
4140+
if (!conf) {
4141+
return DEFAULT;
4142+
}
4143+
4144+
return SRS_CONF_PERFER_FALSE(conf->arg0());
4145+
}
4146+
41304147
vector<SrsConfDirective*> SrsConfig::get_stream_casters()
41314148
{
41324149
srs_assert(root);

trunk/src/app/srs_app_config.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ class SrsConfig
478478
// Thread pool section.
479479
public:
480480
virtual srs_utime_t get_threads_interval();
481+
virtual bool get_threads_async_srtp();
481482
// stream_caster section
482483
public:
483484
// Get all stream_caster in config file.

trunk/src/app/srs_app_rtc_conn.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ using namespace std;
5757
#include <srs_app_rtc_server.hpp>
5858
#include <srs_app_rtc_source.hpp>
5959
#include <srs_protocol_utility.hpp>
60+
#include <srs_app_threads.hpp>
6061

6162
#include <srs_protocol_kbps.hpp>
6263

@@ -93,7 +94,13 @@ SrsSecurityTransport::SrsSecurityTransport(SrsRtcConnection* s)
9394
session_ = s;
9495

9596
dtls_ = new SrsDtls((ISrsDtlsCallback*)this);
96-
srtp_ = new SrsSRTP();
97+
98+
bool async_srtp = _srs_config->get_threads_async_srtp();
99+
if (!async_srtp) {
100+
srtp_ = new SrsSRTP();
101+
} else {
102+
srtp_ = new SrsAsyncSRTP();
103+
}
97104

98105
handshake_done = false;
99106
}

trunk/src/app/srs_app_rtc_dtls.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,14 @@ class SrsDtls
231231

232232
class SrsSRTP
233233
{
234-
private:
234+
protected:
235235
srtp_t recv_ctx_;
236236
srtp_t send_ctx_;
237237
public:
238238
SrsSRTP();
239239
virtual ~SrsSRTP();
240240
public:
241-
// Intialize srtp context with recv_key and send_key.
241+
// Initialize srtp context with recv_key and send_key.
242242
srs_error_t initialize(std::string recv_key, std::string send_key);
243243
public:
244244
srs_error_t protect_rtp(void* packet, int* nb_cipher);

trunk/src/app/srs_app_threads.cpp

+31-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ srs_error_t SrsThreadPool::initialize()
128128
}
129129

130130
interval_ = _srs_config->get_threads_interval();
131-
srs_trace("Thread #%d(%s): init interval=%dms", entry_->num, entry_->label.c_str(), srsu2msi(interval_));
131+
bool async_srtp = _srs_config->get_threads_async_srtp();
132+
srs_trace("Thread #%d(%s): init interval=%dms, async_srtp=%d",
133+
entry_->num, entry_->label.c_str(), srsu2msi(interval_), async_srtp);
132134

133135
return err;
134136
}
@@ -481,3 +483,31 @@ srs_error_t SrsAsyncLogManager::do_start()
481483

482484
// TODO: FIXME: It should be thread-local or thread-safe.
483485
SrsAsyncLogManager* _srs_async_log = new SrsAsyncLogManager();
486+
487+
SrsAsyncSRTP::SrsAsyncSRTP()
488+
{
489+
}
490+
491+
SrsAsyncSRTP::~SrsAsyncSRTP()
492+
{
493+
}
494+
495+
srs_error_t SrsAsyncSRTP::protect_rtp(void* packet, int* nb_cipher)
496+
{
497+
return SrsSRTP::protect_rtp(packet, nb_cipher);
498+
}
499+
500+
srs_error_t SrsAsyncSRTP::protect_rtcp(void* packet, int* nb_cipher)
501+
{
502+
return SrsSRTP::protect_rtcp(packet, nb_cipher);
503+
}
504+
505+
srs_error_t SrsAsyncSRTP::unprotect_rtp(void* packet, int* nb_plaintext)
506+
{
507+
return SrsSRTP::unprotect_rtp(packet, nb_plaintext);
508+
}
509+
510+
srs_error_t SrsAsyncSRTP::unprotect_rtcp(void* packet, int* nb_plaintext)
511+
{
512+
return SrsSRTP::unprotect_rtcp(packet, nb_plaintext);
513+
}

trunk/src/app/srs_app_threads.hpp

+14
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
#include <srs_kernel_file.hpp>
3030
#include <srs_kernel_flv.hpp>
31+
#include <srs_app_rtc_dtls.hpp>
3132

3233
#include <pthread.h>
3334

@@ -254,4 +255,17 @@ class SrsAsyncLogManager
254255
// The global async log manager.
255256
extern SrsAsyncLogManager* _srs_async_log;
256257

258+
// The async SRTP codec.
259+
class SrsAsyncSRTP : public SrsSRTP
260+
{
261+
public:
262+
SrsAsyncSRTP();
263+
virtual ~SrsAsyncSRTP();
264+
public:
265+
srs_error_t protect_rtp(void* packet, int* nb_cipher);
266+
srs_error_t protect_rtcp(void* packet, int* nb_cipher);
267+
srs_error_t unprotect_rtp(void* packet, int* nb_plaintext);
268+
srs_error_t unprotect_rtcp(void* packet, int* nb_plaintext);
269+
};
270+
257271
#endif

0 commit comments

Comments
 (0)