Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
d298be30
Commit
d298be30
authored
Jun 07, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RTP: add secure RTP receive support
parent
086a3bc3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
6 deletions
+67
-6
modules/demux/Modules.am
modules/demux/Modules.am
+8
-1
modules/demux/rtp.c
modules/demux/rtp.c
+58
-5
modules/demux/rtp.h
modules/demux/rtp.h
+1
-0
No files found.
modules/demux/Modules.am
View file @
d298be30
...
@@ -12,7 +12,6 @@ SOURCES_mkv = mkv.cpp mp4/libmp4.c mp4/drms.c
...
@@ -12,7 +12,6 @@ SOURCES_mkv = mkv.cpp mp4/libmp4.c mp4/drms.c
SOURCES_live555 = live555.cpp ../access/mms/asf.c ../access/mms/buffer.c
SOURCES_live555 = live555.cpp ../access/mms/asf.c ../access/mms/buffer.c
SOURCES_nsv = nsv.c
SOURCES_nsv = nsv.c
SOURCES_real = real.c
SOURCES_real = real.c
SOURCES_rtp = rtp.c rtp.h rtpsession.c
SOURCES_ts = ts.c ../mux/mpeg/csa.c
SOURCES_ts = ts.c ../mux/mpeg/csa.c
SOURCES_ps = ps.c ps.h
SOURCES_ps = ps.c ps.h
SOURCES_mod = mod.c
SOURCES_mod = mod.c
...
@@ -37,3 +36,11 @@ SOURCES_smf = smf.c
...
@@ -37,3 +36,11 @@ SOURCES_smf = smf.c
libvlc_LTLIBRARIES += \
libvlc_LTLIBRARIES += \
librtp_plugin.la \
librtp_plugin.la \
$(NULL)
$(NULL)
# RTP plugin
librtp_plugin_la_SOURCES = \
rtp.c rtp.h rtpsession.c
librtp_plugin_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/libs/srtp
librtp_plugin_la_LIBADD = $(LTLIBVLCCORE) \
$(top_builddir)/libs/srtp/libvlc_srtp.la
modules/demux/rtp.c
View file @
d298be30
...
@@ -39,11 +39,21 @@
...
@@ -39,11 +39,21 @@
#include <vlc_codecs.h>
#include <vlc_codecs.h>
#include "rtp.h"
#include "rtp.h"
#include <srtp.h>
#define RTP_CACHING_TEXT N_("RTP de-jitter buffer length (msec)")
#define RTP_CACHING_TEXT N_("RTP de-jitter buffer length (msec)")
#define RTP_CACHING_LONGTEXT N_( \
#define RTP_CACHING_LONGTEXT N_( \
"How long to wait for late RTP packets (and delay the performance)." )
"How long to wait for late RTP packets (and delay the performance)." )
#define SRTP_KEY_TEXT N_("SRTP key (hexadecimal)")
#define SRTP_KEY_LONGTEXT N_( \
"RTP packets will be authenticated and deciphered "\
"with this Secure RTP master shared secret key.")
#define SRTP_SALT_TEXT N_("SRTP salt (hexadecimal)")
#define SRTP_SALT_LONGTEXT N_( \
"Secure RTP requires a (non-secret) master salt value.")
#define RTP_MAX_SRC_TEXT N_("Maximum RTP sources")
#define RTP_MAX_SRC_TEXT N_("Maximum RTP sources")
#define RTP_MAX_SRC_LONGTEXT N_( \
#define RTP_MAX_SRC_LONGTEXT N_( \
"How many distinct active RTP sources are allowed at a time." )
"How many distinct active RTP sources are allowed at a time." )
...
@@ -79,6 +89,10 @@ vlc_module_begin ();
...
@@ -79,6 +89,10 @@ vlc_module_begin ();
add_integer
(
"rtp-caching"
,
1000
,
NULL
,
RTP_CACHING_TEXT
,
add_integer
(
"rtp-caching"
,
1000
,
NULL
,
RTP_CACHING_TEXT
,
RTP_CACHING_LONGTEXT
,
true
);
RTP_CACHING_LONGTEXT
,
true
);
change_integer_range
(
0
,
65535
);
change_integer_range
(
0
,
65535
);
add_string
(
"srtp-key"
,
""
,
NULL
,
SRTP_KEY_TEXT
,
SRTP_KEY_LONGTEXT
,
false
);
add_string
(
"srtp-salt"
,
""
,
NULL
,
SRTP_SALT_TEXT
,
SRTP_SALT_LONGTEXT
,
false
);
add_integer
(
"rtp-max-src"
,
1
,
NULL
,
RTP_MAX_SRC_TEXT
,
add_integer
(
"rtp-max-src"
,
1
,
NULL
,
RTP_MAX_SRC_TEXT
,
RTP_MAX_SRC_LONGTEXT
,
true
);
RTP_MAX_SRC_LONGTEXT
,
true
);
change_integer_range
(
1
,
255
);
change_integer_range
(
1
,
255
);
...
@@ -200,8 +214,13 @@ static int Open (vlc_object_t *obj)
...
@@ -200,8 +214,13 @@ static int Open (vlc_object_t *obj)
/* Initializes demux */
/* Initializes demux */
demux_sys_t
*
p_sys
=
malloc
(
sizeof
(
*
p_sys
));
demux_sys_t
*
p_sys
=
malloc
(
sizeof
(
*
p_sys
));
if
(
p_sys
==
NULL
)
if
(
p_sys
==
NULL
)
goto
error
;
{
net_Close
(
fd
);
return
VLC_EGENERIC
;
}
p_sys
->
srtp
=
NULL
;
p_sys
->
fd
=
fd
;
p_sys
->
caching
=
var_CreateGetInteger
(
obj
,
"rtp-caching"
);
p_sys
->
caching
=
var_CreateGetInteger
(
obj
,
"rtp-caching"
);
p_sys
->
max_src
=
var_CreateGetInteger
(
obj
,
"rtp-max-src"
);
p_sys
->
max_src
=
var_CreateGetInteger
(
obj
,
"rtp-max-src"
);
p_sys
->
timeout
=
var_CreateGetInteger
(
obj
,
"rtp-timeout"
);
p_sys
->
timeout
=
var_CreateGetInteger
(
obj
,
"rtp-timeout"
);
...
@@ -218,12 +237,32 @@ static int Open (vlc_object_t *obj)
...
@@ -218,12 +237,32 @@ static int Open (vlc_object_t *obj)
if
(
p_sys
->
session
==
NULL
)
if
(
p_sys
->
session
==
NULL
)
goto
error
;
goto
error
;
p_sys
->
fd
=
fd
;
char
*
key
=
var_GetNonEmptyString
(
demux
,
"srtp-key"
);
if
(
key
)
{
p_sys
->
srtp
=
srtp_create
(
SRTP_ENCR_AES_CM
,
SRTP_AUTH_HMAC_SHA1
,
10
,
SRTP_PRF_AES_CM
,
0
);
if
(
p_sys
->
srtp
==
NULL
)
{
free
(
key
);
goto
error
;
}
char
*
salt
=
var_GetNonEmptyString
(
demux
,
"srtp-salt"
);
errno
=
srtp_setkeystring
(
p_sys
->
srtp
,
key
,
salt
?
salt
:
""
);
free
(
salt
);
free
(
key
);
if
(
errno
)
{
msg_Err
(
obj
,
"bad SRTP key/salt combination (%m)"
);
goto
error
;
}
}
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
error:
error:
net_Close
(
fd
);
Close
(
obj
);
free
(
p_sys
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
...
@@ -236,6 +275,9 @@ static void Close (vlc_object_t *obj)
...
@@ -236,6 +275,9 @@ static void Close (vlc_object_t *obj)
demux_t
*
demux
=
(
demux_t
*
)
obj
;
demux_t
*
demux
=
(
demux_t
*
)
obj
;
demux_sys_t
*
p_sys
=
demux
->
p_sys
;
demux_sys_t
*
p_sys
=
demux
->
p_sys
;
if
(
p_sys
->
srtp
)
srtp_destroy
(
p_sys
->
srtp
);
if
(
p_sys
->
session
)
rtp_session_destroy
(
demux
,
p_sys
->
session
);
rtp_session_destroy
(
demux
,
p_sys
->
session
);
net_Close
(
p_sys
->
fd
);
net_Close
(
p_sys
->
fd
);
free
(
p_sys
);
free
(
p_sys
);
...
@@ -580,6 +622,17 @@ static int Demux (demux_t *demux)
...
@@ -580,6 +622,17 @@ static int Demux (demux_t *demux)
if
(
ptype
>=
72
&&
ptype
<=
76
)
if
(
ptype
>=
72
&&
ptype
<=
76
)
goto
drop
;
/* Muxed RTCP, ignore for now */
goto
drop
;
/* Muxed RTCP, ignore for now */
if
(
p_sys
->
srtp
)
{
size_t
len
=
block
->
i_buffer
;
if
(
srtp_recv
(
p_sys
->
srtp
,
block
->
p_buffer
,
&
len
))
{
msg_Dbg
(
demux
,
"SRTP authentication/decryption failed"
);
goto
drop
;
}
block
->
i_buffer
=
len
;
}
/* Not using SDP, we need to guess the payload format used */
/* Not using SDP, we need to guess the payload format used */
/* see http://www.iana.org/assignments/rtp-parameters */
/* see http://www.iana.org/assignments/rtp-parameters */
if
(
p_sys
->
autodetect
)
if
(
p_sys
->
autodetect
)
...
...
modules/demux/rtp.h
View file @
d298be30
...
@@ -43,6 +43,7 @@ int rtp_add_type (demux_t *demux, rtp_session_t *ses, const rtp_pt_t *pt);
...
@@ -43,6 +43,7 @@ int rtp_add_type (demux_t *demux, rtp_session_t *ses, const rtp_pt_t *pt);
struct
demux_sys_t
struct
demux_sys_t
{
{
rtp_session_t
*
session
;
rtp_session_t
*
session
;
struct
srtp_session_t
*
srtp
;
int
fd
;
int
fd
;
unsigned
caching
;
unsigned
caching
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment