blob: 6f0ef016d93adcc299423a6ca0b2a0088b0f017b [file] [log] [blame]
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2013 The WebRTC project authors. All Rights Reserved.
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +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.
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +00009 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "pc/sctputils.h"
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000012
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020013#include "rtc_base/bytebuffer.h"
14#include "rtc_base/copyonwritebuffer.h"
15#include "rtc_base/logging.h"
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000016
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +000017namespace webrtc {
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000018
19// Format defined at
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +000020// http://tools.ietf.org/html/draft-ietf-rtcweb-data-protocol-01#section
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000021
Peter Boström0c4e06b2015-10-07 12:23:21 +020022static const uint8_t DATA_CHANNEL_OPEN_MESSAGE_TYPE = 0x03;
23static const uint8_t DATA_CHANNEL_OPEN_ACK_MESSAGE_TYPE = 0x02;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000024
25enum DataChannelOpenMessageChannelType {
26 DCOMCT_ORDERED_RELIABLE = 0x00,
27 DCOMCT_ORDERED_PARTIAL_RTXS = 0x01,
28 DCOMCT_ORDERED_PARTIAL_TIME = 0x02,
29 DCOMCT_UNORDERED_RELIABLE = 0x80,
30 DCOMCT_UNORDERED_PARTIAL_RTXS = 0x81,
31 DCOMCT_UNORDERED_PARTIAL_TIME = 0x82,
32};
33
jbaucheec21bd2016-03-20 06:15:43 -070034bool IsOpenMessage(const rtc::CopyOnWriteBuffer& payload) {
deadbeefab9b2d12015-10-14 11:33:11 -070035 // Format defined at
36 // http://tools.ietf.org/html/draft-jesup-rtcweb-data-protocol-04
jbaucheec21bd2016-03-20 06:15:43 -070037 if (payload.size() < 1) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010038 RTC_LOG(LS_WARNING) << "Could not read OPEN message type.";
deadbeefab9b2d12015-10-14 11:33:11 -070039 return false;
40 }
jbaucheec21bd2016-03-20 06:15:43 -070041
42 uint8_t message_type = payload[0];
deadbeefab9b2d12015-10-14 11:33:11 -070043 return message_type == DATA_CHANNEL_OPEN_MESSAGE_TYPE;
44}
45
jbaucheec21bd2016-03-20 06:15:43 -070046bool ParseDataChannelOpenMessage(const rtc::CopyOnWriteBuffer& payload,
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +000047 std::string* label,
48 DataChannelInit* config) {
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000049 // Format defined at
50 // http://tools.ietf.org/html/draft-jesup-rtcweb-data-protocol-04
51
jbauchf1f87202016-03-30 06:43:37 -070052 rtc::ByteBufferReader buffer(payload.data<char>(), payload.size());
Peter Boström0c4e06b2015-10-07 12:23:21 +020053 uint8_t message_type;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000054 if (!buffer.ReadUInt8(&message_type)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010055 RTC_LOG(LS_WARNING) << "Could not read OPEN message type.";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000056 return false;
57 }
58 if (message_type != DATA_CHANNEL_OPEN_MESSAGE_TYPE) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010059 RTC_LOG(LS_WARNING) << "Data Channel OPEN message of unexpected type: "
60 << message_type;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000061 return false;
62 }
63
Peter Boström0c4e06b2015-10-07 12:23:21 +020064 uint8_t channel_type;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000065 if (!buffer.ReadUInt8(&channel_type)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010066 RTC_LOG(LS_WARNING) << "Could not read OPEN message channel type.";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000067 return false;
68 }
wu@webrtc.org97077a32013-10-25 21:18:33 +000069
Peter Boström0c4e06b2015-10-07 12:23:21 +020070 uint16_t priority;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000071 if (!buffer.ReadUInt16(&priority)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010072 RTC_LOG(LS_WARNING)
73 << "Could not read OPEN message reliabilility prioirty.";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000074 return false;
75 }
Peter Boström0c4e06b2015-10-07 12:23:21 +020076 uint32_t reliability_param;
wu@webrtc.org97077a32013-10-25 21:18:33 +000077 if (!buffer.ReadUInt32(&reliability_param)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010078 RTC_LOG(LS_WARNING) << "Could not read OPEN message reliabilility param.";
wu@webrtc.org97077a32013-10-25 21:18:33 +000079 return false;
80 }
Peter Boström0c4e06b2015-10-07 12:23:21 +020081 uint16_t label_length;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000082 if (!buffer.ReadUInt16(&label_length)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010083 RTC_LOG(LS_WARNING) << "Could not read OPEN message label length.";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000084 return false;
85 }
Peter Boström0c4e06b2015-10-07 12:23:21 +020086 uint16_t protocol_length;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000087 if (!buffer.ReadUInt16(&protocol_length)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010088 RTC_LOG(LS_WARNING) << "Could not read OPEN message protocol length.";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000089 return false;
90 }
91 if (!buffer.ReadString(label, (size_t) label_length)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010092 RTC_LOG(LS_WARNING) << "Could not read OPEN message label";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000093 return false;
94 }
95 if (!buffer.ReadString(&config->protocol, protocol_length)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010096 RTC_LOG(LS_WARNING) << "Could not read OPEN message protocol.";
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +000097 return false;
98 }
99
100 config->ordered = true;
101 switch (channel_type) {
102 case DCOMCT_UNORDERED_RELIABLE:
103 case DCOMCT_UNORDERED_PARTIAL_RTXS:
104 case DCOMCT_UNORDERED_PARTIAL_TIME:
105 config->ordered = false;
106 }
107
108 config->maxRetransmits = -1;
109 config->maxRetransmitTime = -1;
110 switch (channel_type) {
111 case DCOMCT_ORDERED_PARTIAL_RTXS:
112 case DCOMCT_UNORDERED_PARTIAL_RTXS:
113 config->maxRetransmits = reliability_param;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000114 break;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000115 case DCOMCT_ORDERED_PARTIAL_TIME:
116 case DCOMCT_UNORDERED_PARTIAL_TIME:
117 config->maxRetransmitTime = reliability_param;
wu@webrtc.org97077a32013-10-25 21:18:33 +0000118 break;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000119 }
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000120 return true;
121}
122
jbaucheec21bd2016-03-20 06:15:43 -0700123bool ParseDataChannelOpenAckMessage(const rtc::CopyOnWriteBuffer& payload) {
124 if (payload.size() < 1) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100125 RTC_LOG(LS_WARNING) << "Could not read OPEN_ACK message type.";
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000126 return false;
127 }
jbaucheec21bd2016-03-20 06:15:43 -0700128
129 uint8_t message_type = payload[0];
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000130 if (message_type != DATA_CHANNEL_OPEN_ACK_MESSAGE_TYPE) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100131 RTC_LOG(LS_WARNING) << "Data Channel OPEN_ACK message of unexpected type: "
132 << message_type;
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000133 return false;
134 }
135 return true;
136}
137
138bool WriteDataChannelOpenMessage(const std::string& label,
139 const DataChannelInit& config,
jbaucheec21bd2016-03-20 06:15:43 -0700140 rtc::CopyOnWriteBuffer* payload) {
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000141 // Format defined at
wu@webrtc.org97077a32013-10-25 21:18:33 +0000142 // http://tools.ietf.org/html/draft-ietf-rtcweb-data-protocol-00#section-6.1
Peter Boström0c4e06b2015-10-07 12:23:21 +0200143 uint8_t channel_type = 0;
144 uint32_t reliability_param = 0;
145 uint16_t priority = 0;
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000146 if (config.ordered) {
147 if (config.maxRetransmits > -1) {
148 channel_type = DCOMCT_ORDERED_PARTIAL_RTXS;
149 reliability_param = config.maxRetransmits;
150 } else if (config.maxRetransmitTime > -1) {
151 channel_type = DCOMCT_ORDERED_PARTIAL_TIME;
152 reliability_param = config.maxRetransmitTime;
153 } else {
154 channel_type = DCOMCT_ORDERED_RELIABLE;
155 }
156 } else {
157 if (config.maxRetransmits > -1) {
158 channel_type = DCOMCT_UNORDERED_PARTIAL_RTXS;
159 reliability_param = config.maxRetransmits;
160 } else if (config.maxRetransmitTime > -1) {
161 channel_type = DCOMCT_UNORDERED_PARTIAL_TIME;
162 reliability_param = config.maxRetransmitTime;
163 } else {
164 channel_type = DCOMCT_UNORDERED_RELIABLE;
165 }
166 }
167
jbauchf1f87202016-03-30 06:43:37 -0700168 rtc::ByteBufferWriter buffer(
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000169 NULL, 20 + label.length() + config.protocol.length(),
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52 +0000170 rtc::ByteBuffer::ORDER_NETWORK);
jbaucheec21bd2016-03-20 06:15:43 -0700171 // TODO(tommi): Add error handling and check resulting length.
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000172 buffer.WriteUInt8(DATA_CHANNEL_OPEN_MESSAGE_TYPE);
173 buffer.WriteUInt8(channel_type);
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000174 buffer.WriteUInt16(priority);
wu@webrtc.org97077a32013-10-25 21:18:33 +0000175 buffer.WriteUInt32(reliability_param);
Peter Boström0c4e06b2015-10-07 12:23:21 +0200176 buffer.WriteUInt16(static_cast<uint16_t>(label.length()));
177 buffer.WriteUInt16(static_cast<uint16_t>(config.protocol.length()));
wu@webrtc.org1d1ffc92013-10-16 18:12:02 +0000178 buffer.WriteString(label);
179 buffer.WriteString(config.protocol);
180 payload->SetData(buffer.Data(), buffer.Length());
181 return true;
182}
183
jbaucheec21bd2016-03-20 06:15:43 -0700184void WriteDataChannelOpenAckMessage(rtc::CopyOnWriteBuffer* payload) {
185 uint8_t data = DATA_CHANNEL_OPEN_ACK_MESSAGE_TYPE;
186 payload->SetData(&data, sizeof(data));
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000187}
jbaucheec21bd2016-03-20 06:15:43 -0700188
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000189} // namespace webrtc