blob: f4a38186242225d6615d9cdc6cc9cec64905c2b1 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * 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.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +000010
Steve Anton10542f22019-01-11 09:11:00 -080011#include "pc/data_channel.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000012
kwibergd1fe2812016-04-27 06:47:29 -070013#include <memory>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000014#include <string>
Steve Anton944c7552018-12-13 14:19:10 -080015#include <utility>
henrike@webrtc.org28e20752013-07-10 00:45:36 +000016
Steve Anton944c7552018-12-13 14:19:10 -080017#include "absl/memory/memory.h"
Steve Anton10542f22019-01-11 09:11:00 -080018#include "media/sctp/sctp_transport_internal.h"
19#include "pc/sctp_utils.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020020#include "rtc_base/checks.h"
Yves Gerey3e707812018-11-28 16:47:49 +010021#include "rtc_base/location.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020022#include "rtc_base/logging.h"
Steve Anton10542f22019-01-11 09:11:00 -080023#include "rtc_base/ref_counted_object.h"
Yves Gerey3e707812018-11-28 16:47:49 +010024#include "rtc_base/thread.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000025
26namespace webrtc {
27
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +000028static size_t kMaxQueuedReceivedDataBytes = 16 * 1024 * 1024;
29static size_t kMaxQueuedSendDataBytes = 16 * 1024 * 1024;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000030
Harald Alvestrand928e7a32019-07-31 07:16:45 -040031namespace {
32
33static std::atomic<int> g_unique_id{0};
34
35int GenerateUniqueId() {
36 return ++g_unique_id;
37}
38
39} // namespace
40
Harald Alvestrandf3736ed2019-04-08 13:09:30 +020041InternalDataChannelInit::InternalDataChannelInit(const DataChannelInit& base)
42 : DataChannelInit(base), open_handshake_role(kOpener) {
43 // If the channel is externally negotiated, do not send the OPEN message.
44 if (base.negotiated) {
45 open_handshake_role = kNone;
46 } else {
47 // Datachannel is externally negotiated. Ignore the id value.
48 // Specified in createDataChannel, WebRTC spec section 6.1 bullet 13.
49 id = -1;
50 }
51 // Backwards compatibility: If base.maxRetransmits or base.maxRetransmitTime
52 // have been set to -1, unset them.
53 if (maxRetransmits && *maxRetransmits == -1) {
54 RTC_LOG(LS_ERROR)
55 << "Accepting maxRetransmits = -1 for backwards compatibility";
56 maxRetransmits = absl::nullopt;
57 }
58 if (maxRetransmitTime && *maxRetransmitTime == -1) {
59 RTC_LOG(LS_ERROR)
60 << "Accepting maxRetransmitTime = -1 for backwards compatibility";
61 maxRetransmitTime = absl::nullopt;
62 }
63}
64
deadbeefab9b2d12015-10-14 11:33:11 -070065bool SctpSidAllocator::AllocateSid(rtc::SSLRole role, int* sid) {
66 int potential_sid = (role == rtc::SSL_CLIENT) ? 0 : 1;
67 while (!IsSidAvailable(potential_sid)) {
68 potential_sid += 2;
69 if (potential_sid > static_cast<int>(cricket::kMaxSctpSid)) {
70 return false;
71 }
72 }
73
74 *sid = potential_sid;
75 used_sids_.insert(potential_sid);
76 return true;
77}
78
79bool SctpSidAllocator::ReserveSid(int sid) {
80 if (!IsSidAvailable(sid)) {
81 return false;
82 }
83 used_sids_.insert(sid);
84 return true;
85}
86
87void SctpSidAllocator::ReleaseSid(int sid) {
88 auto it = used_sids_.find(sid);
89 if (it != used_sids_.end()) {
90 used_sids_.erase(it);
91 }
92}
93
94bool SctpSidAllocator::IsSidAvailable(int sid) const {
Taylor Brandstetter1d7a6372016-08-24 13:15:27 -070095 if (sid < static_cast<int>(cricket::kMinSctpSid) ||
96 sid > static_cast<int>(cricket::kMaxSctpSid)) {
deadbeefab9b2d12015-10-14 11:33:11 -070097 return false;
98 }
99 return used_sids_.find(sid) == used_sids_.end();
100}
101
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000102bool DataChannel::PacketQueue::Empty() const {
103 return packets_.empty();
104}
105
Steve Anton944c7552018-12-13 14:19:10 -0800106std::unique_ptr<DataBuffer> DataChannel::PacketQueue::PopFront() {
107 RTC_DCHECK(!packets_.empty());
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000108 byte_count_ -= packets_.front()->size();
Steve Anton944c7552018-12-13 14:19:10 -0800109 std::unique_ptr<DataBuffer> packet = std::move(packets_.front());
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000110 packets_.pop_front();
Steve Anton944c7552018-12-13 14:19:10 -0800111 return packet;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000112}
113
Steve Anton944c7552018-12-13 14:19:10 -0800114void DataChannel::PacketQueue::PushFront(std::unique_ptr<DataBuffer> packet) {
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000115 byte_count_ += packet->size();
Steve Anton944c7552018-12-13 14:19:10 -0800116 packets_.push_front(std::move(packet));
117}
118
119void DataChannel::PacketQueue::PushBack(std::unique_ptr<DataBuffer> packet) {
120 byte_count_ += packet->size();
121 packets_.push_back(std::move(packet));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000122}
123
124void DataChannel::PacketQueue::Clear() {
Steve Anton944c7552018-12-13 14:19:10 -0800125 packets_.clear();
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000126 byte_count_ = 0;
127}
128
129void DataChannel::PacketQueue::Swap(PacketQueue* other) {
130 size_t other_byte_count = other->byte_count_;
131 other->byte_count_ = byte_count_;
132 byte_count_ = other_byte_count;
133
134 other->packets_.swap(packets_);
135}
136
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000137rtc::scoped_refptr<DataChannel> DataChannel::Create(
wu@webrtc.org78187522013-10-07 23:32:02 +0000138 DataChannelProviderInterface* provider,
139 cricket::DataChannelType dct,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000140 const std::string& label,
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000141 const InternalDataChannelInit& config) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000142 rtc::scoped_refptr<DataChannel> channel(
143 new rtc::RefCountedObject<DataChannel>(provider, dct, label));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000144 if (!channel->Init(config)) {
145 return NULL;
146 }
147 return channel;
148}
149
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800150bool DataChannel::IsSctpLike(cricket::DataChannelType type) {
151 return type == cricket::DCT_SCTP || type == cricket::DCT_MEDIA_TRANSPORT;
152}
153
Yves Gerey665174f2018-06-19 15:03:05 +0200154DataChannel::DataChannel(DataChannelProviderInterface* provider,
155 cricket::DataChannelType dct,
156 const std::string& label)
Harald Alvestrand928e7a32019-07-31 07:16:45 -0400157 : internal_id_(GenerateUniqueId()),
158 label_(label),
hbos84ffdee2016-10-12 14:14:39 -0700159 observer_(nullptr),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000160 state_(kConnecting),
hbos84ffdee2016-10-12 14:14:39 -0700161 messages_sent_(0),
162 bytes_sent_(0),
163 messages_received_(0),
164 bytes_received_(0),
Marina Cioceae448a3f2019-03-04 15:52:21 +0100165 buffered_amount_(0),
henrika@webrtc.org44461fa2014-01-13 09:35:02 +0000166 data_channel_type_(dct),
167 provider_(provider),
Lally Singh5c6c6e02015-05-29 11:52:39 -0400168 handshake_state_(kHandshakeInit),
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000169 connected_to_provider_(false),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000170 send_ssrc_set_(false),
henrika@webrtc.org44461fa2014-01-13 09:35:02 +0000171 receive_ssrc_set_(false),
Lally Singh5c6c6e02015-05-29 11:52:39 -0400172 writable_(false),
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000173 send_ssrc_(0),
Yves Gerey665174f2018-06-19 15:03:05 +0200174 receive_ssrc_(0) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000175
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000176bool DataChannel::Init(const InternalDataChannelInit& config) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400177 if (data_channel_type_ == cricket::DCT_RTP) {
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200178 if (config.reliable || config.id != -1 || config.maxRetransmits ||
179 config.maxRetransmitTime) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100180 RTC_LOG(LS_ERROR) << "Failed to initialize the RTP data channel due to "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100181 "invalid DataChannelInit.";
Lally Singh5c6c6e02015-05-29 11:52:39 -0400182 return false;
183 }
184 handshake_state_ = kHandshakeReady;
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800185 } else if (IsSctpLike(data_channel_type_)) {
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200186 if (config.id < -1 ||
187 (config.maxRetransmits && *config.maxRetransmits < 0) ||
188 (config.maxRetransmitTime && *config.maxRetransmitTime < 0)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100189 RTC_LOG(LS_ERROR) << "Failed to initialize the SCTP data channel due to "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100190 "invalid DataChannelInit.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000191 return false;
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000192 }
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200193 if (config.maxRetransmits && config.maxRetransmitTime) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100194 RTC_LOG(LS_ERROR)
195 << "maxRetransmits and maxRetransmitTime should not be both set.";
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000196 return false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000197 }
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000198 config_ = config;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000199
Lally Singh5c6c6e02015-05-29 11:52:39 -0400200 switch (config_.open_handshake_role) {
Yves Gerey665174f2018-06-19 15:03:05 +0200201 case webrtc::InternalDataChannelInit::kNone: // pre-negotiated
202 handshake_state_ = kHandshakeReady;
203 break;
204 case webrtc::InternalDataChannelInit::kOpener:
205 handshake_state_ = kHandshakeShouldSendOpen;
206 break;
207 case webrtc::InternalDataChannelInit::kAcker:
208 handshake_state_ = kHandshakeShouldSendAck;
209 break;
Steve Anton36b29d12017-10-30 09:57:42 -0700210 }
Lally Singh5c6c6e02015-05-29 11:52:39 -0400211
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000212 // Try to connect to the transport in case the transport channel already
213 // exists.
214 OnTransportChannelCreated();
wu@webrtc.org07a6fbe2013-11-04 18:41:34 +0000215
216 // Checks if the transport is ready to send because the initial channel
217 // ready signal may have been sent before the DataChannel creation.
218 // This has to be done async because the upper layer objects (e.g.
219 // Chrome glue and WebKit) are not wired up properly until after this
220 // function returns.
221 if (provider_->ReadyToSendData()) {
Steve Anton044a04d2018-08-31 13:51:19 -0700222 invoker_.AsyncInvoke<void>(RTC_FROM_HERE, rtc::Thread::Current(),
223 [this] { OnChannelReady(true); });
wu@webrtc.org07a6fbe2013-11-04 18:41:34 +0000224 }
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000225 }
226
227 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000228}
229
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000230DataChannel::~DataChannel() {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000231
232void DataChannel::RegisterObserver(DataChannelObserver* observer) {
233 observer_ = observer;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000234 DeliverQueuedReceivedData();
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000235}
236
237void DataChannel::UnregisterObserver() {
238 observer_ = NULL;
239}
240
241bool DataChannel::reliable() const {
wu@webrtc.org78187522013-10-07 23:32:02 +0000242 if (data_channel_type_ == cricket::DCT_RTP) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000243 return false;
244 } else {
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200245 return !config_.maxRetransmits && !config_.maxRetransmitTime;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000246 }
247}
248
Peter Boström0c4e06b2015-10-07 12:23:21 +0200249uint64_t DataChannel::buffered_amount() const {
Marina Cioceae448a3f2019-03-04 15:52:21 +0100250 return buffered_amount_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000251}
252
253void DataChannel::Close() {
254 if (state_ == kClosed)
255 return;
256 send_ssrc_ = 0;
257 send_ssrc_set_ = false;
258 SetState(kClosing);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700259 // Will send queued data before beginning the underlying closing procedure.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000260 UpdateState();
261}
262
263bool DataChannel::Send(const DataBuffer& buffer) {
Marina Cioceae448a3f2019-03-04 15:52:21 +0100264 buffered_amount_ += buffer.size();
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000265 if (state_ != kOpen) {
266 return false;
267 }
jiayl@webrtc.org3edbaaf2014-07-18 23:57:50 +0000268
269 // TODO(jiayl): the spec is unclear about if the remote side should get the
270 // onmessage event. We need to figure out the expected behavior and change the
271 // code accordingly.
272 if (buffer.size() == 0) {
273 return true;
274 }
275
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000276 // If the queue is non-empty, we're waiting for SignalReadyToSend,
277 // so just add to the end of the queue and keep waiting.
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000278 if (!queued_send_data_.Empty()) {
279 // Only SCTP DataChannel queues the outgoing data when the transport is
280 // blocked.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800281 RTC_DCHECK(IsSctpLike(data_channel_type_));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000282 if (!QueueSendDataMessage(buffer)) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700283 RTC_LOG(LS_ERROR) << "Closing the DataChannel due to a failure to queue "
284 "additional data.";
285 CloseAbruptly();
jiayl@webrtc.org5dc51fb2014-05-29 15:33:54 +0000286 }
287 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000288 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000289
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000290 bool success = SendDataMessage(buffer, true);
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000291 if (data_channel_type_ == cricket::DCT_RTP) {
292 return success;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000293 }
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000294
295 // Always return true for SCTP DataChannel per the spec.
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000296 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000297}
298
Peter Boström0c4e06b2015-10-07 12:23:21 +0200299void DataChannel::SetReceiveSsrc(uint32_t receive_ssrc) {
nisseede5da42017-01-12 05:15:36 -0800300 RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000301
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000302 if (receive_ssrc_set_) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000303 return;
304 }
305 receive_ssrc_ = receive_ssrc;
306 receive_ssrc_set_ = true;
307 UpdateState();
308}
309
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000310void DataChannel::SetSctpSid(int sid) {
kwibergee89e782017-08-09 17:22:01 -0700311 RTC_DCHECK_LT(config_.id, 0);
312 RTC_DCHECK_GE(sid, 0);
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800313 RTC_DCHECK(IsSctpLike(data_channel_type_));
deadbeefab9b2d12015-10-14 11:33:11 -0700314 if (config_.id == sid) {
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000315 return;
deadbeefab9b2d12015-10-14 11:33:11 -0700316 }
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000317
318 config_.id = sid;
319 provider_->AddSctpDataStream(sid);
320}
321
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700322void DataChannel::OnClosingProcedureStartedRemotely(int sid) {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800323 if (IsSctpLike(data_channel_type_) && sid == config_.id &&
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700324 state_ != kClosing && state_ != kClosed) {
325 // Don't bother sending queued data since the side that initiated the
326 // closure wouldn't receive it anyway. See crbug.com/559394 for a lengthy
327 // discussion about this.
328 queued_send_data_.Clear();
329 queued_control_data_.Clear();
330 // Just need to change state to kClosing, SctpTransport will handle the
331 // rest of the closing procedure and OnClosingProcedureComplete will be
332 // called later.
333 started_closing_procedure_ = true;
334 SetState(kClosing);
335 }
336}
337
338void DataChannel::OnClosingProcedureComplete(int sid) {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800339 if (IsSctpLike(data_channel_type_) && sid == config_.id) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700340 // If the closing procedure is complete, we should have finished sending
341 // all pending data and transitioned to kClosing already.
342 RTC_DCHECK_EQ(state_, kClosing);
343 RTC_DCHECK(queued_send_data_.Empty());
344 DisconnectFromProvider();
345 SetState(kClosed);
346 }
347}
348
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000349void DataChannel::OnTransportChannelCreated() {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800350 RTC_DCHECK(IsSctpLike(data_channel_type_));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000351 if (!connected_to_provider_) {
352 connected_to_provider_ = provider_->ConnectDataChannel(this);
353 }
354 // The sid may have been unassigned when provider_->ConnectDataChannel was
355 // done. So always add the streams even if connected_to_provider_ is true.
356 if (config_.id >= 0) {
357 provider_->AddSctpDataStream(config_.id);
358 }
359}
360
deadbeefab9b2d12015-10-14 11:33:11 -0700361void DataChannel::OnTransportChannelDestroyed() {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700362 // The SctpTransport is going away (for example, because the SCTP m= section
363 // was rejected), so we need to close abruptly.
364 CloseAbruptly();
365}
366
367// The remote peer request that this channel shall be closed.
368void DataChannel::RemotePeerRequestClose() {
369 RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP);
370 CloseAbruptly();
deadbeefab9b2d12015-10-14 11:33:11 -0700371}
372
Peter Boström0c4e06b2015-10-07 12:23:21 +0200373void DataChannel::SetSendSsrc(uint32_t send_ssrc) {
nisseede5da42017-01-12 05:15:36 -0800374 RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000375 if (send_ssrc_set_) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000376 return;
377 }
378 send_ssrc_ = send_ssrc;
379 send_ssrc_set_ = true;
380 UpdateState();
381}
382
deadbeef953c2ce2017-01-09 14:53:41 -0800383void DataChannel::OnDataReceived(const cricket::ReceiveDataParams& params,
jbaucheec21bd2016-03-20 06:15:43 -0700384 const rtc::CopyOnWriteBuffer& payload) {
deadbeef953c2ce2017-01-09 14:53:41 -0800385 if (data_channel_type_ == cricket::DCT_RTP && params.ssrc != receive_ssrc_) {
386 return;
387 }
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800388 if (IsSctpLike(data_channel_type_) && params.sid != config_.id) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000389 return;
390 }
391
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000392 if (params.type == cricket::DMT_CONTROL) {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800393 RTC_DCHECK(IsSctpLike(data_channel_type_));
Lally Singh5c6c6e02015-05-29 11:52:39 -0400394 if (handshake_state_ != kHandshakeWaitingForAck) {
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000395 // Ignore it if we are not expecting an ACK message.
Jonas Olsson45cc8902018-02-13 10:37:07 +0100396 RTC_LOG(LS_WARNING)
397 << "DataChannel received unexpected CONTROL message, sid = "
398 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000399 return;
400 }
401 if (ParseDataChannelOpenAckMessage(payload)) {
402 // We can send unordered as soon as we receive the ACK message.
Lally Singh5c6c6e02015-05-29 11:52:39 -0400403 handshake_state_ = kHandshakeReady;
Mirko Bonadei675513b2017-11-09 11:09:25 +0100404 RTC_LOG(LS_INFO) << "DataChannel received OPEN_ACK message, sid = "
405 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000406 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100407 RTC_LOG(LS_WARNING)
408 << "DataChannel failed to parse OPEN_ACK message, sid = "
409 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000410 }
411 return;
412 }
413
nisseede5da42017-01-12 05:15:36 -0800414 RTC_DCHECK(params.type == cricket::DMT_BINARY ||
415 params.type == cricket::DMT_TEXT);
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000416
Mirko Bonadei675513b2017-11-09 11:09:25 +0100417 RTC_LOG(LS_VERBOSE) << "DataChannel received DATA message, sid = "
418 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000419 // We can send unordered as soon as we receive any DATA message since the
420 // remote side must have received the OPEN (and old clients do not send
421 // OPEN_ACK).
Lally Singh5c6c6e02015-05-29 11:52:39 -0400422 if (handshake_state_ == kHandshakeWaitingForAck) {
423 handshake_state_ = kHandshakeReady;
424 }
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000425
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000426 bool binary = (params.type == cricket::DMT_BINARY);
Steve Anton944c7552018-12-13 14:19:10 -0800427 auto buffer = absl::make_unique<DataBuffer>(payload, binary);
Lally Singh5c6c6e02015-05-29 11:52:39 -0400428 if (state_ == kOpen && observer_) {
hbos84ffdee2016-10-12 14:14:39 -0700429 ++messages_received_;
430 bytes_received_ += buffer->size();
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000431 observer_->OnMessage(*buffer.get());
432 } else {
kwiberg@webrtc.orgeebcab52015-03-24 09:19:06 +0000433 if (queued_received_data_.byte_count() + payload.size() >
434 kMaxQueuedReceivedDataBytes) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100435 RTC_LOG(LS_ERROR) << "Queued received data exceeds the max buffer size.";
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000436
437 queued_received_data_.Clear();
438 if (data_channel_type_ != cricket::DCT_RTP) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700439 CloseAbruptly();
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000440 }
441
442 return;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000443 }
Steve Anton944c7552018-12-13 14:19:10 -0800444 queued_received_data_.PushBack(std::move(buffer));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000445 }
446}
447
448void DataChannel::OnChannelReady(bool writable) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400449 writable_ = writable;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000450 if (!writable) {
451 return;
452 }
Harald Alvestrandb9bb3712019-03-27 07:23:31 +0000453
Lally Singh5c6c6e02015-05-29 11:52:39 -0400454 SendQueuedControlMessages();
455 SendQueuedDataMessages();
456 UpdateState();
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000457}
458
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700459void DataChannel::CloseAbruptly() {
460 if (state_ == kClosed) {
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000461 return;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700462 }
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000463
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700464 if (connected_to_provider_) {
465 DisconnectFromProvider();
466 }
467
468 // Closing abruptly means any queued data gets thrown away.
469 queued_send_data_.Clear();
Marina Cioceae448a3f2019-03-04 15:52:21 +0100470 buffered_amount_ = 0;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700471 queued_control_data_.Clear();
472
473 // Still go to "kClosing" before "kClosed", since observers may be expecting
474 // that.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000475 SetState(kClosing);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700476 SetState(kClosed);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000477}
478
479void DataChannel::UpdateState() {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400480 // UpdateState determines what to do from a few state variables. Include
481 // all conditions required for each state transition here for
482 // clarity. OnChannelReady(true) will send any queued data and then invoke
483 // UpdateState().
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000484 switch (state_) {
485 case kConnecting: {
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000486 if (send_ssrc_set_ == receive_ssrc_set_) {
487 if (data_channel_type_ == cricket::DCT_RTP && !connected_to_provider_) {
488 connected_to_provider_ = provider_->ConnectDataChannel(this);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000489 }
Lally Singh5c6c6e02015-05-29 11:52:39 -0400490 if (connected_to_provider_) {
491 if (handshake_state_ == kHandshakeShouldSendOpen) {
jbaucheec21bd2016-03-20 06:15:43 -0700492 rtc::CopyOnWriteBuffer payload;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400493 WriteDataChannelOpenMessage(label_, config_, &payload);
494 SendControlMessage(payload);
495 } else if (handshake_state_ == kHandshakeShouldSendAck) {
jbaucheec21bd2016-03-20 06:15:43 -0700496 rtc::CopyOnWriteBuffer payload;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400497 WriteDataChannelOpenAckMessage(&payload);
498 SendControlMessage(payload);
499 }
Yves Gerey665174f2018-06-19 15:03:05 +0200500 if (writable_ && (handshake_state_ == kHandshakeReady ||
501 handshake_state_ == kHandshakeWaitingForAck)) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400502 SetState(kOpen);
503 // If we have received buffers before the channel got writable.
504 // Deliver them now.
505 DeliverQueuedReceivedData();
506 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000507 }
508 }
509 break;
510 }
511 case kOpen: {
512 break;
513 }
514 case kClosing: {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700515 // Wait for all queued data to be sent before beginning the closing
516 // procedure.
Lally Singh5c6c6e02015-05-29 11:52:39 -0400517 if (queued_send_data_.Empty() && queued_control_data_.Empty()) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700518 if (data_channel_type_ == cricket::DCT_RTP) {
519 // For RTP data channels, we can go to "closed" after we finish
520 // sending data and the send/recv SSRCs are unset.
521 if (connected_to_provider_) {
522 DisconnectFromProvider();
523 }
524 if (!send_ssrc_set_ && !receive_ssrc_set_) {
525 SetState(kClosed);
526 }
527 } else {
528 // For SCTP data channels, we need to wait for the closing procedure
529 // to complete; after calling RemoveSctpDataStream,
530 // OnClosingProcedureComplete will end up called asynchronously
531 // afterwards.
532 if (connected_to_provider_ && !started_closing_procedure_ &&
533 config_.id >= 0) {
534 started_closing_procedure_ = true;
535 provider_->RemoveSctpDataStream(config_.id);
536 }
Lally Singh5c6c6e02015-05-29 11:52:39 -0400537 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000538 }
539 break;
540 }
541 case kClosed:
542 break;
543 }
544}
545
546void DataChannel::SetState(DataState state) {
deadbeefab9b2d12015-10-14 11:33:11 -0700547 if (state_ == state) {
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000548 return;
deadbeefab9b2d12015-10-14 11:33:11 -0700549 }
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000550
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000551 state_ = state;
552 if (observer_) {
553 observer_->OnStateChange();
554 }
hbos82ebe022016-11-14 01:41:09 -0800555 if (state_ == kOpen) {
556 SignalOpened(this);
557 } else if (state_ == kClosed) {
deadbeefab9b2d12015-10-14 11:33:11 -0700558 SignalClosed(this);
559 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000560}
561
Lally Singh5c6c6e02015-05-29 11:52:39 -0400562void DataChannel::DisconnectFromProvider() {
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000563 if (!connected_to_provider_)
564 return;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000565
wu@webrtc.org78187522013-10-07 23:32:02 +0000566 provider_->DisconnectDataChannel(this);
567 connected_to_provider_ = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000568}
569
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000570void DataChannel::DeliverQueuedReceivedData() {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400571 if (!observer_) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000572 return;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000573 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000574
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000575 while (!queued_received_data_.Empty()) {
Steve Anton944c7552018-12-13 14:19:10 -0800576 std::unique_ptr<DataBuffer> buffer = queued_received_data_.PopFront();
hbos84ffdee2016-10-12 14:14:39 -0700577 ++messages_received_;
578 bytes_received_ += buffer->size();
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000579 observer_->OnMessage(*buffer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000580 }
581}
582
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000583void DataChannel::SendQueuedDataMessages() {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400584 if (queued_send_data_.Empty()) {
585 return;
586 }
587
nisseede5da42017-01-12 05:15:36 -0800588 RTC_DCHECK(state_ == kOpen || state_ == kClosing);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000589
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000590 while (!queued_send_data_.Empty()) {
Steve Anton944c7552018-12-13 14:19:10 -0800591 std::unique_ptr<DataBuffer> buffer = queued_send_data_.PopFront();
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000592 if (!SendDataMessage(*buffer, false)) {
Steve Anton944c7552018-12-13 14:19:10 -0800593 // Return the message to the front of the queue if sending is aborted.
594 queued_send_data_.PushFront(std::move(buffer));
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000595 break;
596 }
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000597 }
598}
599
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000600bool DataChannel::SendDataMessage(const DataBuffer& buffer,
601 bool queue_if_blocked) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000602 cricket::SendDataParams send_params;
603
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800604 if (IsSctpLike(data_channel_type_)) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000605 send_params.ordered = config_.ordered;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400606 // Send as ordered if it is still going through OPEN/ACK signaling.
607 if (handshake_state_ != kHandshakeReady && !config_.ordered) {
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000608 send_params.ordered = true;
Mirko Bonadei675513b2017-11-09 11:09:25 +0100609 RTC_LOG(LS_VERBOSE)
610 << "Sending data as ordered for unordered DataChannel "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100611 "because the OPEN_ACK message has not been received.";
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000612 }
613
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200614 send_params.max_rtx_count =
615 config_.maxRetransmits ? *config_.maxRetransmits : -1;
616 send_params.max_rtx_ms =
617 config_.maxRetransmitTime ? *config_.maxRetransmitTime : -1;
deadbeef953c2ce2017-01-09 14:53:41 -0800618 send_params.sid = config_.id;
sergeyu@chromium.orga23f0ca2013-11-13 22:48:52 +0000619 } else {
620 send_params.ssrc = send_ssrc_;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000621 }
622 send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT;
623
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000624 cricket::SendDataResult send_result = cricket::SDR_SUCCESS;
625 bool success = provider_->SendData(send_params, buffer.data, &send_result);
626
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000627 if (success) {
hbos84ffdee2016-10-12 14:14:39 -0700628 ++messages_sent_;
629 bytes_sent_ += buffer.size();
Marina Cioceae448a3f2019-03-04 15:52:21 +0100630
631 RTC_DCHECK(buffered_amount_ >= buffer.size());
632 buffered_amount_ -= buffer.size();
633 if (observer_ && buffer.size() > 0) {
634 observer_->OnBufferedAmountChange(buffer.size());
635 }
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000636 return true;
637 }
638
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800639 if (!IsSctpLike(data_channel_type_)) {
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000640 return false;
641 }
642
643 if (send_result == cricket::SDR_BLOCK) {
644 if (!queue_if_blocked || QueueSendDataMessage(buffer)) {
645 return false;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000646 }
647 }
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000648 // Close the channel if the error is not SDR_BLOCK, or if queuing the
649 // message failed.
Mirko Bonadei675513b2017-11-09 11:09:25 +0100650 RTC_LOG(LS_ERROR) << "Closing the DataChannel due to a failure to send data, "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100651 "send_result = "
652 << send_result;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700653 CloseAbruptly();
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000654
655 return false;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000656}
657
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000658bool DataChannel::QueueSendDataMessage(const DataBuffer& buffer) {
Marina Cioceae448a3f2019-03-04 15:52:21 +0100659 size_t start_buffered_amount = queued_send_data_.byte_count();
660 if (start_buffered_amount + buffer.size() > kMaxQueuedSendDataBytes) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100661 RTC_LOG(LS_ERROR) << "Can't buffer any more data for the data channel.";
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000662 return false;
663 }
Steve Anton944c7552018-12-13 14:19:10 -0800664 queued_send_data_.PushBack(absl::make_unique<DataBuffer>(buffer));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000665 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000666}
667
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000668void DataChannel::SendQueuedControlMessages() {
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000669 PacketQueue control_packets;
670 control_packets.Swap(&queued_control_data_);
671
672 while (!control_packets.Empty()) {
Steve Anton944c7552018-12-13 14:19:10 -0800673 std::unique_ptr<DataBuffer> buf = control_packets.PopFront();
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000674 SendControlMessage(buf->data);
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000675 }
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000676}
677
jbaucheec21bd2016-03-20 06:15:43 -0700678void DataChannel::QueueControlMessage(const rtc::CopyOnWriteBuffer& buffer) {
Steve Anton944c7552018-12-13 14:19:10 -0800679 queued_control_data_.PushBack(absl::make_unique<DataBuffer>(buffer, true));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000680}
681
jbaucheec21bd2016-03-20 06:15:43 -0700682bool DataChannel::SendControlMessage(const rtc::CopyOnWriteBuffer& buffer) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400683 bool is_open_message = handshake_state_ == kHandshakeShouldSendOpen;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000684
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800685 RTC_DCHECK(IsSctpLike(data_channel_type_));
kwibergee89e782017-08-09 17:22:01 -0700686 RTC_DCHECK(writable_);
687 RTC_DCHECK_GE(config_.id, 0);
688 RTC_DCHECK(!is_open_message || !config_.negotiated);
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000689
690 cricket::SendDataParams send_params;
deadbeef953c2ce2017-01-09 14:53:41 -0800691 send_params.sid = config_.id;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400692 // Send data as ordered before we receive any message from the remote peer to
693 // make sure the remote peer will not receive any data before it receives the
694 // OPEN message.
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000695 send_params.ordered = config_.ordered || is_open_message;
696 send_params.type = cricket::DMT_CONTROL;
697
698 cricket::SendDataResult send_result = cricket::SDR_SUCCESS;
699 bool retval = provider_->SendData(send_params, buffer, &send_result);
700 if (retval) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100701 RTC_LOG(LS_INFO) << "Sent CONTROL message on channel " << config_.id;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000702
Lally Singh5c6c6e02015-05-29 11:52:39 -0400703 if (handshake_state_ == kHandshakeShouldSendAck) {
704 handshake_state_ = kHandshakeReady;
705 } else if (handshake_state_ == kHandshakeShouldSendOpen) {
706 handshake_state_ = kHandshakeWaitingForAck;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000707 }
708 } else if (send_result == cricket::SDR_BLOCK) {
709 QueueControlMessage(buffer);
710 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100711 RTC_LOG(LS_ERROR) << "Closing the DataChannel due to a failure to send"
Jonas Olsson45cc8902018-02-13 10:37:07 +0100712 " the CONTROL message, send_result = "
713 << send_result;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700714 CloseAbruptly();
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000715 }
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000716 return retval;
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000717}
718
Harald Alvestrand928e7a32019-07-31 07:16:45 -0400719// static
720void DataChannel::ResetInternalIdAllocatorForTesting(int new_value) {
721 g_unique_id = new_value;
722}
723
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000724} // namespace webrtc