blob: c5a8aebdf3e9e5c7e584d1fefbfafc6c20092fb2 [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 Anton10542f22019-01-11 09:11:00 -080017#include "media/sctp/sctp_transport_internal.h"
18#include "pc/sctp_utils.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "rtc_base/checks.h"
Yves Gerey3e707812018-11-28 16:47:49 +010020#include "rtc_base/location.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020021#include "rtc_base/logging.h"
Steve Anton10542f22019-01-11 09:11:00 -080022#include "rtc_base/ref_counted_object.h"
Yves Gerey3e707812018-11-28 16:47:49 +010023#include "rtc_base/thread.h"
henrike@webrtc.org28e20752013-07-10 00:45:36 +000024
25namespace webrtc {
26
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +000027static size_t kMaxQueuedReceivedDataBytes = 16 * 1024 * 1024;
28static size_t kMaxQueuedSendDataBytes = 16 * 1024 * 1024;
henrike@webrtc.org28e20752013-07-10 00:45:36 +000029
Harald Alvestrand928e7a32019-07-31 07:16:45 -040030namespace {
31
32static std::atomic<int> g_unique_id{0};
33
34int GenerateUniqueId() {
35 return ++g_unique_id;
36}
37
38} // namespace
39
Harald Alvestrandf3736ed2019-04-08 13:09:30 +020040InternalDataChannelInit::InternalDataChannelInit(const DataChannelInit& base)
41 : DataChannelInit(base), open_handshake_role(kOpener) {
42 // If the channel is externally negotiated, do not send the OPEN message.
43 if (base.negotiated) {
44 open_handshake_role = kNone;
45 } else {
46 // Datachannel is externally negotiated. Ignore the id value.
47 // Specified in createDataChannel, WebRTC spec section 6.1 bullet 13.
48 id = -1;
49 }
50 // Backwards compatibility: If base.maxRetransmits or base.maxRetransmitTime
51 // have been set to -1, unset them.
52 if (maxRetransmits && *maxRetransmits == -1) {
53 RTC_LOG(LS_ERROR)
54 << "Accepting maxRetransmits = -1 for backwards compatibility";
55 maxRetransmits = absl::nullopt;
56 }
57 if (maxRetransmitTime && *maxRetransmitTime == -1) {
58 RTC_LOG(LS_ERROR)
59 << "Accepting maxRetransmitTime = -1 for backwards compatibility";
60 maxRetransmitTime = absl::nullopt;
61 }
62}
63
deadbeefab9b2d12015-10-14 11:33:11 -070064bool SctpSidAllocator::AllocateSid(rtc::SSLRole role, int* sid) {
65 int potential_sid = (role == rtc::SSL_CLIENT) ? 0 : 1;
66 while (!IsSidAvailable(potential_sid)) {
67 potential_sid += 2;
68 if (potential_sid > static_cast<int>(cricket::kMaxSctpSid)) {
69 return false;
70 }
71 }
72
73 *sid = potential_sid;
74 used_sids_.insert(potential_sid);
75 return true;
76}
77
78bool SctpSidAllocator::ReserveSid(int sid) {
79 if (!IsSidAvailable(sid)) {
80 return false;
81 }
82 used_sids_.insert(sid);
83 return true;
84}
85
86void SctpSidAllocator::ReleaseSid(int sid) {
87 auto it = used_sids_.find(sid);
88 if (it != used_sids_.end()) {
89 used_sids_.erase(it);
90 }
91}
92
93bool SctpSidAllocator::IsSidAvailable(int sid) const {
Taylor Brandstetter1d7a6372016-08-24 13:15:27 -070094 if (sid < static_cast<int>(cricket::kMinSctpSid) ||
95 sid > static_cast<int>(cricket::kMaxSctpSid)) {
deadbeefab9b2d12015-10-14 11:33:11 -070096 return false;
97 }
98 return used_sids_.find(sid) == used_sids_.end();
99}
100
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000101bool DataChannel::PacketQueue::Empty() const {
102 return packets_.empty();
103}
104
Steve Anton944c7552018-12-13 14:19:10 -0800105std::unique_ptr<DataBuffer> DataChannel::PacketQueue::PopFront() {
106 RTC_DCHECK(!packets_.empty());
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000107 byte_count_ -= packets_.front()->size();
Steve Anton944c7552018-12-13 14:19:10 -0800108 std::unique_ptr<DataBuffer> packet = std::move(packets_.front());
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000109 packets_.pop_front();
Steve Anton944c7552018-12-13 14:19:10 -0800110 return packet;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000111}
112
Steve Anton944c7552018-12-13 14:19:10 -0800113void DataChannel::PacketQueue::PushFront(std::unique_ptr<DataBuffer> packet) {
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000114 byte_count_ += packet->size();
Steve Anton944c7552018-12-13 14:19:10 -0800115 packets_.push_front(std::move(packet));
116}
117
118void DataChannel::PacketQueue::PushBack(std::unique_ptr<DataBuffer> packet) {
119 byte_count_ += packet->size();
120 packets_.push_back(std::move(packet));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000121}
122
123void DataChannel::PacketQueue::Clear() {
Steve Anton944c7552018-12-13 14:19:10 -0800124 packets_.clear();
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000125 byte_count_ = 0;
126}
127
128void DataChannel::PacketQueue::Swap(PacketQueue* other) {
129 size_t other_byte_count = other->byte_count_;
130 other->byte_count_ = byte_count_;
131 byte_count_ = other_byte_count;
132
133 other->packets_.swap(packets_);
134}
135
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000136rtc::scoped_refptr<DataChannel> DataChannel::Create(
wu@webrtc.org78187522013-10-07 23:32:02 +0000137 DataChannelProviderInterface* provider,
138 cricket::DataChannelType dct,
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000139 const std::string& label,
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000140 const InternalDataChannelInit& config) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000141 rtc::scoped_refptr<DataChannel> channel(
142 new rtc::RefCountedObject<DataChannel>(provider, dct, label));
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000143 if (!channel->Init(config)) {
144 return NULL;
145 }
146 return channel;
147}
148
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800149bool DataChannel::IsSctpLike(cricket::DataChannelType type) {
Bjorn A Mellemb689af42019-08-21 10:44:59 -0700150 return type == cricket::DCT_SCTP || type == cricket::DCT_MEDIA_TRANSPORT ||
151 type == cricket::DCT_DATA_CHANNEL_TRANSPORT ||
152 type == cricket::DCT_DATA_CHANNEL_TRANSPORT_SCTP;
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800153}
154
Yves Gerey665174f2018-06-19 15:03:05 +0200155DataChannel::DataChannel(DataChannelProviderInterface* provider,
156 cricket::DataChannelType dct,
157 const std::string& label)
Harald Alvestrand928e7a32019-07-31 07:16:45 -0400158 : internal_id_(GenerateUniqueId()),
159 label_(label),
hbos84ffdee2016-10-12 14:14:39 -0700160 observer_(nullptr),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000161 state_(kConnecting),
hbos84ffdee2016-10-12 14:14:39 -0700162 messages_sent_(0),
163 bytes_sent_(0),
164 messages_received_(0),
165 bytes_received_(0),
Marina Cioceae448a3f2019-03-04 15:52:21 +0100166 buffered_amount_(0),
henrika@webrtc.org44461fa2014-01-13 09:35:02 +0000167 data_channel_type_(dct),
168 provider_(provider),
Lally Singh5c6c6e02015-05-29 11:52:39 -0400169 handshake_state_(kHandshakeInit),
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000170 connected_to_provider_(false),
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000171 send_ssrc_set_(false),
henrika@webrtc.org44461fa2014-01-13 09:35:02 +0000172 receive_ssrc_set_(false),
Lally Singh5c6c6e02015-05-29 11:52:39 -0400173 writable_(false),
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000174 send_ssrc_(0),
Yves Gerey665174f2018-06-19 15:03:05 +0200175 receive_ssrc_(0) {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000176
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000177bool DataChannel::Init(const InternalDataChannelInit& config) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400178 if (data_channel_type_ == cricket::DCT_RTP) {
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200179 if (config.reliable || config.id != -1 || config.maxRetransmits ||
180 config.maxRetransmitTime) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100181 RTC_LOG(LS_ERROR) << "Failed to initialize the RTP data channel due to "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100182 "invalid DataChannelInit.";
Lally Singh5c6c6e02015-05-29 11:52:39 -0400183 return false;
184 }
185 handshake_state_ = kHandshakeReady;
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800186 } else if (IsSctpLike(data_channel_type_)) {
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200187 if (config.id < -1 ||
188 (config.maxRetransmits && *config.maxRetransmits < 0) ||
189 (config.maxRetransmitTime && *config.maxRetransmitTime < 0)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100190 RTC_LOG(LS_ERROR) << "Failed to initialize the SCTP data channel due to "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100191 "invalid DataChannelInit.";
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000192 return false;
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000193 }
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200194 if (config.maxRetransmits && config.maxRetransmitTime) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100195 RTC_LOG(LS_ERROR)
196 << "maxRetransmits and maxRetransmitTime should not be both set.";
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000197 return false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000198 }
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000199 config_ = config;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000200
Lally Singh5c6c6e02015-05-29 11:52:39 -0400201 switch (config_.open_handshake_role) {
Yves Gerey665174f2018-06-19 15:03:05 +0200202 case webrtc::InternalDataChannelInit::kNone: // pre-negotiated
203 handshake_state_ = kHandshakeReady;
204 break;
205 case webrtc::InternalDataChannelInit::kOpener:
206 handshake_state_ = kHandshakeShouldSendOpen;
207 break;
208 case webrtc::InternalDataChannelInit::kAcker:
209 handshake_state_ = kHandshakeShouldSendAck;
210 break;
Steve Anton36b29d12017-10-30 09:57:42 -0700211 }
Lally Singh5c6c6e02015-05-29 11:52:39 -0400212
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000213 // Try to connect to the transport in case the transport channel already
214 // exists.
215 OnTransportChannelCreated();
wu@webrtc.org07a6fbe2013-11-04 18:41:34 +0000216
217 // Checks if the transport is ready to send because the initial channel
218 // ready signal may have been sent before the DataChannel creation.
219 // This has to be done async because the upper layer objects (e.g.
220 // Chrome glue and WebKit) are not wired up properly until after this
221 // function returns.
222 if (provider_->ReadyToSendData()) {
Steve Anton044a04d2018-08-31 13:51:19 -0700223 invoker_.AsyncInvoke<void>(RTC_FROM_HERE, rtc::Thread::Current(),
224 [this] { OnChannelReady(true); });
wu@webrtc.org07a6fbe2013-11-04 18:41:34 +0000225 }
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000226 }
227
228 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000229}
230
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000231DataChannel::~DataChannel() {}
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000232
233void DataChannel::RegisterObserver(DataChannelObserver* observer) {
234 observer_ = observer;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000235 DeliverQueuedReceivedData();
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000236}
237
238void DataChannel::UnregisterObserver() {
239 observer_ = NULL;
240}
241
242bool DataChannel::reliable() const {
wu@webrtc.org78187522013-10-07 23:32:02 +0000243 if (data_channel_type_ == cricket::DCT_RTP) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000244 return false;
245 } else {
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200246 return !config_.maxRetransmits && !config_.maxRetransmitTime;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000247 }
248}
249
Peter Boström0c4e06b2015-10-07 12:23:21 +0200250uint64_t DataChannel::buffered_amount() const {
Marina Cioceae448a3f2019-03-04 15:52:21 +0100251 return buffered_amount_;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000252}
253
254void DataChannel::Close() {
255 if (state_ == kClosed)
256 return;
257 send_ssrc_ = 0;
258 send_ssrc_set_ = false;
259 SetState(kClosing);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700260 // Will send queued data before beginning the underlying closing procedure.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000261 UpdateState();
262}
263
264bool DataChannel::Send(const DataBuffer& buffer) {
Marina Cioceae448a3f2019-03-04 15:52:21 +0100265 buffered_amount_ += buffer.size();
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000266 if (state_ != kOpen) {
267 return false;
268 }
jiayl@webrtc.org3edbaaf2014-07-18 23:57:50 +0000269
270 // TODO(jiayl): the spec is unclear about if the remote side should get the
271 // onmessage event. We need to figure out the expected behavior and change the
272 // code accordingly.
273 if (buffer.size() == 0) {
274 return true;
275 }
276
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000277 // If the queue is non-empty, we're waiting for SignalReadyToSend,
278 // so just add to the end of the queue and keep waiting.
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000279 if (!queued_send_data_.Empty()) {
280 // Only SCTP DataChannel queues the outgoing data when the transport is
281 // blocked.
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800282 RTC_DCHECK(IsSctpLike(data_channel_type_));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000283 if (!QueueSendDataMessage(buffer)) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700284 RTC_LOG(LS_ERROR) << "Closing the DataChannel due to a failure to queue "
285 "additional data.";
286 CloseAbruptly();
jiayl@webrtc.org5dc51fb2014-05-29 15:33:54 +0000287 }
288 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000289 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000290
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000291 bool success = SendDataMessage(buffer, true);
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000292 if (data_channel_type_ == cricket::DCT_RTP) {
293 return success;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000294 }
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000295
296 // Always return true for SCTP DataChannel per the spec.
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000297 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000298}
299
Peter Boström0c4e06b2015-10-07 12:23:21 +0200300void DataChannel::SetReceiveSsrc(uint32_t receive_ssrc) {
nisseede5da42017-01-12 05:15:36 -0800301 RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000302
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000303 if (receive_ssrc_set_) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000304 return;
305 }
306 receive_ssrc_ = receive_ssrc;
307 receive_ssrc_set_ = true;
308 UpdateState();
309}
310
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000311void DataChannel::SetSctpSid(int sid) {
kwibergee89e782017-08-09 17:22:01 -0700312 RTC_DCHECK_LT(config_.id, 0);
313 RTC_DCHECK_GE(sid, 0);
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800314 RTC_DCHECK(IsSctpLike(data_channel_type_));
deadbeefab9b2d12015-10-14 11:33:11 -0700315 if (config_.id == sid) {
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000316 return;
deadbeefab9b2d12015-10-14 11:33:11 -0700317 }
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000318
319 config_.id = sid;
320 provider_->AddSctpDataStream(sid);
321}
322
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700323void DataChannel::OnClosingProcedureStartedRemotely(int sid) {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800324 if (IsSctpLike(data_channel_type_) && sid == config_.id &&
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700325 state_ != kClosing && state_ != kClosed) {
326 // Don't bother sending queued data since the side that initiated the
327 // closure wouldn't receive it anyway. See crbug.com/559394 for a lengthy
328 // discussion about this.
329 queued_send_data_.Clear();
330 queued_control_data_.Clear();
331 // Just need to change state to kClosing, SctpTransport will handle the
332 // rest of the closing procedure and OnClosingProcedureComplete will be
333 // called later.
334 started_closing_procedure_ = true;
335 SetState(kClosing);
336 }
337}
338
339void DataChannel::OnClosingProcedureComplete(int sid) {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800340 if (IsSctpLike(data_channel_type_) && sid == config_.id) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700341 // If the closing procedure is complete, we should have finished sending
342 // all pending data and transitioned to kClosing already.
343 RTC_DCHECK_EQ(state_, kClosing);
344 RTC_DCHECK(queued_send_data_.Empty());
345 DisconnectFromProvider();
346 SetState(kClosed);
347 }
348}
349
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000350void DataChannel::OnTransportChannelCreated() {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800351 RTC_DCHECK(IsSctpLike(data_channel_type_));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000352 if (!connected_to_provider_) {
353 connected_to_provider_ = provider_->ConnectDataChannel(this);
354 }
355 // The sid may have been unassigned when provider_->ConnectDataChannel was
356 // done. So always add the streams even if connected_to_provider_ is true.
357 if (config_.id >= 0) {
358 provider_->AddSctpDataStream(config_.id);
359 }
360}
361
deadbeefab9b2d12015-10-14 11:33:11 -0700362void DataChannel::OnTransportChannelDestroyed() {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700363 // The SctpTransport is going away (for example, because the SCTP m= section
364 // was rejected), so we need to close abruptly.
365 CloseAbruptly();
366}
367
368// The remote peer request that this channel shall be closed.
369void DataChannel::RemotePeerRequestClose() {
370 RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP);
371 CloseAbruptly();
deadbeefab9b2d12015-10-14 11:33:11 -0700372}
373
Peter Boström0c4e06b2015-10-07 12:23:21 +0200374void DataChannel::SetSendSsrc(uint32_t send_ssrc) {
nisseede5da42017-01-12 05:15:36 -0800375 RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000376 if (send_ssrc_set_) {
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000377 return;
378 }
379 send_ssrc_ = send_ssrc;
380 send_ssrc_set_ = true;
381 UpdateState();
382}
383
deadbeef953c2ce2017-01-09 14:53:41 -0800384void DataChannel::OnDataReceived(const cricket::ReceiveDataParams& params,
jbaucheec21bd2016-03-20 06:15:43 -0700385 const rtc::CopyOnWriteBuffer& payload) {
deadbeef953c2ce2017-01-09 14:53:41 -0800386 if (data_channel_type_ == cricket::DCT_RTP && params.ssrc != receive_ssrc_) {
387 return;
388 }
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800389 if (IsSctpLike(data_channel_type_) && params.sid != config_.id) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000390 return;
391 }
392
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000393 if (params.type == cricket::DMT_CONTROL) {
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800394 RTC_DCHECK(IsSctpLike(data_channel_type_));
Lally Singh5c6c6e02015-05-29 11:52:39 -0400395 if (handshake_state_ != kHandshakeWaitingForAck) {
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000396 // Ignore it if we are not expecting an ACK message.
Jonas Olsson45cc8902018-02-13 10:37:07 +0100397 RTC_LOG(LS_WARNING)
398 << "DataChannel received unexpected CONTROL message, sid = "
399 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000400 return;
401 }
402 if (ParseDataChannelOpenAckMessage(payload)) {
403 // We can send unordered as soon as we receive the ACK message.
Lally Singh5c6c6e02015-05-29 11:52:39 -0400404 handshake_state_ = kHandshakeReady;
Mirko Bonadei675513b2017-11-09 11:09:25 +0100405 RTC_LOG(LS_INFO) << "DataChannel received OPEN_ACK message, sid = "
406 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000407 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100408 RTC_LOG(LS_WARNING)
409 << "DataChannel failed to parse OPEN_ACK message, sid = "
410 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000411 }
412 return;
413 }
414
nisseede5da42017-01-12 05:15:36 -0800415 RTC_DCHECK(params.type == cricket::DMT_BINARY ||
416 params.type == cricket::DMT_TEXT);
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000417
Mirko Bonadei675513b2017-11-09 11:09:25 +0100418 RTC_LOG(LS_VERBOSE) << "DataChannel received DATA message, sid = "
419 << params.sid;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000420 // We can send unordered as soon as we receive any DATA message since the
421 // remote side must have received the OPEN (and old clients do not send
422 // OPEN_ACK).
Lally Singh5c6c6e02015-05-29 11:52:39 -0400423 if (handshake_state_ == kHandshakeWaitingForAck) {
424 handshake_state_ = kHandshakeReady;
425 }
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000426
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000427 bool binary = (params.type == cricket::DMT_BINARY);
Mirko Bonadei317a1f02019-09-17 17:06:18 +0200428 auto buffer = std::make_unique<DataBuffer>(payload, binary);
Lally Singh5c6c6e02015-05-29 11:52:39 -0400429 if (state_ == kOpen && observer_) {
hbos84ffdee2016-10-12 14:14:39 -0700430 ++messages_received_;
431 bytes_received_ += buffer->size();
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000432 observer_->OnMessage(*buffer.get());
433 } else {
kwiberg@webrtc.orgeebcab52015-03-24 09:19:06 +0000434 if (queued_received_data_.byte_count() + payload.size() >
435 kMaxQueuedReceivedDataBytes) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100436 RTC_LOG(LS_ERROR) << "Queued received data exceeds the max buffer size.";
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000437
438 queued_received_data_.Clear();
439 if (data_channel_type_ != cricket::DCT_RTP) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700440 CloseAbruptly();
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000441 }
442
443 return;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000444 }
Steve Anton944c7552018-12-13 14:19:10 -0800445 queued_received_data_.PushBack(std::move(buffer));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000446 }
447}
448
449void DataChannel::OnChannelReady(bool writable) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400450 writable_ = writable;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000451 if (!writable) {
452 return;
453 }
Harald Alvestrandb9bb3712019-03-27 07:23:31 +0000454
Lally Singh5c6c6e02015-05-29 11:52:39 -0400455 SendQueuedControlMessages();
456 SendQueuedDataMessages();
457 UpdateState();
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000458}
459
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700460void DataChannel::CloseAbruptly() {
461 if (state_ == kClosed) {
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000462 return;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700463 }
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000464
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700465 if (connected_to_provider_) {
466 DisconnectFromProvider();
467 }
468
469 // Closing abruptly means any queued data gets thrown away.
470 queued_send_data_.Clear();
Marina Cioceae448a3f2019-03-04 15:52:21 +0100471 buffered_amount_ = 0;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700472 queued_control_data_.Clear();
473
474 // Still go to "kClosing" before "kClosed", since observers may be expecting
475 // that.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000476 SetState(kClosing);
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700477 SetState(kClosed);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000478}
479
480void DataChannel::UpdateState() {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400481 // UpdateState determines what to do from a few state variables. Include
482 // all conditions required for each state transition here for
483 // clarity. OnChannelReady(true) will send any queued data and then invoke
484 // UpdateState().
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000485 switch (state_) {
486 case kConnecting: {
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000487 if (send_ssrc_set_ == receive_ssrc_set_) {
488 if (data_channel_type_ == cricket::DCT_RTP && !connected_to_provider_) {
489 connected_to_provider_ = provider_->ConnectDataChannel(this);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000490 }
Lally Singh5c6c6e02015-05-29 11:52:39 -0400491 if (connected_to_provider_) {
492 if (handshake_state_ == kHandshakeShouldSendOpen) {
jbaucheec21bd2016-03-20 06:15:43 -0700493 rtc::CopyOnWriteBuffer payload;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400494 WriteDataChannelOpenMessage(label_, config_, &payload);
495 SendControlMessage(payload);
496 } else if (handshake_state_ == kHandshakeShouldSendAck) {
jbaucheec21bd2016-03-20 06:15:43 -0700497 rtc::CopyOnWriteBuffer payload;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400498 WriteDataChannelOpenAckMessage(&payload);
499 SendControlMessage(payload);
500 }
Yves Gerey665174f2018-06-19 15:03:05 +0200501 if (writable_ && (handshake_state_ == kHandshakeReady ||
502 handshake_state_ == kHandshakeWaitingForAck)) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400503 SetState(kOpen);
504 // If we have received buffers before the channel got writable.
505 // Deliver them now.
506 DeliverQueuedReceivedData();
507 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000508 }
509 }
510 break;
511 }
512 case kOpen: {
513 break;
514 }
515 case kClosing: {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700516 // Wait for all queued data to be sent before beginning the closing
517 // procedure.
Lally Singh5c6c6e02015-05-29 11:52:39 -0400518 if (queued_send_data_.Empty() && queued_control_data_.Empty()) {
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700519 if (data_channel_type_ == cricket::DCT_RTP) {
520 // For RTP data channels, we can go to "closed" after we finish
521 // sending data and the send/recv SSRCs are unset.
522 if (connected_to_provider_) {
523 DisconnectFromProvider();
524 }
525 if (!send_ssrc_set_ && !receive_ssrc_set_) {
526 SetState(kClosed);
527 }
528 } else {
529 // For SCTP data channels, we need to wait for the closing procedure
530 // to complete; after calling RemoveSctpDataStream,
531 // OnClosingProcedureComplete will end up called asynchronously
532 // afterwards.
533 if (connected_to_provider_ && !started_closing_procedure_ &&
534 config_.id >= 0) {
535 started_closing_procedure_ = true;
536 provider_->RemoveSctpDataStream(config_.id);
537 }
Lally Singh5c6c6e02015-05-29 11:52:39 -0400538 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000539 }
540 break;
541 }
542 case kClosed:
543 break;
544 }
545}
546
547void DataChannel::SetState(DataState state) {
deadbeefab9b2d12015-10-14 11:33:11 -0700548 if (state_ == state) {
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000549 return;
deadbeefab9b2d12015-10-14 11:33:11 -0700550 }
jiayl@webrtc.org9f8164c2014-05-30 21:53:17 +0000551
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000552 state_ = state;
553 if (observer_) {
554 observer_->OnStateChange();
555 }
hbos82ebe022016-11-14 01:41:09 -0800556 if (state_ == kOpen) {
557 SignalOpened(this);
558 } else if (state_ == kClosed) {
deadbeefab9b2d12015-10-14 11:33:11 -0700559 SignalClosed(this);
560 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000561}
562
Lally Singh5c6c6e02015-05-29 11:52:39 -0400563void DataChannel::DisconnectFromProvider() {
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000564 if (!connected_to_provider_)
565 return;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000566
wu@webrtc.org78187522013-10-07 23:32:02 +0000567 provider_->DisconnectDataChannel(this);
568 connected_to_provider_ = false;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000569}
570
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000571void DataChannel::DeliverQueuedReceivedData() {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400572 if (!observer_) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000573 return;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000574 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000575
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000576 while (!queued_received_data_.Empty()) {
Steve Anton944c7552018-12-13 14:19:10 -0800577 std::unique_ptr<DataBuffer> buffer = queued_received_data_.PopFront();
hbos84ffdee2016-10-12 14:14:39 -0700578 ++messages_received_;
579 bytes_received_ += buffer->size();
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000580 observer_->OnMessage(*buffer);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000581 }
582}
583
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000584void DataChannel::SendQueuedDataMessages() {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400585 if (queued_send_data_.Empty()) {
586 return;
587 }
588
nisseede5da42017-01-12 05:15:36 -0800589 RTC_DCHECK(state_ == kOpen || state_ == kClosing);
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000590
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000591 while (!queued_send_data_.Empty()) {
Steve Anton944c7552018-12-13 14:19:10 -0800592 std::unique_ptr<DataBuffer> buffer = queued_send_data_.PopFront();
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000593 if (!SendDataMessage(*buffer, false)) {
Steve Anton944c7552018-12-13 14:19:10 -0800594 // Return the message to the front of the queue if sending is aborted.
595 queued_send_data_.PushFront(std::move(buffer));
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000596 break;
597 }
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000598 }
599}
600
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000601bool DataChannel::SendDataMessage(const DataBuffer& buffer,
602 bool queue_if_blocked) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000603 cricket::SendDataParams send_params;
604
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800605 if (IsSctpLike(data_channel_type_)) {
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000606 send_params.ordered = config_.ordered;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400607 // Send as ordered if it is still going through OPEN/ACK signaling.
608 if (handshake_state_ != kHandshakeReady && !config_.ordered) {
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000609 send_params.ordered = true;
Mirko Bonadei675513b2017-11-09 11:09:25 +0100610 RTC_LOG(LS_VERBOSE)
611 << "Sending data as ordered for unordered DataChannel "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100612 "because the OPEN_ACK message has not been received.";
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000613 }
614
Harald Alvestrandf3736ed2019-04-08 13:09:30 +0200615 send_params.max_rtx_count =
616 config_.maxRetransmits ? *config_.maxRetransmits : -1;
617 send_params.max_rtx_ms =
618 config_.maxRetransmitTime ? *config_.maxRetransmitTime : -1;
deadbeef953c2ce2017-01-09 14:53:41 -0800619 send_params.sid = config_.id;
sergeyu@chromium.orga23f0ca2013-11-13 22:48:52 +0000620 } else {
621 send_params.ssrc = send_ssrc_;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000622 }
623 send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT;
624
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000625 cricket::SendDataResult send_result = cricket::SDR_SUCCESS;
626 bool success = provider_->SendData(send_params, buffer.data, &send_result);
627
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000628 if (success) {
hbos84ffdee2016-10-12 14:14:39 -0700629 ++messages_sent_;
630 bytes_sent_ += buffer.size();
Marina Cioceae448a3f2019-03-04 15:52:21 +0100631
632 RTC_DCHECK(buffered_amount_ >= buffer.size());
633 buffered_amount_ -= buffer.size();
634 if (observer_ && buffer.size() > 0) {
635 observer_->OnBufferedAmountChange(buffer.size());
636 }
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000637 return true;
638 }
639
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800640 if (!IsSctpLike(data_channel_type_)) {
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000641 return false;
642 }
643
644 if (send_result == cricket::SDR_BLOCK) {
645 if (!queue_if_blocked || QueueSendDataMessage(buffer)) {
646 return false;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000647 }
648 }
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000649 // Close the channel if the error is not SDR_BLOCK, or if queuing the
650 // message failed.
Mirko Bonadei675513b2017-11-09 11:09:25 +0100651 RTC_LOG(LS_ERROR) << "Closing the DataChannel due to a failure to send data, "
Jonas Olsson45cc8902018-02-13 10:37:07 +0100652 "send_result = "
653 << send_result;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700654 CloseAbruptly();
jiayl@webrtc.org6ca61902014-11-12 17:28:40 +0000655
656 return false;
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000657}
658
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000659bool DataChannel::QueueSendDataMessage(const DataBuffer& buffer) {
Marina Cioceae448a3f2019-03-04 15:52:21 +0100660 size_t start_buffered_amount = queued_send_data_.byte_count();
661 if (start_buffered_amount + buffer.size() > kMaxQueuedSendDataBytes) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100662 RTC_LOG(LS_ERROR) << "Can't buffer any more data for the data channel.";
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000663 return false;
664 }
Mirko Bonadei317a1f02019-09-17 17:06:18 +0200665 queued_send_data_.PushBack(std::make_unique<DataBuffer>(buffer));
wu@webrtc.orgd64719d2013-08-01 00:00:07 +0000666 return true;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000667}
668
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000669void DataChannel::SendQueuedControlMessages() {
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000670 PacketQueue control_packets;
671 control_packets.Swap(&queued_control_data_);
672
673 while (!control_packets.Empty()) {
Steve Anton944c7552018-12-13 14:19:10 -0800674 std::unique_ptr<DataBuffer> buf = control_packets.PopFront();
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000675 SendControlMessage(buf->data);
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000676 }
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000677}
678
jbaucheec21bd2016-03-20 06:15:43 -0700679void DataChannel::QueueControlMessage(const rtc::CopyOnWriteBuffer& buffer) {
Mirko Bonadei317a1f02019-09-17 17:06:18 +0200680 queued_control_data_.PushBack(std::make_unique<DataBuffer>(buffer, true));
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000681}
682
jbaucheec21bd2016-03-20 06:15:43 -0700683bool DataChannel::SendControlMessage(const rtc::CopyOnWriteBuffer& buffer) {
Lally Singh5c6c6e02015-05-29 11:52:39 -0400684 bool is_open_message = handshake_state_ == kHandshakeShouldSendOpen;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000685
Bjorn Mellem175aa2e2018-11-08 11:23:22 -0800686 RTC_DCHECK(IsSctpLike(data_channel_type_));
kwibergee89e782017-08-09 17:22:01 -0700687 RTC_DCHECK(writable_);
688 RTC_DCHECK_GE(config_.id, 0);
689 RTC_DCHECK(!is_open_message || !config_.negotiated);
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000690
691 cricket::SendDataParams send_params;
deadbeef953c2ce2017-01-09 14:53:41 -0800692 send_params.sid = config_.id;
Lally Singh5c6c6e02015-05-29 11:52:39 -0400693 // Send data as ordered before we receive any message from the remote peer to
694 // make sure the remote peer will not receive any data before it receives the
695 // OPEN message.
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000696 send_params.ordered = config_.ordered || is_open_message;
697 send_params.type = cricket::DMT_CONTROL;
698
699 cricket::SendDataResult send_result = cricket::SDR_SUCCESS;
700 bool retval = provider_->SendData(send_params, buffer, &send_result);
701 if (retval) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100702 RTC_LOG(LS_INFO) << "Sent CONTROL message on channel " << config_.id;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000703
Lally Singh5c6c6e02015-05-29 11:52:39 -0400704 if (handshake_state_ == kHandshakeShouldSendAck) {
705 handshake_state_ = kHandshakeReady;
706 } else if (handshake_state_ == kHandshakeShouldSendOpen) {
707 handshake_state_ = kHandshakeWaitingForAck;
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000708 }
709 } else if (send_result == cricket::SDR_BLOCK) {
710 QueueControlMessage(buffer);
711 } else {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100712 RTC_LOG(LS_ERROR) << "Closing the DataChannel due to a failure to send"
Jonas Olsson45cc8902018-02-13 10:37:07 +0100713 " the CONTROL message, send_result = "
714 << send_result;
Taylor Brandstettercdd05f02018-05-31 13:23:32 -0700715 CloseAbruptly();
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000716 }
jiayl@webrtc.orgb43c99d2014-06-20 17:11:14 +0000717 return retval;
wu@webrtc.orgcecfd182013-10-30 05:18:12 +0000718}
719
Harald Alvestrand928e7a32019-07-31 07:16:45 -0400720// static
721void DataChannel::ResetInternalIdAllocatorForTesting(int new_value) {
722 g_unique_id = new_value;
723}
724
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000725} // namespace webrtc