henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 2 | * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 9 | */ |
jlmiller@webrtc.org | 5f93d0a | 2015-01-20 21:36:13 +0000 | [diff] [blame] | 10 | |
Henrik Kjellander | 15583c1 | 2016-02-10 10:53:12 +0100 | [diff] [blame] | 11 | #include "webrtc/api/datachannel.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 12 | |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 13 | #include <memory> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 14 | #include <string> |
| 15 | |
Henrik Kjellander | 15583c1 | 2016-02-10 10:53:12 +0100 | [diff] [blame] | 16 | #include "webrtc/api/sctputils.h" |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 17 | #include "webrtc/base/checks.h" |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 18 | #include "webrtc/base/logging.h" |
| 19 | #include "webrtc/base/refcount.h" |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 20 | #include "webrtc/media/sctp/sctptransportinternal.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 21 | |
| 22 | namespace webrtc { |
| 23 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 24 | static size_t kMaxQueuedReceivedDataBytes = 16 * 1024 * 1024; |
| 25 | static size_t kMaxQueuedSendDataBytes = 16 * 1024 * 1024; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 26 | |
wu@webrtc.org | 07a6fbe | 2013-11-04 18:41:34 +0000 | [diff] [blame] | 27 | enum { |
| 28 | MSG_CHANNELREADY, |
| 29 | }; |
| 30 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 31 | bool SctpSidAllocator::AllocateSid(rtc::SSLRole role, int* sid) { |
| 32 | int potential_sid = (role == rtc::SSL_CLIENT) ? 0 : 1; |
| 33 | while (!IsSidAvailable(potential_sid)) { |
| 34 | potential_sid += 2; |
| 35 | if (potential_sid > static_cast<int>(cricket::kMaxSctpSid)) { |
| 36 | return false; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | *sid = potential_sid; |
| 41 | used_sids_.insert(potential_sid); |
| 42 | return true; |
| 43 | } |
| 44 | |
| 45 | bool SctpSidAllocator::ReserveSid(int sid) { |
| 46 | if (!IsSidAvailable(sid)) { |
| 47 | return false; |
| 48 | } |
| 49 | used_sids_.insert(sid); |
| 50 | return true; |
| 51 | } |
| 52 | |
| 53 | void SctpSidAllocator::ReleaseSid(int sid) { |
| 54 | auto it = used_sids_.find(sid); |
| 55 | if (it != used_sids_.end()) { |
| 56 | used_sids_.erase(it); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | bool SctpSidAllocator::IsSidAvailable(int sid) const { |
Taylor Brandstetter | 1d7a637 | 2016-08-24 13:15:27 -0700 | [diff] [blame] | 61 | if (sid < static_cast<int>(cricket::kMinSctpSid) || |
| 62 | sid > static_cast<int>(cricket::kMaxSctpSid)) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 63 | return false; |
| 64 | } |
| 65 | return used_sids_.find(sid) == used_sids_.end(); |
| 66 | } |
| 67 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 68 | DataChannel::PacketQueue::PacketQueue() : byte_count_(0) {} |
| 69 | |
| 70 | DataChannel::PacketQueue::~PacketQueue() { |
| 71 | Clear(); |
| 72 | } |
| 73 | |
| 74 | bool DataChannel::PacketQueue::Empty() const { |
| 75 | return packets_.empty(); |
| 76 | } |
| 77 | |
| 78 | DataBuffer* DataChannel::PacketQueue::Front() { |
| 79 | return packets_.front(); |
| 80 | } |
| 81 | |
| 82 | void DataChannel::PacketQueue::Pop() { |
| 83 | if (packets_.empty()) { |
| 84 | return; |
| 85 | } |
| 86 | |
| 87 | byte_count_ -= packets_.front()->size(); |
| 88 | packets_.pop_front(); |
| 89 | } |
| 90 | |
| 91 | void DataChannel::PacketQueue::Push(DataBuffer* packet) { |
| 92 | byte_count_ += packet->size(); |
| 93 | packets_.push_back(packet); |
| 94 | } |
| 95 | |
| 96 | void DataChannel::PacketQueue::Clear() { |
| 97 | while (!packets_.empty()) { |
| 98 | delete packets_.front(); |
| 99 | packets_.pop_front(); |
| 100 | } |
| 101 | byte_count_ = 0; |
| 102 | } |
| 103 | |
| 104 | void DataChannel::PacketQueue::Swap(PacketQueue* other) { |
| 105 | size_t other_byte_count = other->byte_count_; |
| 106 | other->byte_count_ = byte_count_; |
| 107 | byte_count_ = other_byte_count; |
| 108 | |
| 109 | other->packets_.swap(packets_); |
| 110 | } |
| 111 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 112 | rtc::scoped_refptr<DataChannel> DataChannel::Create( |
wu@webrtc.org | 7818752 | 2013-10-07 23:32:02 +0000 | [diff] [blame] | 113 | DataChannelProviderInterface* provider, |
| 114 | cricket::DataChannelType dct, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 115 | const std::string& label, |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 116 | const InternalDataChannelInit& config) { |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 117 | rtc::scoped_refptr<DataChannel> channel( |
| 118 | new rtc::RefCountedObject<DataChannel>(provider, dct, label)); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 119 | if (!channel->Init(config)) { |
| 120 | return NULL; |
| 121 | } |
| 122 | return channel; |
| 123 | } |
| 124 | |
wu@webrtc.org | 7818752 | 2013-10-07 23:32:02 +0000 | [diff] [blame] | 125 | DataChannel::DataChannel( |
| 126 | DataChannelProviderInterface* provider, |
| 127 | cricket::DataChannelType dct, |
| 128 | const std::string& label) |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 129 | : label_(label), |
hbos | 84ffdee | 2016-10-12 14:14:39 -0700 | [diff] [blame] | 130 | observer_(nullptr), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 131 | state_(kConnecting), |
hbos | 84ffdee | 2016-10-12 14:14:39 -0700 | [diff] [blame] | 132 | messages_sent_(0), |
| 133 | bytes_sent_(0), |
| 134 | messages_received_(0), |
| 135 | bytes_received_(0), |
henrika@webrtc.org | 44461fa | 2014-01-13 09:35:02 +0000 | [diff] [blame] | 136 | data_channel_type_(dct), |
| 137 | provider_(provider), |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 138 | handshake_state_(kHandshakeInit), |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 139 | connected_to_provider_(false), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 140 | send_ssrc_set_(false), |
henrika@webrtc.org | 44461fa | 2014-01-13 09:35:02 +0000 | [diff] [blame] | 141 | receive_ssrc_set_(false), |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 142 | writable_(false), |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 143 | send_ssrc_(0), |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 144 | receive_ssrc_(0) { |
| 145 | } |
| 146 | |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 147 | bool DataChannel::Init(const InternalDataChannelInit& config) { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 148 | if (data_channel_type_ == cricket::DCT_RTP) { |
| 149 | if (config.reliable || |
| 150 | config.id != -1 || |
| 151 | config.maxRetransmits != -1 || |
| 152 | config.maxRetransmitTime != -1) { |
| 153 | LOG(LS_ERROR) << "Failed to initialize the RTP data channel due to " |
| 154 | << "invalid DataChannelInit."; |
| 155 | return false; |
| 156 | } |
| 157 | handshake_state_ = kHandshakeReady; |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 158 | } else if (data_channel_type_ == cricket::DCT_SCTP) { |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 159 | if (config.id < -1 || |
| 160 | config.maxRetransmits < -1 || |
| 161 | config.maxRetransmitTime < -1) { |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 162 | LOG(LS_ERROR) << "Failed to initialize the SCTP data channel due to " |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 163 | << "invalid DataChannelInit."; |
| 164 | return false; |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 165 | } |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 166 | if (config.maxRetransmits != -1 && config.maxRetransmitTime != -1) { |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 167 | LOG(LS_ERROR) << |
| 168 | "maxRetransmits and maxRetransmitTime should not be both set."; |
| 169 | return false; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 170 | } |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 171 | config_ = config; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 172 | |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 173 | switch (config_.open_handshake_role) { |
| 174 | case webrtc::InternalDataChannelInit::kNone: // pre-negotiated |
| 175 | handshake_state_ = kHandshakeReady; |
| 176 | break; |
| 177 | case webrtc::InternalDataChannelInit::kOpener: |
| 178 | handshake_state_ = kHandshakeShouldSendOpen; |
| 179 | break; |
| 180 | case webrtc::InternalDataChannelInit::kAcker: |
| 181 | handshake_state_ = kHandshakeShouldSendAck; |
| 182 | break; |
| 183 | }; |
| 184 | |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 185 | // Try to connect to the transport in case the transport channel already |
| 186 | // exists. |
| 187 | OnTransportChannelCreated(); |
wu@webrtc.org | 07a6fbe | 2013-11-04 18:41:34 +0000 | [diff] [blame] | 188 | |
| 189 | // Checks if the transport is ready to send because the initial channel |
| 190 | // ready signal may have been sent before the DataChannel creation. |
| 191 | // This has to be done async because the upper layer objects (e.g. |
| 192 | // Chrome glue and WebKit) are not wired up properly until after this |
| 193 | // function returns. |
| 194 | if (provider_->ReadyToSendData()) { |
Taylor Brandstetter | 5d97a9a | 2016-06-10 14:17:27 -0700 | [diff] [blame] | 195 | rtc::Thread::Current()->Post(RTC_FROM_HERE, this, MSG_CHANNELREADY, NULL); |
wu@webrtc.org | 07a6fbe | 2013-11-04 18:41:34 +0000 | [diff] [blame] | 196 | } |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | return true; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 200 | } |
| 201 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 202 | DataChannel::~DataChannel() {} |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 203 | |
| 204 | void DataChannel::RegisterObserver(DataChannelObserver* observer) { |
| 205 | observer_ = observer; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 206 | DeliverQueuedReceivedData(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | void DataChannel::UnregisterObserver() { |
| 210 | observer_ = NULL; |
| 211 | } |
| 212 | |
| 213 | bool DataChannel::reliable() const { |
wu@webrtc.org | 7818752 | 2013-10-07 23:32:02 +0000 | [diff] [blame] | 214 | if (data_channel_type_ == cricket::DCT_RTP) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 215 | return false; |
| 216 | } else { |
| 217 | return config_.maxRetransmits == -1 && |
| 218 | config_.maxRetransmitTime == -1; |
| 219 | } |
| 220 | } |
| 221 | |
Peter Boström | 0c4e06b | 2015-10-07 12:23:21 +0200 | [diff] [blame] | 222 | uint64_t DataChannel::buffered_amount() const { |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 223 | return queued_send_data_.byte_count(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void DataChannel::Close() { |
| 227 | if (state_ == kClosed) |
| 228 | return; |
| 229 | send_ssrc_ = 0; |
| 230 | send_ssrc_set_ = false; |
| 231 | SetState(kClosing); |
| 232 | UpdateState(); |
| 233 | } |
| 234 | |
| 235 | bool DataChannel::Send(const DataBuffer& buffer) { |
| 236 | if (state_ != kOpen) { |
| 237 | return false; |
| 238 | } |
jiayl@webrtc.org | 3edbaaf | 2014-07-18 23:57:50 +0000 | [diff] [blame] | 239 | |
| 240 | // TODO(jiayl): the spec is unclear about if the remote side should get the |
| 241 | // onmessage event. We need to figure out the expected behavior and change the |
| 242 | // code accordingly. |
| 243 | if (buffer.size() == 0) { |
| 244 | return true; |
| 245 | } |
| 246 | |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 247 | // If the queue is non-empty, we're waiting for SignalReadyToSend, |
| 248 | // so just add to the end of the queue and keep waiting. |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 249 | if (!queued_send_data_.Empty()) { |
| 250 | // Only SCTP DataChannel queues the outgoing data when the transport is |
| 251 | // blocked. |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 252 | RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP); |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 253 | if (!QueueSendDataMessage(buffer)) { |
jiayl@webrtc.org | 5dc51fb | 2014-05-29 15:33:54 +0000 | [diff] [blame] | 254 | Close(); |
| 255 | } |
| 256 | return true; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 257 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 258 | |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 259 | bool success = SendDataMessage(buffer, true); |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 260 | if (data_channel_type_ == cricket::DCT_RTP) { |
| 261 | return success; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 262 | } |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 263 | |
| 264 | // Always return true for SCTP DataChannel per the spec. |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 265 | return true; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Peter Boström | 0c4e06b | 2015-10-07 12:23:21 +0200 | [diff] [blame] | 268 | void DataChannel::SetReceiveSsrc(uint32_t receive_ssrc) { |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 269 | RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP); |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 270 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 271 | if (receive_ssrc_set_) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 272 | return; |
| 273 | } |
| 274 | receive_ssrc_ = receive_ssrc; |
| 275 | receive_ssrc_set_ = true; |
| 276 | UpdateState(); |
| 277 | } |
| 278 | |
| 279 | // The remote peer request that this channel shall be closed. |
| 280 | void DataChannel::RemotePeerRequestClose() { |
| 281 | DoClose(); |
| 282 | } |
| 283 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 284 | void DataChannel::SetSctpSid(int sid) { |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 285 | RTC_DCHECK(config_.id < 0 && sid >= 0 && |
| 286 | data_channel_type_ == cricket::DCT_SCTP); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 287 | if (config_.id == sid) { |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 288 | return; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 289 | } |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 290 | |
| 291 | config_.id = sid; |
| 292 | provider_->AddSctpDataStream(sid); |
| 293 | } |
| 294 | |
| 295 | void DataChannel::OnTransportChannelCreated() { |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 296 | RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP); |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 297 | if (!connected_to_provider_) { |
| 298 | connected_to_provider_ = provider_->ConnectDataChannel(this); |
| 299 | } |
| 300 | // The sid may have been unassigned when provider_->ConnectDataChannel was |
| 301 | // done. So always add the streams even if connected_to_provider_ is true. |
| 302 | if (config_.id >= 0) { |
| 303 | provider_->AddSctpDataStream(config_.id); |
| 304 | } |
| 305 | } |
| 306 | |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 307 | void DataChannel::OnTransportChannelDestroyed() { |
Taylor Brandstetter | 4cb5b64 | 2016-08-12 10:10:31 -0700 | [diff] [blame] | 308 | // This method needs to synchronously close the data channel, which means any |
| 309 | // queued data needs to be discarded. |
| 310 | queued_send_data_.Clear(); |
| 311 | queued_control_data_.Clear(); |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 312 | DoClose(); |
| 313 | } |
| 314 | |
Peter Boström | 0c4e06b | 2015-10-07 12:23:21 +0200 | [diff] [blame] | 315 | void DataChannel::SetSendSsrc(uint32_t send_ssrc) { |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 316 | RTC_DCHECK(data_channel_type_ == cricket::DCT_RTP); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 317 | if (send_ssrc_set_) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 318 | return; |
| 319 | } |
| 320 | send_ssrc_ = send_ssrc; |
| 321 | send_ssrc_set_ = true; |
| 322 | UpdateState(); |
| 323 | } |
| 324 | |
buildbot@webrtc.org | d4e598d | 2014-07-29 17:36:52 +0000 | [diff] [blame] | 325 | void DataChannel::OnMessage(rtc::Message* msg) { |
wu@webrtc.org | 07a6fbe | 2013-11-04 18:41:34 +0000 | [diff] [blame] | 326 | switch (msg->message_id) { |
| 327 | case MSG_CHANNELREADY: |
| 328 | OnChannelReady(true); |
| 329 | break; |
| 330 | } |
| 331 | } |
| 332 | |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 333 | void DataChannel::OnDataReceived(const cricket::ReceiveDataParams& params, |
jbauch | eec21bd | 2016-03-20 06:15:43 -0700 | [diff] [blame] | 334 | const rtc::CopyOnWriteBuffer& payload) { |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 335 | if (data_channel_type_ == cricket::DCT_RTP && params.ssrc != receive_ssrc_) { |
| 336 | return; |
| 337 | } |
| 338 | if (data_channel_type_ == cricket::DCT_SCTP && params.sid != config_.id) { |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 339 | return; |
| 340 | } |
| 341 | |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 342 | if (params.type == cricket::DMT_CONTROL) { |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 343 | RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP); |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 344 | if (handshake_state_ != kHandshakeWaitingForAck) { |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 345 | // Ignore it if we are not expecting an ACK message. |
| 346 | LOG(LS_WARNING) << "DataChannel received unexpected CONTROL message, " |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 347 | << "sid = " << params.sid; |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 348 | return; |
| 349 | } |
| 350 | if (ParseDataChannelOpenAckMessage(payload)) { |
| 351 | // We can send unordered as soon as we receive the ACK message. |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 352 | handshake_state_ = kHandshakeReady; |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 353 | LOG(LS_INFO) << "DataChannel received OPEN_ACK message, sid = " |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 354 | << params.sid; |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 355 | } else { |
| 356 | LOG(LS_WARNING) << "DataChannel failed to parse OPEN_ACK message, sid = " |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 357 | << params.sid; |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 358 | } |
| 359 | return; |
| 360 | } |
| 361 | |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 362 | RTC_DCHECK(params.type == cricket::DMT_BINARY || |
| 363 | params.type == cricket::DMT_TEXT); |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 364 | |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 365 | LOG(LS_VERBOSE) << "DataChannel received DATA message, sid = " << params.sid; |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 366 | // We can send unordered as soon as we receive any DATA message since the |
| 367 | // remote side must have received the OPEN (and old clients do not send |
| 368 | // OPEN_ACK). |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 369 | if (handshake_state_ == kHandshakeWaitingForAck) { |
| 370 | handshake_state_ = kHandshakeReady; |
| 371 | } |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 372 | |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 373 | bool binary = (params.type == cricket::DMT_BINARY); |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 374 | std::unique_ptr<DataBuffer> buffer(new DataBuffer(payload, binary)); |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 375 | if (state_ == kOpen && observer_) { |
hbos | 84ffdee | 2016-10-12 14:14:39 -0700 | [diff] [blame] | 376 | ++messages_received_; |
| 377 | bytes_received_ += buffer->size(); |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 378 | observer_->OnMessage(*buffer.get()); |
| 379 | } else { |
kwiberg@webrtc.org | eebcab5 | 2015-03-24 09:19:06 +0000 | [diff] [blame] | 380 | if (queued_received_data_.byte_count() + payload.size() > |
| 381 | kMaxQueuedReceivedDataBytes) { |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 382 | LOG(LS_ERROR) << "Queued received data exceeds the max buffer size."; |
| 383 | |
| 384 | queued_received_data_.Clear(); |
| 385 | if (data_channel_type_ != cricket::DCT_RTP) { |
| 386 | Close(); |
| 387 | } |
| 388 | |
| 389 | return; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 390 | } |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 391 | queued_received_data_.Push(buffer.release()); |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 395 | void DataChannel::OnStreamClosedRemotely(int sid) { |
| 396 | if (data_channel_type_ == cricket::DCT_SCTP && sid == config_.id) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 397 | Close(); |
| 398 | } |
| 399 | } |
| 400 | |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 401 | void DataChannel::OnChannelReady(bool writable) { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 402 | writable_ = writable; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 403 | if (!writable) { |
| 404 | return; |
| 405 | } |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 406 | |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 407 | SendQueuedControlMessages(); |
| 408 | SendQueuedDataMessages(); |
| 409 | UpdateState(); |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 410 | } |
| 411 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 412 | void DataChannel::DoClose() { |
jiayl@webrtc.org | 9f8164c | 2014-05-30 21:53:17 +0000 | [diff] [blame] | 413 | if (state_ == kClosed) |
| 414 | return; |
| 415 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 416 | receive_ssrc_set_ = false; |
| 417 | send_ssrc_set_ = false; |
| 418 | SetState(kClosing); |
| 419 | UpdateState(); |
| 420 | } |
| 421 | |
| 422 | void DataChannel::UpdateState() { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 423 | // UpdateState determines what to do from a few state variables. Include |
| 424 | // all conditions required for each state transition here for |
| 425 | // clarity. OnChannelReady(true) will send any queued data and then invoke |
| 426 | // UpdateState(). |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 427 | switch (state_) { |
| 428 | case kConnecting: { |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 429 | if (send_ssrc_set_ == receive_ssrc_set_) { |
| 430 | if (data_channel_type_ == cricket::DCT_RTP && !connected_to_provider_) { |
| 431 | connected_to_provider_ = provider_->ConnectDataChannel(this); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 432 | } |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 433 | if (connected_to_provider_) { |
| 434 | if (handshake_state_ == kHandshakeShouldSendOpen) { |
jbauch | eec21bd | 2016-03-20 06:15:43 -0700 | [diff] [blame] | 435 | rtc::CopyOnWriteBuffer payload; |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 436 | WriteDataChannelOpenMessage(label_, config_, &payload); |
| 437 | SendControlMessage(payload); |
| 438 | } else if (handshake_state_ == kHandshakeShouldSendAck) { |
jbauch | eec21bd | 2016-03-20 06:15:43 -0700 | [diff] [blame] | 439 | rtc::CopyOnWriteBuffer payload; |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 440 | WriteDataChannelOpenAckMessage(&payload); |
| 441 | SendControlMessage(payload); |
| 442 | } |
| 443 | if (writable_ && |
| 444 | (handshake_state_ == kHandshakeReady || |
| 445 | handshake_state_ == kHandshakeWaitingForAck)) { |
| 446 | SetState(kOpen); |
| 447 | // If we have received buffers before the channel got writable. |
| 448 | // Deliver them now. |
| 449 | DeliverQueuedReceivedData(); |
| 450 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 451 | } |
| 452 | } |
| 453 | break; |
| 454 | } |
| 455 | case kOpen: { |
| 456 | break; |
| 457 | } |
| 458 | case kClosing: { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 459 | if (queued_send_data_.Empty() && queued_control_data_.Empty()) { |
| 460 | if (connected_to_provider_) { |
| 461 | DisconnectFromProvider(); |
| 462 | } |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 463 | |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 464 | if (!connected_to_provider_ && !send_ssrc_set_ && !receive_ssrc_set_) { |
| 465 | SetState(kClosed); |
| 466 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 467 | } |
| 468 | break; |
| 469 | } |
| 470 | case kClosed: |
| 471 | break; |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | void DataChannel::SetState(DataState state) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 476 | if (state_ == state) { |
jiayl@webrtc.org | 9f8164c | 2014-05-30 21:53:17 +0000 | [diff] [blame] | 477 | return; |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 478 | } |
jiayl@webrtc.org | 9f8164c | 2014-05-30 21:53:17 +0000 | [diff] [blame] | 479 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 480 | state_ = state; |
| 481 | if (observer_) { |
| 482 | observer_->OnStateChange(); |
| 483 | } |
hbos | 82ebe02 | 2016-11-14 01:41:09 -0800 | [diff] [blame] | 484 | if (state_ == kOpen) { |
| 485 | SignalOpened(this); |
| 486 | } else if (state_ == kClosed) { |
deadbeef | ab9b2d1 | 2015-10-14 11:33:11 -0700 | [diff] [blame] | 487 | SignalClosed(this); |
| 488 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 491 | void DataChannel::DisconnectFromProvider() { |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 492 | if (!connected_to_provider_) |
| 493 | return; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 494 | |
wu@webrtc.org | 7818752 | 2013-10-07 23:32:02 +0000 | [diff] [blame] | 495 | provider_->DisconnectDataChannel(this); |
| 496 | connected_to_provider_ = false; |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 497 | |
bemasc@webrtc.org | 9b5467e | 2014-12-04 23:16:52 +0000 | [diff] [blame] | 498 | if (data_channel_type_ == cricket::DCT_SCTP && config_.id >= 0) { |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 499 | provider_->RemoveSctpDataStream(config_.id); |
| 500 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 501 | } |
| 502 | |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 503 | void DataChannel::DeliverQueuedReceivedData() { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 504 | if (!observer_) { |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 505 | return; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 506 | } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 507 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 508 | while (!queued_received_data_.Empty()) { |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 509 | std::unique_ptr<DataBuffer> buffer(queued_received_data_.Front()); |
hbos | 84ffdee | 2016-10-12 14:14:39 -0700 | [diff] [blame] | 510 | ++messages_received_; |
| 511 | bytes_received_ += buffer->size(); |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 512 | observer_->OnMessage(*buffer); |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 513 | queued_received_data_.Pop(); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 514 | } |
| 515 | } |
| 516 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 517 | void DataChannel::SendQueuedDataMessages() { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 518 | if (queued_send_data_.Empty()) { |
| 519 | return; |
| 520 | } |
| 521 | |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 522 | RTC_DCHECK(state_ == kOpen || state_ == kClosing); |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 523 | |
Peter Boström | 0c4e06b | 2015-10-07 12:23:21 +0200 | [diff] [blame] | 524 | uint64_t start_buffered_amount = buffered_amount(); |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 525 | while (!queued_send_data_.Empty()) { |
jiayl@webrtc.org | cceb166 | 2015-01-22 00:55:10 +0000 | [diff] [blame] | 526 | DataBuffer* buffer = queued_send_data_.Front(); |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 527 | if (!SendDataMessage(*buffer, false)) { |
jiayl@webrtc.org | cceb166 | 2015-01-22 00:55:10 +0000 | [diff] [blame] | 528 | // Leave the message in the queue if sending is aborted. |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 529 | break; |
| 530 | } |
| 531 | queued_send_data_.Pop(); |
jiayl@webrtc.org | cceb166 | 2015-01-22 00:55:10 +0000 | [diff] [blame] | 532 | delete buffer; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 533 | } |
bemasc | 0edd50c | 2015-07-01 13:34:33 -0700 | [diff] [blame] | 534 | |
| 535 | if (observer_ && buffered_amount() < start_buffered_amount) { |
| 536 | observer_->OnBufferedAmountChange(start_buffered_amount); |
| 537 | } |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 538 | } |
| 539 | |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 540 | bool DataChannel::SendDataMessage(const DataBuffer& buffer, |
| 541 | bool queue_if_blocked) { |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 542 | cricket::SendDataParams send_params; |
| 543 | |
wu@webrtc.org | 7818752 | 2013-10-07 23:32:02 +0000 | [diff] [blame] | 544 | if (data_channel_type_ == cricket::DCT_SCTP) { |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 545 | send_params.ordered = config_.ordered; |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 546 | // Send as ordered if it is still going through OPEN/ACK signaling. |
| 547 | if (handshake_state_ != kHandshakeReady && !config_.ordered) { |
henrika@webrtc.org | aebb1ad | 2014-01-14 10:00:58 +0000 | [diff] [blame] | 548 | send_params.ordered = true; |
| 549 | LOG(LS_VERBOSE) << "Sending data as ordered for unordered DataChannel " |
| 550 | << "because the OPEN_ACK message has not been received."; |
| 551 | } |
| 552 | |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 553 | send_params.max_rtx_count = config_.maxRetransmits; |
| 554 | send_params.max_rtx_ms = config_.maxRetransmitTime; |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 555 | send_params.sid = config_.id; |
sergeyu@chromium.org | a23f0ca | 2013-11-13 22:48:52 +0000 | [diff] [blame] | 556 | } else { |
| 557 | send_params.ssrc = send_ssrc_; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 558 | } |
| 559 | send_params.type = buffer.binary ? cricket::DMT_BINARY : cricket::DMT_TEXT; |
| 560 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 561 | cricket::SendDataResult send_result = cricket::SDR_SUCCESS; |
| 562 | bool success = provider_->SendData(send_params, buffer.data, &send_result); |
| 563 | |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 564 | if (success) { |
hbos | 84ffdee | 2016-10-12 14:14:39 -0700 | [diff] [blame] | 565 | ++messages_sent_; |
| 566 | bytes_sent_ += buffer.size(); |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 567 | return true; |
| 568 | } |
| 569 | |
| 570 | if (data_channel_type_ != cricket::DCT_SCTP) { |
| 571 | return false; |
| 572 | } |
| 573 | |
| 574 | if (send_result == cricket::SDR_BLOCK) { |
| 575 | if (!queue_if_blocked || QueueSendDataMessage(buffer)) { |
| 576 | return false; |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 577 | } |
| 578 | } |
jiayl@webrtc.org | 6ca6190 | 2014-11-12 17:28:40 +0000 | [diff] [blame] | 579 | // Close the channel if the error is not SDR_BLOCK, or if queuing the |
| 580 | // message failed. |
| 581 | LOG(LS_ERROR) << "Closing the DataChannel due to a failure to send data, " |
| 582 | << "send_result = " << send_result; |
| 583 | Close(); |
| 584 | |
| 585 | return false; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 586 | } |
| 587 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 588 | bool DataChannel::QueueSendDataMessage(const DataBuffer& buffer) { |
bemasc | 0edd50c | 2015-07-01 13:34:33 -0700 | [diff] [blame] | 589 | size_t start_buffered_amount = buffered_amount(); |
| 590 | if (start_buffered_amount >= kMaxQueuedSendDataBytes) { |
jiayl@webrtc.org | 5dc51fb | 2014-05-29 15:33:54 +0000 | [diff] [blame] | 591 | LOG(LS_ERROR) << "Can't buffer any more data for the data channel."; |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 592 | return false; |
| 593 | } |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 594 | queued_send_data_.Push(new DataBuffer(buffer)); |
bemasc | 0edd50c | 2015-07-01 13:34:33 -0700 | [diff] [blame] | 595 | |
| 596 | // The buffer can have length zero, in which case there is no change. |
| 597 | if (observer_ && buffered_amount() > start_buffered_amount) { |
| 598 | observer_->OnBufferedAmountChange(start_buffered_amount); |
| 599 | } |
wu@webrtc.org | d64719d | 2013-08-01 00:00:07 +0000 | [diff] [blame] | 600 | return true; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 601 | } |
| 602 | |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 603 | void DataChannel::SendQueuedControlMessages() { |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 604 | PacketQueue control_packets; |
| 605 | control_packets.Swap(&queued_control_data_); |
| 606 | |
| 607 | while (!control_packets.Empty()) { |
kwiberg | d1fe281 | 2016-04-27 06:47:29 -0700 | [diff] [blame] | 608 | std::unique_ptr<DataBuffer> buf(control_packets.Front()); |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 609 | SendControlMessage(buf->data); |
| 610 | control_packets.Pop(); |
| 611 | } |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 612 | } |
| 613 | |
jbauch | eec21bd | 2016-03-20 06:15:43 -0700 | [diff] [blame] | 614 | void DataChannel::QueueControlMessage(const rtc::CopyOnWriteBuffer& buffer) { |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 615 | queued_control_data_.Push(new DataBuffer(buffer, true)); |
| 616 | } |
| 617 | |
jbauch | eec21bd | 2016-03-20 06:15:43 -0700 | [diff] [blame] | 618 | bool DataChannel::SendControlMessage(const rtc::CopyOnWriteBuffer& buffer) { |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 619 | bool is_open_message = handshake_state_ == kHandshakeShouldSendOpen; |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 620 | |
nisse | ede5da4 | 2017-01-12 05:15:36 -0800 | [diff] [blame^] | 621 | RTC_DCHECK(data_channel_type_ == cricket::DCT_SCTP && writable_ && |
| 622 | config_.id >= 0 && (!is_open_message || !config_.negotiated)); |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 623 | |
| 624 | cricket::SendDataParams send_params; |
deadbeef | 953c2ce | 2017-01-09 14:53:41 -0800 | [diff] [blame] | 625 | send_params.sid = config_.id; |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 626 | // Send data as ordered before we receive any message from the remote peer to |
| 627 | // make sure the remote peer will not receive any data before it receives the |
| 628 | // OPEN message. |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 629 | send_params.ordered = config_.ordered || is_open_message; |
| 630 | send_params.type = cricket::DMT_CONTROL; |
| 631 | |
| 632 | cricket::SendDataResult send_result = cricket::SDR_SUCCESS; |
| 633 | bool retval = provider_->SendData(send_params, buffer, &send_result); |
| 634 | if (retval) { |
| 635 | LOG(LS_INFO) << "Sent CONTROL message on channel " << config_.id; |
| 636 | |
Lally Singh | 5c6c6e0 | 2015-05-29 11:52:39 -0400 | [diff] [blame] | 637 | if (handshake_state_ == kHandshakeShouldSendAck) { |
| 638 | handshake_state_ = kHandshakeReady; |
| 639 | } else if (handshake_state_ == kHandshakeShouldSendOpen) { |
| 640 | handshake_state_ = kHandshakeWaitingForAck; |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 641 | } |
| 642 | } else if (send_result == cricket::SDR_BLOCK) { |
| 643 | QueueControlMessage(buffer); |
| 644 | } else { |
| 645 | LOG(LS_ERROR) << "Closing the DataChannel due to a failure to send" |
| 646 | << " the CONTROL message, send_result = " << send_result; |
| 647 | Close(); |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 648 | } |
jiayl@webrtc.org | b43c99d | 2014-06-20 17:11:14 +0000 | [diff] [blame] | 649 | return retval; |
wu@webrtc.org | cecfd18 | 2013-10-30 05:18:12 +0000 | [diff] [blame] | 650 | } |
| 651 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 652 | } // namespace webrtc |