blob: 7958210c997b3a9e07a97bb97392b2d15145db26 [file] [log] [blame]
Zhi Huangf2d7beb2017-11-20 22:35:111/*
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef PC_DTLS_SRTP_TRANSPORT_H_
12#define PC_DTLS_SRTP_TRANSPORT_H_
Zhi Huangf2d7beb2017-11-20 22:35:1113
Harald Alvestrandc24a2182022-02-23 13:44:5914#include <functional>
Harald Alvestrand5761e7b2021-01-29 14:45:0815#include <string>
Zhi Huangf2d7beb2017-11-20 22:35:1116#include <vector>
17
Yves Gerey3e707812018-11-28 15:47:4918#include "absl/types/optional.h"
Harald Alvestrand0d018412021-11-04 13:52:3119#include "api/crypto_params.h"
Mirko Bonadei9f6808b2021-05-21 18:46:0920#include "api/dtls_transport_interface.h"
Steve Anton10542f22019-01-11 17:11:0021#include "api/rtc_error.h"
22#include "p2p/base/dtls_transport_internal.h"
23#include "p2p/base/packet_transport_internal.h"
24#include "pc/srtp_transport.h"
Joachim Bauch5b32f232018-03-07 19:02:2625#include "rtc_base/buffer.h"
Yves Gerey3e707812018-11-28 15:47:4926#include "rtc_base/third_party/sigslot/sigslot.h"
Zhi Huangf2d7beb2017-11-20 22:35:1127
28namespace webrtc {
29
Zhi Huang365381f2018-04-13 23:44:3430// The subclass of SrtpTransport is used for DTLS-SRTP. When the DTLS handshake
31// is finished, it extracts the keying materials from DtlsTransport and
32// configures the SrtpSessions in the base class.
33class DtlsSrtpTransport : public SrtpTransport {
Zhi Huangf2d7beb2017-11-20 22:35:1134 public:
Jonas Orelande62c2f22022-03-29 09:04:4835 DtlsSrtpTransport(bool rtcp_mux_enabled, const FieldTrialsView& field_trials);
Zhi Huangf2d7beb2017-11-20 22:35:1136
37 // Set P2P layer RTP/RTCP DtlsTransports. When using RTCP-muxing,
Artem Titov880fa812021-07-30 20:30:2338 // `rtcp_dtls_transport` is null.
Zhi Huangf2d7beb2017-11-20 22:35:1139 void SetDtlsTransports(cricket::DtlsTransportInternal* rtp_dtls_transport,
40 cricket::DtlsTransportInternal* rtcp_dtls_transport);
41
42 void SetRtcpMuxEnabled(bool enable) override;
43
44 // Set the header extension ids that should be encrypted.
Zhi Huangcd3fc5d2017-11-29 18:41:5745 void UpdateSendEncryptedHeaderExtensionIds(
Zhi Huangf2d7beb2017-11-20 22:35:1146 const std::vector<int>& send_extension_ids);
47
Zhi Huangcd3fc5d2017-11-29 18:41:5748 void UpdateRecvEncryptedHeaderExtensionIds(
Zhi Huangf2d7beb2017-11-20 22:35:1149 const std::vector<int>& recv_extension_ids);
50
Lahiru Ginnaliya Gamathigec32f00e2021-02-17 08:43:2151 void SetOnDtlsStateChange(std::function<void(void)> callback);
Zhi Huangf2d7beb2017-11-20 22:35:1152
Harald Alvestrand0d018412021-11-04 13:52:3153 RTCError SetSrtpSendKey(const cricket::CryptoParams& params) override {
54 return RTCError(RTCErrorType::UNSUPPORTED_OPERATION,
55 "Set SRTP keys for DTLS-SRTP is not supported.");
56 }
57 RTCError SetSrtpReceiveKey(const cricket::CryptoParams& params) override {
58 return RTCError(RTCErrorType::UNSUPPORTED_OPERATION,
59 "Set SRTP keys for DTLS-SRTP is not supported.");
60 }
61
Artem Titov880fa812021-07-30 20:30:2362 // If `active_reset_srtp_params_` is set to be true, the SRTP parameters will
Zhi Huangb57e1692018-06-12 18:41:1163 // be reset whenever the DtlsTransports are reset.
64 void SetActiveResetSrtpParams(bool active_reset_srtp_params) {
65 active_reset_srtp_params_ = active_reset_srtp_params;
66 }
67
Zhi Huangf2d7beb2017-11-20 22:35:1168 private:
69 bool IsDtlsActive();
70 bool IsDtlsConnected();
71 bool IsDtlsWritable();
72 bool DtlsHandshakeCompleted();
73 void MaybeSetupDtlsSrtp();
74 void SetupRtpDtlsSrtp();
75 void SetupRtcpDtlsSrtp();
76 bool ExtractParams(cricket::DtlsTransportInternal* dtls_transport,
77 int* selected_crypto_suite,
Joachim Bauch5b32f232018-03-07 19:02:2678 rtc::ZeroOnFreeBuffer<unsigned char>* send_key,
79 rtc::ZeroOnFreeBuffer<unsigned char>* recv_key);
Zhi Huangf2d7beb2017-11-20 22:35:1180 void SetDtlsTransport(cricket::DtlsTransportInternal* new_dtls_transport,
81 cricket::DtlsTransportInternal** old_dtls_transport);
82 void SetRtpDtlsTransport(cricket::DtlsTransportInternal* rtp_dtls_transport);
83 void SetRtcpDtlsTransport(
84 cricket::DtlsTransportInternal* rtcp_dtls_transport);
Zhi Huangf2d7beb2017-11-20 22:35:1185
86 void OnDtlsState(cricket::DtlsTransportInternal* dtls_transport,
Mirko Bonadei9f6808b2021-05-21 18:46:0987 DtlsTransportState state);
Zhi Huangf2d7beb2017-11-20 22:35:1188
Zhi Huang365381f2018-04-13 23:44:3489 // Override the SrtpTransport::OnWritableState.
90 void OnWritableState(rtc::PacketTransportInternal* packet_transport) override;
91
Zhi Huangf2d7beb2017-11-20 22:35:1192 // Owned by the TransportController.
93 cricket::DtlsTransportInternal* rtp_dtls_transport_ = nullptr;
94 cricket::DtlsTransportInternal* rtcp_dtls_transport_ = nullptr;
95
96 // The encrypted header extension IDs.
Danil Chapovalov66cadcc2018-06-19 14:47:4397 absl::optional<std::vector<int>> send_extension_ids_;
98 absl::optional<std::vector<int>> recv_extension_ids_;
Zhi Huangb57e1692018-06-12 18:41:1199
100 bool active_reset_srtp_params_ = false;
Lahiru Ginnaliya Gamathigec32f00e2021-02-17 08:43:21101 std::function<void(void)> on_dtls_state_change_;
Zhi Huangf2d7beb2017-11-20 22:35:11102};
103
104} // namespace webrtc
105
Steve Anton10542f22019-01-11 17:11:00106#endif // PC_DTLS_SRTP_TRANSPORT_H_