Fork me on GitHub
dtls.h
Go to the documentation of this file.
1 
15 #ifndef JANUS_DTLS_H
16 #define JANUS_DTLS_H
17 
18 #include <inttypes.h>
19 #include <glib.h>
20 
21 #include "rtp.h"
22 #include "rtpsrtp.h"
23 #include "sctp.h"
24 #include "refcount.h"
25 #include "dtls-bio.h"
26 
29 const char *janus_get_ssl_version(void);
30 
40 gint janus_dtls_srtp_init(const char *server_pem, const char *server_key, const char *password,
41  const char *ciphers, guint16 timeout, gboolean rsa_private_key, gboolean accept_selfsigned);
43 void janus_dtls_srtp_cleanup(void);
48 
49 
51 typedef enum janus_dtls_role {
56 
58 typedef enum janus_dtls_state {
64 
66 typedef struct janus_dtls_srtp {
68  void *component;
74  gint64 dtls_started;
78  SSL *ssl;
80  BIO *read_bio;
82  BIO *write_bio;
84  gint srtp_valid;
88  srtp_t srtp_in;
90  srtp_t srtp_out;
92  srtp_policy_t remote_policy;
94  srtp_policy_t local_policy;
96  int ready;
99 #ifdef HAVE_SCTP
100 
101  janus_sctp_association *sctp;
102 #endif
103 
104  volatile gint destroyed;
108 
109 
129 void janus_dtls_srtp_incoming_msg(janus_dtls_srtp *dtls, char *buf, uint16_t len);
136 
141 void janus_dtls_callback(const SSL *ssl, int where, int ret);
142 
147 int janus_dtls_verify_callback(int preverify_ok, X509_STORE_CTX *ctx);
148 
149 #ifdef HAVE_SCTP
150 
152 void janus_dtls_sctp_data_ready(janus_dtls_srtp *dtls);
153 
161 void janus_dtls_wrap_sctp_data(janus_dtls_srtp *dtls, char *label, char *protocol, gboolean textdata, char *buf, int len);
162 
168 int janus_dtls_send_sctp_data(janus_dtls_srtp *dtls, char *buf, int len);
169 
177 void janus_dtls_notify_sctp_data(janus_dtls_srtp *dtls, char *label, char *protocol, gboolean textdata, char *buf, int len);
178 #endif
179 
184 gboolean janus_dtls_retry(gpointer stack);
185 
189 const gchar *janus_get_dtls_srtp_state(janus_dtls_state state);
190 
194 const gchar *janus_get_dtls_srtp_role(janus_dtls_role role);
195 
199 const gchar *janus_get_dtls_srtp_profile(int profile);
200 
203 gboolean janus_is_dtls(char *buf);
204 
205 #endif
gchar * janus_dtls_get_local_fingerprint(void)
Method to return a string representation (SHA-256) of the certificate fingerprint.
Definition: dtls.c:133
gboolean janus_dtls_are_selfsigned_certs_ok(void)
Method to check whether DTLS self-signed certificates are ok (default) or not.
Definition: dtls.c:119
SCTP processing for data channels (headers)
Definition: dtls.h:60
Reference counter mechanism.
struct janus_dtls_srtp janus_dtls_srtp
Janus DTLS-SRTP handle.
const gchar * janus_get_dtls_srtp_profile(int profile)
Helper method to get a string representation of an SRTP profile.
Definition: dtls.c:58
gint janus_dtls_srtp_init(const char *server_pem, const char *server_key, const char *password, const char *ciphers, guint16 timeout, gboolean rsa_private_key, gboolean accept_selfsigned)
DTLS stuff initialization.
Definition: dtls.c:373
Definition: dtls.h:62
Definition: dtls.h:59
Definition: dtls.h:52
OpenSSL BIO agent writer.
janus_dtls_state dtls_state
DTLS state of this component: -1=failed, 0=nothing, 1=trying, 2=connected.
Definition: dtls.h:72
SRTP definitions (headers)
void janus_dtls_srtp_cleanup(void)
Method to cleanup DTLS stuff before exiting.
Definition: dtls.c:524
Definition: refcount.h:78
gboolean janus_is_dtls(char *buf)
Helper method to demultiplex DTLS from other protocols.
Definition: dtls.c:103
Definition: dtls.h:61
SSL * ssl
SSL context used for DTLS for this component.
Definition: dtls.h:78
void janus_dtls_srtp_destroy(janus_dtls_srtp *dtls)
Destroy a janus_dtls_srtp instance.
Definition: dtls.c:970
const char * janus_get_ssl_version(void)
Helper method to return info on the crypto library and its version.
Definition: dtls.c:368
int retransmissions
The number of retransmissions that have occurred for this DTLS instance so far.
Definition: dtls.h:98
int janus_dtls_verify_callback(int preverify_ok, X509_STORE_CTX *ctx)
DTLS certificate verification callback (http://www.openssl.org/docs/ssl/SSL_CTX_set_verify.html)
Definition: dtls.c:1016
srtp_policy_t local_policy
libsrtp policy for outgoing SRTP packets
Definition: dtls.h:94
void janus_dtls_srtp_send_alert(janus_dtls_srtp *dtls)
Send an alert on a janus_dtls_srtp instance.
Definition: dtls.c:959
gint srtp_valid
Whether SRTP has been correctly set up for this component or not.
Definition: dtls.h:84
srtp_t srtp_out
libsrtp context for outgoing SRTP packets
Definition: dtls.h:90
Definition: dtls.h:54
janus_refcount ref
Reference counter for this instance.
Definition: dtls.h:106
Janus DTLS-SRTP handle.
Definition: dtls.h:66
void janus_dtls_srtp_incoming_msg(janus_dtls_srtp *dtls, char *buf, uint16_t len)
Handle an incoming DTLS message.
Definition: dtls.c:668
int ready
Whether this DTLS stack is now ready to be used for messages as well (e.g., SCTP encapsulation) ...
Definition: dtls.h:96
gboolean janus_dtls_retry(gpointer stack)
DTLS retransmission timer.
Definition: dtls.c:1094
gint64 dtls_connected
Monotonic time of when the DTLS state has switched to connected.
Definition: dtls.h:76
BIO * write_bio
Write BIO (outgoing DTLS data)
Definition: dtls.h:82
void janus_dtls_srtp_handshake(janus_dtls_srtp *dtls)
Start a DTLS handshake.
Definition: dtls.c:622
Definition: dtls.h:53
gint64 dtls_started
Monotonic time of when the DTLS handhake has started.
Definition: dtls.h:74
const gchar * janus_get_dtls_srtp_state(janus_dtls_state state)
Helper method to get a string representation of a Janus DTLS state.
Definition: dtls.c:28
gint srtp_profile
The SRTP profile currently in use.
Definition: dtls.h:86
volatile gint destroyed
Atomic flag to check if this instance has been destroyed.
Definition: dtls.h:104
RTP processing (headers)
void * component
Opaque pointer to the component this DTLS-SRTP context belongs to.
Definition: dtls.h:68
janus_dtls_role dtls_role
DTLS role of the server for this stream: 1=client, 0=server.
Definition: dtls.h:70
janus_dtls_srtp * janus_dtls_srtp_create(void *component, janus_dtls_role role)
Create a janus_dtls_srtp instance.
Definition: dtls.c:543
janus_dtls_state
DTLS state.
Definition: dtls.h:58
srtp_policy_t remote_policy
libsrtp policy for incoming SRTP packets
Definition: dtls.h:92
void janus_dtls_callback(const SSL *ssl, int where, int ret)
DTLS alert callback (http://www.openssl.org/docs/ssl/SSL_CTX_set_info_callback.html) ...
Definition: dtls.c:986
janus_dtls_role
DTLS roles.
Definition: dtls.h:51
int janus_dtls_srtp_create_sctp(janus_dtls_srtp *dtls)
Create an SCTP association, for data channels.
Definition: dtls.c:641
const gchar * janus_get_dtls_srtp_role(janus_dtls_role role)
Helper method to get a string representation of a DTLS role.
Definition: dtls.c:44
BIO * read_bio
Read BIO (incoming DTLS data)
Definition: dtls.h:80
srtp_t srtp_in
libsrtp context for incoming SRTP packets
Definition: dtls.h:88