Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: webrtc/p2p/base/dtlstransportchannel.h

Issue 2590063002: Make P2PTransportChannel inherit from IceTransportInternal. (Closed)
Patch Set: Modified the debug_name(). Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/p2p/base/dtlstransportchannel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2011 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_ 11 #ifndef WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_
12 #define WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_ 12 #define WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/p2p/base/transportchannelimpl.h"
19 #include "webrtc/base/buffer.h" 18 #include "webrtc/base/buffer.h"
20 #include "webrtc/base/bufferqueue.h" 19 #include "webrtc/base/bufferqueue.h"
21 #include "webrtc/base/constructormagic.h" 20 #include "webrtc/base/constructormagic.h"
22 #include "webrtc/base/sslstreamadapter.h" 21 #include "webrtc/base/sslstreamadapter.h"
23 #include "webrtc/base/stream.h" 22 #include "webrtc/base/stream.h"
23 #include "webrtc/p2p/base/icetransportinternal.h"
24 #include "webrtc/p2p/base/transportchannelimpl.h"
24 25
25 namespace rtc { 26 namespace rtc {
26 class PacketTransportInterface; 27 class PacketTransportInterface;
27 } 28 }
28 29
29 namespace cricket { 30 namespace cricket {
30 31
31 // A bridge between a packet-oriented/channel-type interface on 32 // A bridge between a packet-oriented/transport-type interface on
32 // the bottom and a StreamInterface on the top. 33 // the bottom and a StreamInterface on the top.
33 class StreamInterfaceChannel : public rtc::StreamInterface { 34 class StreamInterfaceChannel : public rtc::StreamInterface {
34 public: 35 public:
35 explicit StreamInterfaceChannel(TransportChannel* channel); 36 explicit StreamInterfaceChannel(IceTransportInternal* channel);
36 37
37 // Push in a packet; this gets pulled out from Read(). 38 // Push in a packet; this gets pulled out from Read().
38 bool OnPacketReceived(const char* data, size_t size); 39 bool OnPacketReceived(const char* data, size_t size);
39 40
40 // Implementations of StreamInterface 41 // Implementations of StreamInterface
41 rtc::StreamState GetState() const override { return state_; } 42 rtc::StreamState GetState() const override { return state_; }
42 void Close() override; 43 void Close() override;
43 rtc::StreamResult Read(void* buffer, 44 rtc::StreamResult Read(void* buffer,
44 size_t buffer_len, 45 size_t buffer_len,
45 size_t* read, 46 size_t* read,
46 int* error) override; 47 int* error) override;
47 rtc::StreamResult Write(const void* data, 48 rtc::StreamResult Write(const void* data,
48 size_t data_len, 49 size_t data_len,
49 size_t* written, 50 size_t* written,
50 int* error) override; 51 int* error) override;
51 52
52 private: 53 private:
53 TransportChannel* channel_; // owned by DtlsTransportChannelWrapper 54 IceTransportInternal* channel_; // owned by DtlsTransportChannelWrapper
54 rtc::StreamState state_; 55 rtc::StreamState state_;
55 rtc::BufferQueue packets_; 56 rtc::BufferQueue packets_;
56 57
57 RTC_DISALLOW_COPY_AND_ASSIGN(StreamInterfaceChannel); 58 RTC_DISALLOW_COPY_AND_ASSIGN(StreamInterfaceChannel);
58 }; 59 };
59 60
60 61
61 // This class provides a DTLS SSLStreamAdapter inside a TransportChannel-style 62 // This class provides a DTLS SSLStreamAdapter inside a TransportChannel-style
62 // packet-based interface, wrapping an existing TransportChannel instance 63 // packet-based interface, wrapping an existing TransportChannel instance
63 // (e.g a P2PTransportChannel) 64 // (e.g a P2PTransportChannel)
(...skipping 17 matching lines...) Expand all
81 // - Data written to DtlsTransportChannelWrapper is passed either to 82 // - Data written to DtlsTransportChannelWrapper is passed either to
82 // downward_ or directly to channel_, depending on whether DTLS is 83 // downward_ or directly to channel_, depending on whether DTLS is
83 // negotiated and whether the flags include PF_SRTP_BYPASS 84 // negotiated and whether the flags include PF_SRTP_BYPASS
84 // 85 //
85 // - The SSLStreamAdapter writes to downward_->Write() 86 // - The SSLStreamAdapter writes to downward_->Write()
86 // which translates it into packet writes on channel_. 87 // which translates it into packet writes on channel_.
87 class DtlsTransportChannelWrapper : public TransportChannelImpl { 88 class DtlsTransportChannelWrapper : public TransportChannelImpl {
88 public: 89 public:
89 // The parameters here are: 90 // The parameters here are:
90 // channel -- the TransportChannel we are wrapping 91 // channel -- the TransportChannel we are wrapping
91 explicit DtlsTransportChannelWrapper(TransportChannelImpl* channel); 92 explicit DtlsTransportChannelWrapper(IceTransportInternal* channel);
92 ~DtlsTransportChannelWrapper() override; 93 ~DtlsTransportChannelWrapper() override;
93 94
94 void SetIceRole(IceRole role) override { channel_->SetIceRole(role); } 95 void SetIceRole(IceRole role) override { channel_->SetIceRole(role); }
95 IceRole GetIceRole() const override { return channel_->GetIceRole(); } 96 IceRole GetIceRole() const override { return channel_->GetIceRole(); }
96 bool SetLocalCertificate( 97 bool SetLocalCertificate(
97 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) override; 98 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) override;
98 rtc::scoped_refptr<rtc::RTCCertificate> GetLocalCertificate() const override; 99 rtc::scoped_refptr<rtc::RTCCertificate> GetLocalCertificate() const override;
99 100
100 bool SetRemoteFingerprint(const std::string& digest_alg, 101 bool SetRemoteFingerprint(const std::string& digest_alg,
101 const uint8_t* digest, 102 const uint8_t* digest,
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 uint8_t* result, 155 uint8_t* result,
155 size_t result_len) override { 156 size_t result_len) override {
156 return (dtls_.get()) ? dtls_->ExportKeyingMaterial(label, context, 157 return (dtls_.get()) ? dtls_->ExportKeyingMaterial(label, context,
157 context_len, 158 context_len,
158 use_context, 159 use_context,
159 result, result_len) 160 result, result_len)
160 : false; 161 : false;
161 } 162 }
162 163
163 // TransportChannelImpl calls. 164 // TransportChannelImpl calls.
164 TransportChannelState GetState() const override { 165 IceTransportState GetState() const override { return channel_->GetState(); }
165 return channel_->GetState();
166 }
167 void SetIceTiebreaker(uint64_t tiebreaker) override { 166 void SetIceTiebreaker(uint64_t tiebreaker) override {
168 channel_->SetIceTiebreaker(tiebreaker); 167 channel_->SetIceTiebreaker(tiebreaker);
169 } 168 }
170 void SetIceParameters(const IceParameters& ice_params) override { 169 void SetIceParameters(const IceParameters& ice_params) override {
171 channel_->SetIceParameters(ice_params); 170 channel_->SetIceParameters(ice_params);
172 } 171 }
173 void SetRemoteIceParameters(const IceParameters& ice_params) override { 172 void SetRemoteIceParameters(const IceParameters& ice_params) override {
174 channel_->SetRemoteIceParameters(ice_params); 173 channel_->SetRemoteIceParameters(ice_params);
175 } 174 }
176 void SetRemoteIceMode(IceMode mode) override { 175 void SetRemoteIceMode(IceMode mode) override {
(...skipping 15 matching lines...) Expand all
192 191
193 void SetMetricsObserver(webrtc::MetricsObserverInterface* observer) override { 192 void SetMetricsObserver(webrtc::MetricsObserverInterface* observer) override {
194 channel_->SetMetricsObserver(observer); 193 channel_->SetMetricsObserver(observer);
195 } 194 }
196 195
197 void SetIceConfig(const IceConfig& config) override { 196 void SetIceConfig(const IceConfig& config) override {
198 channel_->SetIceConfig(config); 197 channel_->SetIceConfig(config);
199 } 198 }
200 199
201 // Needed by DtlsTransport. 200 // Needed by DtlsTransport.
202 TransportChannelImpl* channel() { return channel_; } 201 IceTransportInternal* channel() { return channel_; }
203 202
204 // For informational purposes. Tells if the DTLS handshake has finished. 203 // For informational purposes. Tells if the DTLS handshake has finished.
205 // This may be true even if writable() is false, if the remote fingerprint 204 // This may be true even if writable() is false, if the remote fingerprint
206 // has not yet been verified. 205 // has not yet been verified.
207 bool IsDtlsConnected(); 206 bool IsDtlsConnected();
208 207
209 private: 208 private:
210 void OnWritableState(rtc::PacketTransportInterface* transport); 209 void OnWritableState(rtc::PacketTransportInterface* transport);
211 void OnReadPacket(rtc::PacketTransportInterface* transport, 210 void OnReadPacket(rtc::PacketTransportInterface* transport,
212 const char* data, 211 const char* data,
213 size_t size, 212 size_t size,
214 const rtc::PacketTime& packet_time, 213 const rtc::PacketTime& packet_time,
215 int flags); 214 int flags);
216 void OnSentPacket(rtc::PacketTransportInterface* transport, 215 void OnSentPacket(rtc::PacketTransportInterface* transport,
217 const rtc::SentPacket& sent_packet); 216 const rtc::SentPacket& sent_packet);
218 void OnReadyToSend(rtc::PacketTransportInterface* transport); 217 void OnReadyToSend(rtc::PacketTransportInterface* transport);
219 void OnReceivingState(rtc::PacketTransportInterface* transport); 218 void OnReceivingState(rtc::PacketTransportInterface* transport);
220 void OnDtlsEvent(rtc::StreamInterface* stream_, int sig, int err); 219 void OnDtlsEvent(rtc::StreamInterface* stream_, int sig, int err);
221 bool SetupDtls(); 220 bool SetupDtls();
222 void MaybeStartDtls(); 221 void MaybeStartDtls();
223 bool HandleDtlsPacket(const char* data, size_t size); 222 bool HandleDtlsPacket(const char* data, size_t size);
224 void OnGatheringState(TransportChannelImpl* channel); 223 void OnGatheringState(IceTransportInternal* channel);
225 void OnCandidateGathered(TransportChannelImpl* channel, const Candidate& c); 224 void OnCandidateGathered(IceTransportInternal* channel, const Candidate& c);
226 void OnCandidatesRemoved(TransportChannelImpl* channel, 225 void OnCandidatesRemoved(IceTransportInternal* channel,
227 const Candidates& candidates); 226 const Candidates& candidates);
228 void OnRoleConflict(TransportChannelImpl* channel); 227 void OnRoleConflict(IceTransportInternal* channel);
229 void OnRouteChange(TransportChannel* channel, const Candidate& candidate); 228 void OnRouteChange(IceTransportInternal* channel, const Candidate& candidate);
230 void OnSelectedCandidatePairChanged( 229 void OnSelectedCandidatePairChanged(
231 TransportChannel* channel, 230 IceTransportInternal* channel,
232 CandidatePairInterface* selected_candidate_pair, 231 CandidatePairInterface* selected_candidate_pair,
233 int last_sent_packet_id, 232 int last_sent_packet_id,
234 bool ready_to_send); 233 bool ready_to_send);
235 void OnChannelStateChanged(TransportChannelImpl* channel); 234 void OnChannelStateChanged(IceTransportInternal* channel);
236 void OnDtlsHandshakeError(rtc::SSLHandshakeError error); 235 void OnDtlsHandshakeError(rtc::SSLHandshakeError error);
237 236
238 rtc::Thread* network_thread_; // Everything should occur on this thread. 237 rtc::Thread* network_thread_; // Everything should occur on this thread.
239 // Underlying channel, not owned by this class. 238 // Underlying channel, not owned by this class.
240 TransportChannelImpl* const channel_; 239 IceTransportInternal* const channel_;
241 std::unique_ptr<rtc::SSLStreamAdapter> dtls_; // The DTLS stream 240 std::unique_ptr<rtc::SSLStreamAdapter> dtls_; // The DTLS stream
242 StreamInterfaceChannel* downward_; // Wrapper for channel_, owned by dtls_. 241 StreamInterfaceChannel* downward_; // Wrapper for channel_, owned by dtls_.
243 std::vector<int> srtp_ciphers_; // SRTP ciphers to use with DTLS. 242 std::vector<int> srtp_ciphers_; // SRTP ciphers to use with DTLS.
244 bool dtls_active_ = false; 243 bool dtls_active_ = false;
245 rtc::scoped_refptr<rtc::RTCCertificate> local_certificate_; 244 rtc::scoped_refptr<rtc::RTCCertificate> local_certificate_;
246 rtc::SSLRole ssl_role_; 245 rtc::SSLRole ssl_role_;
247 rtc::SSLProtocolVersion ssl_max_version_; 246 rtc::SSLProtocolVersion ssl_max_version_;
248 rtc::Buffer remote_fingerprint_value_; 247 rtc::Buffer remote_fingerprint_value_;
249 std::string remote_fingerprint_algorithm_; 248 std::string remote_fingerprint_algorithm_;
250 249
251 // Cached DTLS ClientHello packet that was received before we started the 250 // Cached DTLS ClientHello packet that was received before we started the
252 // DTLS handshake. This could happen if the hello was received before the 251 // DTLS handshake. This could happen if the hello was received before the
253 // transport channel became writable, or before a remote fingerprint was 252 // transport channel became writable, or before a remote fingerprint was
254 // received. 253 // received.
255 rtc::Buffer cached_client_hello_; 254 rtc::Buffer cached_client_hello_;
256 255
257 RTC_DISALLOW_COPY_AND_ASSIGN(DtlsTransportChannelWrapper); 256 RTC_DISALLOW_COPY_AND_ASSIGN(DtlsTransportChannelWrapper);
258 }; 257 };
259 258
260 } // namespace cricket 259 } // namespace cricket
261 260
262 #endif // WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_ 261 #endif // WEBRTC_P2P_BASE_DTLSTRANSPORTCHANNEL_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/p2p/base/dtlstransportchannel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698