OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2009 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_FAKETRANSPORTCONTROLLER_H_ | 11 #ifndef WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ |
12 #define WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ | 12 #define WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ |
13 | 13 |
14 #include <map> | 14 #include <map> |
15 #include <memory> | 15 #include <memory> |
16 #include <string> | 16 #include <string> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "webrtc/p2p/base/candidatepairinterface.h" | |
20 #include "webrtc/p2p/base/transportchannel.h" | |
21 #include "webrtc/p2p/base/transportcontroller.h" | |
22 #include "webrtc/p2p/base/transportchannelimpl.h" | |
23 #include "webrtc/base/bind.h" | 19 #include "webrtc/base/bind.h" |
24 #include "webrtc/base/buffer.h" | 20 #include "webrtc/base/buffer.h" |
25 #include "webrtc/base/fakesslidentity.h" | 21 #include "webrtc/base/fakesslidentity.h" |
26 #include "webrtc/base/messagequeue.h" | 22 #include "webrtc/base/messagequeue.h" |
27 #include "webrtc/base/sigslot.h" | 23 #include "webrtc/base/sigslot.h" |
28 #include "webrtc/base/sslfingerprint.h" | 24 #include "webrtc/base/sslfingerprint.h" |
29 #include "webrtc/base/thread.h" | 25 #include "webrtc/base/thread.h" |
| 26 #include "webrtc/p2p/base/candidatepairinterface.h" |
| 27 #include "webrtc/p2p/base/icetransportinternal.h" |
| 28 #include "webrtc/p2p/base/transportchannel.h" |
| 29 #include "webrtc/p2p/base/transportchannelimpl.h" |
| 30 #include "webrtc/p2p/base/transportcontroller.h" |
30 | 31 |
31 #ifdef HAVE_QUIC | 32 #ifdef HAVE_QUIC |
32 #include "webrtc/p2p/quic/quictransport.h" | 33 #include "webrtc/p2p/quic/quictransport.h" |
33 #endif | 34 #endif |
34 | 35 |
35 namespace cricket { | 36 namespace cricket { |
36 | 37 |
37 namespace { | 38 namespace { |
38 struct PacketMessageData : public rtc::MessageData { | 39 struct PacketMessageData : public rtc::MessageData { |
39 PacketMessageData(const char* data, size_t len) : packet(data, len) {} | 40 PacketMessageData(const char* data, size_t len) : packet(data, len) {} |
40 rtc::Buffer packet; | 41 rtc::Buffer packet; |
41 }; | 42 }; |
42 } // namespace | 43 } // namespace |
43 | 44 |
| 45 class FakeIceTransport : public IceTransportInternal, |
| 46 public rtc::MessageHandler { |
| 47 public: |
| 48 explicit FakeIceTransport(const std::string& name, int component) |
| 49 : name_(name), component_(component) {} |
| 50 ~FakeIceTransport() { Reset(); } |
| 51 |
| 52 const std::string& transport_name() const override { return name_; } |
| 53 int component() const override { return component_; } |
| 54 uint64_t IceTiebreaker() const { return tiebreaker_; } |
| 55 IceMode remote_ice_mode() const { return remote_ice_mode_; } |
| 56 const std::string& ice_ufrag() const { return ice_ufrag_; } |
| 57 const std::string& ice_pwd() const { return ice_pwd_; } |
| 58 const std::string& remote_ice_ufrag() const { return remote_ice_ufrag_; } |
| 59 const std::string& remote_ice_pwd() const { return remote_ice_pwd_; } |
| 60 |
| 61 // If async, will send packets by "Post"-ing to message queue instead of |
| 62 // synchronously "Send"-ing. |
| 63 void SetAsync(bool async) { async_ = async; } |
| 64 void SetAsyncDelay(int delay_ms) { async_delay_ms_ = delay_ms; } |
| 65 |
| 66 IceTransportState GetState() const override { |
| 67 if (connection_count_ == 0) { |
| 68 return had_connection_ ? IceTransportState::STATE_FAILED |
| 69 : IceTransportState::STATE_INIT; |
| 70 } |
| 71 |
| 72 if (connection_count_ == 1) { |
| 73 return IceTransportState::STATE_COMPLETED; |
| 74 } |
| 75 |
| 76 return IceTransportState::STATE_CONNECTING; |
| 77 } |
| 78 |
| 79 void SetIceRole(IceRole role) override { role_ = role; } |
| 80 IceRole GetIceRole() const override { return role_; } |
| 81 void SetIceTiebreaker(uint64_t tiebreaker) override { |
| 82 tiebreaker_ = tiebreaker; |
| 83 } |
| 84 void SetIceParameters(const IceParameters& ice_params) override { |
| 85 ice_ufrag_ = ice_params.ufrag; |
| 86 ice_pwd_ = ice_params.pwd; |
| 87 } |
| 88 void SetRemoteIceParameters(const IceParameters& params) override { |
| 89 remote_ice_ufrag_ = params.ufrag; |
| 90 remote_ice_pwd_ = params.pwd; |
| 91 } |
| 92 |
| 93 void SetRemoteIceMode(IceMode mode) override { remote_ice_mode_ = mode; } |
| 94 |
| 95 void MaybeStartGathering() override { |
| 96 if (gathering_state_ == kIceGatheringNew) { |
| 97 gathering_state_ = kIceGatheringGathering; |
| 98 SignalGatheringState(this); |
| 99 } |
| 100 } |
| 101 |
| 102 IceGatheringState gathering_state() const override { |
| 103 return gathering_state_; |
| 104 } |
| 105 |
| 106 void Reset() { |
| 107 if (state_ != STATE_INIT) { |
| 108 state_ = STATE_INIT; |
| 109 if (dest_) { |
| 110 dest_->state_ = STATE_INIT; |
| 111 dest_->dest_ = nullptr; |
| 112 dest_ = nullptr; |
| 113 } |
| 114 } |
| 115 } |
| 116 |
| 117 void SetWritable(bool writable) { set_writable(writable); } |
| 118 |
| 119 void set_writable(bool writable) { |
| 120 if (writable_ == writable) { |
| 121 return; |
| 122 } |
| 123 LOG(INFO) << "set_writable from:" << writable_ << " to " << writable; |
| 124 writable_ = writable; |
| 125 if (writable_) { |
| 126 SignalReadyToSend(this); |
| 127 } |
| 128 SignalWritableState(this); |
| 129 } |
| 130 bool writable() const override { return writable_; } |
| 131 |
| 132 // Simulates the two transports connecting to each other. |
| 133 // If |asymmetric| is true this method only affects this FakeIceTransport. |
| 134 // If false, it affects |dest| as well. |
| 135 void SetDestination(FakeIceTransport* dest, bool asymmetric = false) { |
| 136 if (state_ == STATE_INIT && dest) { |
| 137 // This simulates the delivery of candidates. |
| 138 dest_ = dest; |
| 139 state_ = STATE_CONNECTED; |
| 140 set_writable(true); |
| 141 if (!asymmetric) { |
| 142 dest->SetDestination(this, true); |
| 143 } |
| 144 } else if (state_ == STATE_CONNECTED && !dest) { |
| 145 // Simulates loss of connectivity, by asymmetrically forgetting dest_. |
| 146 dest_ = nullptr; |
| 147 state_ = STATE_INIT; |
| 148 set_writable(false); |
| 149 } |
| 150 } |
| 151 |
| 152 void SetConnectionCount(size_t connection_count) { |
| 153 size_t old_connection_count = connection_count_; |
| 154 connection_count_ = connection_count; |
| 155 if (connection_count) |
| 156 had_connection_ = true; |
| 157 // In this fake transport channel, |connection_count_| determines the |
| 158 // transport channel state. |
| 159 if (connection_count_ < old_connection_count) |
| 160 SignalStateChanged(this); |
| 161 } |
| 162 |
| 163 void SetCandidatesGatheringComplete() { |
| 164 if (gathering_state_ != kIceGatheringComplete) { |
| 165 gathering_state_ = kIceGatheringComplete; |
| 166 SignalGatheringState(this); |
| 167 } |
| 168 } |
| 169 |
| 170 void SetReceiving(bool receiving) { set_receiving(receiving); } |
| 171 |
| 172 void set_receiving(bool receiving) { |
| 173 if (receiving_ == receiving) { |
| 174 return; |
| 175 } |
| 176 receiving_ = receiving; |
| 177 SignalReceivingState(this); |
| 178 } |
| 179 bool receiving() const override { return receiving_; } |
| 180 |
| 181 void SetIceConfig(const IceConfig& config) override { ice_config_ = config; } |
| 182 |
| 183 int receiving_timeout() const { return ice_config_.receiving_timeout; } |
| 184 bool gather_continually() const { return ice_config_.gather_continually(); } |
| 185 |
| 186 int SendPacket(const char* data, |
| 187 size_t len, |
| 188 const rtc::PacketOptions& options, |
| 189 int flags) override { |
| 190 if (state_ != STATE_CONNECTED) { |
| 191 return -1; |
| 192 } |
| 193 |
| 194 if (flags != PF_SRTP_BYPASS && flags != 0) { |
| 195 return -1; |
| 196 } |
| 197 |
| 198 PacketMessageData* packet = new PacketMessageData(data, len); |
| 199 if (async_) { |
| 200 if (async_delay_ms_) { |
| 201 rtc::Thread::Current()->PostDelayed(RTC_FROM_HERE, async_delay_ms_, |
| 202 this, 0, packet); |
| 203 } else { |
| 204 rtc::Thread::Current()->Post(RTC_FROM_HERE, this, 0, packet); |
| 205 } |
| 206 } else { |
| 207 rtc::Thread::Current()->Send(RTC_FROM_HERE, this, 0, packet); |
| 208 } |
| 209 rtc::SentPacket sent_packet(options.packet_id, rtc::TimeMillis()); |
| 210 SignalSentPacket(this, sent_packet); |
| 211 return static_cast<int>(len); |
| 212 } |
| 213 int SetOption(rtc::Socket::Option opt, int value) override { return true; } |
| 214 bool GetOption(rtc::Socket::Option opt, int* value) override { return true; } |
| 215 int GetError() override { return 0; } |
| 216 |
| 217 void AddRemoteCandidate(const Candidate& candidate) override { |
| 218 remote_candidates_.push_back(candidate); |
| 219 } |
| 220 |
| 221 void RemoveRemoteCandidate(const Candidate& candidate) override {} |
| 222 |
| 223 const Candidates& remote_candidates() const { return remote_candidates_; } |
| 224 |
| 225 void OnMessage(rtc::Message* msg) override { |
| 226 PacketMessageData* data = static_cast<PacketMessageData*>(msg->pdata); |
| 227 dest_->SignalReadPacket(dest_, data->packet.data<char>(), |
| 228 data->packet.size(), rtc::CreatePacketTime(0), 0); |
| 229 delete data; |
| 230 } |
| 231 |
| 232 bool GetStats(ConnectionInfos* infos) override { |
| 233 ConnectionInfo info; |
| 234 infos->clear(); |
| 235 infos->push_back(info); |
| 236 return true; |
| 237 } |
| 238 |
| 239 void SetMetricsObserver(webrtc::MetricsObserverInterface* observer) override { |
| 240 } |
| 241 |
| 242 private: |
| 243 std::string name_; |
| 244 int component_; |
| 245 enum State { STATE_INIT, STATE_CONNECTED }; |
| 246 FakeIceTransport* dest_ = nullptr; |
| 247 State state_ = STATE_INIT; |
| 248 bool async_ = false; |
| 249 int async_delay_ms_ = 0; |
| 250 Candidates remote_candidates_; |
| 251 IceConfig ice_config_; |
| 252 IceRole role_ = ICEROLE_UNKNOWN; |
| 253 uint64_t tiebreaker_ = 0; |
| 254 std::string ice_ufrag_; |
| 255 std::string ice_pwd_; |
| 256 std::string remote_ice_ufrag_; |
| 257 std::string remote_ice_pwd_; |
| 258 IceMode remote_ice_mode_ = ICEMODE_FULL; |
| 259 size_t connection_count_ = 0; |
| 260 IceGatheringState gathering_state_ = kIceGatheringNew; |
| 261 bool had_connection_ = false; |
| 262 bool writable_ = false; |
| 263 bool receiving_ = false; |
| 264 }; |
| 265 |
44 // Fake transport channel class, which can be passed to anything that needs a | 266 // Fake transport channel class, which can be passed to anything that needs a |
45 // transport channel. Can be informed of another FakeTransportChannel via | 267 // transport channel. Can be informed of another FakeTransportChannel via |
46 // SetDestination. | 268 // SetDestination. |
47 // TODO(hbos): Move implementation to .cc file, this and other classes in file. | 269 // TODO(hbos): Move implementation to .cc file, this and other classes in file. |
48 class FakeTransportChannel : public TransportChannelImpl, | 270 class FakeTransportChannel : public TransportChannelImpl, |
49 public rtc::MessageHandler { | 271 public rtc::MessageHandler { |
50 public: | 272 public: |
51 explicit FakeTransportChannel(const std::string& name, int component) | 273 explicit FakeTransportChannel(const std::string& name, int component) |
52 : TransportChannelImpl(name, component), | 274 : TransportChannelImpl(name, component), |
53 dtls_fingerprint_("", nullptr, 0) {} | 275 dtls_fingerprint_("", nullptr, 0) {} |
54 ~FakeTransportChannel() { Reset(); } | 276 ~FakeTransportChannel() { Reset(); } |
55 | 277 |
56 uint64_t IceTiebreaker() const { return tiebreaker_; } | 278 uint64_t IceTiebreaker() const { return tiebreaker_; } |
57 IceMode remote_ice_mode() const { return remote_ice_mode_; } | 279 IceMode remote_ice_mode() const { return remote_ice_mode_; } |
58 const std::string& ice_ufrag() const { return ice_ufrag_; } | 280 const std::string& ice_ufrag() const { return ice_ufrag_; } |
59 const std::string& ice_pwd() const { return ice_pwd_; } | 281 const std::string& ice_pwd() const { return ice_pwd_; } |
60 const std::string& remote_ice_ufrag() const { return remote_ice_ufrag_; } | 282 const std::string& remote_ice_ufrag() const { return remote_ice_ufrag_; } |
61 const std::string& remote_ice_pwd() const { return remote_ice_pwd_; } | 283 const std::string& remote_ice_pwd() const { return remote_ice_pwd_; } |
62 const rtc::SSLFingerprint& dtls_fingerprint() const { | 284 const rtc::SSLFingerprint& dtls_fingerprint() const { |
63 return dtls_fingerprint_; | 285 return dtls_fingerprint_; |
64 } | 286 } |
65 | 287 |
66 // If async, will send packets by "Post"-ing to message queue instead of | 288 // If async, will send packets by "Post"-ing to message queue instead of |
67 // synchronously "Send"-ing. | 289 // synchronously "Send"-ing. |
68 void SetAsync(bool async) { async_ = async; } | 290 void SetAsync(bool async) { async_ = async; } |
69 void SetAsyncDelay(int delay_ms) { async_delay_ms_ = delay_ms; } | 291 void SetAsyncDelay(int delay_ms) { async_delay_ms_ = delay_ms; } |
70 | 292 |
71 TransportChannelState GetState() const override { | 293 IceTransportState GetState() const override { |
72 if (connection_count_ == 0) { | 294 if (connection_count_ == 0) { |
73 return had_connection_ ? TransportChannelState::STATE_FAILED | 295 return had_connection_ ? IceTransportState::STATE_FAILED |
74 : TransportChannelState::STATE_INIT; | 296 : IceTransportState::STATE_INIT; |
75 } | 297 } |
76 | 298 |
77 if (connection_count_ == 1) { | 299 if (connection_count_ == 1) { |
78 return TransportChannelState::STATE_COMPLETED; | 300 return IceTransportState::STATE_COMPLETED; |
79 } | 301 } |
80 | 302 |
81 return TransportChannelState::STATE_CONNECTING; | 303 return IceTransportState::STATE_CONNECTING; |
82 } | 304 } |
83 | 305 |
84 void SetIceRole(IceRole role) override { role_ = role; } | 306 void SetIceRole(IceRole role) override { role_ = role; } |
85 IceRole GetIceRole() const override { return role_; } | 307 IceRole GetIceRole() const override { return role_; } |
86 void SetIceTiebreaker(uint64_t tiebreaker) override { | 308 void SetIceTiebreaker(uint64_t tiebreaker) override { |
87 tiebreaker_ = tiebreaker; | 309 tiebreaker_ = tiebreaker; |
88 } | 310 } |
89 void SetIceParameters(const IceParameters& ice_params) override { | 311 void SetIceParameters(const IceParameters& ice_params) override { |
90 ice_ufrag_ = ice_params.ufrag; | 312 ice_ufrag_ = ice_params.ufrag; |
91 ice_pwd_ = ice_params.pwd; | 313 ice_pwd_ = ice_params.pwd; |
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 "foundation", local_network_id, 0); | 662 "foundation", local_network_id, 0); |
441 Candidate remote_candidate(0, "udp", remote_address, 0u, "", "", "local", 0, | 663 Candidate remote_candidate(0, "udp", remote_address, 0u, "", "", "local", 0, |
442 "foundation", remote_network_id, 0); | 664 "foundation", remote_network_id, 0); |
443 return new FakeCandidatePair(local_candidate, remote_candidate); | 665 return new FakeCandidatePair(local_candidate, remote_candidate); |
444 } | 666 } |
445 | 667 |
446 protected: | 668 protected: |
447 // The ICE channel is never actually used by TransportController directly, | 669 // The ICE channel is never actually used by TransportController directly, |
448 // since (currently) the DTLS channel pretends to be both ICE + DTLS. This | 670 // since (currently) the DTLS channel pretends to be both ICE + DTLS. This |
449 // will change when we get rid of TransportChannelImpl. | 671 // will change when we get rid of TransportChannelImpl. |
450 TransportChannelImpl* CreateIceTransportChannel_n( | 672 IceTransportInternal* CreateIceTransportChannel_n( |
451 const std::string& transport_name, | 673 const std::string& transport_name, |
452 int component) override { | 674 int component) override { |
453 return nullptr; | 675 return nullptr; |
454 } | 676 } |
455 | 677 |
456 TransportChannelImpl* CreateDtlsTransportChannel_n( | 678 TransportChannelImpl* CreateDtlsTransportChannel_n( |
457 const std::string& transport_name, | 679 const std::string& transport_name, |
458 int component, | 680 int component, |
459 TransportChannelImpl*) override { | 681 IceTransportInternal*) override { |
460 return new FakeTransportChannel(transport_name, component); | 682 return new FakeTransportChannel(transport_name, component); |
461 } | 683 } |
462 | 684 |
463 private: | 685 private: |
464 void SetChannelDestinations_n(FakeTransportController* dest) { | 686 void SetChannelDestinations_n(FakeTransportController* dest) { |
465 for (TransportChannelImpl* tc : channels_for_testing()) { | 687 for (TransportChannelImpl* tc : channels_for_testing()) { |
466 FakeTransportChannel* local = static_cast<FakeTransportChannel*>(tc); | 688 FakeTransportChannel* local = static_cast<FakeTransportChannel*>(tc); |
467 FakeTransportChannel* remote = dest->GetFakeTransportChannel_n( | 689 FakeTransportChannel* remote = dest->GetFakeTransportChannel_n( |
468 local->transport_name(), local->component()); | 690 local->transport_name(), local->component()); |
469 if (remote) { | 691 if (remote) { |
470 bool asymmetric = false; | 692 bool asymmetric = false; |
471 local->SetDestination(remote, asymmetric); | 693 local->SetDestination(remote, asymmetric); |
472 } | 694 } |
473 } | 695 } |
474 } | 696 } |
475 }; | 697 }; |
476 | 698 |
477 } // namespace cricket | 699 } // namespace cricket |
478 | 700 |
479 #endif // WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ | 701 #endif // WEBRTC_P2P_BASE_FAKETRANSPORTCONTROLLER_H_ |
OLD | NEW |