Skip to content

Commit e736c60

Browse files
Check uint16 and uint32 conversions in DataChannel
1 parent 9861edc commit e736c60

File tree

3 files changed

+31
-27
lines changed

3 files changed

+31
-27
lines changed

src/impl/datachannel.cpp

+10-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include "logcounter.hpp"
1313
#include "peerconnection.hpp"
1414
#include "sctptransport.hpp"
15-
15+
#include "utils.hpp"
1616
#include "rtc/datachannel.hpp"
1717
#include "rtc/track.hpp"
1818

@@ -28,6 +28,9 @@ using std::chrono::milliseconds;
2828

2929
namespace rtc::impl {
3030

31+
using utils::to_uint16;
32+
using utils::to_uint32;
33+
3134
// Messages for the DataChannel establishment protocol (RFC 8832)
3235
// See https://www.rfc-editor.org/rfc/rfc8832.html
3336

@@ -254,10 +257,10 @@ void OutgoingDataChannel::open(shared_ptr<SctpTransport> transport) {
254257
uint32_t reliabilityParameter;
255258
if (mReliability->maxPacketLifeTime) {
256259
channelType = CHANNEL_PARTIAL_RELIABLE_TIMED;
257-
reliabilityParameter = uint32_t(mReliability->maxPacketLifeTime->count());
260+
reliabilityParameter = to_uint32(mReliability->maxPacketLifeTime->count());
258261
} else if (mReliability->maxRetransmits) {
259262
channelType = CHANNEL_PARTIAL_RELIABLE_REXMIT;
260-
reliabilityParameter = uint32_t(*mReliability->maxRetransmits);
263+
reliabilityParameter = to_uint32(*mReliability->maxRetransmits);
261264
}
262265
// else {
263266
// channelType = CHANNEL_RELIABLE;
@@ -268,12 +271,12 @@ void OutgoingDataChannel::open(shared_ptr<SctpTransport> transport) {
268271
switch (mReliability->typeDeprecated) {
269272
case Reliability::Type::Rexmit:
270273
channelType = CHANNEL_PARTIAL_RELIABLE_REXMIT;
271-
reliabilityParameter = uint32_t(std::max(std::get<int>(mReliability->rexmit), 0));
274+
reliabilityParameter = to_uint32(std::max(std::get<int>(mReliability->rexmit), 0));
272275
break;
273276

274277
case Reliability::Type::Timed:
275278
channelType = CHANNEL_PARTIAL_RELIABLE_TIMED;
276-
reliabilityParameter = uint32_t(std::get<milliseconds>(mReliability->rexmit).count());
279+
reliabilityParameter = to_uint32(std::get<milliseconds>(mReliability->rexmit).count());
277280
break;
278281

279282
default:
@@ -292,8 +295,8 @@ void OutgoingDataChannel::open(shared_ptr<SctpTransport> transport) {
292295
open.channelType = channelType;
293296
open.priority = htons(0);
294297
open.reliabilityParameter = htonl(reliabilityParameter);
295-
open.labelLength = htons(uint16_t(mLabel.size()));
296-
open.protocolLength = htons(uint16_t(mProtocol.size()));
298+
open.labelLength = htons(to_uint16(mLabel.size()));
299+
open.protocolLength = htons(to_uint16(mProtocol.size()));
297300

298301
auto end = reinterpret_cast<char *>(buffer.data() + sizeof(OpenMessage));
299302
std::copy(mLabel.begin(), mLabel.end(), end);

src/impl/sctptransport.cpp

+4-20
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "dtlstransport.hpp"
1111
#include "internals.hpp"
1212
#include "logcounter.hpp"
13+
#include "utils.hpp"
1314

1415
#include <algorithm>
1516
#include <chrono>
@@ -50,28 +51,11 @@
5051
using namespace std::chrono_literals;
5152
using namespace std::chrono;
5253

53-
namespace {
54-
55-
template <typename T> uint16_t to_uint16(T i) {
56-
if (i >= 0 && static_cast<typename std::make_unsigned<T>::type>(i) <=
57-
std::numeric_limits<uint16_t>::max())
58-
return static_cast<uint16_t>(i);
59-
else
60-
throw std::invalid_argument("Integer out of range");
61-
}
62-
63-
template <typename T> uint32_t to_uint32(T i) {
64-
if (i >= 0 && static_cast<typename std::make_unsigned<T>::type>(i) <=
65-
std::numeric_limits<uint32_t>::max())
66-
return static_cast<uint32_t>(i);
67-
else
68-
throw std::invalid_argument("Integer out of range");
69-
}
70-
71-
} // namespace
72-
7354
namespace rtc::impl {
7455

56+
using utils::to_uint16;
57+
using utils::to_uint32;
58+
7559
static LogCounter COUNTER_UNKNOWN_PPID(plog::warning,
7660
"Number of SCTP packets received with an unknown PPID");
7761

src/impl/utils.hpp

+17
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <limits>
1616
#include <map>
1717
#include <random>
18+
#include <stdexcept>
1819
#include <vector>
1920

2021
namespace rtc::impl::utils {
@@ -60,6 +61,22 @@ template <typename Generator = std::mt19937> auto random_bytes_engine() {
6061
return random_engine<char_independent_bits_engine, uint8_t>();
6162
}
6263

64+
template <typename T> uint16_t to_uint16(T i) {
65+
if (i >= 0 && static_cast<typename std::make_unsigned<T>::type>(i) <=
66+
std::numeric_limits<uint16_t>::max())
67+
return static_cast<uint16_t>(i);
68+
else
69+
throw std::invalid_argument("Integer out of range");
70+
}
71+
72+
template <typename T> uint32_t to_uint32(T i) {
73+
if (i >= 0 && static_cast<typename std::make_unsigned<T>::type>(i) <=
74+
std::numeric_limits<uint32_t>::max())
75+
return static_cast<uint32_t>(i);
76+
else
77+
throw std::invalid_argument("Integer out of range");
78+
}
79+
6380
namespace this_thread {
6481

6582
void set_name(const string &name);

0 commit comments

Comments
 (0)